2025-06-01T20:56:34.4093274Z Current runner version: '2.324.0' 2025-06-01T20:56:34.4099816Z Runner name: 'i-0663466a0668f9b44' 2025-06-01T20:56:34.4100779Z Machine name: 'EC2AMAZ-DD9BHOF' 2025-06-01T20:56:34.4104851Z ##[group]GITHUB_TOKEN Permissions 2025-06-01T20:56:34.4107130Z Actions: read 2025-06-01T20:56:34.4107605Z Attestations: read 2025-06-01T20:56:34.4108155Z Checks: read 2025-06-01T20:56:34.4108590Z Contents: read 2025-06-01T20:56:34.4109060Z Deployments: read 2025-06-01T20:56:34.4109557Z Discussions: read 2025-06-01T20:56:34.4109995Z Issues: read 2025-06-01T20:56:34.4110430Z Metadata: read 2025-06-01T20:56:34.4110906Z Models: read 2025-06-01T20:56:34.4111419Z Packages: read 2025-06-01T20:56:34.4111877Z Pages: read 2025-06-01T20:56:34.4112474Z PullRequests: read 2025-06-01T20:56:34.4112933Z RepositoryProjects: read 2025-06-01T20:56:34.4113459Z SecurityEvents: read 2025-06-01T20:56:34.4113915Z Statuses: read 2025-06-01T20:56:34.4114384Z ##[endgroup] 2025-06-01T20:56:34.4116715Z Secret source: Actions 2025-06-01T20:56:34.4117570Z Prepare workflow directory 2025-06-01T20:56:34.4615652Z Prepare all required actions 2025-06-01T20:56:34.4654220Z Getting action download info 2025-06-01T20:56:34.6629289Z Download action repository 'pytorch/test-infra@main' (SHA:5ce5452ec51263ef97338910302a42b1f4181e7c) 2025-06-01T20:56:37.4041471Z Download action repository 'pytorch/pytorch@main' (SHA:f7c09f864a6c6467a7454f1431340d3338473fd1) 2025-06-01T20:57:05.4566627Z Download action repository 'seemethere/upload-artifact-s3@baba72d0712b404f646cebe0730933554ebce96a' (SHA:baba72d0712b404f646cebe0730933554ebce96a) 2025-06-01T20:57:06.6616056Z Getting action download info 2025-06-01T20:57:06.7639574Z Download action repository 'actions/checkout@v4' (SHA:11bd71901bbe5b1630ceea73d27597364c9af683) 2025-06-01T20:57:07.2006996Z Complete job name: win-vs2022-cpu-py3 / build 2025-06-01T20:57:07.2603349Z ##[group]Run git config --global core.longpaths true 2025-06-01T20:57:07.2603879Z git config --global core.longpaths true 2025-06-01T20:57:07.2604248Z git config --global core.symlinks true 2025-06-01T20:57:07.2604526Z  2025-06-01T20:57:07.2604877Z # https://git-scm.com/docs/git-fsmonitor--daemon. The daemon could lock 2025-06-01T20:57:07.2605494Z # the directory on Windows and prevent GHA from checking out as reported 2025-06-01T20:57:07.2606017Z # in https://github.com/actions/checkout/issues/1018 2025-06-01T20:57:07.2606397Z git config --global core.fsmonitor false 2025-06-01T20:57:07.2629333Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-06-01T20:57:07.2630005Z env: 2025-06-01T20:57:07.2630192Z GIT_DEFAULT_BRANCH: main 2025-06-01T20:57:07.2630417Z ##[endgroup] 2025-06-01T20:57:07.6297068Z ##[group]Run pytorch/test-infra/.github/actions/cleanup-runner@main 2025-06-01T20:57:07.6297517Z env: 2025-06-01T20:57:07.6297712Z GIT_DEFAULT_BRANCH: main 2025-06-01T20:57:07.6297934Z ##[endgroup] 2025-06-01T20:57:07.6444035Z ##[group]Run # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-06-01T20:57:07.6444771Z # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-06-01T20:57:07.6445425Z # Below is the list of commands that could lock $GITHUB_WORKSPACE gathered from sysinternals 2025-06-01T20:57:07.6445885Z # handle tool 2025-06-01T20:57:07.6446209Z $processes = "python", "ninja", "cl", "nvcc", "cmd", "sccache", "git" 2025-06-01T20:57:07.6446609Z Foreach ($process In $processes) { 2025-06-01T20:57:07.6446875Z  Try { 2025-06-01T20:57:07.6447410Z  # https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.management/stop-process 2025-06-01T20:57:07.6448099Z  Get-Process -Name $process -ErrorAction Stop | Stop-Process -Force 2025-06-01T20:57:07.6448509Z  } 2025-06-01T20:57:07.6448681Z  Catch { 2025-06-01T20:57:07.6450345Z  Write-Output "No leftover $process process, continuing" 2025-06-01T20:57:07.6450702Z  Write-Output $_ 2025-06-01T20:57:07.6450930Z  } 2025-06-01T20:57:07.6451104Z } 2025-06-01T20:57:07.6451264Z  2025-06-01T20:57:07.6451724Z # Try it again https://stackoverflow.com/questions/40585754/powershell-wont-terminate-hung-process 2025-06-01T20:57:07.6452260Z # for hung processes 2025-06-01T20:57:07.6452529Z Foreach ($process In $processes) { 2025-06-01T20:57:07.6452795Z  Try { 2025-06-01T20:57:07.6453171Z  (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process}%'").terminate() 2025-06-01T20:57:07.6453621Z  } 2025-06-01T20:57:07.6453797Z  Catch { 2025-06-01T20:57:07.6454012Z  Write-Output $_ 2025-06-01T20:57:07.6454223Z  } 2025-06-01T20:57:07.6454395Z } 2025-06-01T20:57:07.6454564Z  2025-06-01T20:57:07.6454730Z Try { 2025-06-01T20:57:07.6454951Z  # Print all the processes for debugging 2025-06-01T20:57:07.6455498Z  Wmic Path Win32_Process Get Caption,Processid,Commandline | Format-List 2025-06-01T20:57:07.6455904Z } 2025-06-01T20:57:07.6456072Z Catch { 2025-06-01T20:57:07.6456457Z  # Better to write out whatever exception thrown to help debugging any potential issue 2025-06-01T20:57:07.6456905Z  Write-Output $_ 2025-06-01T20:57:07.6457133Z } 2025-06-01T20:57:07.6472727Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-06-01T20:57:07.6473189Z env: 2025-06-01T20:57:07.6473377Z GIT_DEFAULT_BRANCH: main 2025-06-01T20:57:07.6473609Z ##[endgroup] 2025-06-01T20:57:08.0071970Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-06-01T20:57:08.0129741Z Finished 2025-06-01T20:57:08.0274967Z No leftover python process, continuing 2025-06-01T20:57:08.0719174Z Get-Process : Cannot find a process with the name "python". Verify the process name and call the cmdlet again. 2025-06-01T20:57:08.0719899Z At C:\actions-runner\_work\_temp\a871d052-ecb0-420a-9264-ee5faab93444.ps1:9 char:5 2025-06-01T20:57:08.0720507Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-06-01T20:57:08.0720914Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T20:57:08.0721396Z + CategoryInfo : ObjectNotFound: (python:String) [Get-Process], ProcessCommandException 2025-06-01T20:57:08.0722234Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-06-01T20:57:08.0722819Z 2025-06-01T20:57:08.0736733Z No leftover ninja process, continuing 2025-06-01T20:57:08.0745663Z Get-Process : Cannot find a process with the name "ninja". Verify the process name and call the cmdlet again. 2025-06-01T20:57:08.0746451Z At C:\actions-runner\_work\_temp\a871d052-ecb0-420a-9264-ee5faab93444.ps1:9 char:5 2025-06-01T20:57:08.0747066Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-06-01T20:57:08.0747467Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T20:57:08.0748015Z + CategoryInfo : ObjectNotFound: (ninja:String) [Get-Process], ProcessCommandException 2025-06-01T20:57:08.0748796Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-06-01T20:57:08.0749376Z 2025-06-01T20:57:08.0760343Z No leftover cl process, continuing 2025-06-01T20:57:08.0770089Z Get-Process : Cannot find a process with the name "cl". Verify the process name and call the cmdlet again. 2025-06-01T20:57:08.0770754Z At C:\actions-runner\_work\_temp\a871d052-ecb0-420a-9264-ee5faab93444.ps1:9 char:5 2025-06-01T20:57:08.0771314Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-06-01T20:57:08.0771742Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T20:57:08.0772940Z + CategoryInfo : ObjectNotFound: (cl:String) [Get-Process], ProcessCommandException 2025-06-01T20:57:08.0773765Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-06-01T20:57:08.0774348Z 2025-06-01T20:57:08.0784119Z No leftover nvcc process, continuing 2025-06-01T20:57:08.0793590Z Get-Process : Cannot find a process with the name "nvcc". Verify the process name and call the cmdlet again. 2025-06-01T20:57:08.0794243Z At C:\actions-runner\_work\_temp\a871d052-ecb0-420a-9264-ee5faab93444.ps1:9 char:5 2025-06-01T20:57:08.0794770Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-06-01T20:57:08.0795175Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T20:57:08.0795637Z + CategoryInfo : ObjectNotFound: (nvcc:String) [Get-Process], ProcessCommandException 2025-06-01T20:57:08.0796468Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-06-01T20:57:08.0797054Z 2025-06-01T20:57:08.0824756Z No leftover sccache process, continuing 2025-06-01T20:57:08.0834718Z Get-Process : Cannot find a process with the name "sccache". Verify the process name and call the cmdlet again. 2025-06-01T20:57:08.0835408Z At C:\actions-runner\_work\_temp\a871d052-ecb0-420a-9264-ee5faab93444.ps1:9 char:5 2025-06-01T20:57:08.0835982Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-06-01T20:57:08.0836373Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T20:57:08.0836858Z + CategoryInfo : ObjectNotFound: (sccache:String) [Get-Process], ProcessCommandException 2025-06-01T20:57:08.0837726Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-06-01T20:57:08.0838312Z 2025-06-01T20:57:08.0847026Z No leftover git process, continuing 2025-06-01T20:57:08.0857213Z Get-Process : Cannot find a process with the name "git". Verify the process name and call the cmdlet again. 2025-06-01T20:57:08.0857912Z At C:\actions-runner\_work\_temp\a871d052-ecb0-420a-9264-ee5faab93444.ps1:9 char:5 2025-06-01T20:57:08.0858454Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-06-01T20:57:08.0858852Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T20:57:08.0859316Z + CategoryInfo : ObjectNotFound: (git:String) [Get-Process], ProcessCommandException 2025-06-01T20:57:08.0860157Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-06-01T20:57:08.0860786Z 2025-06-01T20:57:08.1067305Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-06-01T20:57:08.1068163Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-06-01T20:57:08.1068774Z deletion. (Exception from HRESULT: 0x800703FA). 2025-06-01T20:57:08.1069243Z At C:\actions-runner\_work\_temp\a871d052-ecb0-420a-9264-ee5faab93444.ps1:21 char:6 2025-06-01T20:57:08.1069780Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-06-01T20:57:08.1070200Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T20:57:08.1070612Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-06-01T20:57:08.1071284Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-06-01T20:57:08.1071824Z 2025-06-01T20:57:08.1102268Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-06-01T20:57:08.1103217Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-06-01T20:57:08.1104035Z deletion. (Exception from HRESULT: 0x800703FA). 2025-06-01T20:57:08.1104607Z At C:\actions-runner\_work\_temp\a871d052-ecb0-420a-9264-ee5faab93444.ps1:21 char:6 2025-06-01T20:57:08.1105641Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-06-01T20:57:08.1106066Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T20:57:08.1106561Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-06-01T20:57:08.1107237Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-06-01T20:57:08.1107784Z 2025-06-01T20:57:08.1140823Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-06-01T20:57:08.1141820Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-06-01T20:57:08.1142536Z deletion. (Exception from HRESULT: 0x800703FA). 2025-06-01T20:57:08.1143127Z At C:\actions-runner\_work\_temp\a871d052-ecb0-420a-9264-ee5faab93444.ps1:21 char:6 2025-06-01T20:57:08.1143682Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-06-01T20:57:08.1144099Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T20:57:08.1144509Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-06-01T20:57:08.1145183Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-06-01T20:57:08.1145738Z 2025-06-01T20:57:08.1173096Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-06-01T20:57:08.1173933Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-06-01T20:57:08.1174503Z deletion. (Exception from HRESULT: 0x800703FA). 2025-06-01T20:57:08.1174968Z At C:\actions-runner\_work\_temp\a871d052-ecb0-420a-9264-ee5faab93444.ps1:21 char:6 2025-06-01T20:57:08.1175505Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-06-01T20:57:08.1175924Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T20:57:08.1176339Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-06-01T20:57:08.1177002Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-06-01T20:57:08.1177545Z 2025-06-01T20:57:08.1204018Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-06-01T20:57:08.1204869Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-06-01T20:57:08.1205638Z deletion. (Exception from HRESULT: 0x800703FA). 2025-06-01T20:57:08.1206109Z At C:\actions-runner\_work\_temp\a871d052-ecb0-420a-9264-ee5faab93444.ps1:21 char:6 2025-06-01T20:57:08.1206659Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-06-01T20:57:08.1207156Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T20:57:08.1207619Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-06-01T20:57:08.1208290Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-06-01T20:57:08.1208848Z 2025-06-01T20:57:08.1230550Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-06-01T20:57:08.1231451Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-06-01T20:57:08.1232045Z deletion. (Exception from HRESULT: 0x800703FA). 2025-06-01T20:57:08.1232507Z At C:\actions-runner\_work\_temp\a871d052-ecb0-420a-9264-ee5faab93444.ps1:21 char:6 2025-06-01T20:57:08.1233056Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-06-01T20:57:08.1233461Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T20:57:08.1234438Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-06-01T20:57:08.1235109Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-06-01T20:57:08.1235646Z 2025-06-01T20:57:08.1256713Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-06-01T20:57:08.1257527Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-06-01T20:57:08.1258119Z deletion. (Exception from HRESULT: 0x800703FA). 2025-06-01T20:57:08.1258579Z At C:\actions-runner\_work\_temp\a871d052-ecb0-420a-9264-ee5faab93444.ps1:21 char:6 2025-06-01T20:57:08.1259153Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-06-01T20:57:08.1259608Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T20:57:08.1260035Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-06-01T20:57:08.1260708Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-06-01T20:57:08.1261249Z 2025-06-01T20:57:08.8001269Z Caption CommandLine ProcessId 2025-06-01T20:57:08.8001901Z 2025-06-01T20:57:08.8002214Z System Idle Process 0 2025-06-01T20:57:08.8002651Z 2025-06-01T20:57:08.8003557Z System 4 2025-06-01T20:57:08.8003930Z 2025-06-01T20:57:08.8004363Z Registry 168 2025-06-01T20:57:08.8004743Z 2025-06-01T20:57:08.8005550Z smss.exe 412 2025-06-01T20:57:08.8005976Z 2025-06-01T20:57:08.8006812Z csrss.exe 528 2025-06-01T20:57:08.8007804Z 2025-06-01T20:57:08.8008074Z csrss.exe 604 2025-06-01T20:57:08.8008451Z 2025-06-01T20:57:08.8009140Z wininit.exe 656 2025-06-01T20:57:08.8009548Z 2025-06-01T20:57:08.8010301Z winlogon.exe winlogon.exe 676 2025-06-01T20:57:08.8010732Z 2025-06-01T20:57:08.8011549Z services.exe 748 2025-06-01T20:57:08.8013293Z 2025-06-01T20:57:08.8014850Z lsass.exe C:\Windows\system32\lsass.exe 768 2025-06-01T20:57:08.8015344Z 2025-06-01T20:57:08.8015836Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s PlugPlay 896 2025-06-01T20:57:08.8016452Z 2025-06-01T20:57:08.8016919Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p 920 2025-06-01T20:57:08.8017529Z 2025-06-01T20:57:08.8018069Z fontdrvhost.exe "fontdrvhost.exe" 940 2025-06-01T20:57:08.8018522Z 2025-06-01T20:57:08.8018883Z fontdrvhost.exe "fontdrvhost.exe" 948 2025-06-01T20:57:08.8019384Z 2025-06-01T20:57:08.8020005Z svchost.exe C:\Windows\system32\svchost.exe -k RPCSS -p 124 2025-06-01T20:57:08.8020506Z 2025-06-01T20:57:08.8021297Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s LSM 464 2025-06-01T20:57:08.8021845Z 2025-06-01T20:57:08.8022134Z dwm.exe "dwm.exe" 780 2025-06-01T20:57:08.8022508Z 2025-06-01T20:57:08.8023641Z svchost.exe C:\Windows\System32\svchost.exe -k termsvcs -s TermService 1032 2025-06-01T20:57:08.8024274Z 2025-06-01T20:57:08.8024850Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService 1128 2025-06-01T20:57:08.8025510Z 2025-06-01T20:57:08.8026078Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s EventLog 1252 2025-06-01T20:57:08.8026810Z 2025-06-01T20:57:08.8027438Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s nsi 1344 2025-06-01T20:57:08.8027978Z 2025-06-01T20:57:08.8028923Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s Dhcp 1376 2025-06-01T20:57:08.8029621Z 2025-06-01T20:57:08.8030105Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s gpsvc 1400 2025-06-01T20:57:08.8030656Z 2025-06-01T20:57:08.8031213Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s NlaSvc 1448 2025-06-01T20:57:08.8031803Z 2025-06-01T20:57:08.8032252Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Schedule 1480 2025-06-01T20:57:08.8032801Z 2025-06-01T20:57:08.8034620Z 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 1504 2025-06-01T20:57:08.8036557Z 2025-06-01T20:57:08.8037030Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s netprofm 1568 2025-06-01T20:57:08.8037612Z 2025-06-01T20:57:08.8038193Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s TimeBrokerSvc 1664 2025-06-01T20:57:08.8038940Z 2025-06-01T20:57:08.8039376Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s ProfSvc 1748 2025-06-01T20:57:08.8039999Z 2025-06-01T20:57:08.8040521Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s Themes 1756 2025-06-01T20:57:08.8041102Z 2025-06-01T20:57:08.8041645Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s EventSystem 1764 2025-06-01T20:57:08.8042249Z 2025-06-01T20:57:08.8042829Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s UmRdpService 1852 2025-06-01T20:57:08.8043613Z 2025-06-01T20:57:08.8044160Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -s CertPropSvc 2008 2025-06-01T20:57:08.8044711Z 2025-06-01T20:57:08.8045210Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UserManager 1196 2025-06-01T20:57:08.8045766Z 2025-06-01T20:57:08.8046214Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s SENS 2064 2025-06-01T20:57:08.8046732Z 2025-06-01T20:57:08.8047310Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s LanmanWorkstation 2088 2025-06-01T20:57:08.8048360Z 2025-06-01T20:57:08.8048885Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p 2124 2025-06-01T20:57:08.8049580Z 2025-06-01T20:57:08.8050150Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s Dnscache 2132 2025-06-01T20:57:08.8050753Z 2025-06-01T20:57:08.8051245Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s ShellHWDetection 2188 2025-06-01T20:57:08.8051835Z 2025-06-01T20:57:08.8052297Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s SessionEnv 2196 2025-06-01T20:57:08.8052910Z 2025-06-01T20:57:08.8053875Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s FontCache 2240 2025-06-01T20:57:08.8054472Z 2025-06-01T20:57:08.8055015Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetworkFirewall -p 2292 2025-06-01T20:57:08.8055638Z 2025-06-01T20:57:08.8056248Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s WinHttpAutoProxySvc 2380 2025-06-01T20:57:08.8057027Z 2025-06-01T20:57:08.8057442Z spoolsv.exe C:\Windows\System32\spoolsv.exe 2652 2025-06-01T20:57:08.8057930Z 2025-06-01T20:57:08.8058414Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s CryptSvc 2740 2025-06-01T20:57:08.8059075Z 2025-06-01T20:57:08.8059643Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s SysMain 2748 2025-06-01T20:57:08.8060274Z 2025-06-01T20:57:08.8060731Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Winmgmt 2756 2025-06-01T20:57:08.8061266Z 2025-06-01T20:57:08.8061767Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetwork -p 2764 2025-06-01T20:57:08.8062330Z 2025-06-01T20:57:08.8062864Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -s W32Time 2772 2025-06-01T20:57:08.8063426Z 2025-06-01T20:57:08.8063971Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s TrkWks 2780 2025-06-01T20:57:08.8064652Z 2025-06-01T20:57:08.8065169Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s WpnService 2788 2025-06-01T20:57:08.8065798Z 2025-06-01T20:57:08.8066258Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s WinRM 2796 2025-06-01T20:57:08.8066831Z 2025-06-01T20:57:08.8067207Z sshd.exe C:\Windows\System32\OpenSSH\sshd.exe 3068 2025-06-01T20:57:08.8067695Z 2025-06-01T20:57:08.8068158Z svchost.exe C:\Windows\System32\svchost.exe -k smbsvcs -s LanmanServer 2164 2025-06-01T20:57:08.8068722Z 2025-06-01T20:57:08.8069335Z IpOverUsbSvc.exe "C:\Program Files (x86)\Common Files\Microsoft Shared\Phone Tools\CoreCon\11.0\bin\IpOverUsbSvc.exe" 2964 2025-06-01T20:57:08.8070090Z 2025-06-01T20:57:08.8070789Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\NVWMI\nvWmi64.exe 3084 2025-06-01T20:57:08.8071519Z 2025-06-01T20:57:08.8072075Z svchost.exe C:\Windows\System32\svchost.exe -k NetSvcs -p -s iphlpsvc 3124 2025-06-01T20:57:08.8072634Z 2025-06-01T20:57:08.8073223Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkServiceNetworkRestricted -p -s PolicyAgent 3524 2025-06-01T20:57:08.8073913Z 2025-06-01T20:57:08.8074460Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s lmhosts 4084 2025-06-01T20:57:08.8075171Z 2025-06-01T20:57:08.8075652Z LogonUI.exe "LogonUI.exe" /flags:0x2 /state0:0xa3a72855 /state1:0x41c64e6d 4248 2025-06-01T20:57:08.8076272Z 2025-06-01T20:57:08.8077966Z 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 4388 2025-06-01T20:57:08.8079677Z 2025-06-01T20:57:08.8080453Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\NVWMI\nvWmi64.exe -spawnprovider 4520 2025-06-01T20:57:08.8081233Z 2025-06-01T20:57:08.8081589Z vds.exe C:\Windows\System32\vds.exe 4844 2025-06-01T20:57:08.8082110Z 2025-06-01T20:57:08.8082780Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s PcaSvc 132 2025-06-01T20:57:08.8083513Z 2025-06-01T20:57:08.8084300Z start-amazon-cloudwatch-agent.exe "C:\Program Files\Amazon\AmazonCloudWatchAgent\start-amazon-cloudwatch-agent.exe" 4396 2025-06-01T20:57:08.8085198Z 2025-06-01T20:57:08.8086899Z 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 2096 2025-06-01T20:57:08.8088746Z 2025-06-01T20:57:08.8089187Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 2072 2025-06-01T20:57:08.8089822Z 2025-06-01T20:57:08.8090364Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNoNetwork -p -s DPS 3532 2025-06-01T20:57:08.8091040Z 2025-06-01T20:57:08.8091440Z msdtc.exe C:\Windows\System32\msdtc.exe 4676 2025-06-01T20:57:08.8091975Z 2025-06-01T20:57:08.8092566Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s UALSVC 3812 2025-06-01T20:57:08.8093296Z 2025-06-01T20:57:08.8093735Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UsoSvc 1420 2025-06-01T20:57:08.8094270Z 2025-06-01T20:57:08.8094883Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s StorSvc 2712 2025-06-01T20:57:08.8095525Z 2025-06-01T20:57:08.8096017Z svchost.exe C:\Windows\system32\svchost.exe -k appmodel -p -s StateRepository 760 2025-06-01T20:57:08.8096605Z 2025-06-01T20:57:08.8097003Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4976 2025-06-01T20:57:08.8097544Z 2025-06-01T20:57:08.8098011Z Runner.Listener.exe "C:\actions-runner\\bin\Runner.Listener.exe" run 552 2025-06-01T20:57:08.8098608Z 2025-06-01T20:57:08.8099167Z amazon-ssm-agent.exe "C:\Program Files\Amazon\SSM\amazon-ssm-agent.exe" 820 2025-06-01T20:57:08.8099733Z 2025-06-01T20:57:08.8100201Z ssm-agent-worker.exe "C:\Program Files\Amazon\SSM\ssm-agent-worker.exe" 4652 2025-06-01T20:57:08.8100751Z 2025-06-01T20:57:08.8101137Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4428 2025-06-01T20:57:08.8101623Z 2025-06-01T20:57:08.8102084Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s CDPSvc 2044 2025-06-01T20:57:08.8102648Z 2025-06-01T20:57:08.8103293Z MicrosoftEdgeUpdate.exe "C:\Program Files (x86)\Microsoft\EdgeUpdate\MicrosoftEdgeUpdate.exe" /c 3016 2025-06-01T20:57:08.8103966Z 2025-06-01T20:57:08.8104529Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s LicenseManager 2996 2025-06-01T20:57:08.8105213Z 2025-06-01T20:57:08.8105752Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s DsSvc 4528 2025-06-01T20:57:08.8106451Z 2025-06-01T20:57:08.8106947Z Runner.Worker.exe "C:\actions-runner\bin\Runner.Worker.exe" spawnclient 2164 2332 3936 2025-06-01T20:57:08.8107543Z 2025-06-01T20:57:08.8107926Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 2700 2025-06-01T20:57:08.8108401Z 2025-06-01T20:57:08.8109175Z powershell.exe "C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE" -command ". 'C:\actions-runner\_work\_temp\a871d052-ecb0-420a-9264-ee5faab93444.ps1'" 3720 2025-06-01T20:57:08.8110020Z 2025-06-01T20:57:08.8110636Z WMIC.exe "C:\Windows\System32\Wbem\WMIC.exe" Path Win32_Process Get Caption,Processid,Commandline 4736 2025-06-01T20:57:08.8111377Z 2025-06-01T20:57:08.8111850Z WmiPrvSE.exe C:\Windows\system32\wbem\wmiprvse.exe 192 2025-06-01T20:57:08.8112352Z 2025-06-01T20:57:08.8112359Z 2025-06-01T20:57:08.8112366Z 2025-06-01T20:57:08.8382731Z ##[group]Run pytorch/test-infra/.github/actions/setup-ssh@main 2025-06-01T20:57:08.8383138Z with: 2025-06-01T20:57:08.8383677Z github-secret: *** 2025-06-01T20:57:08.8385629Z instructions: To forward remote desktop on your local machine ssh as follows: ssh -L 3389:localhost:3389 %%username%%@%%hostname%% And then change password using `passwd` command. To start build locally, change working folder to \actions-runner\_work\pytorch\pytorch, Activate miniconda and Visual Studio environment, by running: call C:\Jenkins\Miniconda3\Scripts\activate.bat C:\Jenkins\Miniconda3 call "C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Auxiliary\Build\vcvarsall.bat" x64 2025-06-01T20:57:08.8387725Z activate-with-label: false 2025-06-01T20:57:08.8387970Z label: with-ssh 2025-06-01T20:57:08.8388183Z remove-existing-keys: true 2025-06-01T20:57:08.8388419Z fail-silently: true 2025-06-01T20:57:08.8388622Z env: 2025-06-01T20:57:08.8388842Z GIT_DEFAULT_BRANCH: main 2025-06-01T20:57:08.8389052Z ##[endgroup] 2025-06-01T20:57:08.9892076Z Please see https://github.com/pytorch/pytorch/wiki/Debugging-using-with-ssh-for-Github-Actions for more info. 2025-06-01T20:57:08.9894475Z Not on pull request and ciflow reference could not be extracted, skipping adding ssh keys 2025-06-01T20:57:09.0143550Z ##[group]Run pytorch/pytorch/.github/actions/checkout-pytorch@main 2025-06-01T20:57:09.0143959Z with: 2025-06-01T20:57:09.0145397Z no-sudo: true 2025-06-01T20:57:09.0145620Z submodules: recursive 2025-06-01T20:57:09.0145842Z fetch-depth: 0 2025-06-01T20:57:09.0146032Z env: 2025-06-01T20:57:09.0146214Z GIT_DEFAULT_BRANCH: main 2025-06-01T20:57:09.0146434Z ##[endgroup] 2025-06-01T20:57:09.0228475Z ##[group]Run echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-06-01T20:57:09.0229397Z echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-06-01T20:57:09.0248689Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-06-01T20:57:09.0249174Z env: 2025-06-01T20:57:09.0249378Z GIT_DEFAULT_BRANCH: main 2025-06-01T20:57:09.0249683Z ##[endgroup] 2025-06-01T20:57:09.0690192Z ##[group]Run # Use all available CPUs for fetching 2025-06-01T20:57:09.0690566Z # Use all available CPUs for fetching 2025-06-01T20:57:09.0690868Z cd "${GITHUB_WORKSPACE}" 2025-06-01T20:57:09.0691172Z git config --global fetch.parallel 0 2025-06-01T20:57:09.0691515Z git config --global submodule.fetchJobs 0 2025-06-01T20:57:09.0691813Z  2025-06-01T20:57:09.0692119Z # Clean workspace. The default checkout action should also do this, but 2025-06-01T20:57:09.0692543Z # do it here as well just in case 2025-06-01T20:57:09.0692828Z if [[ -d .git ]]; then 2025-06-01T20:57:09.0693070Z  if [ -z "${NO_SUDO}" ]; then 2025-06-01T20:57:09.0693340Z  sudo git clean -ffdx 2025-06-01T20:57:09.0693578Z  else 2025-06-01T20:57:09.0693788Z  git clean -ffdx 2025-06-01T20:57:09.0694007Z  fi 2025-06-01T20:57:09.0694182Z fi 2025-06-01T20:57:09.0712734Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-06-01T20:57:09.0713161Z env: 2025-06-01T20:57:09.0713346Z GIT_DEFAULT_BRANCH: main 2025-06-01T20:57:09.0713587Z NO_SUDO: true 2025-06-01T20:57:09.0713775Z ##[endgroup] 2025-06-01T20:57:09.1575997Z ##[group]Run actions/checkout@v4 2025-06-01T20:57:09.1576265Z with: 2025-06-01T20:57:09.1576472Z ref: f7c09f864a6c6467a7454f1431340d3338473fd1 2025-06-01T20:57:09.1576758Z fetch-depth: 0 2025-06-01T20:57:09.1576956Z submodules: recursive 2025-06-01T20:57:09.1577176Z show-progress: false 2025-06-01T20:57:09.1577393Z repository: pytorch/pytorch 2025-06-01T20:57:09.1577780Z token: *** 2025-06-01T20:57:09.1577975Z ssh-strict: true 2025-06-01T20:57:09.1578162Z ssh-user: git 2025-06-01T20:57:09.1578369Z persist-credentials: true 2025-06-01T20:57:09.1578605Z clean: true 2025-06-01T20:57:09.1578809Z sparse-checkout-cone-mode: true 2025-06-01T20:57:09.1579060Z fetch-tags: false 2025-06-01T20:57:09.1579268Z lfs: false 2025-06-01T20:57:09.1579461Z set-safe-directory: true 2025-06-01T20:57:09.1579670Z env: 2025-06-01T20:57:09.1579850Z GIT_DEFAULT_BRANCH: main 2025-06-01T20:57:09.1580063Z ##[endgroup] 2025-06-01T20:57:09.2855930Z Syncing repository: pytorch/pytorch 2025-06-01T20:57:09.2857191Z ##[group]Getting Git version info 2025-06-01T20:57:09.2857594Z Working directory is 'C:\actions-runner\_work\pytorch\pytorch' 2025-06-01T20:57:09.2941913Z [command]"C:\Program Files\Git\cmd\git.exe" version 2025-06-01T20:57:09.3149532Z git version 2.47.1.windows.2 2025-06-01T20:57:09.3194833Z ##[endgroup] 2025-06-01T20:57:09.3206681Z Copying 'C:\Users\runneruser\.gitconfig' to 'C:\actions-runner\_work\_temp\23576794-1eb3-4c4b-981c-ad9329f01986\.gitconfig' 2025-06-01T20:57:09.3224672Z Temporarily overriding HOME='C:\actions-runner\_work\_temp\23576794-1eb3-4c4b-981c-ad9329f01986' before making global git config changes 2025-06-01T20:57:09.3227494Z Adding repository directory to the temporary git global config as a safe directory 2025-06-01T20:57:09.3233940Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add safe.directory C:\actions-runner\_work\pytorch\pytorch 2025-06-01T20:57:09.3459609Z Deleting the contents of 'C:\actions-runner\_work\pytorch\pytorch' 2025-06-01T20:57:09.3465233Z ##[group]Initializing the repository 2025-06-01T20:57:09.3474932Z [command]"C:\Program Files\Git\cmd\git.exe" init C:\actions-runner\_work\pytorch\pytorch 2025-06-01T20:57:09.3816878Z Initialized empty Git repository in C:/actions-runner/_work/pytorch/pytorch/.git/ 2025-06-01T20:57:09.3856606Z [command]"C:\Program Files\Git\cmd\git.exe" remote add origin https://github.com/pytorch/pytorch 2025-06-01T20:57:09.4092845Z ##[endgroup] 2025-06-01T20:57:09.4103576Z ##[group]Disabling automatic garbage collection 2025-06-01T20:57:09.4104105Z [command]"C:\Program Files\Git\cmd\git.exe" config --local gc.auto 0 2025-06-01T20:57:09.4327505Z ##[endgroup] 2025-06-01T20:57:09.4327884Z ##[group]Setting up auth 2025-06-01T20:57:09.4339764Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp core\.sshCommand 2025-06-01T20:57:09.4562822Z [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-06-01T20:57:09.8745343Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-06-01T20:57:09.8971880Z [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-06-01T20:57:10.2428811Z [command]"C:\Program Files\Git\cmd\git.exe" config --local http.https://github.com/.extraheader "AUTHORIZATION: basic ***" 2025-06-01T20:57:10.2662280Z ##[endgroup] 2025-06-01T20:57:10.2662675Z ##[group]Fetching the repository 2025-06-01T20:57:10.2704730Z [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-06-01T20:58:01.8974137Z From https://github.com/pytorch/pytorch 2025-06-01T20:58:01.8974600Z * [new branch] 2.6.0.dev20241004+ -> origin/2.6.0.dev20241004+ 2025-06-01T20:58:01.8975091Z * [new branch] Chillee-patch-1 -> origin/Chillee-patch-1 2025-06-01T20:58:01.8975632Z * [new branch] HDCharles-2.6.0-release-notes -> origin/HDCharles-2.6.0-release-notes 2025-06-01T20:58:01.8976306Z * [new branch] JackCaoG/dynamo_make_fx_non_core_aten_ops -> origin/JackCaoG/dynamo_make_fx_non_core_aten_ops 2025-06-01T20:58:01.8976982Z * [new branch] PR-AOTInductorNoneBug -> origin/PR-AOTInductorNoneBug 2025-06-01T20:58:01.8977557Z * [new branch] PR-AOTInductorNoneBugFix -> origin/PR-AOTInductorNoneBugFix 2025-06-01T20:58:01.8978103Z * [new branch] PR-FixConfigsIssue -> origin/PR-FixConfigsIssue 2025-06-01T20:58:01.8978608Z * [new branch] PR-NoneBugFix-viable -> origin/PR-NoneBugFix-viable 2025-06-01T20:58:01.8979090Z * [new branch] PR-ResetToZero -> origin/PR-ResetToZero 2025-06-01T20:58:01.8979599Z * [new branch] Update-Flash-Packaging -> origin/Update-Flash-Packaging 2025-06-01T20:58:01.8980223Z * [new branch] add-link-transformers-build-blocks -> origin/add-link-transformers-build-blocks 2025-06-01T20:58:01.8980914Z * [new branch] add-meta-tag-fsdp -> origin/add-meta-tag-fsdp 2025-06-01T20:58:01.8981485Z * [new branch] add-missing-args-normalization -> origin/add-missing-args-normalization 2025-06-01T20:58:01.8982217Z * [new branch] add-sitemap -> origin/add-sitemap 2025-06-01T20:58:01.8983454Z * [new branch] addUtilForLinuxBuild -> origin/addUtilForLinuxBuild 2025-06-01T20:58:01.8984014Z * [new branch] add_new_ops_in_fallback_ops -> origin/add_new_ops_in_fallback_ops 2025-06-01T20:58:01.8984543Z * [new branch] add_windows_testing_back -> origin/add_windows_testing_back 2025-06-01T20:58:01.8985037Z * [new branch] addmm-heuristic -> origin/addmm-heuristic 2025-06-01T20:58:01.8985475Z * [new branch] addsimde -> origin/addsimde 2025-06-01T20:58:01.8985912Z * [new branch] adi/gemm_bf16f32 -> origin/adi/gemm_bf16f32 2025-06-01T20:58:01.8986331Z * [new branch] adi/test -> origin/adi/test 2025-06-01T20:58:01.8986789Z * [new branch] adi/test_presve_change -> origin/adi/test_presve_change 2025-06-01T20:58:01.8987299Z * [new branch] adi/testpresve_change -> origin/adi/testpresve_change 2025-06-01T20:58:01.8987834Z * [new branch] adi/update_openblas -> origin/adi/update_openblas 2025-06-01T20:58:01.8988361Z * [new branch] aditew01/test/vec_bf16 -> origin/aditew01/test/vec_bf16 2025-06-01T20:58:01.8988874Z * [new branch] ah-globalfeedback-hook -> origin/ah-globalfeedback-hook 2025-06-01T20:58:01.8989384Z * [new branch] albanD-patch-1 -> origin/albanD-patch-1 2025-06-01T20:58:01.8989844Z * [new branch] albanD-patch-3 -> origin/albanD-patch-3 2025-06-01T20:58:01.8990324Z * [new branch] alt-disable -> origin/alt-disable 2025-06-01T20:58:01.8990765Z * [new branch] angelayi/152467 -> origin/angelayi/152467 2025-06-01T20:58:01.8991298Z * [new branch] angelayi/aoti_additional_files -> origin/angelayi/aoti_additional_files 2025-06-01T20:58:01.8991867Z * [new branch] angelayi/aoti_back -> origin/angelayi/aoti_back 2025-06-01T20:58:01.8992339Z * [new branch] angelayi/baddbmm -> origin/angelayi/baddbmm 2025-06-01T20:58:01.8992920Z * [new branch] angelayi/change_pytree_serialization -> origin/angelayi/change_pytree_serialization 2025-06-01T20:58:01.8993516Z * [new branch] angelayi/cpp_loader -> origin/angelayi/cpp_loader 2025-06-01T20:58:01.8993995Z * [new branch] angelayi/customop -> origin/angelayi/customop 2025-06-01T20:58:01.8994465Z * [new branch] angelayi/del_lib -> origin/angelayi/del_lib 2025-06-01T20:58:01.8995055Z * [new branch] angelayi/dont_malloc -> origin/angelayi/dont_malloc 2025-06-01T20:58:01.8995586Z * [new branch] angelayi/draft_export_doc -> origin/angelayi/draft_export_doc 2025-06-01T20:58:01.8996162Z * [new branch] angelayi/draft_export_public -> origin/angelayi/draft_export_public 2025-06-01T20:58:01.8996727Z * [new branch] angelayi/dynamo_fake_input -> origin/angelayi/dynamo_fake_input 2025-06-01T20:58:01.8997258Z * [new branch] angelayi/export_save -> origin/angelayi/export_save 2025-06-01T20:58:01.8997776Z * [new branch] angelayi/filter_stacktrace -> origin/angelayi/filter_stacktrace 2025-06-01T20:58:01.8998359Z * [new branch] angelayi/fix_additional_inputs -> origin/angelayi/fix_additional_inputs 2025-06-01T20:58:01.8998896Z * [new branch] angelayi/flake1 -> origin/angelayi/flake1 2025-06-01T20:58:01.9433009Z * [new branch] angelayi/logging.bak -> origin/angelayi/logging.bak 2025-06-01T20:58:01.9433521Z * [new branch] angelayi/logging2 -> origin/angelayi/logging2 2025-06-01T20:58:01.9434223Z * [new branch] angelayi/meta_kernel_yaml2 -> origin/angelayi/meta_kernel_yaml2 2025-06-01T20:58:01.9434911Z * [new branch] angelayi/no_so_weight -> origin/angelayi/no_so_weight 2025-06-01T20:58:01.9435455Z * [new branch] angelayi/repeat_interleave -> origin/angelayi/repeat_interleave 2025-06-01T20:58:01.9435984Z * [new branch] angelayi/rm_unused_const -> origin/angelayi/rm_unused_const 2025-06-01T20:58:01.9436499Z * [new branch] angelayi/scan_layers -> origin/angelayi/scan_layers 2025-06-01T20:58:01.9437002Z * [new branch] angelayi/symint_help -> origin/angelayi/symint_help 2025-06-01T20:58:01.9437513Z * [new branch] angelayi/symint_input -> origin/angelayi/symint_input 2025-06-01T20:58:01.9438018Z * [new branch] angelayi/symint_input_3 -> origin/angelayi/symint_input_3 2025-06-01T20:58:01.9438523Z * [new branch] angelayi/torch_size -> origin/angelayi/torch_size 2025-06-01T20:58:01.9439040Z * [new branch] angelayi/unflatten_empty -> origin/angelayi/unflatten_empty 2025-06-01T20:58:01.9439560Z * [new branch] angelayi/unflatten_out -> origin/angelayi/unflatten_out 2025-06-01T20:58:01.9440093Z * [new branch] angelayi/update_schema_msg -> origin/angelayi/update_schema_msg 2025-06-01T20:58:01.9440597Z * [new branch] aoti_inference_test -> origin/aoti_inference_test 2025-06-01T20:58:01.9441043Z * [new branch] async-fix -> origin/async-fix 2025-06-01T20:58:01.9441553Z * [new branch] atalman-inductor-perf-cu124 -> origin/atalman-inductor-perf-cu124 2025-06-01T20:58:01.9442167Z * [new branch] atalman-inductor-perf-cu124.1 -> origin/atalman-inductor-perf-cu124.1 2025-06-01T20:58:01.9442712Z * [new branch] atalman-patch-1 -> origin/atalman-patch-1 2025-06-01T20:58:01.9443168Z * [new branch] atalman-patch-3 -> origin/atalman-patch-3 2025-06-01T20:58:01.9443642Z * [new branch] atalman-patch-5 -> origin/atalman-patch-5 2025-06-01T20:58:01.9444101Z * [new branch] atalman-patch-7 -> origin/atalman-patch-7 2025-06-01T20:58:01.9444576Z * [new branch] atalman_inductor_2.3.0 -> origin/atalman_inductor_2.3.0 2025-06-01T20:58:01.9445072Z * [new branch] atalman_inductor_2.3.1 -> origin/atalman_inductor_2.3.1 2025-06-01T20:58:01.9445562Z * [new branch] atalman_inductor_2.4.0 -> origin/atalman_inductor_2.4.0 2025-06-01T20:58:01.9446048Z * [new branch] atalman_inductor_2.4.x -> origin/atalman_inductor_2.4.x 2025-06-01T20:58:01.9446563Z * [new branch] avoid-spammy-log-for-2.7 -> origin/avoid-spammy-log-for-2.7 2025-06-01T20:58:01.9447048Z * [new branch] base/1.5 -> origin/base/1.5 2025-06-01T20:58:01.9447581Z * [new branch] batching_sdpa_efficient_attention -> origin/batching_sdpa_efficient_attention 2025-06-01T20:58:01.9448167Z * [new branch] bcon_2.7 -> origin/bcon_2.7 2025-06-01T20:58:01.9448626Z * [new branch] benchmark-updates -> origin/benchmark-updates 2025-06-01T20:58:01.9449121Z * [new branch] benchmarking-script -> origin/benchmarking-script 2025-06-01T20:58:01.9449866Z * [new branch] benjaminglass1/aoti-inductor-clang-tidy-warnings -> origin/benjaminglass1/aoti-inductor-clang-tidy-warnings 2025-06-01T20:58:01.9450665Z * [new branch] benjaminglass1/aoti-output-code -> origin/benjaminglass1/aoti-output-code 2025-06-01T20:58:01.9451571Z * [new branch] benjaminglass1/fixup-aot-inductor-performance-benchmarks -> origin/benjaminglass1/fixup-aot-inductor-performance-benchmarks 2025-06-01T20:58:01.9452535Z * [new branch] benjaminglass1/improve_opoverload_typing -> origin/benjaminglass1/improve_opoverload_typing 2025-06-01T20:58:01.9453380Z * [new branch] bertmaher/pinbump26 -> origin/bertmaher/pinbump26 2025-06-01T20:58:01.9453869Z * [new branch] bertrand/cutlass -> origin/bertrand/cutlass 2025-06-01T20:58:01.9454346Z * [new branch] bf/cg-foreach-op -> origin/bf/cg-foreach-op 2025-06-01T20:58:01.9454810Z * [new branch] bf/cg-remove-check -> origin/bf/cg-remove-check 2025-06-01T20:58:01.9455306Z * [new branch] bf/cg-side-stream-mem -> origin/bf/cg-side-stream-mem 2025-06-01T20:58:01.9455876Z * [new branch] bf/cg-skip-unbacked-symint-msg -> origin/bf/cg-skip-unbacked-symint-msg 2025-06-01T20:58:01.9456410Z * [new branch] bf/cudagraph -> origin/bf/cudagraph 2025-06-01T20:58:01.9456994Z * [new branch] bf/cudagraph-disable-input-mutation -> origin/bf/cudagraph-disable-input-mutation 2025-06-01T20:58:01.9880258Z * [new branch] bf/cudagraph-enable-input-mutation-support-benchmark -> origin/bf/cudagraph-enable-input-mutation-support-benchmark 2025-06-01T20:58:01.9881134Z * [new branch] bf/cudagraph-partition -> origin/bf/cudagraph-partition 2025-06-01T20:58:01.9881688Z * [new branch] bf/donated-buffer-bench -> origin/bf/donated-buffer-bench 2025-06-01T20:58:01.9882224Z * [new branch] bf/fa-small-block-mask -> origin/bf/fa-small-block-mask 2025-06-01T20:58:01.9882716Z * [new branch] bf/partition-cg -> origin/bf/partition-cg 2025-06-01T20:58:01.9883208Z * [new branch] bf/partition-cpu-read -> origin/bf/partition-cpu-read 2025-06-01T20:58:01.9883833Z * [new branch] bf/partition-fa -> origin/bf/partition-fa 2025-06-01T20:58:01.9884321Z * [new branch] bf/partition-flaky -> origin/bf/partition-flaky 2025-06-01T20:58:01.9884845Z * [new branch] bf/partition-gc -> origin/bf/partition-gc 2025-06-01T20:58:01.9885337Z * [new branch] bf/partition-move-cpu -> origin/bf/partition-move-cpu 2025-06-01T20:58:01.9885893Z * [new branch] bf/partition-move-cpu-scalar -> origin/bf/partition-move-cpu-scalar 2025-06-01T20:58:01.9886503Z * [new branch] bf/partition-precomputed-sym -> origin/bf/partition-precomputed-sym 2025-06-01T20:58:01.9887197Z * [new branch] bf/partition-relative-order-invariant -> origin/bf/partition-relative-order-invariant 2025-06-01T20:58:01.9887874Z * [new branch] bf/partition-remove-weak-dep -> origin/bf/partition-remove-weak-dep 2025-06-01T20:58:01.9888463Z * [new branch] bf/partition-removed-arg -> origin/bf/partition-removed-arg 2025-06-01T20:58:01.9889070Z * [new branch] bf/partition-standalone-compile -> origin/bf/partition-standalone-compile 2025-06-01T20:58:01.9889695Z * [new branch] bf/partition-symint-input -> origin/bf/partition-symint-input 2025-06-01T20:58:01.9890243Z * [new branch] bf/partition-turn-on -> origin/bf/partition-turn-on 2025-06-01T20:58:01.9890785Z * [new branch] bf/reduce-scatter-copy-in -> origin/bf/reduce-scatter-copy-in 2025-06-01T20:58:01.9891324Z * [new branch] bf/reinplace-diagonal -> origin/bf/reinplace-diagonal 2025-06-01T20:58:01.9891840Z * [new branch] bf/remove-check-55b0c39d -> origin/bf/remove-check-55b0c39d 2025-06-01T20:58:01.9892405Z * [new branch] bf/reorder-minimal-partition -> origin/bf/reorder-minimal-partition 2025-06-01T20:58:01.9892984Z * [new branch] bf/update-torchbench-pin -> origin/bf/update-torchbench-pin 2025-06-01T20:58:01.9893536Z * [new branch] bf/update-torchvision-pin -> origin/bf/update-torchvision-pin 2025-06-01T20:58:01.9894032Z * [new branch] bf16adamw -> origin/bf16adamw 2025-06-01T20:58:01.9894675Z * [new branch] bisect_perf_hf_T5_3acc6eac492 -> origin/bisect_perf_hf_T5_3acc6eac492 2025-06-01T20:58:01.9895790Z * [new branch] bisect_perf_hf_T5_3fcf66f61fb -> origin/bisect_perf_hf_T5_3fcf66f61fb 2025-06-01T20:58:01.9896352Z * [new branch] bisect_perf_hf_T5_4009d154129 -> origin/bisect_perf_hf_T5_4009d154129 2025-06-01T20:58:01.9896889Z * [new branch] bisect_perf_hf_T5_40d0740e73d -> origin/bisect_perf_hf_T5_40d0740e73d 2025-06-01T20:58:01.9897419Z * [new branch] bisect_perf_hf_T5_5268754e -> origin/bisect_perf_hf_T5_5268754e 2025-06-01T20:58:01.9897947Z * [new branch] bisect_perf_hf_T5_7d89a8d385c -> origin/bisect_perf_hf_T5_7d89a8d385c 2025-06-01T20:58:01.9898497Z * [new branch] bisect_perf_hf_T5_b7a25c1ee7c -> origin/bisect_perf_hf_T5_b7a25c1ee7c 2025-06-01T20:58:01.9899040Z * [new branch] bisect_perf_hf_T5_c25b201583f -> origin/bisect_perf_hf_T5_c25b201583f 2025-06-01T20:58:01.9899573Z * [new branch] bisect_perf_hf_T5_c93e57efac0 -> origin/bisect_perf_hf_T5_c93e57efac0 2025-06-01T20:58:01.9900108Z * [new branch] bisect_perf_hf_T5_ca9813ea149 -> origin/bisect_perf_hf_T5_ca9813ea149 2025-06-01T20:58:01.9900625Z * [new branch] bisect_perf_hf_T5_d65f194a -> origin/bisect_perf_hf_T5_d65f194a 2025-06-01T20:58:01.9901142Z * [new branch] bisect_perf_hf_T5_da94ab0b -> origin/bisect_perf_hf_T5_da94ab0b 2025-06-01T20:58:01.9901680Z * [new branch] bisect_perf_hf_T5_da94ab0b_new -> origin/bisect_perf_hf_T5_da94ab0b_new 2025-06-01T20:58:01.9902231Z * [new branch] bisect_perf_hf_T5_db4e8a1d8a8 -> origin/bisect_perf_hf_T5_db4e8a1d8a8 2025-06-01T20:58:01.9902877Z * [new branch] bisect_perf_hf_T5_e0d97e936a2 -> origin/bisect_perf_hf_T5_e0d97e936a2 2025-06-01T20:58:01.9903450Z * [new branch] bisect_perf_hf_T5_f23621ec563 -> origin/bisect_perf_hf_T5_f23621ec563 2025-06-01T20:58:01.9903996Z * [new branch] bowbao/bench_updates_stage -> origin/bowbao/bench_updates_stage 2025-06-01T20:58:01.9904524Z * [new branch] bowbao/dort_rewriter -> origin/bowbao/dort_rewriter 2025-06-01T20:58:02.0273370Z * [new branch] bowbao/skip_decomp -> origin/bowbao/skip_decomp 2025-06-01T20:58:02.0273852Z * [new branch] bowbao/wip_prs -> origin/bowbao/wip_prs 2025-06-01T20:58:02.0274382Z * [new branch] bowenbao/docker_rocm_miniforge -> origin/bowenbao/docker_rocm_miniforge 2025-06-01T20:58:02.0275093Z * [new branch] bowenbao/partial_min_max_reduce -> origin/bowenbao/partial_min_max_reduce 2025-06-01T20:58:02.0275681Z * [new branch] brister/always_wrapper_ir -> origin/brister/always_wrapper_ir 2025-06-01T20:58:02.0276215Z * [new branch] brister/faster_grid_calc -> origin/brister/faster_grid_calc 2025-06-01T20:58:02.0276754Z * [new branch] brister/test_block_ptr_same -> origin/brister/test_block_ptr_same 2025-06-01T20:58:02.0277389Z * [new branch] brister/tiled_reduction_no_numel_check -> origin/brister/tiled_reduction_no_numel_check 2025-06-01T20:58:02.0278016Z * [new branch] brister/wrapper_call_arg -> origin/brister/wrapper_call_arg 2025-06-01T20:58:02.0278541Z * [new branch] brister/wrapper_clean_up -> origin/brister/wrapper_clean_up 2025-06-01T20:58:02.0279049Z * [new branch] brister/wrapper_ir -> origin/brister/wrapper_ir 2025-06-01T20:58:02.0279554Z * [new branch] ca_0431d47eaa -> origin/ca_0431d47eaa 2025-06-01T20:58:02.0279991Z * [new branch] ca_fix_0431d47eaa -> origin/ca_fix_0431d47eaa 2025-06-01T20:58:02.0280492Z * [new branch] camyllh/ff_linting_D72572050 -> origin/camyllh/ff_linting_D72572050 2025-06-01T20:58:02.0280980Z * [new branch] check-links -> origin/check-links 2025-06-01T20:58:02.0281835Z * [new branch] cherry-pick-147095-by-pytorch_bot_bot_ -> origin/cherry-pick-147095-by-pytorch_bot_bot_ 2025-06-01T20:58:02.0282563Z * [new branch] cherry-pick-148320-by-pytorch_bot_bot_ -> origin/cherry-pick-148320-by-pytorch_bot_bot_ 2025-06-01T20:58:02.0283288Z * [new branch] cherry-pick-148677-by-pytorch_bot_bot_ -> origin/cherry-pick-148677-by-pytorch_bot_bot_ 2025-06-01T20:58:02.0284004Z * [new branch] cherry-pick-149356-by-pytorch_bot_bot_ -> origin/cherry-pick-149356-by-pytorch_bot_bot_ 2025-06-01T20:58:02.0284713Z * [new branch] cherry-pick-149654-by-pytorch_bot_bot_ -> origin/cherry-pick-149654-by-pytorch_bot_bot_ 2025-06-01T20:58:02.0285429Z * [new branch] cherry-pick-150010-by-pytorch_bot_bot_ -> origin/cherry-pick-150010-by-pytorch_bot_bot_ 2025-06-01T20:58:02.0286136Z * [new branch] cherry-pick-150138-by-pytorch_bot_bot_ -> origin/cherry-pick-150138-by-pytorch_bot_bot_ 2025-06-01T20:58:02.0286754Z * [new branch] cherry-pick-150308 -> origin/cherry-pick-150308 2025-06-01T20:58:02.0287362Z * [new branch] cherry-pick-150560-by-pytorch_bot_bot_ -> origin/cherry-pick-150560-by-pytorch_bot_bot_ 2025-06-01T20:58:02.0288070Z * [new branch] cherry-pick-151158-by-pytorch_bot_bot_ -> origin/cherry-pick-151158-by-pytorch_bot_bot_ 2025-06-01T20:58:02.0288781Z * [new branch] cherry-pick-151277-by-pytorch_bot_bot_ -> origin/cherry-pick-151277-by-pytorch_bot_bot_ 2025-06-01T20:58:02.0289487Z * [new branch] cherry-pick-151344-by-pytorch_bot_bot_ -> origin/cherry-pick-151344-by-pytorch_bot_bot_ 2025-06-01T20:58:02.0290204Z * [new branch] cherry-pick-151826-by-pytorch_bot_bot_ -> origin/cherry-pick-151826-by-pytorch_bot_bot_ 2025-06-01T20:58:02.0290913Z * [new branch] cherry-pick-151848-by-pytorch_bot_bot_ -> origin/cherry-pick-151848-by-pytorch_bot_bot_ 2025-06-01T20:58:02.0291626Z * [new branch] cherry-pick-152075-by-pytorch_bot_bot_ -> origin/cherry-pick-152075-by-pytorch_bot_bot_ 2025-06-01T20:58:02.0292337Z * [new branch] cherry-pick-152287-by-pytorch_bot_bot_ -> origin/cherry-pick-152287-by-pytorch_bot_bot_ 2025-06-01T20:58:02.0293039Z * [new branch] cherry-pick-152396-by-pytorch_bot_bot_ -> origin/cherry-pick-152396-by-pytorch_bot_bot_ 2025-06-01T20:58:02.0293750Z * [new branch] cherry-pick-152399-by-pytorch_bot_bot_ -> origin/cherry-pick-152399-by-pytorch_bot_bot_ 2025-06-01T20:58:02.0294460Z * [new branch] cherry-pick-152641-by-pytorch_bot_bot_ -> origin/cherry-pick-152641-by-pytorch_bot_bot_ 2025-06-01T20:58:02.0295163Z * [new branch] cherry-pick-153002-by-pytorch_bot_bot_ -> origin/cherry-pick-153002-by-pytorch_bot_bot_ 2025-06-01T20:58:02.0295882Z * [new branch] cherry-pick-153067-by-pytorch_bot_bot_ -> origin/cherry-pick-153067-by-pytorch_bot_bot_ 2025-06-01T20:58:02.0296606Z * [new branch] cherry-pick-153671-by-pytorch_bot_bot_ -> origin/cherry-pick-153671-by-pytorch_bot_bot_ 2025-06-01T20:58:02.0297304Z * [new branch] cherry-pick-153848-by-pytorch_bot_bot_ -> origin/cherry-pick-153848-by-pytorch_bot_bot_ 2025-06-01T20:58:02.0700976Z * [new branch] cherry-pick-153925-by-pytorch_bot_bot_ -> origin/cherry-pick-153925-by-pytorch_bot_bot_ 2025-06-01T20:58:02.0701711Z * [new branch] cherry-pick-154041-by-pytorch_bot_bot_ -> origin/cherry-pick-154041-by-pytorch_bot_bot_ 2025-06-01T20:58:02.0702421Z * [new branch] cherry-pick-154045-by-pytorch_bot_bot_ -> origin/cherry-pick-154045-by-pytorch_bot_bot_ 2025-06-01T20:58:02.0703181Z * [new branch] cherry-pick-154055-by-pytorch_bot_bot_ -> origin/cherry-pick-154055-by-pytorch_bot_bot_ 2025-06-01T20:58:02.0703927Z * [new branch] cherry-pick-154174-by-pytorch_bot_bot_ -> origin/cherry-pick-154174-by-pytorch_bot_bot_ 2025-06-01T20:58:02.0704673Z * [new branch] cherry-pick-to-2.7 -> origin/cherry-pick-to-2.7 2025-06-01T20:58:02.0705292Z * [new branch] ckluk2-compileThread-1 -> origin/ckluk2-compileThread-1 2025-06-01T20:58:02.0705836Z * [new branch] ckluk2-compileThread-2 -> origin/ckluk2-compileThread-2 2025-06-01T20:58:02.0706391Z * [new branch] ckluk2-compileThread-64 -> origin/ckluk2-compileThread-64 2025-06-01T20:58:02.0706887Z * [new branch] ckluk2-test-1 -> origin/ckluk2-test-1 2025-06-01T20:58:02.0707330Z * [new branch] cleantest1 -> origin/cleantest1 2025-06-01T20:58:02.0707775Z * [new branch] collective_c_shim -> origin/collective_c_shim 2025-06-01T20:58:02.0708357Z * [new branch] compile_fsdp2_disable_stream_and_event -> origin/compile_fsdp2_disable_stream_and_event 2025-06-01T20:58:02.0709017Z * [new branch] comply-with-setuptools -> origin/comply-with-setuptools 2025-06-01T20:58:02.0709575Z * [new branch] consolidate-is-qat -> origin/consolidate-is-qat 2025-06-01T20:58:02.0710044Z * [new branch] context_test -> origin/context_test 2025-06-01T20:58:02.0710484Z * [new branch] context_test_2.7.1 -> origin/context_test_2.7.1 2025-06-01T20:58:02.0710925Z * [new branch] copy_graph -> origin/copy_graph 2025-06-01T20:58:02.0711400Z * [new branch] cpio/fix_new_ami_tests -> origin/cpio/fix_new_ami_tests 2025-06-01T20:58:02.0711874Z * [new branch] cpio/fix_unit_test -> origin/cpio/fix_unit_test 2025-06-01T20:58:02.0712359Z * [new branch] csl/always_produce_xml -> origin/csl/always_produce_xml 2025-06-01T20:58:02.0712907Z * [new branch] csl/autoformat_merge_exception -> origin/csl/autoformat_merge_exception 2025-06-01T20:58:02.0713477Z * [new branch] csl/autoformat_trigger -> origin/csl/autoformat_trigger 2025-06-01T20:58:02.0713983Z * [new branch] csl/binary_ios_remove -> origin/csl/binary_ios_remove 2025-06-01T20:58:02.0714586Z * [new branch] csl/build_test_more_procs -> origin/csl/build_test_more_procs 2025-06-01T20:58:02.0715162Z * [new branch] csl/build_test_more_procs2 -> origin/csl/build_test_more_procs2 2025-06-01T20:58:02.0715646Z * [new branch] csl/conda_lint -> origin/csl/conda_lint 2025-06-01T20:58:02.0716091Z * [new branch] csl/conda_rand -> origin/csl/conda_rand 2025-06-01T20:58:02.0716544Z * [new branch] csl/conda_rand_2 -> origin/csl/conda_rand_2 2025-06-01T20:58:02.0717018Z * [new branch] csl/conda_swap_some_pip -> origin/csl/conda_swap_some_pip 2025-06-01T20:58:02.0717546Z * [new branch] csl/disable_failing_test -> origin/csl/disable_failing_test 2025-06-01T20:58:02.0718057Z * [new branch] csl/docker_image_rename -> origin/csl/docker_image_rename 2025-06-01T20:58:02.0718590Z * [new branch] csl/docker_name_remove_compat -> origin/csl/docker_name_remove_compat 2025-06-01T20:58:02.0719081Z * [new branch] csl/katex -> origin/csl/katex 2025-06-01T20:58:02.0719511Z * [new branch] csl/larger_runner -> origin/csl/larger_runner 2025-06-01T20:58:02.0719969Z * [new branch] csl/mps_sharding -> origin/csl/mps_sharding 2025-06-01T20:58:02.0720485Z * [new branch] csl/multistage_docker -> origin/csl/multistage_docker 2025-06-01T20:58:02.0721025Z * [new branch] csl/no_protobuf_docker -> origin/csl/no_protobuf_docker 2025-06-01T20:58:02.0721518Z * [new branch] csl/pytest_timeout -> origin/csl/pytest_timeout 2025-06-01T20:58:02.0722083Z * [new branch] csl/reuse_old_whl -> origin/csl/reuse_old_whl 2025-06-01T20:58:02.0722687Z * [new branch] csl/reuse_old_whl_delete_old_whl -> origin/csl/reuse_old_whl_delete_old_whl 2025-06-01T20:58:02.0723278Z * [new branch] csl/reuse_old_whl_more_workflows -> origin/csl/reuse_old_whl_more_workflows 2025-06-01T20:58:02.0723854Z * [new branch] csl/reuse_old_whl_no_delete -> origin/csl/reuse_old_whl_no_delete 2025-06-01T20:58:02.0724375Z * [new branch] csl/reuse_old_whl_prs -> origin/csl/reuse_old_whl_prs 2025-06-01T20:58:02.0724922Z * [new branch] csl/reuse_old_whl_replace_version -> origin/csl/reuse_old_whl_replace_version 2025-06-01T20:58:02.1179447Z * [new branch] csl/revert_message_stacked -> origin/csl/revert_message_stacked 2025-06-01T20:58:02.1179946Z * [new branch] csl/skip_build -> origin/csl/skip_build 2025-06-01T20:58:02.1180499Z * [new branch] csl/test_cuda_build_large_runner -> origin/csl/test_cuda_build_large_runner 2025-06-01T20:58:02.1181121Z * [new branch] csl/test_cusparse_binary_docker -> origin/csl/test_cusparse_binary_docker 2025-06-01T20:58:02.1181701Z * [new branch] csl/unify_install_cuda -> origin/csl/unify_install_cuda 2025-06-01T20:58:02.1182293Z * [new branch] csl/unify_install_cusparselt -> origin/csl/unify_install_cusparselt 2025-06-01T20:58:02.1182846Z * [new branch] csl/upgrad_sccache_version -> origin/csl/upgrad_sccache_version 2025-06-01T20:58:02.1183408Z * [new branch] csl/upload_stats_linux_aarch64 -> origin/csl/upload_stats_linux_aarch64 2025-06-01T20:58:02.1183923Z * [new branch] csl/xla_sccache -> origin/csl/xla_sccache 2025-06-01T20:58:02.1184384Z * [new branch] cudnnsdparefactor -> origin/cudnnsdparefactor 2025-06-01T20:58:02.1184877Z * [new branch] custom_lowering_dict -> origin/custom_lowering_dict 2025-06-01T20:58:02.1185350Z * [new branch] d4l3k/dist_queue -> origin/d4l3k/dist_queue 2025-06-01T20:58:02.1185808Z * [new branch] d4l3k/fsdp_wait -> origin/d4l3k/fsdp_wait 2025-06-01T20:58:02.1186537Z * [new branch] dependabot/pip/dot-github/requirements/pillow-10.3.0 -> origin/dependabot/pip/dot-github/requirements/pillow-10.3.0 2025-06-01T20:58:02.1187545Z * [new branch] dependabot/pip/tools/build/bazel/setuptools-78.1.1 -> origin/dependabot/pip/tools/build/bazel/setuptools-78.1.1 2025-06-01T20:58:02.1188352Z * [new branch] desertfire/test_cpp_wrapper -> origin/desertfire/test_cpp_wrapper 2025-06-01T20:58:02.1189003Z * [new branch] desertfire/torchgen_support_default_arg -> origin/desertfire/torchgen_support_default_arg 2025-06-01T20:58:02.1189718Z * [new branch] desertfire/triton-cpu-for-aarch64 -> origin/desertfire/triton-cpu-for-aarch64 2025-06-01T20:58:02.1190335Z * [new branch] desertfire/update_hf_pin -> origin/desertfire/update_hf_pin 2025-06-01T20:58:02.1190875Z * [new branch] dev/joona/MPSNDArrayAdd -> origin/dev/joona/MPSNDArrayAdd 2025-06-01T20:58:02.1191388Z * [new branch] dev/joona/Unranked -> origin/dev/joona/Unranked 2025-06-01T20:58:02.1191873Z * [new branch] dev/joona/cachingkey -> origin/dev/joona/cachingkey 2025-06-01T20:58:02.1192346Z * [new branch] dev/joona/cat -> origin/dev/joona/cat 2025-06-01T20:58:02.1192834Z * [new branch] dev/joona/cat_remove_graph -> origin/dev/joona/cat_remove_graph 2025-06-01T20:58:02.1193419Z * [new branch] dev/joona/convtranspose3d -> origin/dev/joona/convtranspose3d 2025-06-01T20:58:02.1193996Z * [new branch] dev/joona/embeddingbag -> origin/dev/joona/embeddingbag 2025-06-01T20:58:02.1194614Z * [new branch] dev/joona/getTensorsString -> origin/dev/joona/getTensorsString 2025-06-01T20:58:02.1195832Z * [new branch] dev/joona/mps_linear -> origin/dev/joona/mps_linear 2025-06-01T20:58:02.1196380Z * [new branch] dev/joona/mps_linear_macos14 -> origin/dev/joona/mps_linear_macos14 2025-06-01T20:58:02.1196882Z * [new branch] dev/joona/sdpa -> origin/dev/joona/sdpa 2025-06-01T20:58:02.1197428Z * [new branch] dev/joona/synchronize_benchmark -> origin/dev/joona/synchronize_benchmark 2025-06-01T20:58:02.1197990Z * [new branch] dev/joona/type_inf -> origin/dev/joona/type_inf 2025-06-01T20:58:02.1198478Z * [new branch] dev/joona/upsize3d -> origin/dev/joona/upsize3d 2025-06-01T20:58:02.1198969Z * [new branch] disable -> origin/disable 2025-06-01T20:58:02.1199490Z * [new branch] disable_fp_contract_baseline -> origin/disable_fp_contract_baseline 2025-06-01T20:58:02.1199977Z * [new branch] divup -> origin/divup 2025-06-01T20:58:02.1200471Z * [new branch] divyanshk-update-codeowners -> origin/divyanshk-update-codeowners 2025-06-01T20:58:02.1200988Z * [new branch] e2e-baseline -> origin/e2e-baseline 2025-06-01T20:58:02.1201497Z * [new branch] eikanwang/eager_torch_compile -> origin/eikanwang/eager_torch_compile 2025-06-01T20:58:02.1202051Z * [new branch] embg/test_inductor_ci_128B -> origin/embg/test_inductor_ci_128B 2025-06-01T20:58:02.1202595Z * [new branch] embg/test_inductor_ci_base -> origin/embg/test_inductor_ci_base 2025-06-01T20:58:02.1203138Z * [new branch] embg/test_inductor_ci_control -> origin/embg/test_inductor_ci_control 2025-06-01T20:58:02.1203696Z * [new branch] embg/triton_l2_prefetch_128B -> origin/embg/triton_l2_prefetch_128B 2025-06-01T20:58:02.1566973Z * [new branch] embg/triton_l2_prefetch_256B -> origin/embg/triton_l2_prefetch_256B 2025-06-01T20:58:02.1567558Z * [new branch] enableMoreTests -> origin/enableMoreTests 2025-06-01T20:58:02.1568068Z * [new branch] enableMoreUtilTests -> origin/enableMoreUtilTests 2025-06-01T20:58:02.1568541Z * [new branch] eqy-patch-1 -> origin/eqy-patch-1 2025-06-01T20:58:02.1568983Z * [new branch] eqy-patch-10 -> origin/eqy-patch-10 2025-06-01T20:58:02.1569423Z * [new branch] eqy-patch-11 -> origin/eqy-patch-11 2025-06-01T20:58:02.1569944Z * [new branch] eqy-patch-12 -> origin/eqy-patch-12 2025-06-01T20:58:02.1570437Z * [new branch] eqy-patch-13 -> origin/eqy-patch-13 2025-06-01T20:58:02.1570859Z * [new branch] eqy-patch-2 -> origin/eqy-patch-2 2025-06-01T20:58:02.1571307Z * [new branch] eqy-patch-3 -> origin/eqy-patch-3 2025-06-01T20:58:02.1571732Z * [new branch] eqy-patch-4 -> origin/eqy-patch-4 2025-06-01T20:58:02.1572146Z * [new branch] eqy-patch-7 -> origin/eqy-patch-7 2025-06-01T20:58:02.1572565Z * [new branch] eqy-patch-9 -> origin/eqy-patch-9 2025-06-01T20:58:02.1573160Z * [new branch] error-when-setattr-over-cls-attr -> origin/error-when-setattr-over-cls-attr 2025-06-01T20:58:02.1573827Z * [new branch] example-convert-torch.nn -> origin/example-convert-torch.nn 2025-06-01T20:58:02.1574462Z * [new branch] exclamaforte/combo-kernels-perf-run -> origin/exclamaforte/combo-kernels-perf-run 2025-06-01T20:58:02.1575172Z * [new branch] exclamaforte/debug-autotuner-profile -> origin/exclamaforte/debug-autotuner-profile 2025-06-01T20:58:02.1575878Z * [new branch] exclamaforte/enable-mem-dep-fusion -> origin/exclamaforte/enable-mem-dep-fusion 2025-06-01T20:58:02.1576721Z * [new branch] exclamaforte/fix-trace-parsing-fx-svg -> origin/exclamaforte/fix-trace-parsing-fx-svg 2025-06-01T20:58:02.1577459Z * [new branch] exclamaforte/flag-metrics -> origin/exclamaforte/flag-metrics 2025-06-01T20:58:02.1578171Z * [new branch] exclamaforte/force-pointwise-cat-perf-run -> origin/exclamaforte/force-pointwise-cat-perf-run 2025-06-01T20:58:02.1578934Z * [new branch] exclamaforte/fusion-data -> origin/exclamaforte/fusion-data 2025-06-01T20:58:02.1579539Z * [new branch] exclamaforte/heuristic-choices -> origin/exclamaforte/heuristic-choices 2025-06-01T20:58:02.1580178Z * [new branch] exclamaforte/heuristic-choices-2 -> origin/exclamaforte/heuristic-choices-2 2025-06-01T20:58:02.1580763Z * [new branch] exclamaforte/log_mul -> origin/exclamaforte/log_mul 2025-06-01T20:58:02.1581380Z * [new branch] exclamaforte/max-autotune-dtype-test -> origin/exclamaforte/max-autotune-dtype-test 2025-06-01T20:58:02.1582031Z * [new branch] exclamaforte/memory-counter -> origin/exclamaforte/memory-counter 2025-06-01T20:58:02.1582706Z * [new branch] exclamaforte/scheduler-flops-refactor -> origin/exclamaforte/scheduler-flops-refactor 2025-06-01T20:58:02.1583394Z * [new branch] exclamaforte/scheduler-refactor -> origin/exclamaforte/scheduler-refactor 2025-06-01T20:58:02.1584055Z * [new branch] exclamaforte/test_cpp_wrapper_mode -> origin/exclamaforte/test_cpp_wrapper_mode 2025-06-01T20:58:02.1584830Z * [new branch] exclamaforte/update-autotune-configs -> origin/exclamaforte/update-autotune-configs 2025-06-01T20:58:02.1585379Z * [new branch] exec -> origin/exec 2025-06-01T20:58:02.1585844Z * [new branch] experimental-mosaic -> origin/experimental-mosaic 2025-06-01T20:58:02.1586329Z * [new branch] export-D52434604 -> origin/export-D52434604 2025-06-01T20:58:02.1586799Z * [new branch] export-D58091437 -> origin/export-D58091437 2025-06-01T20:58:02.1587265Z * [new branch] export-D61047529 -> origin/export-D61047529 2025-06-01T20:58:02.1587711Z * [new branch] export-D68245292 -> origin/export-D68245292 2025-06-01T20:58:02.1588167Z * [new branch] export-D68846308 -> origin/export-D68846308 2025-06-01T20:58:02.1588615Z * [new branch] export-D69361235 -> origin/export-D69361235 2025-06-01T20:58:02.1589065Z * [new branch] export-D70193972 -> origin/export-D70193972 2025-06-01T20:58:02.1589504Z * [new branch] export-D71412006 -> origin/export-D71412006 2025-06-01T20:58:02.1589996Z * [new branch] export-D71446522 -> origin/export-D71446522 2025-06-01T20:58:02.1590490Z * [new branch] export-D72483950 -> origin/export-D72483950 2025-06-01T20:58:02.1590941Z * [new branch] export-D72762767 -> origin/export-D72762767 2025-06-01T20:58:02.1591398Z * [new branch] export-D72978020 -> origin/export-D72978020 2025-06-01T20:58:02.4684017Z * [new branch] export-D73008663 -> origin/export-D73008663 2025-06-01T20:58:02.4684523Z * [new branch] export-D73042989 -> origin/export-D73042989 2025-06-01T20:58:02.4684988Z * [new branch] export-D73287751 -> origin/export-D73287751 2025-06-01T20:58:02.4685456Z * [new branch] export-D73399889 -> origin/export-D73399889 2025-06-01T20:58:02.4685950Z * [new branch] export-D73867797 -> origin/export-D73867797 2025-06-01T20:58:02.4686445Z * [new branch] export-D74033649 -> origin/export-D74033649 2025-06-01T20:58:02.4686890Z * [new branch] export-D74085173 -> origin/export-D74085173 2025-06-01T20:58:02.4687653Z * [new branch] export-D74398762 -> origin/export-D74398762 2025-06-01T20:58:02.4688136Z * [new branch] export-D74444990 -> origin/export-D74444990 2025-06-01T20:58:02.4688588Z * [new branch] export-D74599203 -> origin/export-D74599203 2025-06-01T20:58:02.4689056Z * [new branch] export-D74664734 -> origin/export-D74664734 2025-06-01T20:58:02.4689500Z * [new branch] export-D74911818 -> origin/export-D74911818 2025-06-01T20:58:02.4689958Z * [new branch] export-D75159672 -> origin/export-D75159672 2025-06-01T20:58:02.4690416Z * [new branch] export-D75183591 -> origin/export-D75183591 2025-06-01T20:58:02.4690863Z * [new branch] export-D75313723 -> origin/export-D75313723 2025-06-01T20:58:02.4691315Z * [new branch] export-D75360856 -> origin/export-D75360856 2025-06-01T20:58:02.4691819Z * [new branch] export-D75568693 -> origin/export-D75568693 2025-06-01T20:58:02.4692324Z * [new branch] export-D75605373 -> origin/export-D75605373 2025-06-01T20:58:02.4692775Z * [new branch] export-D75617432 -> origin/export-D75617432 2025-06-01T20:58:02.4693222Z * [new branch] export-D75617963 -> origin/export-D75617963 2025-06-01T20:58:02.4693671Z * [new branch] export-D75659965 -> origin/export-D75659965 2025-06-01T20:58:02.4694244Z * [new branch] exported-model-train-idempotent -> origin/exported-model-train-idempotent 2025-06-01T20:58:02.4694804Z * [new branch] fa_u8_brgemm -> origin/fa_u8_brgemm 2025-06-01T20:58:02.4695254Z * [new branch] fastmath_baseline -> origin/fastmath_baseline 2025-06-01T20:58:02.4695714Z * [new branch] fbcode/warm -> origin/fbcode/warm 2025-06-01T20:58:02.4696124Z * [new branch] fca -> origin/fca 2025-06-01T20:58:02.4696517Z * [new branch] fca2_ca5984c -> origin/fca2_ca5984c 2025-06-01T20:58:02.4696912Z * [new branch] fca5 -> origin/fca5 2025-06-01T20:58:02.4697391Z * [new branch] fengyuan/external-proj -> origin/fengyuan/external-proj 2025-06-01T20:58:02.4698120Z * [new branch] fengyuan/out-of-tree-xpu-ops-improve-test -> origin/fengyuan/out-of-tree-xpu-ops-improve-test 2025-06-01T20:58:02.4698983Z * [new branch] fengyuan/out-of-tree-xpu-ops-remove-dtype -> origin/fengyuan/out-of-tree-xpu-ops-remove-dtype 2025-06-01T20:58:02.4699639Z * [new branch] fengyuan/test-xpu -> origin/fengyuan/test-xpu 2025-06-01T20:58:02.4700122Z * [new branch] ffast_math_baseline -> origin/ffast_math_baseline 2025-06-01T20:58:02.4700587Z * [new branch] ffast_math_target -> origin/ffast_math_target 2025-06-01T20:58:02.4701066Z * [new branch] findhao/base_commit -> origin/findhao/base_commit 2025-06-01T20:58:02.4701550Z * [new branch] findhao/base_commit1 -> origin/findhao/base_commit1 2025-06-01T20:58:02.4702083Z * [new branch] findhao/fix-indirect-access -> origin/findhao/fix-indirect-access 2025-06-01T20:58:02.4702626Z * [new branch] findhao/multistream2 -> origin/findhao/multistream2 2025-06-01T20:58:02.4703121Z * [new branch] findhao/multistream5 -> origin/findhao/multistream5 2025-06-01T20:58:02.4703617Z * [new branch] findhao/multistream6 -> origin/findhao/multistream6 2025-06-01T20:58:02.4704184Z * [new branch] findhao/operatorbench3 -> origin/findhao/operatorbench3 2025-06-01T20:58:02.4704749Z * [new branch] findhao/operatorbench5 -> origin/findhao/operatorbench5 2025-06-01T20:58:02.4705457Z * [new branch] findhao/tritonparse -> origin/findhao/tritonparse 2025-06-01T20:58:02.4706030Z * [new branch] findhao/update_clean_triton_script -> origin/findhao/update_clean_triton_script 2025-06-01T20:58:02.4706565Z * [new branch] fix -> origin/fix 2025-06-01T20:58:02.4706963Z * [new branch] fix-149722 -> origin/fix-149722 2025-06-01T20:58:02.4707381Z * [new branch] fix-2.7 -> origin/fix-2.7 2025-06-01T20:58:02.5143450Z * [new branch] fix-ck-gemm-template-format -> origin/fix-ck-gemm-template-format 2025-06-01T20:58:02.5144023Z * [new branch] fix-config-ignore -> origin/fix-config-ignore 2025-06-01T20:58:02.5144561Z * [new branch] fix-cpu-affinity-cgroups -> origin/fix-cpu-affinity-cgroups 2025-06-01T20:58:02.5145104Z * [new branch] fix-dict-guard -> origin/fix-dict-guard 2025-06-01T20:58:02.5145607Z * [new branch] fix-for-patch-doc-build -> origin/fix-for-patch-doc-build 2025-06-01T20:58:02.5146218Z * [new branch] fix-inductor-periodic-0528 -> origin/fix-inductor-periodic-0528 2025-06-01T20:58:02.5146766Z * [new branch] fix-links -> origin/fix-links 2025-06-01T20:58:02.5147179Z * [new branch] fix-urls -> origin/fix-urls 2025-06-01T20:58:02.5147586Z * [new branch] fix-urls-2 -> origin/fix-urls-2 2025-06-01T20:58:02.5148046Z * [new branch] fix_allow_train_eval_msg -> origin/fix_allow_train_eval_msg 2025-06-01T20:58:02.5148512Z * [new branch] fix_partial -> origin/fix_partial 2025-06-01T20:58:02.5148939Z * [new branch] fixes-triage -> origin/fixes-triage 2025-06-01T20:58:02.5149454Z * [new branch] flex_attention_functorch_grad -> origin/flex_attention_functorch_grad 2025-06-01T20:58:02.5150044Z * [new branch] fmassa/fix_memeff_sharding_rule -> origin/fmassa/fix_memeff_sharding_rule 2025-06-01T20:58:02.5150719Z * [new branch] fmassa/partitioner_knapsack_checkpoint -> origin/fmassa/partitioner_knapsack_checkpoint 2025-06-01T20:58:02.5151318Z * [new branch] fsdp-qps-drop -> origin/fsdp-qps-drop 2025-06-01T20:58:02.5151809Z * [new branch] fsdp2_trace_rules -> origin/fsdp2_trace_rules 2025-06-01T20:58:02.5152256Z * [new branch] fsdpv2_3d -> origin/fsdpv2_3d 2025-06-01T20:58:02.5152712Z * [new branch] fsdpv2_3d_m1 -> origin/fsdpv2_3d_m1 2025-06-01T20:58:02.5153133Z * [new branch] fused_qkv -> origin/fused_qkv 2025-06-01T20:58:02.5153536Z * [new branch] fx_cpp -> origin/fx_cpp 2025-06-01T20:58:02.5153934Z * [new branch] fy/fix-win -> origin/fy/fix-win 2025-06-01T20:58:02.5154403Z * [new branch] gh/AlnisM/1/base -> origin/gh/AlnisM/1/base 2025-06-01T20:58:02.5154939Z * [new branch] gh/AlnisM/1/head -> origin/gh/AlnisM/1/head 2025-06-01T20:58:02.5155387Z * [new branch] gh/CaoE/1/base -> origin/gh/CaoE/1/base 2025-06-01T20:58:02.5155828Z * [new branch] gh/CaoE/1/head -> origin/gh/CaoE/1/head 2025-06-01T20:58:02.5156252Z * [new branch] gh/CaoE/1/orig -> origin/gh/CaoE/1/orig 2025-06-01T20:58:02.5156687Z * [new branch] gh/CaoE/2/base -> origin/gh/CaoE/2/base 2025-06-01T20:58:02.5157112Z * [new branch] gh/CaoE/2/head -> origin/gh/CaoE/2/head 2025-06-01T20:58:02.5157555Z * [new branch] gh/CaoE/2/orig -> origin/gh/CaoE/2/orig 2025-06-01T20:58:02.5158232Z * [new branch] gh/CaoE/3/base -> origin/gh/CaoE/3/base 2025-06-01T20:58:02.5158753Z * [new branch] gh/CaoE/3/head -> origin/gh/CaoE/3/head 2025-06-01T20:58:02.5159195Z * [new branch] gh/CaoE/3/orig -> origin/gh/CaoE/3/orig 2025-06-01T20:58:02.5159671Z * [new branch] gh/ColinPeppler/67/base -> origin/gh/ColinPeppler/67/base 2025-06-01T20:58:02.5160217Z * [new branch] gh/ColinPeppler/67/head -> origin/gh/ColinPeppler/67/head 2025-06-01T20:58:02.5160740Z * [new branch] gh/ColinPeppler/67/orig -> origin/gh/ColinPeppler/67/orig 2025-06-01T20:58:02.5161269Z * [new branch] gh/ColinPeppler/68/base -> origin/gh/ColinPeppler/68/base 2025-06-01T20:58:02.5161789Z * [new branch] gh/ColinPeppler/68/head -> origin/gh/ColinPeppler/68/head 2025-06-01T20:58:02.5162306Z * [new branch] gh/ColinPeppler/68/orig -> origin/gh/ColinPeppler/68/orig 2025-06-01T20:58:02.5162846Z * [new branch] gh/ColinPeppler/69/base -> origin/gh/ColinPeppler/69/base 2025-06-01T20:58:02.5163363Z * [new branch] gh/ColinPeppler/69/head -> origin/gh/ColinPeppler/69/head 2025-06-01T20:58:02.5163979Z * [new branch] gh/ColinPeppler/69/orig -> origin/gh/ColinPeppler/69/orig 2025-06-01T20:58:02.5164506Z * [new branch] gh/ColinPeppler/70/base -> origin/gh/ColinPeppler/70/base 2025-06-01T20:58:02.5165019Z * [new branch] gh/ColinPeppler/70/head -> origin/gh/ColinPeppler/70/head 2025-06-01T20:58:02.5165541Z * [new branch] gh/ColinPeppler/70/orig -> origin/gh/ColinPeppler/70/orig 2025-06-01T20:58:02.5166038Z * [new branch] gh/EikanWang/67/base -> origin/gh/EikanWang/67/base 2025-06-01T20:58:02.5166541Z * [new branch] gh/EikanWang/67/head -> origin/gh/EikanWang/67/head 2025-06-01T20:58:02.5167037Z * [new branch] gh/EikanWang/80/base -> origin/gh/EikanWang/80/base 2025-06-01T20:58:02.5616958Z * [new branch] gh/EikanWang/80/head -> origin/gh/EikanWang/80/head 2025-06-01T20:58:02.5617497Z * [new branch] gh/EikanWang/80/orig -> origin/gh/EikanWang/80/orig 2025-06-01T20:58:02.5617984Z * [new branch] gh/EikanWang/81/base -> origin/gh/EikanWang/81/base 2025-06-01T20:58:02.5618478Z * [new branch] gh/EikanWang/81/head -> origin/gh/EikanWang/81/head 2025-06-01T20:58:02.5618968Z * [new branch] gh/EikanWang/81/orig -> origin/gh/EikanWang/81/orig 2025-06-01T20:58:02.5619452Z * [new branch] gh/Gasoonjia/1/base -> origin/gh/Gasoonjia/1/base 2025-06-01T20:58:02.5619942Z * [new branch] gh/Gasoonjia/1/head -> origin/gh/Gasoonjia/1/head 2025-06-01T20:58:02.5620411Z * [new branch] gh/H-Huang/131/base -> origin/gh/H-Huang/131/base 2025-06-01T20:58:02.5620884Z * [new branch] gh/H-Huang/131/head -> origin/gh/H-Huang/131/head 2025-06-01T20:58:02.5621345Z * [new branch] gh/H-Huang/131/orig -> origin/gh/H-Huang/131/orig 2025-06-01T20:58:02.5621803Z * [new branch] gh/H-Huang/132/base -> origin/gh/H-Huang/132/base 2025-06-01T20:58:02.5622267Z * [new branch] gh/H-Huang/132/head -> origin/gh/H-Huang/132/head 2025-06-01T20:58:02.5622723Z * [new branch] gh/H-Huang/132/orig -> origin/gh/H-Huang/132/orig 2025-06-01T20:58:02.5623191Z * [new branch] gh/H-Huang/160/base -> origin/gh/H-Huang/160/base 2025-06-01T20:58:02.5623657Z * [new branch] gh/H-Huang/160/head -> origin/gh/H-Huang/160/head 2025-06-01T20:58:02.5624114Z * [new branch] gh/H-Huang/160/orig -> origin/gh/H-Huang/160/orig 2025-06-01T20:58:02.5624583Z * [new branch] gh/H-Huang/168/base -> origin/gh/H-Huang/168/base 2025-06-01T20:58:02.5625172Z * [new branch] gh/H-Huang/168/head -> origin/gh/H-Huang/168/head 2025-06-01T20:58:02.5625726Z * [new branch] gh/H-Huang/168/orig -> origin/gh/H-Huang/168/orig 2025-06-01T20:58:02.5626217Z * [new branch] gh/H-Huang/172/base -> origin/gh/H-Huang/172/base 2025-06-01T20:58:02.5626679Z * [new branch] gh/H-Huang/172/head -> origin/gh/H-Huang/172/head 2025-06-01T20:58:02.5627158Z * [new branch] gh/H-Huang/172/orig -> origin/gh/H-Huang/172/orig 2025-06-01T20:58:02.5627611Z * [new branch] gh/H-Huang/175/base -> origin/gh/H-Huang/175/base 2025-06-01T20:58:02.5628132Z * [new branch] gh/H-Huang/175/head -> origin/gh/H-Huang/175/head 2025-06-01T20:58:02.5628618Z * [new branch] gh/H-Huang/175/orig -> origin/gh/H-Huang/175/orig 2025-06-01T20:58:02.5629076Z * [new branch] gh/H-Huang/176/base -> origin/gh/H-Huang/176/base 2025-06-01T20:58:02.5629555Z * [new branch] gh/H-Huang/176/head -> origin/gh/H-Huang/176/head 2025-06-01T20:58:02.5630011Z * [new branch] gh/H-Huang/176/orig -> origin/gh/H-Huang/176/orig 2025-06-01T20:58:02.5630475Z * [new branch] gh/H-Huang/177/base -> origin/gh/H-Huang/177/base 2025-06-01T20:58:02.5630933Z * [new branch] gh/H-Huang/177/head -> origin/gh/H-Huang/177/head 2025-06-01T20:58:02.5631419Z * [new branch] gh/H-Huang/177/orig -> origin/gh/H-Huang/177/orig 2025-06-01T20:58:02.5631874Z * [new branch] gh/H-Huang/178/base -> origin/gh/H-Huang/178/base 2025-06-01T20:58:02.5632346Z * [new branch] gh/H-Huang/178/head -> origin/gh/H-Huang/178/head 2025-06-01T20:58:02.5632799Z * [new branch] gh/H-Huang/178/orig -> origin/gh/H-Huang/178/orig 2025-06-01T20:58:02.5633261Z * [new branch] gh/H-Huang/179/base -> origin/gh/H-Huang/179/base 2025-06-01T20:58:02.5633728Z * [new branch] gh/H-Huang/179/head -> origin/gh/H-Huang/179/head 2025-06-01T20:58:02.5634178Z * [new branch] gh/H-Huang/179/orig -> origin/gh/H-Huang/179/orig 2025-06-01T20:58:02.5634722Z * [new branch] gh/H-Huang/180/base -> origin/gh/H-Huang/180/base 2025-06-01T20:58:02.5635181Z * [new branch] gh/H-Huang/180/head -> origin/gh/H-Huang/180/head 2025-06-01T20:58:02.5635651Z * [new branch] gh/H-Huang/180/orig -> origin/gh/H-Huang/180/orig 2025-06-01T20:58:02.5636124Z * [new branch] gh/H-Huang/181/base -> origin/gh/H-Huang/181/base 2025-06-01T20:58:02.5636583Z * [new branch] gh/H-Huang/181/head -> origin/gh/H-Huang/181/head 2025-06-01T20:58:02.5637069Z * [new branch] gh/H-Huang/181/orig -> origin/gh/H-Huang/181/orig 2025-06-01T20:58:02.5637526Z * [new branch] gh/H-Huang/182/base -> origin/gh/H-Huang/182/base 2025-06-01T20:58:02.5637990Z * [new branch] gh/H-Huang/182/head -> origin/gh/H-Huang/182/head 2025-06-01T20:58:02.5638450Z * [new branch] gh/H-Huang/182/orig -> origin/gh/H-Huang/182/orig 2025-06-01T20:58:02.5638899Z * [new branch] gh/H-Huang/183/base -> origin/gh/H-Huang/183/base 2025-06-01T20:58:02.6059381Z * [new branch] gh/H-Huang/183/head -> origin/gh/H-Huang/183/head 2025-06-01T20:58:02.6059863Z * [new branch] gh/H-Huang/183/orig -> origin/gh/H-Huang/183/orig 2025-06-01T20:58:02.6060370Z * [new branch] gh/H-Huang/184/base -> origin/gh/H-Huang/184/base 2025-06-01T20:58:02.6060883Z * [new branch] gh/H-Huang/184/head -> origin/gh/H-Huang/184/head 2025-06-01T20:58:02.6061358Z * [new branch] gh/H-Huang/184/orig -> origin/gh/H-Huang/184/orig 2025-06-01T20:58:02.6061967Z * [new branch] gh/H-Huang/185/base -> origin/gh/H-Huang/185/base 2025-06-01T20:58:02.6062518Z * [new branch] gh/H-Huang/185/head -> origin/gh/H-Huang/185/head 2025-06-01T20:58:02.6063003Z * [new branch] gh/H-Huang/185/orig -> origin/gh/H-Huang/185/orig 2025-06-01T20:58:02.6063514Z * [new branch] gh/IvanKobzarev/100/base -> origin/gh/IvanKobzarev/100/base 2025-06-01T20:58:02.6064059Z * [new branch] gh/IvanKobzarev/100/head -> origin/gh/IvanKobzarev/100/head 2025-06-01T20:58:02.6064602Z * [new branch] gh/IvanKobzarev/100/orig -> origin/gh/IvanKobzarev/100/orig 2025-06-01T20:58:02.6065137Z * [new branch] gh/IvanKobzarev/106/base -> origin/gh/IvanKobzarev/106/base 2025-06-01T20:58:02.6065673Z * [new branch] gh/IvanKobzarev/106/head -> origin/gh/IvanKobzarev/106/head 2025-06-01T20:58:02.6066251Z * [new branch] gh/IvanKobzarev/106/orig -> origin/gh/IvanKobzarev/106/orig 2025-06-01T20:58:02.6066826Z * [new branch] gh/IvanKobzarev/107/base -> origin/gh/IvanKobzarev/107/base 2025-06-01T20:58:02.6067368Z * [new branch] gh/IvanKobzarev/107/head -> origin/gh/IvanKobzarev/107/head 2025-06-01T20:58:02.6067893Z * [new branch] gh/IvanKobzarev/107/orig -> origin/gh/IvanKobzarev/107/orig 2025-06-01T20:58:02.6068433Z * [new branch] gh/IvanKobzarev/109/base -> origin/gh/IvanKobzarev/109/base 2025-06-01T20:58:02.6068963Z * [new branch] gh/IvanKobzarev/109/head -> origin/gh/IvanKobzarev/109/head 2025-06-01T20:58:02.6069490Z * [new branch] gh/IvanKobzarev/109/orig -> origin/gh/IvanKobzarev/109/orig 2025-06-01T20:58:02.6070033Z * [new branch] gh/IvanKobzarev/110/base -> origin/gh/IvanKobzarev/110/base 2025-06-01T20:58:02.6070552Z * [new branch] gh/IvanKobzarev/110/head -> origin/gh/IvanKobzarev/110/head 2025-06-01T20:58:02.6071097Z * [new branch] gh/IvanKobzarev/110/orig -> origin/gh/IvanKobzarev/110/orig 2025-06-01T20:58:02.6071626Z * [new branch] gh/IvanKobzarev/111/base -> origin/gh/IvanKobzarev/111/base 2025-06-01T20:58:02.6072206Z * [new branch] gh/IvanKobzarev/111/head -> origin/gh/IvanKobzarev/111/head 2025-06-01T20:58:02.6072797Z * [new branch] gh/IvanKobzarev/111/orig -> origin/gh/IvanKobzarev/111/orig 2025-06-01T20:58:02.6073328Z * [new branch] gh/IvanKobzarev/112/base -> origin/gh/IvanKobzarev/112/base 2025-06-01T20:58:02.6073888Z * [new branch] gh/IvanKobzarev/112/head -> origin/gh/IvanKobzarev/112/head 2025-06-01T20:58:02.6074426Z * [new branch] gh/IvanKobzarev/112/orig -> origin/gh/IvanKobzarev/112/orig 2025-06-01T20:58:02.6075039Z * [new branch] gh/IvanKobzarev/64/base -> origin/gh/IvanKobzarev/64/base 2025-06-01T20:58:02.6075585Z * [new branch] gh/IvanKobzarev/64/head -> origin/gh/IvanKobzarev/64/head 2025-06-01T20:58:02.6076127Z * [new branch] gh/IvanKobzarev/64/orig -> origin/gh/IvanKobzarev/64/orig 2025-06-01T20:58:02.6076669Z * [new branch] gh/NikhilAPatel/1/base -> origin/gh/NikhilAPatel/1/base 2025-06-01T20:58:02.6077207Z * [new branch] gh/NikhilAPatel/1/head -> origin/gh/NikhilAPatel/1/head 2025-06-01T20:58:02.6077732Z * [new branch] gh/NikhilAPatel/10/base -> origin/gh/NikhilAPatel/10/base 2025-06-01T20:58:02.6078301Z * [new branch] gh/NikhilAPatel/10/head -> origin/gh/NikhilAPatel/10/head 2025-06-01T20:58:02.6078861Z * [new branch] gh/NikhilAPatel/10/orig -> origin/gh/NikhilAPatel/10/orig 2025-06-01T20:58:02.6079400Z * [new branch] gh/NikhilAPatel/11/base -> origin/gh/NikhilAPatel/11/base 2025-06-01T20:58:02.6079921Z * [new branch] gh/NikhilAPatel/11/head -> origin/gh/NikhilAPatel/11/head 2025-06-01T20:58:02.6080635Z * [new branch] gh/NikhilAPatel/11/orig -> origin/gh/NikhilAPatel/11/orig 2025-06-01T20:58:02.6081174Z * [new branch] gh/NikhilAPatel/12/base -> origin/gh/NikhilAPatel/12/base 2025-06-01T20:58:02.6081695Z * [new branch] gh/NikhilAPatel/12/head -> origin/gh/NikhilAPatel/12/head 2025-06-01T20:58:02.6082234Z * [new branch] gh/NikhilAPatel/12/orig -> origin/gh/NikhilAPatel/12/orig 2025-06-01T20:58:02.6082753Z * [new branch] gh/NikhilAPatel/2/base -> origin/gh/NikhilAPatel/2/base 2025-06-01T20:58:02.6083286Z * [new branch] gh/NikhilAPatel/2/head -> origin/gh/NikhilAPatel/2/head 2025-06-01T20:58:02.6521695Z * [new branch] gh/NikhilAPatel/3/base -> origin/gh/NikhilAPatel/3/base 2025-06-01T20:58:02.6522243Z * [new branch] gh/NikhilAPatel/3/head -> origin/gh/NikhilAPatel/3/head 2025-06-01T20:58:02.6522777Z * [new branch] gh/NikhilAPatel/3/orig -> origin/gh/NikhilAPatel/3/orig 2025-06-01T20:58:02.6523298Z * [new branch] gh/NikhilAPatel/4/base -> origin/gh/NikhilAPatel/4/base 2025-06-01T20:58:02.6523821Z * [new branch] gh/NikhilAPatel/4/head -> origin/gh/NikhilAPatel/4/head 2025-06-01T20:58:02.6524356Z * [new branch] gh/NikhilAPatel/8/base -> origin/gh/NikhilAPatel/8/base 2025-06-01T20:58:02.6524875Z * [new branch] gh/NikhilAPatel/8/head -> origin/gh/NikhilAPatel/8/head 2025-06-01T20:58:02.6525399Z * [new branch] gh/NikhilAPatel/8/orig -> origin/gh/NikhilAPatel/8/orig 2025-06-01T20:58:02.6525911Z * [new branch] gh/NikhilAPatel/9/base -> origin/gh/NikhilAPatel/9/base 2025-06-01T20:58:02.6526439Z * [new branch] gh/NikhilAPatel/9/head -> origin/gh/NikhilAPatel/9/head 2025-06-01T20:58:02.6526960Z * [new branch] gh/NikhilAPatel/9/orig -> origin/gh/NikhilAPatel/9/orig 2025-06-01T20:58:02.6527485Z * [new branch] gh/PaulZhang12/1/base -> origin/gh/PaulZhang12/1/base 2025-06-01T20:58:02.6528003Z * [new branch] gh/PaulZhang12/1/head -> origin/gh/PaulZhang12/1/head 2025-06-01T20:58:02.6528507Z * [new branch] gh/PaulZhang12/1/orig -> origin/gh/PaulZhang12/1/orig 2025-06-01T20:58:02.6529032Z * [new branch] gh/PaulZhang12/12/base -> origin/gh/PaulZhang12/12/base 2025-06-01T20:58:02.6529652Z * [new branch] gh/PaulZhang12/12/head -> origin/gh/PaulZhang12/12/head 2025-06-01T20:58:02.6530180Z * [new branch] gh/PaulZhang12/13/base -> origin/gh/PaulZhang12/13/base 2025-06-01T20:58:02.6530699Z * [new branch] gh/PaulZhang12/13/head -> origin/gh/PaulZhang12/13/head 2025-06-01T20:58:02.6531208Z * [new branch] gh/PaulZhang12/13/orig -> origin/gh/PaulZhang12/13/orig 2025-06-01T20:58:02.6531725Z * [new branch] gh/PaulZhang12/14/base -> origin/gh/PaulZhang12/14/base 2025-06-01T20:58:02.6532238Z * [new branch] gh/PaulZhang12/14/head -> origin/gh/PaulZhang12/14/head 2025-06-01T20:58:02.6532736Z * [new branch] gh/PaulZhang12/14/orig -> origin/gh/PaulZhang12/14/orig 2025-06-01T20:58:02.6533243Z * [new branch] gh/PaulZhang12/15/base -> origin/gh/PaulZhang12/15/base 2025-06-01T20:58:02.6533740Z * [new branch] gh/PaulZhang12/15/head -> origin/gh/PaulZhang12/15/head 2025-06-01T20:58:02.6534244Z * [new branch] gh/PaulZhang12/15/orig -> origin/gh/PaulZhang12/15/orig 2025-06-01T20:58:02.6534749Z * [new branch] gh/PaulZhang12/16/base -> origin/gh/PaulZhang12/16/base 2025-06-01T20:58:02.6535248Z * [new branch] gh/PaulZhang12/16/head -> origin/gh/PaulZhang12/16/head 2025-06-01T20:58:02.6535753Z * [new branch] gh/PaulZhang12/16/orig -> origin/gh/PaulZhang12/16/orig 2025-06-01T20:58:02.6536930Z * [new branch] gh/PaulZhang12/17/base -> origin/gh/PaulZhang12/17/base 2025-06-01T20:58:02.6537844Z * [new branch] gh/PaulZhang12/17/head -> origin/gh/PaulZhang12/17/head 2025-06-01T20:58:02.6538371Z * [new branch] gh/PaulZhang12/4/base -> origin/gh/PaulZhang12/4/base 2025-06-01T20:58:02.6538867Z * [new branch] gh/PaulZhang12/4/head -> origin/gh/PaulZhang12/4/head 2025-06-01T20:58:02.6539376Z * [new branch] gh/PaulZhang12/4/orig -> origin/gh/PaulZhang12/4/orig 2025-06-01T20:58:02.6539935Z * [new branch] gh/PaulZhang12/9/base -> origin/gh/PaulZhang12/9/base 2025-06-01T20:58:02.6540493Z * [new branch] gh/PaulZhang12/9/head -> origin/gh/PaulZhang12/9/head 2025-06-01T20:58:02.6540990Z * [new branch] gh/PaulZhang12/9/orig -> origin/gh/PaulZhang12/9/orig 2025-06-01T20:58:02.6541510Z * [new branch] gh/SamGinzburg/11/base -> origin/gh/SamGinzburg/11/base 2025-06-01T20:58:02.6542023Z * [new branch] gh/SamGinzburg/11/head -> origin/gh/SamGinzburg/11/head 2025-06-01T20:58:02.6542543Z * [new branch] gh/Sidharth123-cpu/1/base -> origin/gh/Sidharth123-cpu/1/base 2025-06-01T20:58:02.6543086Z * [new branch] gh/Sidharth123-cpu/1/head -> origin/gh/Sidharth123-cpu/1/head 2025-06-01T20:58:02.6543613Z * [new branch] gh/Sidharth123-cpu/1/orig -> origin/gh/Sidharth123-cpu/1/orig 2025-06-01T20:58:02.6544154Z * [new branch] gh/Sidharth123-cpu/10/base -> origin/gh/Sidharth123-cpu/10/base 2025-06-01T20:58:02.6544702Z * [new branch] gh/Sidharth123-cpu/10/head -> origin/gh/Sidharth123-cpu/10/head 2025-06-01T20:58:02.6545233Z * [new branch] gh/Sidharth123-cpu/10/orig -> origin/gh/Sidharth123-cpu/10/orig 2025-06-01T20:58:02.6545775Z * [new branch] gh/Sidharth123-cpu/11/base -> origin/gh/Sidharth123-cpu/11/base 2025-06-01T20:58:02.6946737Z * [new branch] gh/Sidharth123-cpu/11/head -> origin/gh/Sidharth123-cpu/11/head 2025-06-01T20:58:02.6947294Z * [new branch] gh/Sidharth123-cpu/11/orig -> origin/gh/Sidharth123-cpu/11/orig 2025-06-01T20:58:02.6947838Z * [new branch] gh/Sidharth123-cpu/12/base -> origin/gh/Sidharth123-cpu/12/base 2025-06-01T20:58:02.6948374Z * [new branch] gh/Sidharth123-cpu/12/head -> origin/gh/Sidharth123-cpu/12/head 2025-06-01T20:58:02.6948916Z * [new branch] gh/Sidharth123-cpu/12/orig -> origin/gh/Sidharth123-cpu/12/orig 2025-06-01T20:58:02.6949459Z * [new branch] gh/Sidharth123-cpu/13/base -> origin/gh/Sidharth123-cpu/13/base 2025-06-01T20:58:02.6949991Z * [new branch] gh/Sidharth123-cpu/13/head -> origin/gh/Sidharth123-cpu/13/head 2025-06-01T20:58:02.6950540Z * [new branch] gh/Sidharth123-cpu/14/base -> origin/gh/Sidharth123-cpu/14/base 2025-06-01T20:58:02.6951086Z * [new branch] gh/Sidharth123-cpu/14/head -> origin/gh/Sidharth123-cpu/14/head 2025-06-01T20:58:02.6951636Z * [new branch] gh/Sidharth123-cpu/14/orig -> origin/gh/Sidharth123-cpu/14/orig 2025-06-01T20:58:02.6952175Z * [new branch] gh/Sidharth123-cpu/15/base -> origin/gh/Sidharth123-cpu/15/base 2025-06-01T20:58:02.6979132Z * [new branch] gh/Sidharth123-cpu/15/head -> origin/gh/Sidharth123-cpu/15/head 2025-06-01T20:58:02.6979880Z * [new branch] gh/Sidharth123-cpu/15/orig -> origin/gh/Sidharth123-cpu/15/orig 2025-06-01T20:58:02.6980443Z * [new branch] gh/Sidharth123-cpu/16/base -> origin/gh/Sidharth123-cpu/16/base 2025-06-01T20:58:02.6980991Z * [new branch] gh/Sidharth123-cpu/16/head -> origin/gh/Sidharth123-cpu/16/head 2025-06-01T20:58:02.6981537Z * [new branch] gh/Sidharth123-cpu/16/orig -> origin/gh/Sidharth123-cpu/16/orig 2025-06-01T20:58:02.6982243Z * [new branch] gh/Sidharth123-cpu/17/base -> origin/gh/Sidharth123-cpu/17/base 2025-06-01T20:58:02.6982882Z * [new branch] gh/Sidharth123-cpu/17/head -> origin/gh/Sidharth123-cpu/17/head 2025-06-01T20:58:02.6983432Z * [new branch] gh/Sidharth123-cpu/17/orig -> origin/gh/Sidharth123-cpu/17/orig 2025-06-01T20:58:02.6983976Z * [new branch] gh/Sidharth123-cpu/18/base -> origin/gh/Sidharth123-cpu/18/base 2025-06-01T20:58:02.6984525Z * [new branch] gh/Sidharth123-cpu/18/head -> origin/gh/Sidharth123-cpu/18/head 2025-06-01T20:58:02.6985062Z * [new branch] gh/Sidharth123-cpu/18/orig -> origin/gh/Sidharth123-cpu/18/orig 2025-06-01T20:58:02.6985611Z * [new branch] gh/Sidharth123-cpu/19/base -> origin/gh/Sidharth123-cpu/19/base 2025-06-01T20:58:02.6986162Z * [new branch] gh/Sidharth123-cpu/19/head -> origin/gh/Sidharth123-cpu/19/head 2025-06-01T20:58:02.6986704Z * [new branch] gh/Sidharth123-cpu/19/orig -> origin/gh/Sidharth123-cpu/19/orig 2025-06-01T20:58:02.6987349Z * [new branch] gh/Sidharth123-cpu/2/base -> origin/gh/Sidharth123-cpu/2/base 2025-06-01T20:58:02.6987887Z * [new branch] gh/Sidharth123-cpu/2/head -> origin/gh/Sidharth123-cpu/2/head 2025-06-01T20:58:02.6988426Z * [new branch] gh/Sidharth123-cpu/2/orig -> origin/gh/Sidharth123-cpu/2/orig 2025-06-01T20:58:02.6988979Z * [new branch] gh/Sidharth123-cpu/3/base -> origin/gh/Sidharth123-cpu/3/base 2025-06-01T20:58:02.6989504Z * [new branch] gh/Sidharth123-cpu/3/head -> origin/gh/Sidharth123-cpu/3/head 2025-06-01T20:58:02.6990039Z * [new branch] gh/Sidharth123-cpu/3/orig -> origin/gh/Sidharth123-cpu/3/orig 2025-06-01T20:58:02.6990569Z * [new branch] gh/Sidharth123-cpu/4/base -> origin/gh/Sidharth123-cpu/4/base 2025-06-01T20:58:02.6991128Z * [new branch] gh/Sidharth123-cpu/4/head -> origin/gh/Sidharth123-cpu/4/head 2025-06-01T20:58:02.6991674Z * [new branch] gh/Sidharth123-cpu/4/orig -> origin/gh/Sidharth123-cpu/4/orig 2025-06-01T20:58:02.6992205Z * [new branch] gh/Sidharth123-cpu/5/base -> origin/gh/Sidharth123-cpu/5/base 2025-06-01T20:58:02.6992747Z * [new branch] gh/Sidharth123-cpu/5/head -> origin/gh/Sidharth123-cpu/5/head 2025-06-01T20:58:02.6993271Z * [new branch] gh/Sidharth123-cpu/5/orig -> origin/gh/Sidharth123-cpu/5/orig 2025-06-01T20:58:02.6993807Z * [new branch] gh/Sidharth123-cpu/6/base -> origin/gh/Sidharth123-cpu/6/base 2025-06-01T20:58:02.6994343Z * [new branch] gh/Sidharth123-cpu/6/head -> origin/gh/Sidharth123-cpu/6/head 2025-06-01T20:58:02.6994970Z * [new branch] gh/Sidharth123-cpu/6/orig -> origin/gh/Sidharth123-cpu/6/orig 2025-06-01T20:58:02.6995509Z * [new branch] gh/Sidharth123-cpu/7/base -> origin/gh/Sidharth123-cpu/7/base 2025-06-01T20:58:02.6996048Z * [new branch] gh/Sidharth123-cpu/7/head -> origin/gh/Sidharth123-cpu/7/head 2025-06-01T20:58:02.6996581Z * [new branch] gh/Sidharth123-cpu/7/orig -> origin/gh/Sidharth123-cpu/7/orig 2025-06-01T20:58:02.6997104Z * [new branch] gh/Sidharth123-cpu/8/base -> origin/gh/Sidharth123-cpu/8/base 2025-06-01T20:58:02.7380205Z * [new branch] gh/Sidharth123-cpu/8/head -> origin/gh/Sidharth123-cpu/8/head 2025-06-01T20:58:02.7380783Z * [new branch] gh/Sidharth123-cpu/8/orig -> origin/gh/Sidharth123-cpu/8/orig 2025-06-01T20:58:02.7381315Z * [new branch] gh/Sidharth123-cpu/9/base -> origin/gh/Sidharth123-cpu/9/base 2025-06-01T20:58:02.7381846Z * [new branch] gh/Sidharth123-cpu/9/head -> origin/gh/Sidharth123-cpu/9/head 2025-06-01T20:58:02.7382371Z * [new branch] gh/Sidharth123-cpu/9/orig -> origin/gh/Sidharth123-cpu/9/orig 2025-06-01T20:58:02.7382879Z * [new branch] gh/StrongerXi/1/base -> origin/gh/StrongerXi/1/base 2025-06-01T20:58:02.7383603Z * [new branch] gh/StrongerXi/1/head -> origin/gh/StrongerXi/1/head 2025-06-01T20:58:02.7384098Z * [new branch] gh/StrongerXi/103/base -> origin/gh/StrongerXi/103/base 2025-06-01T20:58:02.7384605Z * [new branch] gh/StrongerXi/103/head -> origin/gh/StrongerXi/103/head 2025-06-01T20:58:02.7385116Z * [new branch] gh/StrongerXi/103/orig -> origin/gh/StrongerXi/103/orig 2025-06-01T20:58:02.7385607Z * [new branch] gh/StrongerXi/104/base -> origin/gh/StrongerXi/104/base 2025-06-01T20:58:02.7386102Z * [new branch] gh/StrongerXi/104/head -> origin/gh/StrongerXi/104/head 2025-06-01T20:58:02.7386600Z * [new branch] gh/StrongerXi/104/orig -> origin/gh/StrongerXi/104/orig 2025-06-01T20:58:02.7387098Z * [new branch] gh/StrongerXi/105/base -> origin/gh/StrongerXi/105/base 2025-06-01T20:58:02.7387593Z * [new branch] gh/StrongerXi/105/head -> origin/gh/StrongerXi/105/head 2025-06-01T20:58:02.7388096Z * [new branch] gh/StrongerXi/105/orig -> origin/gh/StrongerXi/105/orig 2025-06-01T20:58:02.7388593Z * [new branch] gh/StrongerXi/106/base -> origin/gh/StrongerXi/106/base 2025-06-01T20:58:02.7389092Z * [new branch] gh/StrongerXi/106/head -> origin/gh/StrongerXi/106/head 2025-06-01T20:58:02.7389602Z * [new branch] gh/StrongerXi/106/orig -> origin/gh/StrongerXi/106/orig 2025-06-01T20:58:02.7390093Z * [new branch] gh/StrongerXi/107/base -> origin/gh/StrongerXi/107/base 2025-06-01T20:58:02.7390596Z * [new branch] gh/StrongerXi/107/head -> origin/gh/StrongerXi/107/head 2025-06-01T20:58:02.7391095Z * [new branch] gh/StrongerXi/107/orig -> origin/gh/StrongerXi/107/orig 2025-06-01T20:58:02.7391588Z * [new branch] gh/StrongerXi/108/base -> origin/gh/StrongerXi/108/base 2025-06-01T20:58:02.7392101Z * [new branch] gh/StrongerXi/108/head -> origin/gh/StrongerXi/108/head 2025-06-01T20:58:02.7392601Z * [new branch] gh/StrongerXi/108/orig -> origin/gh/StrongerXi/108/orig 2025-06-01T20:58:02.7393100Z * [new branch] gh/StrongerXi/109/base -> origin/gh/StrongerXi/109/base 2025-06-01T20:58:02.7393602Z * [new branch] gh/StrongerXi/109/head -> origin/gh/StrongerXi/109/head 2025-06-01T20:58:02.7394098Z * [new branch] gh/StrongerXi/109/orig -> origin/gh/StrongerXi/109/orig 2025-06-01T20:58:02.7394662Z * [new branch] gh/StrongerXi/110/base -> origin/gh/StrongerXi/110/base 2025-06-01T20:58:02.7395160Z * [new branch] gh/StrongerXi/110/head -> origin/gh/StrongerXi/110/head 2025-06-01T20:58:02.7395678Z * [new branch] gh/StrongerXi/110/orig -> origin/gh/StrongerXi/110/orig 2025-06-01T20:58:02.7396196Z * [new branch] gh/StrongerXi/111/base -> origin/gh/StrongerXi/111/base 2025-06-01T20:58:02.7396700Z * [new branch] gh/StrongerXi/111/head -> origin/gh/StrongerXi/111/head 2025-06-01T20:58:02.7397204Z * [new branch] gh/StrongerXi/111/orig -> origin/gh/StrongerXi/111/orig 2025-06-01T20:58:02.7397700Z * [new branch] gh/StrongerXi/112/base -> origin/gh/StrongerXi/112/base 2025-06-01T20:58:02.7398209Z * [new branch] gh/StrongerXi/112/head -> origin/gh/StrongerXi/112/head 2025-06-01T20:58:02.7398716Z * [new branch] gh/StrongerXi/112/orig -> origin/gh/StrongerXi/112/orig 2025-06-01T20:58:02.7399215Z * [new branch] gh/StrongerXi/113/base -> origin/gh/StrongerXi/113/base 2025-06-01T20:58:02.7399722Z * [new branch] gh/StrongerXi/113/head -> origin/gh/StrongerXi/113/head 2025-06-01T20:58:02.7400215Z * [new branch] gh/StrongerXi/113/orig -> origin/gh/StrongerXi/113/orig 2025-06-01T20:58:02.7400891Z * [new branch] gh/StrongerXi/114/base -> origin/gh/StrongerXi/114/base 2025-06-01T20:58:02.7401390Z * [new branch] gh/StrongerXi/114/head -> origin/gh/StrongerXi/114/head 2025-06-01T20:58:02.7401907Z * [new branch] gh/StrongerXi/114/orig -> origin/gh/StrongerXi/114/orig 2025-06-01T20:58:02.7402415Z * [new branch] gh/StrongerXi/115/base -> origin/gh/StrongerXi/115/base 2025-06-01T20:58:02.7402914Z * [new branch] gh/StrongerXi/115/head -> origin/gh/StrongerXi/115/head 2025-06-01T20:58:02.7807690Z * [new branch] gh/StrongerXi/115/orig -> origin/gh/StrongerXi/115/orig 2025-06-01T20:58:02.7808251Z * [new branch] gh/StrongerXi/116/base -> origin/gh/StrongerXi/116/base 2025-06-01T20:58:02.7808758Z * [new branch] gh/StrongerXi/116/head -> origin/gh/StrongerXi/116/head 2025-06-01T20:58:02.7809287Z * [new branch] gh/StrongerXi/116/orig -> origin/gh/StrongerXi/116/orig 2025-06-01T20:58:02.7809793Z * [new branch] gh/StrongerXi/117/base -> origin/gh/StrongerXi/117/base 2025-06-01T20:58:02.7810296Z * [new branch] gh/StrongerXi/117/head -> origin/gh/StrongerXi/117/head 2025-06-01T20:58:02.7810791Z * [new branch] gh/StrongerXi/117/orig -> origin/gh/StrongerXi/117/orig 2025-06-01T20:58:02.7811294Z * [new branch] gh/StrongerXi/118/base -> origin/gh/StrongerXi/118/base 2025-06-01T20:58:02.7811817Z * [new branch] gh/StrongerXi/118/head -> origin/gh/StrongerXi/118/head 2025-06-01T20:58:02.7812310Z * [new branch] gh/StrongerXi/118/orig -> origin/gh/StrongerXi/118/orig 2025-06-01T20:58:02.7812855Z * [new branch] gh/StrongerXi/119/base -> origin/gh/StrongerXi/119/base 2025-06-01T20:58:02.7813405Z * [new branch] gh/StrongerXi/119/head -> origin/gh/StrongerXi/119/head 2025-06-01T20:58:02.7813911Z * [new branch] gh/StrongerXi/119/orig -> origin/gh/StrongerXi/119/orig 2025-06-01T20:58:02.7814413Z * [new branch] gh/StrongerXi/120/base -> origin/gh/StrongerXi/120/base 2025-06-01T20:58:02.7814912Z * [new branch] gh/StrongerXi/120/head -> origin/gh/StrongerXi/120/head 2025-06-01T20:58:02.7815420Z * [new branch] gh/StrongerXi/120/orig -> origin/gh/StrongerXi/120/orig 2025-06-01T20:58:02.7815921Z * [new branch] gh/StrongerXi/121/base -> origin/gh/StrongerXi/121/base 2025-06-01T20:58:02.7816418Z * [new branch] gh/StrongerXi/121/head -> origin/gh/StrongerXi/121/head 2025-06-01T20:58:02.7816915Z * [new branch] gh/StrongerXi/121/orig -> origin/gh/StrongerXi/121/orig 2025-06-01T20:58:02.7817413Z * [new branch] gh/StrongerXi/122/base -> origin/gh/StrongerXi/122/base 2025-06-01T20:58:02.7817919Z * [new branch] gh/StrongerXi/122/head -> origin/gh/StrongerXi/122/head 2025-06-01T20:58:02.7818422Z * [new branch] gh/StrongerXi/122/orig -> origin/gh/StrongerXi/122/orig 2025-06-01T20:58:02.7819001Z * [new branch] gh/StrongerXi/71/base -> origin/gh/StrongerXi/71/base 2025-06-01T20:58:02.7819508Z * [new branch] gh/StrongerXi/71/head -> origin/gh/StrongerXi/71/head 2025-06-01T20:58:02.7820004Z * [new branch] gh/StrongerXi/72/base -> origin/gh/StrongerXi/72/base 2025-06-01T20:58:02.7820493Z * [new branch] gh/StrongerXi/72/head -> origin/gh/StrongerXi/72/head 2025-06-01T20:58:02.7820978Z * [new branch] gh/Xia-Weiwen/34/base -> origin/gh/Xia-Weiwen/34/base 2025-06-01T20:58:02.7821468Z * [new branch] gh/Xia-Weiwen/34/head -> origin/gh/Xia-Weiwen/34/head 2025-06-01T20:58:02.7821948Z * [new branch] gh/Xia-Weiwen/34/orig -> origin/gh/Xia-Weiwen/34/orig 2025-06-01T20:58:02.7822566Z * [new branch] gh/Xia-Weiwen/37/base -> origin/gh/Xia-Weiwen/37/base 2025-06-01T20:58:02.7823136Z * [new branch] gh/Xia-Weiwen/37/head -> origin/gh/Xia-Weiwen/37/head 2025-06-01T20:58:02.7823619Z * [new branch] gh/Xia-Weiwen/37/orig -> origin/gh/Xia-Weiwen/37/orig 2025-06-01T20:58:02.7824103Z * [new branch] gh/Xia-Weiwen/38/base -> origin/gh/Xia-Weiwen/38/base 2025-06-01T20:58:02.7824671Z * [new branch] gh/Xia-Weiwen/38/head -> origin/gh/Xia-Weiwen/38/head 2025-06-01T20:58:02.7825148Z * [new branch] gh/Xia-Weiwen/38/orig -> origin/gh/Xia-Weiwen/38/orig 2025-06-01T20:58:02.7825637Z * [new branch] gh/Xia-Weiwen/39/base -> origin/gh/Xia-Weiwen/39/base 2025-06-01T20:58:02.7826109Z * [new branch] gh/Xia-Weiwen/39/head -> origin/gh/Xia-Weiwen/39/head 2025-06-01T20:58:02.7826598Z * [new branch] gh/Xia-Weiwen/39/orig -> origin/gh/Xia-Weiwen/39/orig 2025-06-01T20:58:02.7827090Z * [new branch] gh/XilunWu/110/base -> origin/gh/XilunWu/110/base 2025-06-01T20:58:02.7827564Z * [new branch] gh/XilunWu/110/head -> origin/gh/XilunWu/110/head 2025-06-01T20:58:02.7828048Z * [new branch] gh/XilunWu/110/orig -> origin/gh/XilunWu/110/orig 2025-06-01T20:58:02.7828514Z * [new branch] gh/XilunWu/115/base -> origin/gh/XilunWu/115/base 2025-06-01T20:58:02.7828990Z * [new branch] gh/XilunWu/115/head -> origin/gh/XilunWu/115/head 2025-06-01T20:58:02.7829452Z * [new branch] gh/XilunWu/115/orig -> origin/gh/XilunWu/115/orig 2025-06-01T20:58:02.7829969Z * [new branch] gh/XilunWu/116/base -> origin/gh/XilunWu/116/base 2025-06-01T20:58:02.7830484Z * [new branch] gh/XilunWu/116/head -> origin/gh/XilunWu/116/head 2025-06-01T20:58:02.8259666Z * [new branch] gh/XilunWu/116/orig -> origin/gh/XilunWu/116/orig 2025-06-01T20:58:02.8260198Z * [new branch] gh/XilunWu/117/base -> origin/gh/XilunWu/117/base 2025-06-01T20:58:02.8260670Z * [new branch] gh/XilunWu/117/head -> origin/gh/XilunWu/117/head 2025-06-01T20:58:02.8261143Z * [new branch] gh/XilunWu/117/orig -> origin/gh/XilunWu/117/orig 2025-06-01T20:58:02.8261604Z * [new branch] gh/XilunWu/118/base -> origin/gh/XilunWu/118/base 2025-06-01T20:58:02.8262078Z * [new branch] gh/XilunWu/118/head -> origin/gh/XilunWu/118/head 2025-06-01T20:58:02.8262546Z * [new branch] gh/XilunWu/118/orig -> origin/gh/XilunWu/118/orig 2025-06-01T20:58:02.8263013Z * [new branch] gh/XilunWu/119/base -> origin/gh/XilunWu/119/base 2025-06-01T20:58:02.8263529Z * [new branch] gh/XilunWu/119/head -> origin/gh/XilunWu/119/head 2025-06-01T20:58:02.8264052Z * [new branch] gh/XilunWu/119/orig -> origin/gh/XilunWu/119/orig 2025-06-01T20:58:02.8264529Z * [new branch] gh/XilunWu/122/base -> origin/gh/XilunWu/122/base 2025-06-01T20:58:02.8265001Z * [new branch] gh/XilunWu/122/head -> origin/gh/XilunWu/122/head 2025-06-01T20:58:02.8265467Z * [new branch] gh/XilunWu/122/orig -> origin/gh/XilunWu/122/orig 2025-06-01T20:58:02.8265938Z * [new branch] gh/XilunWu/125/base -> origin/gh/XilunWu/125/base 2025-06-01T20:58:02.8266404Z * [new branch] gh/XilunWu/125/head -> origin/gh/XilunWu/125/head 2025-06-01T20:58:02.8266878Z * [new branch] gh/XilunWu/125/orig -> origin/gh/XilunWu/125/orig 2025-06-01T20:58:02.8267340Z * [new branch] gh/XilunWu/126/base -> origin/gh/XilunWu/126/base 2025-06-01T20:58:02.8267811Z * [new branch] gh/XilunWu/126/head -> origin/gh/XilunWu/126/head 2025-06-01T20:58:02.8268501Z * [new branch] gh/XilunWu/126/orig -> origin/gh/XilunWu/126/orig 2025-06-01T20:58:02.8268970Z * [new branch] gh/XilunWu/127/base -> origin/gh/XilunWu/127/base 2025-06-01T20:58:02.8269490Z * [new branch] gh/XilunWu/127/head -> origin/gh/XilunWu/127/head 2025-06-01T20:58:02.8270007Z * [new branch] gh/XilunWu/127/orig -> origin/gh/XilunWu/127/orig 2025-06-01T20:58:02.8270483Z * [new branch] gh/XilunWu/129/base -> origin/gh/XilunWu/129/base 2025-06-01T20:58:02.8270958Z * [new branch] gh/XilunWu/129/head -> origin/gh/XilunWu/129/head 2025-06-01T20:58:02.8271425Z * [new branch] gh/XilunWu/129/orig -> origin/gh/XilunWu/129/orig 2025-06-01T20:58:02.8271903Z * [new branch] gh/XilunWu/130/base -> origin/gh/XilunWu/130/base 2025-06-01T20:58:02.8272381Z * [new branch] gh/XilunWu/130/head -> origin/gh/XilunWu/130/head 2025-06-01T20:58:02.8272848Z * [new branch] gh/XilunWu/130/orig -> origin/gh/XilunWu/130/orig 2025-06-01T20:58:02.8273326Z * [new branch] gh/XilunWu/131/base -> origin/gh/XilunWu/131/base 2025-06-01T20:58:02.8273790Z * [new branch] gh/XilunWu/131/head -> origin/gh/XilunWu/131/head 2025-06-01T20:58:02.8274271Z * [new branch] gh/XilunWu/131/orig -> origin/gh/XilunWu/131/orig 2025-06-01T20:58:02.8274819Z * [new branch] gh/XilunWu/133/base -> origin/gh/XilunWu/133/base 2025-06-01T20:58:02.8275297Z * [new branch] gh/XilunWu/133/head -> origin/gh/XilunWu/133/head 2025-06-01T20:58:02.8275820Z * [new branch] gh/XilunWu/133/orig -> origin/gh/XilunWu/133/orig 2025-06-01T20:58:02.8276329Z * [new branch] gh/XilunWu/134/base -> origin/gh/XilunWu/134/base 2025-06-01T20:58:02.8276812Z * [new branch] gh/XilunWu/134/head -> origin/gh/XilunWu/134/head 2025-06-01T20:58:02.8277280Z * [new branch] gh/XilunWu/134/orig -> origin/gh/XilunWu/134/orig 2025-06-01T20:58:02.8277755Z * [new branch] gh/XilunWu/135/base -> origin/gh/XilunWu/135/base 2025-06-01T20:58:02.8278234Z * [new branch] gh/XilunWu/135/head -> origin/gh/XilunWu/135/head 2025-06-01T20:58:02.8278696Z * [new branch] gh/XilunWu/135/orig -> origin/gh/XilunWu/135/orig 2025-06-01T20:58:02.8279183Z * [new branch] gh/XilunWu/136/base -> origin/gh/XilunWu/136/base 2025-06-01T20:58:02.8279651Z * [new branch] gh/XilunWu/136/head -> origin/gh/XilunWu/136/head 2025-06-01T20:58:02.8280129Z * [new branch] gh/XilunWu/136/orig -> origin/gh/XilunWu/136/orig 2025-06-01T20:58:02.8280607Z * [new branch] gh/XilunWu/137/base -> origin/gh/XilunWu/137/base 2025-06-01T20:58:02.8281084Z * [new branch] gh/XilunWu/137/head -> origin/gh/XilunWu/137/head 2025-06-01T20:58:02.8281606Z * [new branch] gh/XilunWu/137/orig -> origin/gh/XilunWu/137/orig 2025-06-01T20:58:02.8282118Z * [new branch] gh/XilunWu/138/base -> origin/gh/XilunWu/138/base 2025-06-01T20:58:02.8714945Z * [new branch] gh/XilunWu/138/head -> origin/gh/XilunWu/138/head 2025-06-01T20:58:02.8715476Z * [new branch] gh/XilunWu/138/orig -> origin/gh/XilunWu/138/orig 2025-06-01T20:58:02.8715961Z * [new branch] gh/XilunWu/139/base -> origin/gh/XilunWu/139/base 2025-06-01T20:58:02.8716451Z * [new branch] gh/XilunWu/139/head -> origin/gh/XilunWu/139/head 2025-06-01T20:58:02.8716917Z * [new branch] gh/XilunWu/139/orig -> origin/gh/XilunWu/139/orig 2025-06-01T20:58:02.8717401Z * [new branch] gh/XilunWu/140/base -> origin/gh/XilunWu/140/base 2025-06-01T20:58:02.8718132Z * [new branch] gh/XilunWu/140/head -> origin/gh/XilunWu/140/head 2025-06-01T20:58:02.8718650Z * [new branch] gh/XilunWu/140/orig -> origin/gh/XilunWu/140/orig 2025-06-01T20:58:02.8719127Z * [new branch] gh/XilunWu/141/base -> origin/gh/XilunWu/141/base 2025-06-01T20:58:02.8719620Z * [new branch] gh/XilunWu/141/head -> origin/gh/XilunWu/141/head 2025-06-01T20:58:02.8720097Z * [new branch] gh/XilunWu/141/orig -> origin/gh/XilunWu/141/orig 2025-06-01T20:58:02.8720581Z * [new branch] gh/XilunWu/142/base -> origin/gh/XilunWu/142/base 2025-06-01T20:58:02.8721053Z * [new branch] gh/XilunWu/142/head -> origin/gh/XilunWu/142/head 2025-06-01T20:58:02.8721523Z * [new branch] gh/XilunWu/142/orig -> origin/gh/XilunWu/142/orig 2025-06-01T20:58:02.8721994Z * [new branch] gh/XilunWu/143/base -> origin/gh/XilunWu/143/base 2025-06-01T20:58:02.8722473Z * [new branch] gh/XilunWu/143/head -> origin/gh/XilunWu/143/head 2025-06-01T20:58:02.8722939Z * [new branch] gh/XilunWu/143/orig -> origin/gh/XilunWu/143/orig 2025-06-01T20:58:02.8723415Z * [new branch] gh/XilunWu/144/base -> origin/gh/XilunWu/144/base 2025-06-01T20:58:02.8723926Z * [new branch] gh/XilunWu/144/head -> origin/gh/XilunWu/144/head 2025-06-01T20:58:02.8724444Z * [new branch] gh/XilunWu/144/orig -> origin/gh/XilunWu/144/orig 2025-06-01T20:58:02.8724927Z * [new branch] gh/XilunWu/145/base -> origin/gh/XilunWu/145/base 2025-06-01T20:58:02.8725393Z * [new branch] gh/XilunWu/145/head -> origin/gh/XilunWu/145/head 2025-06-01T20:58:02.8725866Z * [new branch] gh/XilunWu/145/orig -> origin/gh/XilunWu/145/orig 2025-06-01T20:58:02.8726353Z * [new branch] gh/XuehaiPan/109/base -> origin/gh/XuehaiPan/109/base 2025-06-01T20:58:02.8726863Z * [new branch] gh/XuehaiPan/109/head -> origin/gh/XuehaiPan/109/head 2025-06-01T20:58:02.8727365Z * [new branch] gh/XuehaiPan/109/orig -> origin/gh/XuehaiPan/109/orig 2025-06-01T20:58:02.8727852Z * [new branch] gh/XuehaiPan/14/base -> origin/gh/XuehaiPan/14/base 2025-06-01T20:58:02.8728343Z * [new branch] gh/XuehaiPan/14/head -> origin/gh/XuehaiPan/14/head 2025-06-01T20:58:02.8728822Z * [new branch] gh/XuehaiPan/14/orig -> origin/gh/XuehaiPan/14/orig 2025-06-01T20:58:02.8729317Z * [new branch] gh/XuehaiPan/179/base -> origin/gh/XuehaiPan/179/base 2025-06-01T20:58:02.8729849Z * [new branch] gh/XuehaiPan/179/head -> origin/gh/XuehaiPan/179/head 2025-06-01T20:58:02.8730382Z * [new branch] gh/XuehaiPan/179/orig -> origin/gh/XuehaiPan/179/orig 2025-06-01T20:58:02.8730889Z * [new branch] gh/XuehaiPan/182/base -> origin/gh/XuehaiPan/182/base 2025-06-01T20:58:02.8731380Z * [new branch] gh/XuehaiPan/182/head -> origin/gh/XuehaiPan/182/head 2025-06-01T20:58:02.8731871Z * [new branch] gh/XuehaiPan/182/orig -> origin/gh/XuehaiPan/182/orig 2025-06-01T20:58:02.8732368Z * [new branch] gh/XuehaiPan/183/base -> origin/gh/XuehaiPan/183/base 2025-06-01T20:58:02.8732852Z * [new branch] gh/XuehaiPan/183/head -> origin/gh/XuehaiPan/183/head 2025-06-01T20:58:02.8733345Z * [new branch] gh/XuehaiPan/183/orig -> origin/gh/XuehaiPan/183/orig 2025-06-01T20:58:02.8733832Z * [new branch] gh/XuehaiPan/185/base -> origin/gh/XuehaiPan/185/base 2025-06-01T20:58:02.8734324Z * [new branch] gh/XuehaiPan/185/head -> origin/gh/XuehaiPan/185/head 2025-06-01T20:58:02.8734925Z * [new branch] gh/XuehaiPan/185/orig -> origin/gh/XuehaiPan/185/orig 2025-06-01T20:58:02.8735493Z * [new branch] gh/XuehaiPan/189/base -> origin/gh/XuehaiPan/189/base 2025-06-01T20:58:02.8736039Z * [new branch] gh/XuehaiPan/189/head -> origin/gh/XuehaiPan/189/head 2025-06-01T20:58:02.8736574Z * [new branch] gh/XuehaiPan/189/orig -> origin/gh/XuehaiPan/189/orig 2025-06-01T20:58:02.8737066Z * [new branch] gh/XuehaiPan/217/base -> origin/gh/XuehaiPan/217/base 2025-06-01T20:58:02.8737554Z * [new branch] gh/XuehaiPan/217/head -> origin/gh/XuehaiPan/217/head 2025-06-01T20:58:02.8738054Z * [new branch] gh/XuehaiPan/217/orig -> origin/gh/XuehaiPan/217/orig 2025-06-01T20:58:02.9139011Z * [new branch] gh/XuehaiPan/218/base -> origin/gh/XuehaiPan/218/base 2025-06-01T20:58:02.9139554Z * [new branch] gh/XuehaiPan/218/head -> origin/gh/XuehaiPan/218/head 2025-06-01T20:58:02.9140064Z * [new branch] gh/XuehaiPan/218/orig -> origin/gh/XuehaiPan/218/orig 2025-06-01T20:58:02.9140565Z * [new branch] gh/XuehaiPan/219/base -> origin/gh/XuehaiPan/219/base 2025-06-01T20:58:02.9141053Z * [new branch] gh/XuehaiPan/219/head -> origin/gh/XuehaiPan/219/head 2025-06-01T20:58:02.9141550Z * [new branch] gh/XuehaiPan/219/orig -> origin/gh/XuehaiPan/219/orig 2025-06-01T20:58:02.9142038Z * [new branch] gh/XuehaiPan/223/base -> origin/gh/XuehaiPan/223/base 2025-06-01T20:58:02.9142526Z * [new branch] gh/XuehaiPan/223/head -> origin/gh/XuehaiPan/223/head 2025-06-01T20:58:02.9143024Z * [new branch] gh/XuehaiPan/223/orig -> origin/gh/XuehaiPan/223/orig 2025-06-01T20:58:02.9143513Z * [new branch] gh/XuehaiPan/226/base -> origin/gh/XuehaiPan/226/base 2025-06-01T20:58:02.9144005Z * [new branch] gh/XuehaiPan/226/head -> origin/gh/XuehaiPan/226/head 2025-06-01T20:58:02.9144501Z * [new branch] gh/XuehaiPan/226/orig -> origin/gh/XuehaiPan/226/orig 2025-06-01T20:58:02.9145004Z * [new branch] gh/XuehaiPan/227/base -> origin/gh/XuehaiPan/227/base 2025-06-01T20:58:02.9145497Z * [new branch] gh/XuehaiPan/227/head -> origin/gh/XuehaiPan/227/head 2025-06-01T20:58:02.9145983Z * [new branch] gh/XuehaiPan/227/orig -> origin/gh/XuehaiPan/227/orig 2025-06-01T20:58:02.9146475Z * [new branch] gh/XuehaiPan/228/base -> origin/gh/XuehaiPan/228/base 2025-06-01T20:58:02.9146957Z * [new branch] gh/XuehaiPan/228/head -> origin/gh/XuehaiPan/228/head 2025-06-01T20:58:02.9147455Z * [new branch] gh/XuehaiPan/228/orig -> origin/gh/XuehaiPan/228/orig 2025-06-01T20:58:02.9147940Z * [new branch] gh/XuehaiPan/229/base -> origin/gh/XuehaiPan/229/base 2025-06-01T20:58:02.9148441Z * [new branch] gh/XuehaiPan/229/head -> origin/gh/XuehaiPan/229/head 2025-06-01T20:58:02.9148934Z * [new branch] gh/XuehaiPan/229/orig -> origin/gh/XuehaiPan/229/orig 2025-06-01T20:58:02.9149418Z * [new branch] gh/XuehaiPan/230/base -> origin/gh/XuehaiPan/230/base 2025-06-01T20:58:02.9149909Z * [new branch] gh/XuehaiPan/230/head -> origin/gh/XuehaiPan/230/head 2025-06-01T20:58:02.9150403Z * [new branch] gh/XuehaiPan/230/orig -> origin/gh/XuehaiPan/230/orig 2025-06-01T20:58:02.9150896Z * [new branch] gh/XuehaiPan/231/base -> origin/gh/XuehaiPan/231/base 2025-06-01T20:58:02.9151391Z * [new branch] gh/XuehaiPan/231/head -> origin/gh/XuehaiPan/231/head 2025-06-01T20:58:02.9151879Z * [new branch] gh/XuehaiPan/231/orig -> origin/gh/XuehaiPan/231/orig 2025-06-01T20:58:02.9152368Z * [new branch] gh/XuehaiPan/232/base -> origin/gh/XuehaiPan/232/base 2025-06-01T20:58:02.9152989Z * [new branch] gh/XuehaiPan/232/head -> origin/gh/XuehaiPan/232/head 2025-06-01T20:58:02.9153576Z * [new branch] gh/XuehaiPan/232/orig -> origin/gh/XuehaiPan/232/orig 2025-06-01T20:58:02.9154075Z * [new branch] gh/XuehaiPan/236/base -> origin/gh/XuehaiPan/236/base 2025-06-01T20:58:02.9154635Z * [new branch] gh/XuehaiPan/236/head -> origin/gh/XuehaiPan/236/head 2025-06-01T20:58:02.9155137Z * [new branch] gh/XuehaiPan/236/orig -> origin/gh/XuehaiPan/236/orig 2025-06-01T20:58:02.9155629Z * [new branch] gh/XuehaiPan/239/base -> origin/gh/XuehaiPan/239/base 2025-06-01T20:58:02.9156130Z * [new branch] gh/XuehaiPan/239/head -> origin/gh/XuehaiPan/239/head 2025-06-01T20:58:02.9156620Z * [new branch] gh/XuehaiPan/239/orig -> origin/gh/XuehaiPan/239/orig 2025-06-01T20:58:02.9157126Z * [new branch] gh/XuehaiPan/247/base -> origin/gh/XuehaiPan/247/base 2025-06-01T20:58:02.9157630Z * [new branch] gh/XuehaiPan/247/head -> origin/gh/XuehaiPan/247/head 2025-06-01T20:58:02.9158114Z * [new branch] gh/XuehaiPan/247/orig -> origin/gh/XuehaiPan/247/orig 2025-06-01T20:58:02.9158606Z * [new branch] gh/XuehaiPan/249/base -> origin/gh/XuehaiPan/249/base 2025-06-01T20:58:02.9159096Z * [new branch] gh/XuehaiPan/249/head -> origin/gh/XuehaiPan/249/head 2025-06-01T20:58:02.9159592Z * [new branch] gh/XuehaiPan/249/orig -> origin/gh/XuehaiPan/249/orig 2025-06-01T20:58:02.9160087Z * [new branch] gh/XuehaiPan/250/base -> origin/gh/XuehaiPan/250/base 2025-06-01T20:58:02.9160577Z * [new branch] gh/XuehaiPan/250/head -> origin/gh/XuehaiPan/250/head 2025-06-01T20:58:02.9161080Z * [new branch] gh/XuehaiPan/250/orig -> origin/gh/XuehaiPan/250/orig 2025-06-01T20:58:02.9161572Z * [new branch] gh/XuehaiPan/251/base -> origin/gh/XuehaiPan/251/base 2025-06-01T20:58:02.9571040Z * [new branch] gh/XuehaiPan/251/head -> origin/gh/XuehaiPan/251/head 2025-06-01T20:58:02.9571592Z * [new branch] gh/XuehaiPan/251/orig -> origin/gh/XuehaiPan/251/orig 2025-06-01T20:58:02.9572087Z * [new branch] gh/XuehaiPan/253/base -> origin/gh/XuehaiPan/253/base 2025-06-01T20:58:02.9572584Z * [new branch] gh/XuehaiPan/253/head -> origin/gh/XuehaiPan/253/head 2025-06-01T20:58:02.9573085Z * [new branch] gh/XuehaiPan/253/orig -> origin/gh/XuehaiPan/253/orig 2025-06-01T20:58:02.9573575Z * [new branch] gh/XuehaiPan/254/base -> origin/gh/XuehaiPan/254/base 2025-06-01T20:58:02.9574081Z * [new branch] gh/XuehaiPan/254/head -> origin/gh/XuehaiPan/254/head 2025-06-01T20:58:02.9574578Z * [new branch] gh/XuehaiPan/254/orig -> origin/gh/XuehaiPan/254/orig 2025-06-01T20:58:02.9575087Z * [new branch] gh/XuehaiPan/255/base -> origin/gh/XuehaiPan/255/base 2025-06-01T20:58:02.9575587Z * [new branch] gh/XuehaiPan/255/head -> origin/gh/XuehaiPan/255/head 2025-06-01T20:58:02.9576073Z * [new branch] gh/XuehaiPan/255/orig -> origin/gh/XuehaiPan/255/orig 2025-06-01T20:58:02.9576574Z * [new branch] gh/XuehaiPan/257/base -> origin/gh/XuehaiPan/257/base 2025-06-01T20:58:02.9577062Z * [new branch] gh/XuehaiPan/257/head -> origin/gh/XuehaiPan/257/head 2025-06-01T20:58:02.9577555Z * [new branch] gh/XuehaiPan/257/orig -> origin/gh/XuehaiPan/257/orig 2025-06-01T20:58:02.9578040Z * [new branch] gh/XuehaiPan/261/base -> origin/gh/XuehaiPan/261/base 2025-06-01T20:58:02.9578538Z * [new branch] gh/XuehaiPan/261/head -> origin/gh/XuehaiPan/261/head 2025-06-01T20:58:02.9579160Z * [new branch] gh/XuehaiPan/261/orig -> origin/gh/XuehaiPan/261/orig 2025-06-01T20:58:02.9579732Z * [new branch] gh/XuehaiPan/262/base -> origin/gh/XuehaiPan/262/base 2025-06-01T20:58:02.9580237Z * [new branch] gh/XuehaiPan/262/head -> origin/gh/XuehaiPan/262/head 2025-06-01T20:58:02.9580729Z * [new branch] gh/XuehaiPan/262/orig -> origin/gh/XuehaiPan/262/orig 2025-06-01T20:58:02.9581231Z * [new branch] gh/XuehaiPan/263/base -> origin/gh/XuehaiPan/263/base 2025-06-01T20:58:02.9581734Z * [new branch] gh/XuehaiPan/263/head -> origin/gh/XuehaiPan/263/head 2025-06-01T20:58:02.9582221Z * [new branch] gh/XuehaiPan/263/orig -> origin/gh/XuehaiPan/263/orig 2025-06-01T20:58:02.9582718Z * [new branch] gh/XuehaiPan/264/base -> origin/gh/XuehaiPan/264/base 2025-06-01T20:58:02.9583211Z * [new branch] gh/XuehaiPan/264/head -> origin/gh/XuehaiPan/264/head 2025-06-01T20:58:02.9583709Z * [new branch] gh/XuehaiPan/264/orig -> origin/gh/XuehaiPan/264/orig 2025-06-01T20:58:02.9584200Z * [new branch] gh/XuehaiPan/265/base -> origin/gh/XuehaiPan/265/base 2025-06-01T20:58:02.9584684Z * [new branch] gh/XuehaiPan/265/head -> origin/gh/XuehaiPan/265/head 2025-06-01T20:58:02.9585184Z * [new branch] gh/XuehaiPan/265/orig -> origin/gh/XuehaiPan/265/orig 2025-06-01T20:58:02.9585673Z * [new branch] gh/XuehaiPan/266/base -> origin/gh/XuehaiPan/266/base 2025-06-01T20:58:02.9586166Z * [new branch] gh/XuehaiPan/266/head -> origin/gh/XuehaiPan/266/head 2025-06-01T20:58:02.9586666Z * [new branch] gh/XuehaiPan/266/orig -> origin/gh/XuehaiPan/266/orig 2025-06-01T20:58:02.9587161Z * [new branch] gh/XuehaiPan/267/base -> origin/gh/XuehaiPan/267/base 2025-06-01T20:58:02.9587647Z * [new branch] gh/XuehaiPan/267/head -> origin/gh/XuehaiPan/267/head 2025-06-01T20:58:02.9588144Z * [new branch] gh/XuehaiPan/267/orig -> origin/gh/XuehaiPan/267/orig 2025-06-01T20:58:02.9588637Z * [new branch] gh/XuehaiPan/268/base -> origin/gh/XuehaiPan/268/base 2025-06-01T20:58:02.9589122Z * [new branch] gh/XuehaiPan/268/head -> origin/gh/XuehaiPan/268/head 2025-06-01T20:58:02.9589612Z * [new branch] gh/XuehaiPan/268/orig -> origin/gh/XuehaiPan/268/orig 2025-06-01T20:58:02.9590102Z * [new branch] gh/XuehaiPan/269/base -> origin/gh/XuehaiPan/269/base 2025-06-01T20:58:02.9590589Z * [new branch] gh/XuehaiPan/269/head -> origin/gh/XuehaiPan/269/head 2025-06-01T20:58:02.9591082Z * [new branch] gh/XuehaiPan/269/orig -> origin/gh/XuehaiPan/269/orig 2025-06-01T20:58:02.9591569Z * [new branch] gh/XuehaiPan/270/base -> origin/gh/XuehaiPan/270/base 2025-06-01T20:58:02.9592267Z * [new branch] gh/XuehaiPan/270/head -> origin/gh/XuehaiPan/270/head 2025-06-01T20:58:02.9592998Z * [new branch] gh/XuehaiPan/270/orig -> origin/gh/XuehaiPan/270/orig 2025-06-01T20:58:02.9593497Z * [new branch] gh/XuehaiPan/271/base -> origin/gh/XuehaiPan/271/base 2025-06-01T20:58:02.9593994Z * [new branch] gh/XuehaiPan/271/head -> origin/gh/XuehaiPan/271/head 2025-06-01T20:58:03.0072881Z * [new branch] gh/XuehaiPan/271/orig -> origin/gh/XuehaiPan/271/orig 2025-06-01T20:58:03.0073424Z * [new branch] gh/XuehaiPan/272/base -> origin/gh/XuehaiPan/272/base 2025-06-01T20:58:03.0073943Z * [new branch] gh/XuehaiPan/272/head -> origin/gh/XuehaiPan/272/head 2025-06-01T20:58:03.0074471Z * [new branch] gh/XuehaiPan/272/orig -> origin/gh/XuehaiPan/272/orig 2025-06-01T20:58:03.0074969Z * [new branch] gh/XuehaiPan/273/base -> origin/gh/XuehaiPan/273/base 2025-06-01T20:58:03.0075734Z * [new branch] gh/XuehaiPan/273/head -> origin/gh/XuehaiPan/273/head 2025-06-01T20:58:03.0076237Z * [new branch] gh/XuehaiPan/273/orig -> origin/gh/XuehaiPan/273/orig 2025-06-01T20:58:03.0076730Z * [new branch] gh/XuehaiPan/274/base -> origin/gh/XuehaiPan/274/base 2025-06-01T20:58:03.0077223Z * [new branch] gh/XuehaiPan/274/head -> origin/gh/XuehaiPan/274/head 2025-06-01T20:58:03.0077721Z * [new branch] gh/XuehaiPan/274/orig -> origin/gh/XuehaiPan/274/orig 2025-06-01T20:58:03.0078223Z * [new branch] gh/ZainRizvi/4/base -> origin/gh/ZainRizvi/4/base 2025-06-01T20:58:03.0078710Z * [new branch] gh/ZainRizvi/4/head -> origin/gh/ZainRizvi/4/head 2025-06-01T20:58:03.0079202Z * [new branch] gh/ZainRizvi/4/orig -> origin/gh/ZainRizvi/4/orig 2025-06-01T20:58:03.0079708Z * [new branch] gh/ZhiweiYan-96/38/base -> origin/gh/ZhiweiYan-96/38/base 2025-06-01T20:58:03.0080223Z * [new branch] gh/ZhiweiYan-96/38/head -> origin/gh/ZhiweiYan-96/38/head 2025-06-01T20:58:03.0080733Z * [new branch] gh/ZhiweiYan-96/38/orig -> origin/gh/ZhiweiYan-96/38/orig 2025-06-01T20:58:03.0081231Z * [new branch] gh/ZhiweiYan-96/39/base -> origin/gh/ZhiweiYan-96/39/base 2025-06-01T20:58:03.0081736Z * [new branch] gh/ZhiweiYan-96/39/head -> origin/gh/ZhiweiYan-96/39/head 2025-06-01T20:58:03.0082247Z * [new branch] gh/ZhiweiYan-96/39/orig -> origin/gh/ZhiweiYan-96/39/orig 2025-06-01T20:58:03.0082745Z * [new branch] gh/ZhiweiYan-96/44/base -> origin/gh/ZhiweiYan-96/44/base 2025-06-01T20:58:03.0083266Z * [new branch] gh/ZhiweiYan-96/44/head -> origin/gh/ZhiweiYan-96/44/head 2025-06-01T20:58:03.0083795Z * [new branch] gh/ZhiweiYan-96/45/base -> origin/gh/ZhiweiYan-96/45/base 2025-06-01T20:58:03.0084319Z * [new branch] gh/ZhiweiYan-96/45/head -> origin/gh/ZhiweiYan-96/45/head 2025-06-01T20:58:03.0084836Z * [new branch] gh/ZhiweiYan-96/49/base -> origin/gh/ZhiweiYan-96/49/base 2025-06-01T20:58:03.0085342Z * [new branch] gh/ZhiweiYan-96/49/head -> origin/gh/ZhiweiYan-96/49/head 2025-06-01T20:58:03.0085860Z * [new branch] gh/ZhiweiYan-96/56/base -> origin/gh/ZhiweiYan-96/56/base 2025-06-01T20:58:03.0086366Z * [new branch] gh/ZhiweiYan-96/56/head -> origin/gh/ZhiweiYan-96/56/head 2025-06-01T20:58:03.0086882Z * [new branch] gh/ZhiweiYan-96/56/orig -> origin/gh/ZhiweiYan-96/56/orig 2025-06-01T20:58:03.0087406Z * [new branch] gh/ZhiweiYan-96/59/base -> origin/gh/ZhiweiYan-96/59/base 2025-06-01T20:58:03.0087910Z * [new branch] gh/ZhiweiYan-96/59/head -> origin/gh/ZhiweiYan-96/59/head 2025-06-01T20:58:03.0088438Z * [new branch] gh/ZhiweiYan-96/59/orig -> origin/gh/ZhiweiYan-96/59/orig 2025-06-01T20:58:03.0088947Z * [new branch] gh/ZhiweiYan-96/60/base -> origin/gh/ZhiweiYan-96/60/base 2025-06-01T20:58:03.0089463Z * [new branch] gh/ZhiweiYan-96/60/head -> origin/gh/ZhiweiYan-96/60/head 2025-06-01T20:58:03.0089984Z * [new branch] gh/ZhiweiYan-96/60/orig -> origin/gh/ZhiweiYan-96/60/orig 2025-06-01T20:58:03.0090495Z * [new branch] gh/ZhiweiYan-96/61/base -> origin/gh/ZhiweiYan-96/61/base 2025-06-01T20:58:03.0091022Z * [new branch] gh/ZhiweiYan-96/61/head -> origin/gh/ZhiweiYan-96/61/head 2025-06-01T20:58:03.0091528Z * [new branch] gh/ZhiweiYan-96/61/orig -> origin/gh/ZhiweiYan-96/61/orig 2025-06-01T20:58:03.0092054Z * [new branch] gh/ZhiweiYan-96/62/base -> origin/gh/ZhiweiYan-96/62/base 2025-06-01T20:58:03.0092561Z * [new branch] gh/ZhiweiYan-96/62/head -> origin/gh/ZhiweiYan-96/62/head 2025-06-01T20:58:03.0093249Z * [new branch] gh/ZhiweiYan-96/63/base -> origin/gh/ZhiweiYan-96/63/base 2025-06-01T20:58:03.0093776Z * [new branch] gh/ZhiweiYan-96/63/head -> origin/gh/ZhiweiYan-96/63/head 2025-06-01T20:58:03.0094283Z * [new branch] gh/ZhiweiYan-96/63/orig -> origin/gh/ZhiweiYan-96/63/orig 2025-06-01T20:58:03.0094803Z * [new branch] gh/aakhundov/1/base -> origin/gh/aakhundov/1/base 2025-06-01T20:58:03.0095299Z * [new branch] gh/aakhundov/1/head -> origin/gh/aakhundov/1/head 2025-06-01T20:58:03.0095891Z * [new branch] gh/aakhundov/2/base -> origin/gh/aakhundov/2/base 2025-06-01T20:58:03.0096395Z * [new branch] gh/aakhundov/2/head -> origin/gh/aakhundov/2/head 2025-06-01T20:58:03.0567219Z * [new branch] gh/aditew01/openblas -> origin/gh/aditew01/openblas 2025-06-01T20:58:03.0567808Z * [new branch] gh/aditew01/sbgemm -> origin/gh/aditew01/sbgemm 2025-06-01T20:58:03.0568322Z * [new branch] gh/aditew01/vecbf16 -> origin/gh/aditew01/vecbf16 2025-06-01T20:58:03.0568854Z * [new branch] gh/albanD/3/base -> origin/gh/albanD/3/base 2025-06-01T20:58:03.0569336Z * [new branch] gh/albanD/3/head -> origin/gh/albanD/3/head 2025-06-01T20:58:03.0569834Z * [new branch] gh/albanD/3/orig -> origin/gh/albanD/3/orig 2025-06-01T20:58:03.0570583Z * [new branch] gh/alexbrauckmann/paddedtensor_faketensor_init -> origin/gh/alexbrauckmann/paddedtensor_faketensor_init 2025-06-01T20:58:03.0571455Z * [new branch] gh/alexbrauckmann/paddedtensor_init -> origin/gh/alexbrauckmann/paddedtensor_init 2025-06-01T20:58:03.0572297Z * [new branch] gh/alexbrauckmann/paddedtensor_meta_init -> origin/gh/alexbrauckmann/paddedtensor_meta_init 2025-06-01T20:58:03.0573065Z * [new branch] gh/alexsamardzic/1/base -> origin/gh/alexsamardzic/1/base 2025-06-01T20:58:03.0573607Z * [new branch] gh/alexsamardzic/1/head -> origin/gh/alexsamardzic/1/head 2025-06-01T20:58:03.0574204Z * [new branch] gh/alexsamardzic/1/orig -> origin/gh/alexsamardzic/1/orig 2025-06-01T20:58:03.0574790Z * [new branch] gh/alexsamardzic/2/base -> origin/gh/alexsamardzic/2/base 2025-06-01T20:58:03.0575316Z * [new branch] gh/alexsamardzic/2/head -> origin/gh/alexsamardzic/2/head 2025-06-01T20:58:03.0575856Z * [new branch] gh/alexsamardzic/2/orig -> origin/gh/alexsamardzic/2/orig 2025-06-01T20:58:03.0576361Z * [new branch] gh/amjames/18/base -> origin/gh/amjames/18/base 2025-06-01T20:58:03.0576853Z * [new branch] gh/amjames/18/head -> origin/gh/amjames/18/head 2025-06-01T20:58:03.0577353Z * [new branch] gh/amjames/18/orig -> origin/gh/amjames/18/orig 2025-06-01T20:58:03.0577821Z * [new branch] gh/amjames/20/base -> origin/gh/amjames/20/base 2025-06-01T20:58:03.0578335Z * [new branch] gh/amjames/20/head -> origin/gh/amjames/20/head 2025-06-01T20:58:03.0578800Z * [new branch] gh/amjames/20/orig -> origin/gh/amjames/20/orig 2025-06-01T20:58:03.0579354Z * [new branch] gh/amjames/21/base -> origin/gh/amjames/21/base 2025-06-01T20:58:03.0579854Z * [new branch] gh/amjames/21/head -> origin/gh/amjames/21/head 2025-06-01T20:58:03.0580361Z * [new branch] gh/amjames/21/orig -> origin/gh/amjames/21/orig 2025-06-01T20:58:03.0580876Z * [new branch] gh/amjames/22/base -> origin/gh/amjames/22/base 2025-06-01T20:58:03.0581338Z * [new branch] gh/amjames/22/head -> origin/gh/amjames/22/head 2025-06-01T20:58:03.0581890Z * [new branch] gh/amjames/22/orig -> origin/gh/amjames/22/orig 2025-06-01T20:58:03.0582647Z * [new branch] gh/andrewor14/35/base -> origin/gh/andrewor14/35/base 2025-06-01T20:58:03.0583207Z * [new branch] gh/andrewor14/35/head -> origin/gh/andrewor14/35/head 2025-06-01T20:58:03.0583740Z * [new branch] gh/andrewor14/35/orig -> origin/gh/andrewor14/35/orig 2025-06-01T20:58:03.0584222Z * [new branch] gh/andrewor14/50/base -> origin/gh/andrewor14/50/base 2025-06-01T20:58:03.0584710Z * [new branch] gh/andrewor14/50/head -> origin/gh/andrewor14/50/head 2025-06-01T20:58:03.0585193Z * [new branch] gh/andrewor14/50/orig -> origin/gh/andrewor14/50/orig 2025-06-01T20:58:03.0585687Z * [new branch] gh/andyanwang/1/base -> origin/gh/andyanwang/1/base 2025-06-01T20:58:03.0586230Z * [new branch] gh/andyanwang/1/head -> origin/gh/andyanwang/1/head 2025-06-01T20:58:03.0586767Z * [new branch] gh/andyanwang/1/orig -> origin/gh/andyanwang/1/orig 2025-06-01T20:58:03.0587268Z * [new branch] gh/andyanwang/10/base -> origin/gh/andyanwang/10/base 2025-06-01T20:58:03.0587760Z * [new branch] gh/andyanwang/10/head -> origin/gh/andyanwang/10/head 2025-06-01T20:58:03.0588298Z * [new branch] gh/andyanwang/10/orig -> origin/gh/andyanwang/10/orig 2025-06-01T20:58:03.0588793Z * [new branch] gh/andyanwang/11/base -> origin/gh/andyanwang/11/base 2025-06-01T20:58:03.0589369Z * [new branch] gh/andyanwang/11/head -> origin/gh/andyanwang/11/head 2025-06-01T20:58:03.0589905Z * [new branch] gh/andyanwang/11/orig -> origin/gh/andyanwang/11/orig 2025-06-01T20:58:03.0590391Z * [new branch] gh/andyanwang/12/base -> origin/gh/andyanwang/12/base 2025-06-01T20:58:03.0590882Z * [new branch] gh/andyanwang/12/head -> origin/gh/andyanwang/12/head 2025-06-01T20:58:03.0591372Z * [new branch] gh/andyanwang/12/orig -> origin/gh/andyanwang/12/orig 2025-06-01T20:58:03.1047710Z * [new branch] gh/andyanwang/2/base -> origin/gh/andyanwang/2/base 2025-06-01T20:58:03.1048272Z * [new branch] gh/andyanwang/2/head -> origin/gh/andyanwang/2/head 2025-06-01T20:58:03.1048777Z * [new branch] gh/andyanwang/2/orig -> origin/gh/andyanwang/2/orig 2025-06-01T20:58:03.1049285Z * [new branch] gh/andyanwang/3/base -> origin/gh/andyanwang/3/base 2025-06-01T20:58:03.1049797Z * [new branch] gh/andyanwang/3/head -> origin/gh/andyanwang/3/head 2025-06-01T20:58:03.1050282Z * [new branch] gh/andyanwang/3/orig -> origin/gh/andyanwang/3/orig 2025-06-01T20:58:03.1050783Z * [new branch] gh/andyanwang/4/base -> origin/gh/andyanwang/4/base 2025-06-01T20:58:03.1051270Z * [new branch] gh/andyanwang/4/head -> origin/gh/andyanwang/4/head 2025-06-01T20:58:03.1051776Z * [new branch] gh/andyanwang/4/orig -> origin/gh/andyanwang/4/orig 2025-06-01T20:58:03.1052280Z * [new branch] gh/andyanwang/5/base -> origin/gh/andyanwang/5/base 2025-06-01T20:58:03.1052767Z * [new branch] gh/andyanwang/5/head -> origin/gh/andyanwang/5/head 2025-06-01T20:58:03.1053263Z * [new branch] gh/andyanwang/5/orig -> origin/gh/andyanwang/5/orig 2025-06-01T20:58:03.1053753Z * [new branch] gh/andyanwang/6/base -> origin/gh/andyanwang/6/base 2025-06-01T20:58:03.1054244Z * [new branch] gh/andyanwang/6/head -> origin/gh/andyanwang/6/head 2025-06-01T20:58:03.1054739Z * [new branch] gh/andyanwang/6/orig -> origin/gh/andyanwang/6/orig 2025-06-01T20:58:03.1055223Z * [new branch] gh/andyanwang/7/base -> origin/gh/andyanwang/7/base 2025-06-01T20:58:03.1055873Z * [new branch] gh/andyanwang/7/head -> origin/gh/andyanwang/7/head 2025-06-01T20:58:03.1056436Z * [new branch] gh/andyanwang/7/orig -> origin/gh/andyanwang/7/orig 2025-06-01T20:58:03.1056939Z * [new branch] gh/andyanwang/8/base -> origin/gh/andyanwang/8/base 2025-06-01T20:58:03.1057423Z * [new branch] gh/andyanwang/8/head -> origin/gh/andyanwang/8/head 2025-06-01T20:58:03.1057926Z * [new branch] gh/andyanwang/8/orig -> origin/gh/andyanwang/8/orig 2025-06-01T20:58:03.1058422Z * [new branch] gh/andyanwang/9/base -> origin/gh/andyanwang/9/base 2025-06-01T20:58:03.1058914Z * [new branch] gh/andyanwang/9/head -> origin/gh/andyanwang/9/head 2025-06-01T20:58:03.1059406Z * [new branch] gh/andyanwang/9/orig -> origin/gh/andyanwang/9/orig 2025-06-01T20:58:03.1059888Z * [new branch] gh/angelayi/82/base -> origin/gh/angelayi/82/base 2025-06-01T20:58:03.1060380Z * [new branch] gh/angelayi/82/head -> origin/gh/angelayi/82/head 2025-06-01T20:58:03.1060875Z * [new branch] gh/angelayi/82/orig -> origin/gh/angelayi/82/orig 2025-06-01T20:58:03.1061340Z * [new branch] gh/angelayi/90/base -> origin/gh/angelayi/90/base 2025-06-01T20:58:03.1061815Z * [new branch] gh/angelayi/90/head -> origin/gh/angelayi/90/head 2025-06-01T20:58:03.1062289Z * [new branch] gh/angelayi/90/orig -> origin/gh/angelayi/90/orig 2025-06-01T20:58:03.1062767Z * [new branch] gh/angelayi/91/base -> origin/gh/angelayi/91/base 2025-06-01T20:58:03.1063249Z * [new branch] gh/angelayi/91/head -> origin/gh/angelayi/91/head 2025-06-01T20:58:03.1063721Z * [new branch] gh/angelayi/91/orig -> origin/gh/angelayi/91/orig 2025-06-01T20:58:03.1064197Z * [new branch] gh/angelayi/92/base -> origin/gh/angelayi/92/base 2025-06-01T20:58:03.1064669Z * [new branch] gh/angelayi/92/head -> origin/gh/angelayi/92/head 2025-06-01T20:58:03.1065230Z * [new branch] gh/angelayi/92/orig -> origin/gh/angelayi/92/orig 2025-06-01T20:58:03.1065756Z * [new branch] gh/angelayi/93/base -> origin/gh/angelayi/93/base 2025-06-01T20:58:03.1066241Z * [new branch] gh/angelayi/93/head -> origin/gh/angelayi/93/head 2025-06-01T20:58:03.1066719Z * [new branch] gh/angelayi/93/orig -> origin/gh/angelayi/93/orig 2025-06-01T20:58:03.1067181Z * [new branch] gh/ani300/1/base -> origin/gh/ani300/1/base 2025-06-01T20:58:03.1067629Z * [new branch] gh/ani300/1/head -> origin/gh/ani300/1/head 2025-06-01T20:58:03.1068066Z * [new branch] gh/ani300/1/orig -> origin/gh/ani300/1/orig 2025-06-01T20:58:03.1068553Z * [new branch] gh/anijain2305/162/base -> origin/gh/anijain2305/162/base 2025-06-01T20:58:03.1069084Z * [new branch] gh/anijain2305/162/head -> origin/gh/anijain2305/162/head 2025-06-01T20:58:03.1069591Z * [new branch] gh/anijain2305/566/base -> origin/gh/anijain2305/566/base 2025-06-01T20:58:03.1070100Z * [new branch] gh/anijain2305/566/head -> origin/gh/anijain2305/566/head 2025-06-01T20:58:03.1070601Z * [new branch] gh/anijain2305/566/orig -> origin/gh/anijain2305/566/orig 2025-06-01T20:58:03.1498301Z * [new branch] gh/anijain2305/580/base -> origin/gh/anijain2305/580/base 2025-06-01T20:58:03.1498874Z * [new branch] gh/anijain2305/580/head -> origin/gh/anijain2305/580/head 2025-06-01T20:58:03.1499494Z * [new branch] gh/anijain2305/580/orig -> origin/gh/anijain2305/580/orig 2025-06-01T20:58:03.1500069Z * [new branch] gh/anijain2305/634/base -> origin/gh/anijain2305/634/base 2025-06-01T20:58:03.1500733Z * [new branch] gh/anijain2305/634/head -> origin/gh/anijain2305/634/head 2025-06-01T20:58:03.1501324Z * [new branch] gh/anijain2305/634/orig -> origin/gh/anijain2305/634/orig 2025-06-01T20:58:03.1501844Z * [new branch] gh/anijain2305/668/base -> origin/gh/anijain2305/668/base 2025-06-01T20:58:03.1502345Z * [new branch] gh/anijain2305/668/head -> origin/gh/anijain2305/668/head 2025-06-01T20:58:03.1502855Z * [new branch] gh/anijain2305/668/orig -> origin/gh/anijain2305/668/orig 2025-06-01T20:58:03.1503364Z * [new branch] gh/anijain2305/675/base -> origin/gh/anijain2305/675/base 2025-06-01T20:58:03.1503878Z * [new branch] gh/anijain2305/675/head -> origin/gh/anijain2305/675/head 2025-06-01T20:58:03.1504392Z * [new branch] gh/anijain2305/675/orig -> origin/gh/anijain2305/675/orig 2025-06-01T20:58:03.1504897Z * [new branch] gh/anijain2305/682/base -> origin/gh/anijain2305/682/base 2025-06-01T20:58:03.1505409Z * [new branch] gh/anijain2305/682/head -> origin/gh/anijain2305/682/head 2025-06-01T20:58:03.1505908Z * [new branch] gh/anijain2305/682/orig -> origin/gh/anijain2305/682/orig 2025-06-01T20:58:03.1506412Z * [new branch] gh/anijain2305/684/base -> origin/gh/anijain2305/684/base 2025-06-01T20:58:03.1506919Z * [new branch] gh/anijain2305/684/head -> origin/gh/anijain2305/684/head 2025-06-01T20:58:03.1507411Z * [new branch] gh/anijain2305/684/orig -> origin/gh/anijain2305/684/orig 2025-06-01T20:58:03.1507917Z * [new branch] gh/anijain2305/710/base -> origin/gh/anijain2305/710/base 2025-06-01T20:58:03.1508414Z * [new branch] gh/anijain2305/710/head -> origin/gh/anijain2305/710/head 2025-06-01T20:58:03.1508924Z * [new branch] gh/anijain2305/710/orig -> origin/gh/anijain2305/710/orig 2025-06-01T20:58:03.1509439Z * [new branch] gh/anijain2305/716/base -> origin/gh/anijain2305/716/base 2025-06-01T20:58:03.1509946Z * [new branch] gh/anijain2305/716/head -> origin/gh/anijain2305/716/head 2025-06-01T20:58:03.1510473Z * [new branch] gh/anijain2305/716/orig -> origin/gh/anijain2305/716/orig 2025-06-01T20:58:03.1510970Z * [new branch] gh/anijain2305/717/base -> origin/gh/anijain2305/717/base 2025-06-01T20:58:03.1511473Z * [new branch] gh/anijain2305/717/head -> origin/gh/anijain2305/717/head 2025-06-01T20:58:03.1511969Z * [new branch] gh/anijain2305/717/orig -> origin/gh/anijain2305/717/orig 2025-06-01T20:58:03.1512465Z * [new branch] gh/anijain2305/718/base -> origin/gh/anijain2305/718/base 2025-06-01T20:58:03.1512967Z * [new branch] gh/anijain2305/718/head -> origin/gh/anijain2305/718/head 2025-06-01T20:58:03.1513462Z * [new branch] gh/anijain2305/718/orig -> origin/gh/anijain2305/718/orig 2025-06-01T20:58:03.1513964Z * [new branch] gh/anijain2305/721/base -> origin/gh/anijain2305/721/base 2025-06-01T20:58:03.1514573Z * [new branch] gh/anijain2305/721/head -> origin/gh/anijain2305/721/head 2025-06-01T20:58:03.1515080Z * [new branch] gh/anijain2305/721/orig -> origin/gh/anijain2305/721/orig 2025-06-01T20:58:03.1515586Z * [new branch] gh/anijain2305/725/base -> origin/gh/anijain2305/725/base 2025-06-01T20:58:03.1516085Z * [new branch] gh/anijain2305/725/head -> origin/gh/anijain2305/725/head 2025-06-01T20:58:03.1516591Z * [new branch] gh/anijain2305/725/orig -> origin/gh/anijain2305/725/orig 2025-06-01T20:58:03.1517103Z * [new branch] gh/anijain2305/726/base -> origin/gh/anijain2305/726/base 2025-06-01T20:58:03.1517603Z * [new branch] gh/anijain2305/726/head -> origin/gh/anijain2305/726/head 2025-06-01T20:58:03.1518209Z * [new branch] gh/anijain2305/726/orig -> origin/gh/anijain2305/726/orig 2025-06-01T20:58:03.1518779Z * [new branch] gh/anijain2305/728/base -> origin/gh/anijain2305/728/base 2025-06-01T20:58:03.1519294Z * [new branch] gh/anijain2305/728/head -> origin/gh/anijain2305/728/head 2025-06-01T20:58:03.1519808Z * [new branch] gh/anijain2305/728/orig -> origin/gh/anijain2305/728/orig 2025-06-01T20:58:03.1520308Z * [new branch] gh/anijain2305/729/base -> origin/gh/anijain2305/729/base 2025-06-01T20:58:03.1520811Z * [new branch] gh/anijain2305/729/head -> origin/gh/anijain2305/729/head 2025-06-01T20:58:03.1521323Z * [new branch] gh/anijain2305/729/orig -> origin/gh/anijain2305/729/orig 2025-06-01T20:58:03.1919875Z * [new branch] gh/anijain2305/731/base -> origin/gh/anijain2305/731/base 2025-06-01T20:58:03.1920479Z * [new branch] gh/anijain2305/731/head -> origin/gh/anijain2305/731/head 2025-06-01T20:58:03.1920999Z * [new branch] gh/anijain2305/731/orig -> origin/gh/anijain2305/731/orig 2025-06-01T20:58:03.1921504Z * [new branch] gh/anijain2305/732/base -> origin/gh/anijain2305/732/base 2025-06-01T20:58:03.1922013Z * [new branch] gh/anijain2305/732/head -> origin/gh/anijain2305/732/head 2025-06-01T20:58:03.1922517Z * [new branch] gh/anijain2305/732/orig -> origin/gh/anijain2305/732/orig 2025-06-01T20:58:03.1923018Z * [new branch] gh/anijain2305/733/base -> origin/gh/anijain2305/733/base 2025-06-01T20:58:03.1923524Z * [new branch] gh/anijain2305/733/head -> origin/gh/anijain2305/733/head 2025-06-01T20:58:03.1924018Z * [new branch] gh/anijain2305/733/orig -> origin/gh/anijain2305/733/orig 2025-06-01T20:58:03.1924526Z * [new branch] gh/anijain2305/734/base -> origin/gh/anijain2305/734/base 2025-06-01T20:58:03.1925031Z * [new branch] gh/anijain2305/734/head -> origin/gh/anijain2305/734/head 2025-06-01T20:58:03.1925537Z * [new branch] gh/anijain2305/734/orig -> origin/gh/anijain2305/734/orig 2025-06-01T20:58:03.1926046Z * [new branch] gh/anijain2305/735/base -> origin/gh/anijain2305/735/base 2025-06-01T20:58:03.1926542Z * [new branch] gh/anijain2305/735/head -> origin/gh/anijain2305/735/head 2025-06-01T20:58:03.1927044Z * [new branch] gh/anijain2305/735/orig -> origin/gh/anijain2305/735/orig 2025-06-01T20:58:03.1927546Z * [new branch] gh/anijain2305/736/base -> origin/gh/anijain2305/736/base 2025-06-01T20:58:03.1928043Z * [new branch] gh/anijain2305/736/head -> origin/gh/anijain2305/736/head 2025-06-01T20:58:03.1928542Z * [new branch] gh/anijain2305/736/orig -> origin/gh/anijain2305/736/orig 2025-06-01T20:58:03.1929040Z * [new branch] gh/anijain2305/737/base -> origin/gh/anijain2305/737/base 2025-06-01T20:58:03.1929557Z * [new branch] gh/anijain2305/737/head -> origin/gh/anijain2305/737/head 2025-06-01T20:58:03.1930060Z * [new branch] gh/anijain2305/737/orig -> origin/gh/anijain2305/737/orig 2025-06-01T20:58:03.1930560Z * [new branch] gh/anijain2305/738/base -> origin/gh/anijain2305/738/base 2025-06-01T20:58:03.1931061Z * [new branch] gh/anijain2305/738/head -> origin/gh/anijain2305/738/head 2025-06-01T20:58:03.1931566Z * [new branch] gh/anijain2305/738/orig -> origin/gh/anijain2305/738/orig 2025-06-01T20:58:03.1932078Z * [new branch] gh/anijain2305/739/base -> origin/gh/anijain2305/739/base 2025-06-01T20:58:03.1932577Z * [new branch] gh/anijain2305/739/head -> origin/gh/anijain2305/739/head 2025-06-01T20:58:03.1933077Z * [new branch] gh/anijain2305/739/orig -> origin/gh/anijain2305/739/orig 2025-06-01T20:58:03.1934657Z * [new branch] gh/anijain2305/740/base -> origin/gh/anijain2305/740/base 2025-06-01T20:58:03.1935166Z * [new branch] gh/anijain2305/740/head -> origin/gh/anijain2305/740/head 2025-06-01T20:58:03.1935672Z * [new branch] gh/anijain2305/740/orig -> origin/gh/anijain2305/740/orig 2025-06-01T20:58:03.1936181Z * [new branch] gh/anijain2305/741/base -> origin/gh/anijain2305/741/base 2025-06-01T20:58:03.1936687Z * [new branch] gh/anijain2305/741/head -> origin/gh/anijain2305/741/head 2025-06-01T20:58:03.1937196Z * [new branch] gh/anijain2305/741/orig -> origin/gh/anijain2305/741/orig 2025-06-01T20:58:03.1937696Z * [new branch] gh/anijain2305/742/base -> origin/gh/anijain2305/742/base 2025-06-01T20:58:03.1938196Z * [new branch] gh/anijain2305/742/head -> origin/gh/anijain2305/742/head 2025-06-01T20:58:03.1938699Z * [new branch] gh/anijain2305/742/orig -> origin/gh/anijain2305/742/orig 2025-06-01T20:58:03.1939213Z * [new branch] gh/anijain2305/743/base -> origin/gh/anijain2305/743/base 2025-06-01T20:58:03.1939717Z * [new branch] gh/anijain2305/743/head -> origin/gh/anijain2305/743/head 2025-06-01T20:58:03.1940217Z * [new branch] gh/anijain2305/743/orig -> origin/gh/anijain2305/743/orig 2025-06-01T20:58:03.1940731Z * [new branch] gh/anijain2305/744/base -> origin/gh/anijain2305/744/base 2025-06-01T20:58:03.1941234Z * [new branch] gh/anijain2305/744/head -> origin/gh/anijain2305/744/head 2025-06-01T20:58:03.1941744Z * [new branch] gh/anijain2305/744/orig -> origin/gh/anijain2305/744/orig 2025-06-01T20:58:03.1942243Z * [new branch] gh/anijain2305/745/base -> origin/gh/anijain2305/745/base 2025-06-01T20:58:03.1942748Z * [new branch] gh/anijain2305/745/head -> origin/gh/anijain2305/745/head 2025-06-01T20:58:03.1943258Z * [new branch] gh/anijain2305/745/orig -> origin/gh/anijain2305/745/orig 2025-06-01T20:58:03.2379352Z * [new branch] gh/anijain2305/746/base -> origin/gh/anijain2305/746/base 2025-06-01T20:58:03.2379925Z * [new branch] gh/anijain2305/746/head -> origin/gh/anijain2305/746/head 2025-06-01T20:58:03.2380495Z * [new branch] gh/anijain2305/746/orig -> origin/gh/anijain2305/746/orig 2025-06-01T20:58:03.2381042Z * [new branch] gh/anijain2305/747/base -> origin/gh/anijain2305/747/base 2025-06-01T20:58:03.2381546Z * [new branch] gh/anijain2305/747/head -> origin/gh/anijain2305/747/head 2025-06-01T20:58:03.2382042Z * [new branch] gh/anijain2305/747/orig -> origin/gh/anijain2305/747/orig 2025-06-01T20:58:03.2382547Z * [new branch] gh/anijain2305/748/base -> origin/gh/anijain2305/748/base 2025-06-01T20:58:03.2383063Z * [new branch] gh/anijain2305/748/head -> origin/gh/anijain2305/748/head 2025-06-01T20:58:03.2383566Z * [new branch] gh/anijain2305/748/orig -> origin/gh/anijain2305/748/orig 2025-06-01T20:58:03.2384065Z * [new branch] gh/anijain2305/749/base -> origin/gh/anijain2305/749/base 2025-06-01T20:58:03.2384557Z * [new branch] gh/anijain2305/749/head -> origin/gh/anijain2305/749/head 2025-06-01T20:58:03.2385056Z * [new branch] gh/anijain2305/749/orig -> origin/gh/anijain2305/749/orig 2025-06-01T20:58:03.2385564Z * [new branch] gh/anijain2305/750/base -> origin/gh/anijain2305/750/base 2025-06-01T20:58:03.2386104Z * [new branch] gh/anijain2305/750/head -> origin/gh/anijain2305/750/head 2025-06-01T20:58:03.2386661Z * [new branch] gh/anijain2305/750/orig -> origin/gh/anijain2305/750/orig 2025-06-01T20:58:03.2387153Z * [new branch] gh/anijain2305/751/base -> origin/gh/anijain2305/751/base 2025-06-01T20:58:03.2387898Z * [new branch] gh/anijain2305/751/head -> origin/gh/anijain2305/751/head 2025-06-01T20:58:03.2388407Z * [new branch] gh/anijain2305/751/orig -> origin/gh/anijain2305/751/orig 2025-06-01T20:58:03.2388912Z * [new branch] gh/anijain2305/752/base -> origin/gh/anijain2305/752/base 2025-06-01T20:58:03.2389426Z * [new branch] gh/anijain2305/752/head -> origin/gh/anijain2305/752/head 2025-06-01T20:58:03.2389929Z * [new branch] gh/anijain2305/752/orig -> origin/gh/anijain2305/752/orig 2025-06-01T20:58:03.2390442Z * [new branch] gh/anijain2305/753/base -> origin/gh/anijain2305/753/base 2025-06-01T20:58:03.2390949Z * [new branch] gh/anijain2305/753/head -> origin/gh/anijain2305/753/head 2025-06-01T20:58:03.2391442Z * [new branch] gh/anijain2305/753/orig -> origin/gh/anijain2305/753/orig 2025-06-01T20:58:03.2392000Z * [new branch] gh/anijain2305/754/base -> origin/gh/anijain2305/754/base 2025-06-01T20:58:03.2392552Z * [new branch] gh/anijain2305/754/head -> origin/gh/anijain2305/754/head 2025-06-01T20:58:03.2393061Z * [new branch] gh/anijain2305/754/orig -> origin/gh/anijain2305/754/orig 2025-06-01T20:58:03.2393552Z * [new branch] gh/anijain2305/755/base -> origin/gh/anijain2305/755/base 2025-06-01T20:58:03.2394065Z * [new branch] gh/anijain2305/755/head -> origin/gh/anijain2305/755/head 2025-06-01T20:58:03.2394657Z * [new branch] gh/anijain2305/755/orig -> origin/gh/anijain2305/755/orig 2025-06-01T20:58:03.2395163Z * [new branch] gh/anijain2305/756/base -> origin/gh/anijain2305/756/base 2025-06-01T20:58:03.2395682Z * [new branch] gh/anijain2305/756/head -> origin/gh/anijain2305/756/head 2025-06-01T20:58:03.2396184Z * [new branch] gh/anijain2305/756/orig -> origin/gh/anijain2305/756/orig 2025-06-01T20:58:03.2396691Z * [new branch] gh/anijain2305/757/base -> origin/gh/anijain2305/757/base 2025-06-01T20:58:03.2397192Z * [new branch] gh/anijain2305/757/head -> origin/gh/anijain2305/757/head 2025-06-01T20:58:03.2397734Z * [new branch] gh/anijain2305/757/orig -> origin/gh/anijain2305/757/orig 2025-06-01T20:58:03.2398294Z * [new branch] gh/anijain2305/758/base -> origin/gh/anijain2305/758/base 2025-06-01T20:58:03.2398786Z * [new branch] gh/anijain2305/758/head -> origin/gh/anijain2305/758/head 2025-06-01T20:58:03.2399459Z * [new branch] gh/anijain2305/758/orig -> origin/gh/anijain2305/758/orig 2025-06-01T20:58:03.2399968Z * [new branch] gh/anijain2305/759/base -> origin/gh/anijain2305/759/base 2025-06-01T20:58:03.2400461Z * [new branch] gh/anijain2305/759/head -> origin/gh/anijain2305/759/head 2025-06-01T20:58:03.2400970Z * [new branch] gh/anijain2305/759/orig -> origin/gh/anijain2305/759/orig 2025-06-01T20:58:03.2401469Z * [new branch] gh/anijain2305/760/base -> origin/gh/anijain2305/760/base 2025-06-01T20:58:03.2401979Z * [new branch] gh/anijain2305/760/head -> origin/gh/anijain2305/760/head 2025-06-01T20:58:03.2402478Z * [new branch] gh/anijain2305/760/orig -> origin/gh/anijain2305/760/orig 2025-06-01T20:58:03.2814693Z * [new branch] gh/anijain2305/761/base -> origin/gh/anijain2305/761/base 2025-06-01T20:58:03.2815270Z * [new branch] gh/anijain2305/761/head -> origin/gh/anijain2305/761/head 2025-06-01T20:58:03.2815775Z * [new branch] gh/anijain2305/761/orig -> origin/gh/anijain2305/761/orig 2025-06-01T20:58:03.2816276Z * [new branch] gh/anijain2305/762/base -> origin/gh/anijain2305/762/base 2025-06-01T20:58:03.2816977Z * [new branch] gh/anijain2305/762/head -> origin/gh/anijain2305/762/head 2025-06-01T20:58:03.2817597Z * [new branch] gh/anijain2305/762/orig -> origin/gh/anijain2305/762/orig 2025-06-01T20:58:03.2818110Z * [new branch] gh/anijain2305/763/base -> origin/gh/anijain2305/763/base 2025-06-01T20:58:03.2818607Z * [new branch] gh/anijain2305/763/head -> origin/gh/anijain2305/763/head 2025-06-01T20:58:03.2819120Z * [new branch] gh/anijain2305/763/orig -> origin/gh/anijain2305/763/orig 2025-06-01T20:58:03.2819629Z * [new branch] gh/anijain2305/764/base -> origin/gh/anijain2305/764/base 2025-06-01T20:58:03.2820135Z * [new branch] gh/anijain2305/764/head -> origin/gh/anijain2305/764/head 2025-06-01T20:58:03.2820646Z * [new branch] gh/anijain2305/764/orig -> origin/gh/anijain2305/764/orig 2025-06-01T20:58:03.2821142Z * [new branch] gh/anijain2305/765/base -> origin/gh/anijain2305/765/base 2025-06-01T20:58:03.2821650Z * [new branch] gh/anijain2305/765/head -> origin/gh/anijain2305/765/head 2025-06-01T20:58:03.2822156Z * [new branch] gh/anijain2305/765/orig -> origin/gh/anijain2305/765/orig 2025-06-01T20:58:03.2822710Z * [new branch] gh/anijain2305/766/base -> origin/gh/anijain2305/766/base 2025-06-01T20:58:03.2823254Z * [new branch] gh/anijain2305/766/head -> origin/gh/anijain2305/766/head 2025-06-01T20:58:03.2823749Z * [new branch] gh/anijain2305/766/orig -> origin/gh/anijain2305/766/orig 2025-06-01T20:58:03.2824260Z * [new branch] gh/anijain2305/767/base -> origin/gh/anijain2305/767/base 2025-06-01T20:58:03.2824766Z * [new branch] gh/anijain2305/767/head -> origin/gh/anijain2305/767/head 2025-06-01T20:58:03.2825271Z * [new branch] gh/anijain2305/767/orig -> origin/gh/anijain2305/767/orig 2025-06-01T20:58:03.2825792Z * [new branch] gh/anijain2305/768/base -> origin/gh/anijain2305/768/base 2025-06-01T20:58:03.2826294Z * [new branch] gh/anijain2305/768/head -> origin/gh/anijain2305/768/head 2025-06-01T20:58:03.2826802Z * [new branch] gh/anijain2305/768/orig -> origin/gh/anijain2305/768/orig 2025-06-01T20:58:03.2827304Z * [new branch] gh/anijain2305/769/base -> origin/gh/anijain2305/769/base 2025-06-01T20:58:03.2827801Z * [new branch] gh/anijain2305/769/head -> origin/gh/anijain2305/769/head 2025-06-01T20:58:03.2828343Z * [new branch] gh/anijain2305/769/orig -> origin/gh/anijain2305/769/orig 2025-06-01T20:58:03.2828889Z * [new branch] gh/anijain2305/770/base -> origin/gh/anijain2305/770/base 2025-06-01T20:58:03.2829391Z * [new branch] gh/anijain2305/770/head -> origin/gh/anijain2305/770/head 2025-06-01T20:58:03.2829894Z * [new branch] gh/anijain2305/770/orig -> origin/gh/anijain2305/770/orig 2025-06-01T20:58:03.2830393Z * [new branch] gh/anijain2305/771/base -> origin/gh/anijain2305/771/base 2025-06-01T20:58:03.2830899Z * [new branch] gh/anijain2305/771/head -> origin/gh/anijain2305/771/head 2025-06-01T20:58:03.2831393Z * [new branch] gh/anijain2305/771/orig -> origin/gh/anijain2305/771/orig 2025-06-01T20:58:03.2831894Z * [new branch] gh/anijain2305/772/base -> origin/gh/anijain2305/772/base 2025-06-01T20:58:03.2832386Z * [new branch] gh/anijain2305/772/head -> origin/gh/anijain2305/772/head 2025-06-01T20:58:03.2832890Z * [new branch] gh/anijain2305/772/orig -> origin/gh/anijain2305/772/orig 2025-06-01T20:58:03.2833391Z * [new branch] gh/anijain2305/773/base -> origin/gh/anijain2305/773/base 2025-06-01T20:58:03.2833891Z * [new branch] gh/anijain2305/773/head -> origin/gh/anijain2305/773/head 2025-06-01T20:58:03.2834671Z * [new branch] gh/anijain2305/773/orig -> origin/gh/anijain2305/773/orig 2025-06-01T20:58:03.2835256Z * [new branch] gh/anijain2305/774/base -> origin/gh/anijain2305/774/base 2025-06-01T20:58:03.2835769Z * [new branch] gh/anijain2305/774/head -> origin/gh/anijain2305/774/head 2025-06-01T20:58:03.2836276Z * [new branch] gh/anijain2305/774/orig -> origin/gh/anijain2305/774/orig 2025-06-01T20:58:03.2836777Z * [new branch] gh/anijain2305/775/base -> origin/gh/anijain2305/775/base 2025-06-01T20:58:03.2837287Z * [new branch] gh/anijain2305/775/head -> origin/gh/anijain2305/775/head 2025-06-01T20:58:03.2837782Z * [new branch] gh/anijain2305/775/orig -> origin/gh/anijain2305/775/orig 2025-06-01T20:58:03.3283882Z * [new branch] gh/anjali411/216/base -> origin/gh/anjali411/216/base 2025-06-01T20:58:03.3284418Z * [new branch] gh/anjali411/216/head -> origin/gh/anjali411/216/head 2025-06-01T20:58:03.3284925Z * [new branch] gh/anjali411/216/orig -> origin/gh/anjali411/216/orig 2025-06-01T20:58:03.3285430Z * [new branch] gh/ankitageorge/1/base -> origin/gh/ankitageorge/1/base 2025-06-01T20:58:03.3285960Z * [new branch] gh/ankitageorge/1/head -> origin/gh/ankitageorge/1/head 2025-06-01T20:58:03.3286471Z * [new branch] gh/ankitageorge/1/orig -> origin/gh/ankitageorge/1/orig 2025-06-01T20:58:03.3286975Z * [new branch] gh/ankitageorge/2/base -> origin/gh/ankitageorge/2/base 2025-06-01T20:58:03.3287542Z * [new branch] gh/ankitageorge/2/head -> origin/gh/ankitageorge/2/head 2025-06-01T20:58:03.3288088Z * [new branch] gh/ankitageorge/2/orig -> origin/gh/ankitageorge/2/orig 2025-06-01T20:58:03.3288597Z * [new branch] gh/ankitageorge/3/base -> origin/gh/ankitageorge/3/base 2025-06-01T20:58:03.3289111Z * [new branch] gh/ankitageorge/3/head -> origin/gh/ankitageorge/3/head 2025-06-01T20:58:03.3289620Z * [new branch] gh/ankitageorge/3/orig -> origin/gh/ankitageorge/3/orig 2025-06-01T20:58:03.3290129Z * [new branch] gh/ankitageorge/4/base -> origin/gh/ankitageorge/4/base 2025-06-01T20:58:03.3290630Z * [new branch] gh/ankitageorge/4/head -> origin/gh/ankitageorge/4/head 2025-06-01T20:58:03.3291140Z * [new branch] gh/ankitageorge/4/orig -> origin/gh/ankitageorge/4/orig 2025-06-01T20:58:03.3291648Z * [new branch] gh/ankitageorge/5/base -> origin/gh/ankitageorge/5/base 2025-06-01T20:58:03.3292152Z * [new branch] gh/ankitageorge/5/head -> origin/gh/ankitageorge/5/head 2025-06-01T20:58:03.3292664Z * [new branch] gh/ankitageorge/5/orig -> origin/gh/ankitageorge/5/orig 2025-06-01T20:58:03.3293155Z * [new branch] gh/aorenste/132/base -> origin/gh/aorenste/132/base 2025-06-01T20:58:03.3293692Z * [new branch] gh/aorenste/132/head -> origin/gh/aorenste/132/head 2025-06-01T20:58:03.3294232Z * [new branch] gh/aorenste/222/base -> origin/gh/aorenste/222/base 2025-06-01T20:58:03.3294705Z * [new branch] gh/aorenste/222/head -> origin/gh/aorenste/222/head 2025-06-01T20:58:03.3295194Z * [new branch] gh/aorenste/222/orig -> origin/gh/aorenste/222/orig 2025-06-01T20:58:03.3295673Z * [new branch] gh/aorenste/223/base -> origin/gh/aorenste/223/base 2025-06-01T20:58:03.3296164Z * [new branch] gh/aorenste/223/head -> origin/gh/aorenste/223/head 2025-06-01T20:58:03.3296661Z * [new branch] gh/aorenste/223/orig -> origin/gh/aorenste/223/orig 2025-06-01T20:58:03.3297142Z * [new branch] gh/aorenste/224/base -> origin/gh/aorenste/224/base 2025-06-01T20:58:03.3297623Z * [new branch] gh/aorenste/224/head -> origin/gh/aorenste/224/head 2025-06-01T20:58:03.3298303Z * [new branch] gh/aorenste/224/orig -> origin/gh/aorenste/224/orig 2025-06-01T20:58:03.3298802Z * [new branch] gh/aorenste/225/base -> origin/gh/aorenste/225/base 2025-06-01T20:58:03.3299289Z * [new branch] gh/aorenste/225/head -> origin/gh/aorenste/225/head 2025-06-01T20:58:03.3299825Z * [new branch] gh/aorenste/225/orig -> origin/gh/aorenste/225/orig 2025-06-01T20:58:03.3300351Z * [new branch] gh/aorenste/226/base -> origin/gh/aorenste/226/base 2025-06-01T20:58:03.3300833Z * [new branch] gh/aorenste/226/head -> origin/gh/aorenste/226/head 2025-06-01T20:58:03.3301318Z * [new branch] gh/aorenste/226/orig -> origin/gh/aorenste/226/orig 2025-06-01T20:58:03.3301797Z * [new branch] gh/aorenste/227/base -> origin/gh/aorenste/227/base 2025-06-01T20:58:03.3302287Z * [new branch] gh/aorenste/227/head -> origin/gh/aorenste/227/head 2025-06-01T20:58:03.3302778Z * [new branch] gh/aorenste/227/orig -> origin/gh/aorenste/227/orig 2025-06-01T20:58:03.3303255Z * [new branch] gh/aorenste/228/base -> origin/gh/aorenste/228/base 2025-06-01T20:58:03.3303737Z * [new branch] gh/aorenste/228/head -> origin/gh/aorenste/228/head 2025-06-01T20:58:03.3304211Z * [new branch] gh/aorenste/228/orig -> origin/gh/aorenste/228/orig 2025-06-01T20:58:03.3304699Z * [new branch] gh/aorenste/229/base -> origin/gh/aorenste/229/base 2025-06-01T20:58:03.3305177Z * [new branch] gh/aorenste/229/head -> origin/gh/aorenste/229/head 2025-06-01T20:58:03.3305693Z * [new branch] gh/aorenste/229/orig -> origin/gh/aorenste/229/orig 2025-06-01T20:58:03.3306213Z * [new branch] gh/aorenste/230/base -> origin/gh/aorenste/230/base 2025-06-01T20:58:03.3306690Z * [new branch] gh/aorenste/230/head -> origin/gh/aorenste/230/head 2025-06-01T20:58:03.3765556Z * [new branch] gh/aorenste/230/orig -> origin/gh/aorenste/230/orig 2025-06-01T20:58:03.3766156Z * [new branch] gh/avikchaudhuri/59/base -> origin/gh/avikchaudhuri/59/base 2025-06-01T20:58:03.3766694Z * [new branch] gh/avikchaudhuri/59/head -> origin/gh/avikchaudhuri/59/head 2025-06-01T20:58:03.3767229Z * [new branch] gh/avikchaudhuri/59/orig -> origin/gh/avikchaudhuri/59/orig 2025-06-01T20:58:03.3767733Z * [new branch] gh/bdhirsh/604/base -> origin/gh/bdhirsh/604/base 2025-06-01T20:58:03.3768221Z * [new branch] gh/bdhirsh/604/head -> origin/gh/bdhirsh/604/head 2025-06-01T20:58:03.3768699Z * [new branch] gh/bdhirsh/604/orig -> origin/gh/bdhirsh/604/orig 2025-06-01T20:58:03.3769167Z * [new branch] gh/bdhirsh/636/base -> origin/gh/bdhirsh/636/base 2025-06-01T20:58:03.3769651Z * [new branch] gh/bdhirsh/636/head -> origin/gh/bdhirsh/636/head 2025-06-01T20:58:03.3770117Z * [new branch] gh/bdhirsh/636/orig -> origin/gh/bdhirsh/636/orig 2025-06-01T20:58:03.3770590Z * [new branch] gh/bdhirsh/647/base -> origin/gh/bdhirsh/647/base 2025-06-01T20:58:03.3771064Z * [new branch] gh/bdhirsh/647/head -> origin/gh/bdhirsh/647/head 2025-06-01T20:58:03.3771571Z * [new branch] gh/bdhirsh/647/orig -> origin/gh/bdhirsh/647/orig 2025-06-01T20:58:03.3772082Z * [new branch] gh/bdhirsh/650/base -> origin/gh/bdhirsh/650/base 2025-06-01T20:58:03.3772546Z * [new branch] gh/bdhirsh/650/head -> origin/gh/bdhirsh/650/head 2025-06-01T20:58:03.3773017Z * [new branch] gh/bdhirsh/650/orig -> origin/gh/bdhirsh/650/orig 2025-06-01T20:58:03.3773621Z * [new branch] gh/bdhirsh/651/base -> origin/gh/bdhirsh/651/base 2025-06-01T20:58:03.3774162Z * [new branch] gh/bdhirsh/651/head -> origin/gh/bdhirsh/651/head 2025-06-01T20:58:03.3774642Z * [new branch] gh/bdhirsh/651/orig -> origin/gh/bdhirsh/651/orig 2025-06-01T20:58:03.3775109Z * [new branch] gh/bdhirsh/652/base -> origin/gh/bdhirsh/652/base 2025-06-01T20:58:03.3775601Z * [new branch] gh/bdhirsh/652/head -> origin/gh/bdhirsh/652/head 2025-06-01T20:58:03.3776077Z * [new branch] gh/bdhirsh/652/orig -> origin/gh/bdhirsh/652/orig 2025-06-01T20:58:03.3776546Z * [new branch] gh/bdhirsh/654/base -> origin/gh/bdhirsh/654/base 2025-06-01T20:58:03.3777030Z * [new branch] gh/bdhirsh/654/head -> origin/gh/bdhirsh/654/head 2025-06-01T20:58:03.3777539Z * [new branch] gh/bdhirsh/654/orig -> origin/gh/bdhirsh/654/orig 2025-06-01T20:58:03.3778057Z * [new branch] gh/bdhirsh/655/base -> origin/gh/bdhirsh/655/base 2025-06-01T20:58:03.3778527Z * [new branch] gh/bdhirsh/655/head -> origin/gh/bdhirsh/655/head 2025-06-01T20:58:03.3779000Z * [new branch] gh/bdhirsh/655/orig -> origin/gh/bdhirsh/655/orig 2025-06-01T20:58:03.3779477Z * [new branch] gh/bdhirsh/656/base -> origin/gh/bdhirsh/656/base 2025-06-01T20:58:03.3779943Z * [new branch] gh/bdhirsh/656/head -> origin/gh/bdhirsh/656/head 2025-06-01T20:58:03.3780417Z * [new branch] gh/bdhirsh/657/base -> origin/gh/bdhirsh/657/base 2025-06-01T20:58:03.3780883Z * [new branch] gh/bdhirsh/657/head -> origin/gh/bdhirsh/657/head 2025-06-01T20:58:03.3781356Z * [new branch] gh/bdhirsh/658/base -> origin/gh/bdhirsh/658/base 2025-06-01T20:58:03.3781834Z * [new branch] gh/bdhirsh/658/head -> origin/gh/bdhirsh/658/head 2025-06-01T20:58:03.3782302Z * [new branch] gh/bdhirsh/658/orig -> origin/gh/bdhirsh/658/orig 2025-06-01T20:58:03.3782783Z * [new branch] gh/bdhirsh/659/base -> origin/gh/bdhirsh/659/base 2025-06-01T20:58:03.3783291Z * [new branch] gh/bdhirsh/659/head -> origin/gh/bdhirsh/659/head 2025-06-01T20:58:03.3783784Z * [new branch] gh/bdhirsh/659/orig -> origin/gh/bdhirsh/659/orig 2025-06-01T20:58:03.3784305Z * [new branch] gh/bdhirsh/660/base -> origin/gh/bdhirsh/660/base 2025-06-01T20:58:03.3784778Z * [new branch] gh/bdhirsh/660/head -> origin/gh/bdhirsh/660/head 2025-06-01T20:58:03.3785254Z * [new branch] gh/bdhirsh/660/orig -> origin/gh/bdhirsh/660/orig 2025-06-01T20:58:03.3785721Z * [new branch] gh/bdhirsh/661/base -> origin/gh/bdhirsh/661/base 2025-06-01T20:58:03.3786203Z * [new branch] gh/bdhirsh/661/head -> origin/gh/bdhirsh/661/head 2025-06-01T20:58:03.3786685Z * [new branch] gh/bdhirsh/661/orig -> origin/gh/bdhirsh/661/orig 2025-06-01T20:58:03.3787147Z * [new branch] gh/bdhirsh/662/base -> origin/gh/bdhirsh/662/base 2025-06-01T20:58:03.3787628Z * [new branch] gh/bdhirsh/662/head -> origin/gh/bdhirsh/662/head 2025-06-01T20:58:03.3788101Z * [new branch] gh/bdhirsh/662/orig -> origin/gh/bdhirsh/662/orig 2025-06-01T20:58:03.4244232Z * [new branch] gh/bdhirsh/663/base -> origin/gh/bdhirsh/663/base 2025-06-01T20:58:03.4244771Z * [new branch] gh/bdhirsh/663/head -> origin/gh/bdhirsh/663/head 2025-06-01T20:58:03.4245243Z * [new branch] gh/bdhirsh/663/orig -> origin/gh/bdhirsh/663/orig 2025-06-01T20:58:03.4245729Z * [new branch] gh/bdhirsh/664/base -> origin/gh/bdhirsh/664/base 2025-06-01T20:58:03.4246319Z * [new branch] gh/bdhirsh/664/head -> origin/gh/bdhirsh/664/head 2025-06-01T20:58:03.4246874Z * [new branch] gh/bdhirsh/664/orig -> origin/gh/bdhirsh/664/orig 2025-06-01T20:58:03.4247408Z * [new branch] gh/benjaminglass1/51/base -> origin/gh/benjaminglass1/51/base 2025-06-01T20:58:03.4247963Z * [new branch] gh/benjaminglass1/51/head -> origin/gh/benjaminglass1/51/head 2025-06-01T20:58:03.4248513Z * [new branch] gh/benjaminglass1/51/orig -> origin/gh/benjaminglass1/51/orig 2025-06-01T20:58:03.4249051Z * [new branch] gh/benjaminglass1/77/base -> origin/gh/benjaminglass1/77/base 2025-06-01T20:58:03.4249607Z * [new branch] gh/benjaminglass1/77/head -> origin/gh/benjaminglass1/77/head 2025-06-01T20:58:03.4250148Z * [new branch] gh/benjaminglass1/77/orig -> origin/gh/benjaminglass1/77/orig 2025-06-01T20:58:03.4250680Z * [new branch] gh/benjaminglass1/79/base -> origin/gh/benjaminglass1/79/base 2025-06-01T20:58:03.4251228Z * [new branch] gh/benjaminglass1/79/head -> origin/gh/benjaminglass1/79/head 2025-06-01T20:58:03.4251761Z * [new branch] gh/benjaminglass1/79/orig -> origin/gh/benjaminglass1/79/orig 2025-06-01T20:58:03.4252298Z * [new branch] gh/benjaminglass1/83/base -> origin/gh/benjaminglass1/83/base 2025-06-01T20:58:03.4252838Z * [new branch] gh/benjaminglass1/83/head -> origin/gh/benjaminglass1/83/head 2025-06-01T20:58:03.4253371Z * [new branch] gh/benjaminglass1/83/orig -> origin/gh/benjaminglass1/83/orig 2025-06-01T20:58:03.4253922Z * [new branch] gh/benjaminglass1/84/base -> origin/gh/benjaminglass1/84/base 2025-06-01T20:58:03.4254453Z * [new branch] gh/benjaminglass1/84/head -> origin/gh/benjaminglass1/84/head 2025-06-01T20:58:03.4254992Z * [new branch] gh/benjaminglass1/84/orig -> origin/gh/benjaminglass1/84/orig 2025-06-01T20:58:03.4255535Z * [new branch] gh/benjaminglass1/85/base -> origin/gh/benjaminglass1/85/base 2025-06-01T20:58:03.4256085Z * [new branch] gh/benjaminglass1/85/head -> origin/gh/benjaminglass1/85/head 2025-06-01T20:58:03.4256614Z * [new branch] gh/benjaminglass1/85/orig -> origin/gh/benjaminglass1/85/orig 2025-06-01T20:58:03.4257154Z * [new branch] gh/benjaminglass1/86/base -> origin/gh/benjaminglass1/86/base 2025-06-01T20:58:03.4257685Z * [new branch] gh/benjaminglass1/86/head -> origin/gh/benjaminglass1/86/head 2025-06-01T20:58:03.4258225Z * [new branch] gh/benjaminglass1/86/orig -> origin/gh/benjaminglass1/86/orig 2025-06-01T20:58:03.4258729Z * [new branch] gh/bertmaher/1/base -> origin/gh/bertmaher/1/base 2025-06-01T20:58:03.4259217Z * [new branch] gh/bertmaher/1/head -> origin/gh/bertmaher/1/head 2025-06-01T20:58:03.4259710Z * [new branch] gh/bertmaher/1/orig -> origin/gh/bertmaher/1/orig 2025-06-01T20:58:03.4260187Z * [new branch] gh/bertmaher/3/base -> origin/gh/bertmaher/3/base 2025-06-01T20:58:03.4260670Z * [new branch] gh/bertmaher/3/head -> origin/gh/bertmaher/3/head 2025-06-01T20:58:03.4261143Z * [new branch] gh/bertmaher/3/orig -> origin/gh/bertmaher/3/orig 2025-06-01T20:58:03.4261626Z * [new branch] gh/bertmaher/5/base -> origin/gh/bertmaher/5/base 2025-06-01T20:58:03.4262105Z * [new branch] gh/bertmaher/5/head -> origin/gh/bertmaher/5/head 2025-06-01T20:58:03.4262576Z * [new branch] gh/bertmaher/5/orig -> origin/gh/bertmaher/5/orig 2025-06-01T20:58:03.4263068Z * [new branch] gh/bobrenjc93/307/base -> origin/gh/bobrenjc93/307/base 2025-06-01T20:58:03.4263562Z * [new branch] gh/bobrenjc93/307/head -> origin/gh/bobrenjc93/307/head 2025-06-01T20:58:03.4264160Z * [new branch] gh/bobrenjc93/307/orig -> origin/gh/bobrenjc93/307/orig 2025-06-01T20:58:03.4264746Z * [new branch] gh/bobrenjc93/317/base -> origin/gh/bobrenjc93/317/base 2025-06-01T20:58:03.4265242Z * [new branch] gh/bobrenjc93/317/head -> origin/gh/bobrenjc93/317/head 2025-06-01T20:58:03.4265750Z * [new branch] gh/bobrenjc93/317/orig -> origin/gh/bobrenjc93/317/orig 2025-06-01T20:58:03.4266242Z * [new branch] gh/bobrenjc93/318/base -> origin/gh/bobrenjc93/318/base 2025-06-01T20:58:03.4266745Z * [new branch] gh/bobrenjc93/318/head -> origin/gh/bobrenjc93/318/head 2025-06-01T20:58:03.4267250Z * [new branch] gh/bobrenjc93/318/orig -> origin/gh/bobrenjc93/318/orig 2025-06-01T20:58:03.4689347Z * [new branch] gh/bobrenjc93/319/base -> origin/gh/bobrenjc93/319/base 2025-06-01T20:58:03.4689876Z * [new branch] gh/bobrenjc93/319/head -> origin/gh/bobrenjc93/319/head 2025-06-01T20:58:03.4690382Z * [new branch] gh/bobrenjc93/319/orig -> origin/gh/bobrenjc93/319/orig 2025-06-01T20:58:03.4690888Z * [new branch] gh/bobrenjc93/323/base -> origin/gh/bobrenjc93/323/base 2025-06-01T20:58:03.4691401Z * [new branch] gh/bobrenjc93/323/head -> origin/gh/bobrenjc93/323/head 2025-06-01T20:58:03.4691891Z * [new branch] gh/bobrenjc93/323/orig -> origin/gh/bobrenjc93/323/orig 2025-06-01T20:58:03.4692389Z * [new branch] gh/bobrenjc93/324/base -> origin/gh/bobrenjc93/324/base 2025-06-01T20:58:03.4692876Z * [new branch] gh/bobrenjc93/324/head -> origin/gh/bobrenjc93/324/head 2025-06-01T20:58:03.4693375Z * [new branch] gh/bobrenjc93/324/orig -> origin/gh/bobrenjc93/324/orig 2025-06-01T20:58:03.4693878Z * [new branch] gh/bobrenjc93/325/base -> origin/gh/bobrenjc93/325/base 2025-06-01T20:58:03.4694370Z * [new branch] gh/bobrenjc93/325/head -> origin/gh/bobrenjc93/325/head 2025-06-01T20:58:03.4694873Z * [new branch] gh/bobrenjc93/325/orig -> origin/gh/bobrenjc93/325/orig 2025-06-01T20:58:03.4695369Z * [new branch] gh/bobrenjc93/326/base -> origin/gh/bobrenjc93/326/base 2025-06-01T20:58:03.4695868Z * [new branch] gh/bobrenjc93/326/head -> origin/gh/bobrenjc93/326/head 2025-06-01T20:58:03.4696367Z * [new branch] gh/bobrenjc93/326/orig -> origin/gh/bobrenjc93/326/orig 2025-06-01T20:58:03.4696852Z * [new branch] gh/bobrenjc93/327/base -> origin/gh/bobrenjc93/327/base 2025-06-01T20:58:03.4697350Z * [new branch] gh/bobrenjc93/327/head -> origin/gh/bobrenjc93/327/head 2025-06-01T20:58:03.4697843Z * [new branch] gh/bobrenjc93/327/orig -> origin/gh/bobrenjc93/327/orig 2025-06-01T20:58:03.4698346Z * [new branch] gh/bobrenjc93/328/base -> origin/gh/bobrenjc93/328/base 2025-06-01T20:58:03.4698847Z * [new branch] gh/bobrenjc93/328/head -> origin/gh/bobrenjc93/328/head 2025-06-01T20:58:03.4699333Z * [new branch] gh/bobrenjc93/328/orig -> origin/gh/bobrenjc93/328/orig 2025-06-01T20:58:03.4699831Z * [new branch] gh/bobrenjc93/329/base -> origin/gh/bobrenjc93/329/base 2025-06-01T20:58:03.4700321Z * [new branch] gh/bobrenjc93/329/head -> origin/gh/bobrenjc93/329/head 2025-06-01T20:58:03.4700823Z * [new branch] gh/bobrenjc93/329/orig -> origin/gh/bobrenjc93/329/orig 2025-06-01T20:58:03.4701320Z * [new branch] gh/bobrenjc93/330/base -> origin/gh/bobrenjc93/330/base 2025-06-01T20:58:03.4701812Z * [new branch] gh/bobrenjc93/330/head -> origin/gh/bobrenjc93/330/head 2025-06-01T20:58:03.4702316Z * [new branch] gh/bobrenjc93/330/orig -> origin/gh/bobrenjc93/330/orig 2025-06-01T20:58:03.4702929Z * [new branch] gh/bobrenjc93/331/base -> origin/gh/bobrenjc93/331/base 2025-06-01T20:58:03.4703507Z * [new branch] gh/bobrenjc93/331/head -> origin/gh/bobrenjc93/331/head 2025-06-01T20:58:03.4704013Z * [new branch] gh/bobrenjc93/331/orig -> origin/gh/bobrenjc93/331/orig 2025-06-01T20:58:03.4704504Z * [new branch] gh/bobrenjc93/332/base -> origin/gh/bobrenjc93/332/base 2025-06-01T20:58:03.4705006Z * [new branch] gh/bobrenjc93/332/head -> origin/gh/bobrenjc93/332/head 2025-06-01T20:58:03.4705503Z * [new branch] gh/bobrenjc93/332/orig -> origin/gh/bobrenjc93/332/orig 2025-06-01T20:58:03.4706007Z * [new branch] gh/bobrenjc93/333/base -> origin/gh/bobrenjc93/333/base 2025-06-01T20:58:03.4706505Z * [new branch] gh/bobrenjc93/333/head -> origin/gh/bobrenjc93/333/head 2025-06-01T20:58:03.4707012Z * [new branch] gh/bobrenjc93/333/orig -> origin/gh/bobrenjc93/333/orig 2025-06-01T20:58:03.4707515Z * [new branch] gh/bobrenjc93/334/base -> origin/gh/bobrenjc93/334/base 2025-06-01T20:58:03.4708010Z * [new branch] gh/bobrenjc93/334/head -> origin/gh/bobrenjc93/334/head 2025-06-01T20:58:03.4708507Z * [new branch] gh/bobrenjc93/334/orig -> origin/gh/bobrenjc93/334/orig 2025-06-01T20:58:03.4708997Z * [new branch] gh/bobrenjc93/335/base -> origin/gh/bobrenjc93/335/base 2025-06-01T20:58:03.4709503Z * [new branch] gh/bobrenjc93/335/head -> origin/gh/bobrenjc93/335/head 2025-06-01T20:58:03.4710014Z * [new branch] gh/bobrenjc93/335/orig -> origin/gh/bobrenjc93/335/orig 2025-06-01T20:58:03.4710505Z * [new branch] gh/bobrenjc93/336/base -> origin/gh/bobrenjc93/336/base 2025-06-01T20:58:03.4711009Z * [new branch] gh/bobrenjc93/336/head -> origin/gh/bobrenjc93/336/head 2025-06-01T20:58:03.4711508Z * [new branch] gh/bobrenjc93/336/orig -> origin/gh/bobrenjc93/336/orig 2025-06-01T20:58:03.4712017Z * [new branch] gh/bobrenjc93/337/base -> origin/gh/bobrenjc93/337/base 2025-06-01T20:58:03.5099155Z * [new branch] gh/bobrenjc93/337/head -> origin/gh/bobrenjc93/337/head 2025-06-01T20:58:03.5099668Z * [new branch] gh/bobrenjc93/337/orig -> origin/gh/bobrenjc93/337/orig 2025-06-01T20:58:03.5100169Z * [new branch] gh/bobrenjc93/338/base -> origin/gh/bobrenjc93/338/base 2025-06-01T20:58:03.5100661Z * [new branch] gh/bobrenjc93/338/head -> origin/gh/bobrenjc93/338/head 2025-06-01T20:58:03.5101159Z * [new branch] gh/bobrenjc93/338/orig -> origin/gh/bobrenjc93/338/orig 2025-06-01T20:58:03.5101657Z * [new branch] gh/bobrenjc93/339/base -> origin/gh/bobrenjc93/339/base 2025-06-01T20:58:03.5102150Z * [new branch] gh/bobrenjc93/339/head -> origin/gh/bobrenjc93/339/head 2025-06-01T20:58:03.5102660Z * [new branch] gh/bobrenjc93/339/orig -> origin/gh/bobrenjc93/339/orig 2025-06-01T20:58:03.5103153Z * [new branch] gh/bobrenjc93/340/base -> origin/gh/bobrenjc93/340/base 2025-06-01T20:58:03.5103654Z * [new branch] gh/bobrenjc93/340/head -> origin/gh/bobrenjc93/340/head 2025-06-01T20:58:03.5104155Z * [new branch] gh/bobrenjc93/340/orig -> origin/gh/bobrenjc93/340/orig 2025-06-01T20:58:03.5104649Z * [new branch] gh/bobrenjc93/341/base -> origin/gh/bobrenjc93/341/base 2025-06-01T20:58:03.5105149Z * [new branch] gh/bobrenjc93/341/head -> origin/gh/bobrenjc93/341/head 2025-06-01T20:58:03.5105633Z * [new branch] gh/bobrenjc93/341/orig -> origin/gh/bobrenjc93/341/orig 2025-06-01T20:58:03.5106133Z * [new branch] gh/bobrenjc93/342/base -> origin/gh/bobrenjc93/342/base 2025-06-01T20:58:03.5106753Z * [new branch] gh/bobrenjc93/342/head -> origin/gh/bobrenjc93/342/head 2025-06-01T20:58:03.5107330Z * [new branch] gh/bobrenjc93/342/orig -> origin/gh/bobrenjc93/342/orig 2025-06-01T20:58:03.5107836Z * [new branch] gh/bobrenjc93/343/base -> origin/gh/bobrenjc93/343/base 2025-06-01T20:58:03.5108346Z * [new branch] gh/bobrenjc93/343/head -> origin/gh/bobrenjc93/343/head 2025-06-01T20:58:03.5108850Z * [new branch] gh/bobrenjc93/343/orig -> origin/gh/bobrenjc93/343/orig 2025-06-01T20:58:03.5109354Z * [new branch] gh/bobrenjc93/344/base -> origin/gh/bobrenjc93/344/base 2025-06-01T20:58:03.5109848Z * [new branch] gh/bobrenjc93/344/head -> origin/gh/bobrenjc93/344/head 2025-06-01T20:58:03.5110353Z * [new branch] gh/bobrenjc93/344/orig -> origin/gh/bobrenjc93/344/orig 2025-06-01T20:58:03.5122967Z * [new branch] gh/bobrenjc93/345/base -> origin/gh/bobrenjc93/345/base 2025-06-01T20:58:03.5123526Z * [new branch] gh/bobrenjc93/345/head -> origin/gh/bobrenjc93/345/head 2025-06-01T20:58:03.5124042Z * [new branch] gh/bobrenjc93/345/orig -> origin/gh/bobrenjc93/345/orig 2025-06-01T20:58:03.5124555Z * [new branch] gh/bobrenjc93/346/base -> origin/gh/bobrenjc93/346/base 2025-06-01T20:58:03.5125058Z * [new branch] gh/bobrenjc93/346/head -> origin/gh/bobrenjc93/346/head 2025-06-01T20:58:03.5125550Z * [new branch] gh/bobrenjc93/346/orig -> origin/gh/bobrenjc93/346/orig 2025-06-01T20:58:03.5126063Z * [new branch] gh/bobrenjc93/347/base -> origin/gh/bobrenjc93/347/base 2025-06-01T20:58:03.5126567Z * [new branch] gh/bobrenjc93/347/head -> origin/gh/bobrenjc93/347/head 2025-06-01T20:58:03.5127072Z * [new branch] gh/bobrenjc93/347/orig -> origin/gh/bobrenjc93/347/orig 2025-06-01T20:58:03.5127581Z * [new branch] gh/bobrenjc93/348/base -> origin/gh/bobrenjc93/348/base 2025-06-01T20:58:03.5128082Z * [new branch] gh/bobrenjc93/348/head -> origin/gh/bobrenjc93/348/head 2025-06-01T20:58:03.5128584Z * [new branch] gh/bobrenjc93/348/orig -> origin/gh/bobrenjc93/348/orig 2025-06-01T20:58:03.5129076Z * [new branch] gh/bobrenjc93/349/base -> origin/gh/bobrenjc93/349/base 2025-06-01T20:58:03.5129591Z * [new branch] gh/bobrenjc93/349/head -> origin/gh/bobrenjc93/349/head 2025-06-01T20:58:03.5130094Z * [new branch] gh/bobrenjc93/349/orig -> origin/gh/bobrenjc93/349/orig 2025-06-01T20:58:03.5130592Z * [new branch] gh/bobrenjc93/350/base -> origin/gh/bobrenjc93/350/base 2025-06-01T20:58:03.5131096Z * [new branch] gh/bobrenjc93/350/head -> origin/gh/bobrenjc93/350/head 2025-06-01T20:58:03.5131589Z * [new branch] gh/bobrenjc93/350/orig -> origin/gh/bobrenjc93/350/orig 2025-06-01T20:58:03.5132098Z * [new branch] gh/bobrenjc93/351/base -> origin/gh/bobrenjc93/351/base 2025-06-01T20:58:03.5132600Z * [new branch] gh/bobrenjc93/351/head -> origin/gh/bobrenjc93/351/head 2025-06-01T20:58:03.5133096Z * [new branch] gh/bobrenjc93/351/orig -> origin/gh/bobrenjc93/351/orig 2025-06-01T20:58:03.5133597Z * [new branch] gh/bobrenjc93/352/base -> origin/gh/bobrenjc93/352/base 2025-06-01T20:58:03.5913447Z * [new branch] gh/bobrenjc93/352/head -> origin/gh/bobrenjc93/352/head 2025-06-01T20:58:03.5914057Z * [new branch] gh/bobrenjc93/352/orig -> origin/gh/bobrenjc93/352/orig 2025-06-01T20:58:03.5914663Z * [new branch] gh/bobrenjc93/353/base -> origin/gh/bobrenjc93/353/base 2025-06-01T20:58:03.5915202Z * [new branch] gh/bobrenjc93/353/head -> origin/gh/bobrenjc93/353/head 2025-06-01T20:58:03.5915721Z * [new branch] gh/bobrenjc93/353/orig -> origin/gh/bobrenjc93/353/orig 2025-06-01T20:58:03.5916491Z * [new branch] gh/bobrenjc93/354/base -> origin/gh/bobrenjc93/354/base 2025-06-01T20:58:03.5916990Z * [new branch] gh/bobrenjc93/354/head -> origin/gh/bobrenjc93/354/head 2025-06-01T20:58:03.5917543Z * [new branch] gh/bobrenjc93/354/orig -> origin/gh/bobrenjc93/354/orig 2025-06-01T20:58:03.5918113Z * [new branch] gh/bobrenjc93/355/base -> origin/gh/bobrenjc93/355/base 2025-06-01T20:58:03.5918618Z * [new branch] gh/bobrenjc93/355/head -> origin/gh/bobrenjc93/355/head 2025-06-01T20:58:03.5919114Z * [new branch] gh/bobrenjc93/355/orig -> origin/gh/bobrenjc93/355/orig 2025-06-01T20:58:03.5919647Z * [new branch] gh/bobrenjc93/356/base -> origin/gh/bobrenjc93/356/base 2025-06-01T20:58:03.5920152Z * [new branch] gh/bobrenjc93/356/head -> origin/gh/bobrenjc93/356/head 2025-06-01T20:58:03.5920735Z * [new branch] gh/bobrenjc93/356/orig -> origin/gh/bobrenjc93/356/orig 2025-06-01T20:58:03.5921232Z * [new branch] gh/bobrenjc93/357/base -> origin/gh/bobrenjc93/357/base 2025-06-01T20:58:03.5921764Z * [new branch] gh/bobrenjc93/357/head -> origin/gh/bobrenjc93/357/head 2025-06-01T20:58:03.5922383Z * [new branch] gh/bobrenjc93/357/orig -> origin/gh/bobrenjc93/357/orig 2025-06-01T20:58:03.5922926Z * [new branch] gh/bobrenjc93/358/base -> origin/gh/bobrenjc93/358/base 2025-06-01T20:58:03.5923419Z * [new branch] gh/bobrenjc93/358/head -> origin/gh/bobrenjc93/358/head 2025-06-01T20:58:03.5923919Z * [new branch] gh/bobrenjc93/358/orig -> origin/gh/bobrenjc93/358/orig 2025-06-01T20:58:03.5924414Z * [new branch] gh/bobrenjc93/359/base -> origin/gh/bobrenjc93/359/base 2025-06-01T20:58:03.5924917Z * [new branch] gh/bobrenjc93/359/head -> origin/gh/bobrenjc93/359/head 2025-06-01T20:58:03.5925423Z * [new branch] gh/bobrenjc93/359/orig -> origin/gh/bobrenjc93/359/orig 2025-06-01T20:58:03.5925957Z * [new branch] gh/bobrenjc93/360/base -> origin/gh/bobrenjc93/360/base 2025-06-01T20:58:03.5926498Z * [new branch] gh/bobrenjc93/360/head -> origin/gh/bobrenjc93/360/head 2025-06-01T20:58:03.5926983Z * [new branch] gh/bobrenjc93/360/orig -> origin/gh/bobrenjc93/360/orig 2025-06-01T20:58:03.5927480Z * [new branch] gh/bobrenjc93/361/base -> origin/gh/bobrenjc93/361/base 2025-06-01T20:58:03.5927985Z * [new branch] gh/bobrenjc93/361/head -> origin/gh/bobrenjc93/361/head 2025-06-01T20:58:03.5928479Z * [new branch] gh/bobrenjc93/361/orig -> origin/gh/bobrenjc93/361/orig 2025-06-01T20:58:03.5928983Z * [new branch] gh/bobrenjc93/362/base -> origin/gh/bobrenjc93/362/base 2025-06-01T20:58:03.5929479Z * [new branch] gh/bobrenjc93/362/head -> origin/gh/bobrenjc93/362/head 2025-06-01T20:58:03.5929984Z * [new branch] gh/bobrenjc93/362/orig -> origin/gh/bobrenjc93/362/orig 2025-06-01T20:58:03.5930483Z * [new branch] gh/bobrenjc93/363/base -> origin/gh/bobrenjc93/363/base 2025-06-01T20:58:03.5931017Z * [new branch] gh/bobrenjc93/363/head -> origin/gh/bobrenjc93/363/head 2025-06-01T20:58:03.5931561Z * [new branch] gh/bobrenjc93/363/orig -> origin/gh/bobrenjc93/363/orig 2025-06-01T20:58:03.5932092Z * [new branch] gh/bobrenjc93/364/base -> origin/gh/bobrenjc93/364/base 2025-06-01T20:58:03.5932596Z * [new branch] gh/bobrenjc93/364/head -> origin/gh/bobrenjc93/364/head 2025-06-01T20:58:03.5933092Z * [new branch] gh/bobrenjc93/364/orig -> origin/gh/bobrenjc93/364/orig 2025-06-01T20:58:03.5933595Z * [new branch] gh/bobrenjc93/365/base -> origin/gh/bobrenjc93/365/base 2025-06-01T20:58:03.5934277Z * [new branch] gh/bobrenjc93/365/head -> origin/gh/bobrenjc93/365/head 2025-06-01T20:58:03.5934776Z * [new branch] gh/bobrenjc93/365/orig -> origin/gh/bobrenjc93/365/orig 2025-06-01T20:58:03.5935291Z * [new branch] gh/bobrenjc93/366/base -> origin/gh/bobrenjc93/366/base 2025-06-01T20:58:03.5935790Z * [new branch] gh/bobrenjc93/366/head -> origin/gh/bobrenjc93/366/head 2025-06-01T20:58:03.5936301Z * [new branch] gh/bobrenjc93/366/orig -> origin/gh/bobrenjc93/366/orig 2025-06-01T20:58:03.5936818Z * [new branch] gh/bobrenjc93/367/base -> origin/gh/bobrenjc93/367/base 2025-06-01T20:58:03.5937445Z * [new branch] gh/bobrenjc93/367/head -> origin/gh/bobrenjc93/367/head 2025-06-01T20:58:03.6332591Z * [new branch] gh/bobrenjc93/367/orig -> origin/gh/bobrenjc93/367/orig 2025-06-01T20:58:03.6333190Z * [new branch] gh/bobrenjc93/368/base -> origin/gh/bobrenjc93/368/base 2025-06-01T20:58:03.6333699Z * [new branch] gh/bobrenjc93/368/head -> origin/gh/bobrenjc93/368/head 2025-06-01T20:58:03.6334217Z * [new branch] gh/bobrenjc93/368/orig -> origin/gh/bobrenjc93/368/orig 2025-06-01T20:58:03.6334712Z * [new branch] gh/bobrenjc93/369/base -> origin/gh/bobrenjc93/369/base 2025-06-01T20:58:03.6335219Z * [new branch] gh/bobrenjc93/369/head -> origin/gh/bobrenjc93/369/head 2025-06-01T20:58:03.6335726Z * [new branch] gh/bobrenjc93/369/orig -> origin/gh/bobrenjc93/369/orig 2025-06-01T20:58:03.6336221Z * [new branch] gh/bobrenjc93/370/base -> origin/gh/bobrenjc93/370/base 2025-06-01T20:58:03.6336723Z * [new branch] gh/bobrenjc93/370/head -> origin/gh/bobrenjc93/370/head 2025-06-01T20:58:03.6337263Z * [new branch] gh/bobrenjc93/370/orig -> origin/gh/bobrenjc93/370/orig 2025-06-01T20:58:03.6337823Z * [new branch] gh/bobrenjc93/371/base -> origin/gh/bobrenjc93/371/base 2025-06-01T20:58:03.6338327Z * [new branch] gh/bobrenjc93/371/head -> origin/gh/bobrenjc93/371/head 2025-06-01T20:58:03.6338820Z * [new branch] gh/bobrenjc93/371/orig -> origin/gh/bobrenjc93/371/orig 2025-06-01T20:58:03.6339323Z * [new branch] gh/bobrenjc93/372/base -> origin/gh/bobrenjc93/372/base 2025-06-01T20:58:03.6339820Z * [new branch] gh/bobrenjc93/372/head -> origin/gh/bobrenjc93/372/head 2025-06-01T20:58:03.6340325Z * [new branch] gh/bobrenjc93/372/orig -> origin/gh/bobrenjc93/372/orig 2025-06-01T20:58:03.6340820Z * [new branch] gh/bobrenjc93/373/base -> origin/gh/bobrenjc93/373/base 2025-06-01T20:58:03.6341323Z * [new branch] gh/bobrenjc93/373/head -> origin/gh/bobrenjc93/373/head 2025-06-01T20:58:03.6341834Z * [new branch] gh/bobrenjc93/373/orig -> origin/gh/bobrenjc93/373/orig 2025-06-01T20:58:03.6342329Z * [new branch] gh/bobrenjc93/374/base -> origin/gh/bobrenjc93/374/base 2025-06-01T20:58:03.6342870Z * [new branch] gh/bobrenjc93/374/head -> origin/gh/bobrenjc93/374/head 2025-06-01T20:58:03.6343404Z * [new branch] gh/bobrenjc93/374/orig -> origin/gh/bobrenjc93/374/orig 2025-06-01T20:58:03.6343908Z * [new branch] gh/bobrenjc93/375/base -> origin/gh/bobrenjc93/375/base 2025-06-01T20:58:03.6344405Z * [new branch] gh/bobrenjc93/375/head -> origin/gh/bobrenjc93/375/head 2025-06-01T20:58:03.6344891Z * [new branch] gh/bobrenjc93/375/orig -> origin/gh/bobrenjc93/375/orig 2025-06-01T20:58:03.6345394Z * [new branch] gh/bobrenjc93/376/base -> origin/gh/bobrenjc93/376/base 2025-06-01T20:58:03.6345881Z * [new branch] gh/bobrenjc93/376/head -> origin/gh/bobrenjc93/376/head 2025-06-01T20:58:03.6346533Z * [new branch] gh/bobrenjc93/376/orig -> origin/gh/bobrenjc93/376/orig 2025-06-01T20:58:03.6347125Z * [new branch] gh/bobrenjc93/377/base -> origin/gh/bobrenjc93/377/base 2025-06-01T20:58:03.6347626Z * [new branch] gh/bobrenjc93/377/head -> origin/gh/bobrenjc93/377/head 2025-06-01T20:58:03.6348134Z * [new branch] gh/bobrenjc93/377/orig -> origin/gh/bobrenjc93/377/orig 2025-06-01T20:58:03.6348629Z * [new branch] gh/bobrenjc93/378/base -> origin/gh/bobrenjc93/378/base 2025-06-01T20:58:03.6349174Z * [new branch] gh/bobrenjc93/378/head -> origin/gh/bobrenjc93/378/head 2025-06-01T20:58:03.6349718Z * [new branch] gh/bobrenjc93/378/orig -> origin/gh/bobrenjc93/378/orig 2025-06-01T20:58:03.6350207Z * [new branch] gh/bobrenjc93/379/base -> origin/gh/bobrenjc93/379/base 2025-06-01T20:58:03.6350720Z * [new branch] gh/bobrenjc93/379/head -> origin/gh/bobrenjc93/379/head 2025-06-01T20:58:03.6351223Z * [new branch] gh/bobrenjc93/379/orig -> origin/gh/bobrenjc93/379/orig 2025-06-01T20:58:03.6351726Z * [new branch] gh/bobrenjc93/380/base -> origin/gh/bobrenjc93/380/base 2025-06-01T20:58:03.6352230Z * [new branch] gh/bobrenjc93/380/head -> origin/gh/bobrenjc93/380/head 2025-06-01T20:58:03.6352728Z * [new branch] gh/bobrenjc93/380/orig -> origin/gh/bobrenjc93/380/orig 2025-06-01T20:58:03.6353230Z * [new branch] gh/bobrenjc93/381/base -> origin/gh/bobrenjc93/381/base 2025-06-01T20:58:03.6353721Z * [new branch] gh/bobrenjc93/381/head -> origin/gh/bobrenjc93/381/head 2025-06-01T20:58:03.6354226Z * [new branch] gh/bobrenjc93/381/orig -> origin/gh/bobrenjc93/381/orig 2025-06-01T20:58:03.6354839Z * [new branch] gh/bobrenjc93/382/base -> origin/gh/bobrenjc93/382/base 2025-06-01T20:58:03.6355360Z * [new branch] gh/bobrenjc93/382/head -> origin/gh/bobrenjc93/382/head 2025-06-01T20:58:03.6786965Z * [new branch] gh/bobrenjc93/382/orig -> origin/gh/bobrenjc93/382/orig 2025-06-01T20:58:03.6787478Z * [new branch] gh/bobrenjc93/383/base -> origin/gh/bobrenjc93/383/base 2025-06-01T20:58:03.6787981Z * [new branch] gh/bobrenjc93/383/head -> origin/gh/bobrenjc93/383/head 2025-06-01T20:58:03.6788479Z * [new branch] gh/bobrenjc93/383/orig -> origin/gh/bobrenjc93/383/orig 2025-06-01T20:58:03.6789018Z * [new branch] gh/bobrenjc93/384/base -> origin/gh/bobrenjc93/384/base 2025-06-01T20:58:03.6789562Z * [new branch] gh/bobrenjc93/384/head -> origin/gh/bobrenjc93/384/head 2025-06-01T20:58:03.6790052Z * [new branch] gh/bobrenjc93/384/orig -> origin/gh/bobrenjc93/384/orig 2025-06-01T20:58:03.6790553Z * [new branch] gh/bobrenjc93/385/base -> origin/gh/bobrenjc93/385/base 2025-06-01T20:58:03.6791047Z * [new branch] gh/bobrenjc93/385/head -> origin/gh/bobrenjc93/385/head 2025-06-01T20:58:03.6791547Z * [new branch] gh/bobrenjc93/385/orig -> origin/gh/bobrenjc93/385/orig 2025-06-01T20:58:03.6792047Z * [new branch] gh/bobrenjc93/386/base -> origin/gh/bobrenjc93/386/base 2025-06-01T20:58:03.6792546Z * [new branch] gh/bobrenjc93/386/head -> origin/gh/bobrenjc93/386/head 2025-06-01T20:58:03.6793045Z * [new branch] gh/bobrenjc93/386/orig -> origin/gh/bobrenjc93/386/orig 2025-06-01T20:58:03.6793534Z * [new branch] gh/bobrenjc93/387/base -> origin/gh/bobrenjc93/387/base 2025-06-01T20:58:03.6794032Z * [new branch] gh/bobrenjc93/387/head -> origin/gh/bobrenjc93/387/head 2025-06-01T20:58:03.6794587Z * [new branch] gh/bobrenjc93/387/orig -> origin/gh/bobrenjc93/387/orig 2025-06-01T20:58:03.6795248Z * [new branch] gh/bobrenjc93/388/base -> origin/gh/bobrenjc93/388/base 2025-06-01T20:58:03.6795877Z * [new branch] gh/bobrenjc93/388/head -> origin/gh/bobrenjc93/388/head 2025-06-01T20:58:03.6796382Z * [new branch] gh/bobrenjc93/388/orig -> origin/gh/bobrenjc93/388/orig 2025-06-01T20:58:03.6796876Z * [new branch] gh/bobrenjc93/389/base -> origin/gh/bobrenjc93/389/base 2025-06-01T20:58:03.6797375Z * [new branch] gh/bobrenjc93/389/head -> origin/gh/bobrenjc93/389/head 2025-06-01T20:58:03.6797871Z * [new branch] gh/bobrenjc93/389/orig -> origin/gh/bobrenjc93/389/orig 2025-06-01T20:58:03.6798376Z * [new branch] gh/bobrenjc93/390/base -> origin/gh/bobrenjc93/390/base 2025-06-01T20:58:03.6798869Z * [new branch] gh/bobrenjc93/390/head -> origin/gh/bobrenjc93/390/head 2025-06-01T20:58:03.6799372Z * [new branch] gh/bobrenjc93/390/orig -> origin/gh/bobrenjc93/390/orig 2025-06-01T20:58:03.6799878Z * [new branch] gh/bobrenjc93/391/base -> origin/gh/bobrenjc93/391/base 2025-06-01T20:58:03.6800369Z * [new branch] gh/bobrenjc93/391/head -> origin/gh/bobrenjc93/391/head 2025-06-01T20:58:03.6800907Z * [new branch] gh/bobrenjc93/391/orig -> origin/gh/bobrenjc93/391/orig 2025-06-01T20:58:03.6801435Z * [new branch] gh/bobrenjc93/392/base -> origin/gh/bobrenjc93/392/base 2025-06-01T20:58:03.6801931Z * [new branch] gh/bobrenjc93/392/head -> origin/gh/bobrenjc93/392/head 2025-06-01T20:58:03.6802425Z * [new branch] gh/bobrenjc93/392/orig -> origin/gh/bobrenjc93/392/orig 2025-06-01T20:58:03.6802915Z * [new branch] gh/bobrenjc93/393/base -> origin/gh/bobrenjc93/393/base 2025-06-01T20:58:03.6803411Z * [new branch] gh/bobrenjc93/393/head -> origin/gh/bobrenjc93/393/head 2025-06-01T20:58:03.6803906Z * [new branch] gh/bobrenjc93/393/orig -> origin/gh/bobrenjc93/393/orig 2025-06-01T20:58:03.6804434Z * [new branch] gh/briancoutinho/2/base -> origin/gh/briancoutinho/2/base 2025-06-01T20:58:03.6804970Z * [new branch] gh/briancoutinho/2/head -> origin/gh/briancoutinho/2/head 2025-06-01T20:58:03.6805452Z * [new branch] gh/c00w/23/base -> origin/gh/c00w/23/base 2025-06-01T20:58:03.6805897Z * [new branch] gh/c00w/23/head -> origin/gh/c00w/23/head 2025-06-01T20:58:03.6806333Z * [new branch] gh/c00w/38/base -> origin/gh/c00w/38/base 2025-06-01T20:58:03.6806772Z * [new branch] gh/c00w/38/head -> origin/gh/c00w/38/head 2025-06-01T20:58:03.6807245Z * [new branch] gh/c00w/38/orig -> origin/gh/c00w/38/orig 2025-06-01T20:58:03.6807714Z * [new branch] gh/c00w/44/base -> origin/gh/c00w/44/base 2025-06-01T20:58:03.6808153Z * [new branch] gh/c00w/44/head -> origin/gh/c00w/44/head 2025-06-01T20:58:03.6808586Z * [new branch] gh/c00w/44/orig -> origin/gh/c00w/44/orig 2025-06-01T20:58:03.6809019Z * [new branch] gh/c00w/45/base -> origin/gh/c00w/45/base 2025-06-01T20:58:03.6809447Z * [new branch] gh/c00w/45/orig -> origin/gh/c00w/45/orig 2025-06-01T20:58:03.6809880Z * [new branch] gh/c00w/46/base -> origin/gh/c00w/46/base 2025-06-01T20:58:03.7222859Z * [new branch] gh/c00w/46/head -> origin/gh/c00w/46/head 2025-06-01T20:58:03.7223436Z * [new branch] gh/c00w/46/orig -> origin/gh/c00w/46/orig 2025-06-01T20:58:03.7223884Z * [new branch] gh/c00w/47/base -> origin/gh/c00w/47/base 2025-06-01T20:58:03.7224396Z * [new branch] gh/c00w/47/head -> origin/gh/c00w/47/head 2025-06-01T20:58:03.7224985Z * [new branch] gh/c00w/47/orig -> origin/gh/c00w/47/orig 2025-06-01T20:58:03.7225513Z * [new branch] gh/c00w/48/base -> origin/gh/c00w/48/base 2025-06-01T20:58:03.7225943Z * [new branch] gh/c00w/48/head -> origin/gh/c00w/48/head 2025-06-01T20:58:03.7226377Z * [new branch] gh/c00w/48/orig -> origin/gh/c00w/48/orig 2025-06-01T20:58:03.7226842Z * [new branch] gh/chillee/377/base -> origin/gh/chillee/377/base 2025-06-01T20:58:03.7227319Z * [new branch] gh/chillee/377/head -> origin/gh/chillee/377/head 2025-06-01T20:58:03.7227809Z * [new branch] gh/chillee/377/orig -> origin/gh/chillee/377/orig 2025-06-01T20:58:03.7228302Z * [new branch] gh/chunyuan-w/1/base -> origin/gh/chunyuan-w/1/base 2025-06-01T20:58:03.7228794Z * [new branch] gh/chunyuan-w/1/head -> origin/gh/chunyuan-w/1/head 2025-06-01T20:58:03.7229279Z * [new branch] gh/chunyuan-w/1/orig -> origin/gh/chunyuan-w/1/orig 2025-06-01T20:58:03.7229771Z * [new branch] gh/clee2000/1/base -> origin/gh/clee2000/1/base 2025-06-01T20:58:03.7230245Z * [new branch] gh/clee2000/1/head -> origin/gh/clee2000/1/head 2025-06-01T20:58:03.7230745Z * [new branch] gh/clee2000/1/orig -> origin/gh/clee2000/1/orig 2025-06-01T20:58:03.7231294Z * [new branch] gh/davidberard98/335/base -> origin/gh/davidberard98/335/base 2025-06-01T20:58:03.7231911Z * [new branch] gh/davidberard98/335/head -> origin/gh/davidberard98/335/head 2025-06-01T20:58:03.7232493Z * [new branch] gh/davidberard98/335/orig -> origin/gh/davidberard98/335/orig 2025-06-01T20:58:03.7233068Z * [new branch] gh/davidberard98/343/base -> origin/gh/davidberard98/343/base 2025-06-01T20:58:03.7233647Z * [new branch] gh/davidberard98/343/head -> origin/gh/davidberard98/343/head 2025-06-01T20:58:03.7234270Z * [new branch] gh/davidberard98/343/orig -> origin/gh/davidberard98/343/orig 2025-06-01T20:58:03.7234922Z * [new branch] gh/davidberard98/347/base -> origin/gh/davidberard98/347/base 2025-06-01T20:58:03.7235511Z * [new branch] gh/davidberard98/347/head -> origin/gh/davidberard98/347/head 2025-06-01T20:58:03.7236086Z * [new branch] gh/davidberard98/347/orig -> origin/gh/davidberard98/347/orig 2025-06-01T20:58:03.7236653Z * [new branch] gh/davidberard98/351/base -> origin/gh/davidberard98/351/base 2025-06-01T20:58:03.7237265Z * [new branch] gh/davidberard98/351/head -> origin/gh/davidberard98/351/head 2025-06-01T20:58:03.7237840Z * [new branch] gh/davidberard98/351/orig -> origin/gh/davidberard98/351/orig 2025-06-01T20:58:03.7238399Z * [new branch] gh/davidberard98/352/base -> origin/gh/davidberard98/352/base 2025-06-01T20:58:03.7238979Z * [new branch] gh/davidberard98/352/head -> origin/gh/davidberard98/352/head 2025-06-01T20:58:03.7239549Z * [new branch] gh/davidberard98/352/orig -> origin/gh/davidberard98/352/orig 2025-06-01T20:58:03.7240162Z * [new branch] gh/davidberard98/353/base -> origin/gh/davidberard98/353/base 2025-06-01T20:58:03.7240732Z * [new branch] gh/davidberard98/353/head -> origin/gh/davidberard98/353/head 2025-06-01T20:58:03.7241301Z * [new branch] gh/davidberard98/353/orig -> origin/gh/davidberard98/353/orig 2025-06-01T20:58:03.7241877Z * [new branch] gh/davidberard98/354/base -> origin/gh/davidberard98/354/base 2025-06-01T20:58:03.7242444Z * [new branch] gh/davidberard98/354/head -> origin/gh/davidberard98/354/head 2025-06-01T20:58:03.7243062Z * [new branch] gh/davidberard98/354/orig -> origin/gh/davidberard98/354/orig 2025-06-01T20:58:03.7243717Z * [new branch] gh/davidberard98/355/base -> origin/gh/davidberard98/355/base 2025-06-01T20:58:03.7244376Z * [new branch] gh/davidberard98/355/head -> origin/gh/davidberard98/355/head 2025-06-01T20:58:03.7244992Z * [new branch] gh/davidberard98/355/orig -> origin/gh/davidberard98/355/orig 2025-06-01T20:58:03.7245561Z * [new branch] gh/davidberard98/356/base -> origin/gh/davidberard98/356/base 2025-06-01T20:58:03.7246138Z * [new branch] gh/davidberard98/356/head -> origin/gh/davidberard98/356/head 2025-06-01T20:58:03.7246713Z * [new branch] gh/davidberard98/356/orig -> origin/gh/davidberard98/356/orig 2025-06-01T20:58:03.7247294Z * [new branch] gh/davidberard98/357/base -> origin/gh/davidberard98/357/base 2025-06-01T20:58:03.7656074Z * [new branch] gh/davidberard98/357/head -> origin/gh/davidberard98/357/head 2025-06-01T20:58:03.7656698Z * [new branch] gh/davidberard98/357/orig -> origin/gh/davidberard98/357/orig 2025-06-01T20:58:03.7657276Z * [new branch] gh/davidberard98/358/base -> origin/gh/davidberard98/358/base 2025-06-01T20:58:03.7657815Z * [new branch] gh/davidberard98/358/head -> origin/gh/davidberard98/358/head 2025-06-01T20:58:03.7658347Z * [new branch] gh/davidberard98/358/orig -> origin/gh/davidberard98/358/orig 2025-06-01T20:58:03.7658862Z * [new branch] gh/desertfire/535/base -> origin/gh/desertfire/535/base 2025-06-01T20:58:03.7659361Z * [new branch] gh/desertfire/535/head -> origin/gh/desertfire/535/head 2025-06-01T20:58:03.7659877Z * [new branch] gh/desertfire/535/orig -> origin/gh/desertfire/535/orig 2025-06-01T20:58:03.7660388Z * [new branch] gh/desertfire/542/base -> origin/gh/desertfire/542/base 2025-06-01T20:58:03.7660894Z * [new branch] gh/desertfire/542/head -> origin/gh/desertfire/542/head 2025-06-01T20:58:03.7661404Z * [new branch] gh/desertfire/542/orig -> origin/gh/desertfire/542/orig 2025-06-01T20:58:03.7661940Z * [new branch] gh/desertfire/547/base -> origin/gh/desertfire/547/base 2025-06-01T20:58:03.7662488Z * [new branch] gh/desertfire/547/head -> origin/gh/desertfire/547/head 2025-06-01T20:58:03.7662995Z * [new branch] gh/desertfire/547/orig -> origin/gh/desertfire/547/orig 2025-06-01T20:58:03.7663496Z * [new branch] gh/desertfire/551/base -> origin/gh/desertfire/551/base 2025-06-01T20:58:03.7663996Z * [new branch] gh/desertfire/551/head -> origin/gh/desertfire/551/head 2025-06-01T20:58:03.7664493Z * [new branch] gh/desertfire/551/orig -> origin/gh/desertfire/551/orig 2025-06-01T20:58:03.7664995Z * [new branch] gh/desertfire/559/base -> origin/gh/desertfire/559/base 2025-06-01T20:58:03.7665503Z * [new branch] gh/desertfire/559/head -> origin/gh/desertfire/559/head 2025-06-01T20:58:03.7666013Z * [new branch] gh/desertfire/559/orig -> origin/gh/desertfire/559/orig 2025-06-01T20:58:03.7666514Z * [new branch] gh/desertfire/564/base -> origin/gh/desertfire/564/base 2025-06-01T20:58:03.7667009Z * [new branch] gh/desertfire/564/head -> origin/gh/desertfire/564/head 2025-06-01T20:58:03.7667513Z * [new branch] gh/desertfire/564/orig -> origin/gh/desertfire/564/orig 2025-06-01T20:58:03.7668049Z * [new branch] gh/desertfire/566/base -> origin/gh/desertfire/566/base 2025-06-01T20:58:03.7668594Z * [new branch] gh/desertfire/566/head -> origin/gh/desertfire/566/head 2025-06-01T20:58:03.7669099Z * [new branch] gh/desertfire/566/orig -> origin/gh/desertfire/566/orig 2025-06-01T20:58:03.7669596Z * [new branch] gh/desertfire/567/base -> origin/gh/desertfire/567/base 2025-06-01T20:58:03.7670807Z * [new branch] gh/desertfire/567/head -> origin/gh/desertfire/567/head 2025-06-01T20:58:03.7671871Z * [new branch] gh/desertfire/567/orig -> origin/gh/desertfire/567/orig 2025-06-01T20:58:03.7672419Z * [new branch] gh/desertfire/568/base -> origin/gh/desertfire/568/base 2025-06-01T20:58:03.7672930Z * [new branch] gh/desertfire/568/head -> origin/gh/desertfire/568/head 2025-06-01T20:58:03.7673429Z * [new branch] gh/desertfire/568/orig -> origin/gh/desertfire/568/orig 2025-06-01T20:58:03.7673974Z * [new branch] gh/desertfire/569/base -> origin/gh/desertfire/569/base 2025-06-01T20:58:03.7674544Z * [new branch] gh/desertfire/569/head -> origin/gh/desertfire/569/head 2025-06-01T20:58:03.7675107Z * [new branch] gh/desertfire/569/orig -> origin/gh/desertfire/569/orig 2025-06-01T20:58:03.7675632Z * [new branch] gh/desertfire/570/base -> origin/gh/desertfire/570/base 2025-06-01T20:58:03.7676126Z * [new branch] gh/desertfire/570/head -> origin/gh/desertfire/570/head 2025-06-01T20:58:03.7676633Z * [new branch] gh/desertfire/570/orig -> origin/gh/desertfire/570/orig 2025-06-01T20:58:03.7677125Z * [new branch] gh/desertfire/571/base -> origin/gh/desertfire/571/base 2025-06-01T20:58:03.7677628Z * [new branch] gh/desertfire/571/head -> origin/gh/desertfire/571/head 2025-06-01T20:58:03.7678140Z * [new branch] gh/desertfire/571/orig -> origin/gh/desertfire/571/orig 2025-06-01T20:58:03.7678634Z * [new branch] gh/desertfire/572/base -> origin/gh/desertfire/572/base 2025-06-01T20:58:03.7679144Z * [new branch] gh/desertfire/572/head -> origin/gh/desertfire/572/head 2025-06-01T20:58:03.7679635Z * [new branch] gh/desertfire/572/orig -> origin/gh/desertfire/572/orig 2025-06-01T20:58:03.7680187Z * [new branch] gh/desertfire/573/base -> origin/gh/desertfire/573/base 2025-06-01T20:58:03.8107884Z * [new branch] gh/desertfire/573/head -> origin/gh/desertfire/573/head 2025-06-01T20:58:03.8108431Z * [new branch] gh/desertfire/573/orig -> origin/gh/desertfire/573/orig 2025-06-01T20:58:03.8108965Z * [new branch] gh/desertfire/574/base -> origin/gh/desertfire/574/base 2025-06-01T20:58:03.8109468Z * [new branch] gh/desertfire/574/head -> origin/gh/desertfire/574/head 2025-06-01T20:58:03.8109972Z * [new branch] gh/desertfire/574/orig -> origin/gh/desertfire/574/orig 2025-06-01T20:58:03.8110475Z * [new branch] gh/desertfire/575/base -> origin/gh/desertfire/575/base 2025-06-01T20:58:03.8110969Z * [new branch] gh/desertfire/575/head -> origin/gh/desertfire/575/head 2025-06-01T20:58:03.8111483Z * [new branch] gh/desertfire/575/orig -> origin/gh/desertfire/575/orig 2025-06-01T20:58:03.8111986Z * [new branch] gh/desertfire/576/base -> origin/gh/desertfire/576/base 2025-06-01T20:58:03.8112501Z * [new branch] gh/desertfire/576/head -> origin/gh/desertfire/576/head 2025-06-01T20:58:03.8113004Z * [new branch] gh/desertfire/576/orig -> origin/gh/desertfire/576/orig 2025-06-01T20:58:03.8113498Z * [new branch] gh/desertfire/577/base -> origin/gh/desertfire/577/base 2025-06-01T20:58:03.8114001Z * [new branch] gh/desertfire/577/head -> origin/gh/desertfire/577/head 2025-06-01T20:58:03.8114542Z * [new branch] gh/desertfire/577/orig -> origin/gh/desertfire/577/orig 2025-06-01T20:58:03.8115049Z * [new branch] gh/desertfire/578/base -> origin/gh/desertfire/578/base 2025-06-01T20:58:03.8115556Z * [new branch] gh/desertfire/578/head -> origin/gh/desertfire/578/head 2025-06-01T20:58:03.8116189Z * [new branch] gh/desertfire/578/orig -> origin/gh/desertfire/578/orig 2025-06-01T20:58:03.8116790Z * [new branch] gh/desertfire/579/base -> origin/gh/desertfire/579/base 2025-06-01T20:58:03.8117300Z * [new branch] gh/desertfire/579/head -> origin/gh/desertfire/579/head 2025-06-01T20:58:03.8117810Z * [new branch] gh/desertfire/579/orig -> origin/gh/desertfire/579/orig 2025-06-01T20:58:03.8118326Z * [new branch] gh/desertfire/580/base -> origin/gh/desertfire/580/base 2025-06-01T20:58:03.8118829Z * [new branch] gh/desertfire/580/head -> origin/gh/desertfire/580/head 2025-06-01T20:58:03.8119347Z * [new branch] gh/desertfire/580/orig -> origin/gh/desertfire/580/orig 2025-06-01T20:58:03.8119854Z * [new branch] gh/desertfire/581/base -> origin/gh/desertfire/581/base 2025-06-01T20:58:03.8120368Z * [new branch] gh/desertfire/581/head -> origin/gh/desertfire/581/head 2025-06-01T20:58:03.8120879Z * [new branch] gh/desertfire/581/orig -> origin/gh/desertfire/581/orig 2025-06-01T20:58:03.8121371Z * [new branch] gh/dharakk/1/base -> origin/gh/dharakk/1/base 2025-06-01T20:58:03.8121845Z * [new branch] gh/dharakk/1/head -> origin/gh/dharakk/1/head 2025-06-01T20:58:03.8122306Z * [new branch] gh/dharakk/2/base -> origin/gh/dharakk/2/base 2025-06-01T20:58:03.8122770Z * [new branch] gh/dharakk/2/head -> origin/gh/dharakk/2/head 2025-06-01T20:58:03.8123228Z * [new branch] gh/dharakk/2/orig -> origin/gh/dharakk/2/orig 2025-06-01T20:58:03.8123689Z * [new branch] gh/dharakk/3/base -> origin/gh/dharakk/3/base 2025-06-01T20:58:03.8124146Z * [new branch] gh/dharakk/3/head -> origin/gh/dharakk/3/head 2025-06-01T20:58:03.8124605Z * [new branch] gh/dharakk/3/orig -> origin/gh/dharakk/3/orig 2025-06-01T20:58:03.8125065Z * [new branch] gh/dharakk/4/base -> origin/gh/dharakk/4/base 2025-06-01T20:58:03.8125515Z * [new branch] gh/dharakk/4/head -> origin/gh/dharakk/4/head 2025-06-01T20:58:03.8125972Z * [new branch] gh/dharakk/4/orig -> origin/gh/dharakk/4/orig 2025-06-01T20:58:03.8126433Z * [new branch] gh/dharakk/5/base -> origin/gh/dharakk/5/base 2025-06-01T20:58:03.8126884Z * [new branch] gh/dharakk/5/head -> origin/gh/dharakk/5/head 2025-06-01T20:58:03.8127358Z * [new branch] gh/dharakk/5/orig -> origin/gh/dharakk/5/orig 2025-06-01T20:58:03.8127828Z * [new branch] gh/drisspg/113/head -> origin/gh/drisspg/113/head 2025-06-01T20:58:03.8128311Z * [new branch] gh/drisspg/136/base -> origin/gh/drisspg/136/base 2025-06-01T20:58:03.8128786Z * [new branch] gh/drisspg/136/head -> origin/gh/drisspg/136/head 2025-06-01T20:58:03.8129263Z * [new branch] gh/drisspg/136/orig -> origin/gh/drisspg/136/orig 2025-06-01T20:58:03.8129738Z * [new branch] gh/drisspg/137/base -> origin/gh/drisspg/137/base 2025-06-01T20:58:03.8130207Z * [new branch] gh/drisspg/137/head -> origin/gh/drisspg/137/head 2025-06-01T20:58:03.8130680Z * [new branch] gh/drisspg/137/orig -> origin/gh/drisspg/137/orig 2025-06-01T20:58:04.0421650Z * [new branch] gh/drisspg/138/base -> origin/gh/drisspg/138/base 2025-06-01T20:58:04.0422227Z * [new branch] gh/drisspg/138/head -> origin/gh/drisspg/138/head 2025-06-01T20:58:04.0422739Z * [new branch] gh/drisspg/138/orig -> origin/gh/drisspg/138/orig 2025-06-01T20:58:04.0423231Z * [new branch] gh/drisspg/140/base -> origin/gh/drisspg/140/base 2025-06-01T20:58:04.0423883Z * [new branch] gh/drisspg/140/head -> origin/gh/drisspg/140/head 2025-06-01T20:58:04.0424467Z * [new branch] gh/drisspg/140/orig -> origin/gh/drisspg/140/orig 2025-06-01T20:58:04.0424942Z * [new branch] gh/drisspg/143/base -> origin/gh/drisspg/143/base 2025-06-01T20:58:04.0425431Z * [new branch] gh/drisspg/143/head -> origin/gh/drisspg/143/head 2025-06-01T20:58:04.0425904Z * [new branch] gh/drisspg/143/orig -> origin/gh/drisspg/143/orig 2025-06-01T20:58:04.0426383Z * [new branch] gh/drisspg/144/base -> origin/gh/drisspg/144/base 2025-06-01T20:58:04.0426860Z * [new branch] gh/drisspg/144/head -> origin/gh/drisspg/144/head 2025-06-01T20:58:04.0427378Z * [new branch] gh/drisspg/144/orig -> origin/gh/drisspg/144/orig 2025-06-01T20:58:04.0427902Z * [new branch] gh/drisspg/145/base -> origin/gh/drisspg/145/base 2025-06-01T20:58:04.0428379Z * [new branch] gh/drisspg/145/head -> origin/gh/drisspg/145/head 2025-06-01T20:58:04.0428860Z * [new branch] gh/drisspg/145/orig -> origin/gh/drisspg/145/orig 2025-06-01T20:58:04.0429332Z * [new branch] gh/drisspg/146/base -> origin/gh/drisspg/146/base 2025-06-01T20:58:04.0429797Z * [new branch] gh/drisspg/146/head -> origin/gh/drisspg/146/head 2025-06-01T20:58:04.0430276Z * [new branch] gh/drisspg/146/orig -> origin/gh/drisspg/146/orig 2025-06-01T20:58:04.0430749Z * [new branch] gh/drisspg/147/base -> origin/gh/drisspg/147/base 2025-06-01T20:58:04.0431232Z * [new branch] gh/drisspg/147/head -> origin/gh/drisspg/147/head 2025-06-01T20:58:04.0431711Z * [new branch] gh/drisspg/147/orig -> origin/gh/drisspg/147/orig 2025-06-01T20:58:04.0432179Z * [new branch] gh/drisspg/148/base -> origin/gh/drisspg/148/base 2025-06-01T20:58:04.0432656Z * [new branch] gh/drisspg/148/head -> origin/gh/drisspg/148/head 2025-06-01T20:58:04.0433247Z * [new branch] gh/drisspg/148/orig -> origin/gh/drisspg/148/orig 2025-06-01T20:58:04.0433761Z * [new branch] gh/drisspg/149/base -> origin/gh/drisspg/149/base 2025-06-01T20:58:04.0434282Z * [new branch] gh/drisspg/149/head -> origin/gh/drisspg/149/head 2025-06-01T20:58:04.0434870Z * [new branch] gh/drisspg/149/orig -> origin/gh/drisspg/149/orig 2025-06-01T20:58:04.0435361Z * [new branch] gh/drisspg/150/base -> origin/gh/drisspg/150/base 2025-06-01T20:58:04.0435913Z * [new branch] gh/drisspg/150/head -> origin/gh/drisspg/150/head 2025-06-01T20:58:04.0436448Z * [new branch] gh/drisspg/150/orig -> origin/gh/drisspg/150/orig 2025-06-01T20:58:04.0436918Z * [new branch] gh/drisspg/151/base -> origin/gh/drisspg/151/base 2025-06-01T20:58:04.0437445Z * [new branch] gh/drisspg/151/head -> origin/gh/drisspg/151/head 2025-06-01T20:58:04.0437968Z * [new branch] gh/drisspg/151/orig -> origin/gh/drisspg/151/orig 2025-06-01T20:58:04.0438438Z * [new branch] gh/drisspg/152/base -> origin/gh/drisspg/152/base 2025-06-01T20:58:04.0438956Z * [new branch] gh/drisspg/152/head -> origin/gh/drisspg/152/head 2025-06-01T20:58:04.0439464Z * [new branch] gh/drisspg/152/orig -> origin/gh/drisspg/152/orig 2025-06-01T20:58:04.0439947Z * [new branch] gh/dsjohns2/1/base -> origin/gh/dsjohns2/1/base 2025-06-01T20:58:04.0440431Z * [new branch] gh/dsjohns2/1/head -> origin/gh/dsjohns2/1/head 2025-06-01T20:58:04.0440992Z * [new branch] gh/eellison/691/base -> origin/gh/eellison/691/base 2025-06-01T20:58:04.0441610Z * [new branch] gh/eellison/691/head -> origin/gh/eellison/691/head 2025-06-01T20:58:04.0442171Z * [new branch] gh/eellison/691/orig -> origin/gh/eellison/691/orig 2025-06-01T20:58:04.0442700Z * [new branch] gh/eellison/761/base -> origin/gh/eellison/761/base 2025-06-01T20:58:04.0443190Z * [new branch] gh/eellison/761/head -> origin/gh/eellison/761/head 2025-06-01T20:58:04.0443751Z * [new branch] gh/eellison/761/orig -> origin/gh/eellison/761/orig 2025-06-01T20:58:04.0444280Z * [new branch] gh/eellison/764/base -> origin/gh/eellison/764/base 2025-06-01T20:58:04.0444801Z * [new branch] gh/eellison/764/head -> origin/gh/eellison/764/head 2025-06-01T20:58:04.0445330Z * [new branch] gh/eellison/764/orig -> origin/gh/eellison/764/orig 2025-06-01T20:58:04.0887528Z * [new branch] gh/eellison/767/base -> origin/gh/eellison/767/base 2025-06-01T20:58:04.0888095Z * [new branch] gh/eellison/767/head -> origin/gh/eellison/767/head 2025-06-01T20:58:04.0888601Z * [new branch] gh/eellison/767/orig -> origin/gh/eellison/767/orig 2025-06-01T20:58:04.0889116Z * [new branch] gh/eellison/779/base -> origin/gh/eellison/779/base 2025-06-01T20:58:04.0889637Z * [new branch] gh/eellison/779/head -> origin/gh/eellison/779/head 2025-06-01T20:58:04.0890129Z * [new branch] gh/eellison/779/orig -> origin/gh/eellison/779/orig 2025-06-01T20:58:04.0890649Z * [new branch] gh/eellison/781/base -> origin/gh/eellison/781/base 2025-06-01T20:58:04.0891181Z * [new branch] gh/eellison/781/head -> origin/gh/eellison/781/head 2025-06-01T20:58:04.0891702Z * [new branch] gh/eellison/781/orig -> origin/gh/eellison/781/orig 2025-06-01T20:58:04.0892245Z * [new branch] gh/eellison/783/base -> origin/gh/eellison/783/base 2025-06-01T20:58:04.0892736Z * [new branch] gh/eellison/783/head -> origin/gh/eellison/783/head 2025-06-01T20:58:04.0893248Z * [new branch] gh/eellison/783/orig -> origin/gh/eellison/783/orig 2025-06-01T20:58:04.0893808Z * [new branch] gh/eellison/784/base -> origin/gh/eellison/784/base 2025-06-01T20:58:04.0894289Z * [new branch] gh/eellison/784/head -> origin/gh/eellison/784/head 2025-06-01T20:58:04.0894815Z * [new branch] gh/eellison/784/orig -> origin/gh/eellison/784/orig 2025-06-01T20:58:04.0895337Z * [new branch] gh/eellison/785/base -> origin/gh/eellison/785/base 2025-06-01T20:58:04.0895827Z * [new branch] gh/eellison/785/head -> origin/gh/eellison/785/head 2025-06-01T20:58:04.0896313Z * [new branch] gh/eellison/785/orig -> origin/gh/eellison/785/orig 2025-06-01T20:58:04.0896790Z * [new branch] gh/eellison/786/base -> origin/gh/eellison/786/base 2025-06-01T20:58:04.0897282Z * [new branch] gh/eellison/786/head -> origin/gh/eellison/786/head 2025-06-01T20:58:04.0897755Z * [new branch] gh/eellison/786/orig -> origin/gh/eellison/786/orig 2025-06-01T20:58:04.0898283Z * [new branch] gh/eellison/787/base -> origin/gh/eellison/787/base 2025-06-01T20:58:04.0898800Z * [new branch] gh/eellison/787/head -> origin/gh/eellison/787/head 2025-06-01T20:58:04.0899290Z * [new branch] gh/eellison/787/orig -> origin/gh/eellison/787/orig 2025-06-01T20:58:04.0899808Z * [new branch] gh/eellison/788/base -> origin/gh/eellison/788/base 2025-06-01T20:58:04.0900285Z * [new branch] gh/eellison/788/head -> origin/gh/eellison/788/head 2025-06-01T20:58:04.0900806Z * [new branch] gh/eellison/788/orig -> origin/gh/eellison/788/orig 2025-06-01T20:58:04.0901599Z * [new branch] gh/eellison/789/base -> origin/gh/eellison/789/base 2025-06-01T20:58:04.0902094Z * [new branch] gh/eellison/789/head -> origin/gh/eellison/789/head 2025-06-01T20:58:04.0902578Z * [new branch] gh/eellison/789/orig -> origin/gh/eellison/789/orig 2025-06-01T20:58:04.0903054Z * [new branch] gh/eellison/790/base -> origin/gh/eellison/790/base 2025-06-01T20:58:04.0903542Z * [new branch] gh/eellison/790/head -> origin/gh/eellison/790/head 2025-06-01T20:58:04.0904060Z * [new branch] gh/eellison/790/orig -> origin/gh/eellison/790/orig 2025-06-01T20:58:04.0904592Z * [new branch] gh/eellison/791/base -> origin/gh/eellison/791/base 2025-06-01T20:58:04.0905118Z * [new branch] gh/eellison/791/head -> origin/gh/eellison/791/head 2025-06-01T20:58:04.0905674Z * [new branch] gh/eellison/791/orig -> origin/gh/eellison/791/orig 2025-06-01T20:58:04.0906207Z * [new branch] gh/eellison/792/base -> origin/gh/eellison/792/base 2025-06-01T20:58:04.0906684Z * [new branch] gh/eellison/792/head -> origin/gh/eellison/792/head 2025-06-01T20:58:04.0907204Z * [new branch] gh/eellison/792/orig -> origin/gh/eellison/792/orig 2025-06-01T20:58:04.0907724Z * [new branch] gh/eellison/793/base -> origin/gh/eellison/793/base 2025-06-01T20:58:04.0908195Z * [new branch] gh/eellison/793/head -> origin/gh/eellison/793/head 2025-06-01T20:58:04.0908678Z * [new branch] gh/eellison/793/orig -> origin/gh/eellison/793/orig 2025-06-01T20:58:04.0909151Z * [new branch] gh/eellison/794/base -> origin/gh/eellison/794/base 2025-06-01T20:58:04.0909633Z * [new branch] gh/eellison/794/head -> origin/gh/eellison/794/head 2025-06-01T20:58:04.0910110Z * [new branch] gh/eellison/794/orig -> origin/gh/eellison/794/orig 2025-06-01T20:58:04.0910599Z * [new branch] gh/eellison/795/base -> origin/gh/eellison/795/base 2025-06-01T20:58:04.1349994Z * [new branch] gh/eellison/795/head -> origin/gh/eellison/795/head 2025-06-01T20:58:04.1350488Z * [new branch] gh/eellison/795/orig -> origin/gh/eellison/795/orig 2025-06-01T20:58:04.1350966Z * [new branch] gh/eellison/796/base -> origin/gh/eellison/796/base 2025-06-01T20:58:04.1351450Z * [new branch] gh/eellison/796/head -> origin/gh/eellison/796/head 2025-06-01T20:58:04.1351928Z * [new branch] gh/eellison/796/orig -> origin/gh/eellison/796/orig 2025-06-01T20:58:04.1352407Z * [new branch] gh/eellison/797/base -> origin/gh/eellison/797/base 2025-06-01T20:58:04.1352877Z * [new branch] gh/eellison/797/head -> origin/gh/eellison/797/head 2025-06-01T20:58:04.1353376Z * [new branch] gh/eellison/797/orig -> origin/gh/eellison/797/orig 2025-06-01T20:58:04.1353863Z * [new branch] gh/eellison/798/base -> origin/gh/eellison/798/base 2025-06-01T20:58:04.1354423Z * [new branch] gh/eellison/798/head -> origin/gh/eellison/798/head 2025-06-01T20:58:04.1354907Z * [new branch] gh/eellison/798/orig -> origin/gh/eellison/798/orig 2025-06-01T20:58:04.1355380Z * [new branch] gh/eellison/799/base -> origin/gh/eellison/799/base 2025-06-01T20:58:04.1355860Z * [new branch] gh/eellison/799/head -> origin/gh/eellison/799/head 2025-06-01T20:58:04.1356339Z * [new branch] gh/eellison/799/orig -> origin/gh/eellison/799/orig 2025-06-01T20:58:04.1356806Z * [new branch] gh/eellison/800/base -> origin/gh/eellison/800/base 2025-06-01T20:58:04.1357426Z * [new branch] gh/eellison/800/head -> origin/gh/eellison/800/head 2025-06-01T20:58:04.1357985Z * [new branch] gh/eellison/800/orig -> origin/gh/eellison/800/orig 2025-06-01T20:58:04.1358471Z * [new branch] gh/eellison/801/base -> origin/gh/eellison/801/base 2025-06-01T20:58:04.1358943Z * [new branch] gh/eellison/801/head -> origin/gh/eellison/801/head 2025-06-01T20:58:04.1359432Z * [new branch] gh/eellison/801/orig -> origin/gh/eellison/801/orig 2025-06-01T20:58:04.1359916Z * [new branch] gh/eellison/802/base -> origin/gh/eellison/802/base 2025-06-01T20:58:04.1360391Z * [new branch] gh/eellison/802/head -> origin/gh/eellison/802/head 2025-06-01T20:58:04.1360879Z * [new branch] gh/eellison/802/orig -> origin/gh/eellison/802/orig 2025-06-01T20:58:04.1361353Z * [new branch] gh/eellison/803/base -> origin/gh/eellison/803/base 2025-06-01T20:58:04.1361839Z * [new branch] gh/eellison/803/head -> origin/gh/eellison/803/head 2025-06-01T20:58:04.1362326Z * [new branch] gh/eellison/803/orig -> origin/gh/eellison/803/orig 2025-06-01T20:58:04.1362786Z * [new branch] gh/etaf/117/base -> origin/gh/etaf/117/base 2025-06-01T20:58:04.1363239Z * [new branch] gh/etaf/117/head -> origin/gh/etaf/117/head 2025-06-01T20:58:04.1363679Z * [new branch] gh/etaf/117/orig -> origin/gh/etaf/117/orig 2025-06-01T20:58:04.1364122Z * [new branch] gh/etaf/119/base -> origin/gh/etaf/119/base 2025-06-01T20:58:04.1364569Z * [new branch] gh/etaf/119/head -> origin/gh/etaf/119/head 2025-06-01T20:58:04.1365010Z * [new branch] gh/etaf/119/orig -> origin/gh/etaf/119/orig 2025-06-01T20:58:04.1365450Z * [new branch] gh/etaf/120/base -> origin/gh/etaf/120/base 2025-06-01T20:58:04.1365889Z * [new branch] gh/etaf/120/head -> origin/gh/etaf/120/head 2025-06-01T20:58:04.1366334Z * [new branch] gh/etaf/120/orig -> origin/gh/etaf/120/orig 2025-06-01T20:58:04.1366768Z * [new branch] gh/etaf/121/base -> origin/gh/etaf/121/base 2025-06-01T20:58:04.1367217Z * [new branch] gh/etaf/121/head -> origin/gh/etaf/121/head 2025-06-01T20:58:04.1367660Z * [new branch] gh/etaf/121/orig -> origin/gh/etaf/121/orig 2025-06-01T20:58:04.1368101Z * [new branch] gh/etaf/122/base -> origin/gh/etaf/122/base 2025-06-01T20:58:04.1368543Z * [new branch] gh/etaf/122/head -> origin/gh/etaf/122/head 2025-06-01T20:58:04.1368975Z * [new branch] gh/etaf/122/orig -> origin/gh/etaf/122/orig 2025-06-01T20:58:04.1369422Z * [new branch] gh/etaf/123/base -> origin/gh/etaf/123/base 2025-06-01T20:58:04.1369874Z * [new branch] gh/etaf/123/head -> origin/gh/etaf/123/head 2025-06-01T20:58:04.1370312Z * [new branch] gh/etaf/123/orig -> origin/gh/etaf/123/orig 2025-06-01T20:58:04.1370761Z * [new branch] gh/etaf/124/base -> origin/gh/etaf/124/base 2025-06-01T20:58:04.1371198Z * [new branch] gh/etaf/124/head -> origin/gh/etaf/124/head 2025-06-01T20:58:04.1371650Z * [new branch] gh/etaf/124/orig -> origin/gh/etaf/124/orig 2025-06-01T20:58:04.1372092Z * [new branch] gh/etaf/125/base -> origin/gh/etaf/125/base 2025-06-01T20:58:04.1834667Z * [new branch] gh/etaf/125/head -> origin/gh/etaf/125/head 2025-06-01T20:58:04.1835229Z * [new branch] gh/etaf/125/orig -> origin/gh/etaf/125/orig 2025-06-01T20:58:04.1835724Z * [new branch] gh/etaf/126/base -> origin/gh/etaf/126/base 2025-06-01T20:58:04.1836308Z * [new branch] gh/etaf/126/head -> origin/gh/etaf/126/head 2025-06-01T20:58:04.1836848Z * [new branch] gh/etaf/126/orig -> origin/gh/etaf/126/orig 2025-06-01T20:58:04.1837291Z * [new branch] gh/etaf/127/base -> origin/gh/etaf/127/base 2025-06-01T20:58:04.1837737Z * [new branch] gh/etaf/127/head -> origin/gh/etaf/127/head 2025-06-01T20:58:04.1838180Z * [new branch] gh/etaf/127/orig -> origin/gh/etaf/127/orig 2025-06-01T20:58:04.1838639Z * [new branch] gh/etaf/128/base -> origin/gh/etaf/128/base 2025-06-01T20:58:04.1839088Z * [new branch] gh/etaf/128/head -> origin/gh/etaf/128/head 2025-06-01T20:58:04.1839528Z * [new branch] gh/etaf/128/orig -> origin/gh/etaf/128/orig 2025-06-01T20:58:04.1839973Z * [new branch] gh/etaf/129/base -> origin/gh/etaf/129/base 2025-06-01T20:58:04.1840408Z * [new branch] gh/etaf/129/head -> origin/gh/etaf/129/head 2025-06-01T20:58:04.1840905Z * [new branch] gh/etaf/129/orig -> origin/gh/etaf/129/orig 2025-06-01T20:58:04.1841385Z * [new branch] gh/etaf/130/base -> origin/gh/etaf/130/base 2025-06-01T20:58:04.1841822Z * [new branch] gh/etaf/130/head -> origin/gh/etaf/130/head 2025-06-01T20:58:04.1842270Z * [new branch] gh/etaf/130/orig -> origin/gh/etaf/130/orig 2025-06-01T20:58:04.1842706Z * [new branch] gh/etaf/131/base -> origin/gh/etaf/131/base 2025-06-01T20:58:04.1843151Z * [new branch] gh/etaf/131/head -> origin/gh/etaf/131/head 2025-06-01T20:58:04.1843583Z * [new branch] gh/etaf/131/orig -> origin/gh/etaf/131/orig 2025-06-01T20:58:04.1844028Z * [new branch] gh/etaf/132/base -> origin/gh/etaf/132/base 2025-06-01T20:58:04.1844478Z * [new branch] gh/etaf/132/head -> origin/gh/etaf/132/head 2025-06-01T20:58:04.1844921Z * [new branch] gh/etaf/132/orig -> origin/gh/etaf/132/orig 2025-06-01T20:58:04.1845368Z * [new branch] gh/etaf/133/base -> origin/gh/etaf/133/base 2025-06-01T20:58:04.1845809Z * [new branch] gh/etaf/133/head -> origin/gh/etaf/133/head 2025-06-01T20:58:04.1846288Z * [new branch] gh/etaf/133/orig -> origin/gh/etaf/133/orig 2025-06-01T20:58:04.1846734Z * [new branch] gh/etaf/134/base -> origin/gh/etaf/134/base 2025-06-01T20:58:04.1847203Z * [new branch] gh/etaf/134/head -> origin/gh/etaf/134/head 2025-06-01T20:58:04.1847650Z * [new branch] gh/etaf/134/orig -> origin/gh/etaf/134/orig 2025-06-01T20:58:04.1848105Z * [new branch] gh/ezyang/2374/base -> origin/gh/ezyang/2374/base 2025-06-01T20:58:04.1848586Z * [new branch] gh/ezyang/2374/head -> origin/gh/ezyang/2374/head 2025-06-01T20:58:04.1849070Z * [new branch] gh/ezyang/2374/orig -> origin/gh/ezyang/2374/orig 2025-06-01T20:58:04.1849540Z * [new branch] gh/ezyang/2479/next -> origin/gh/ezyang/2479/next 2025-06-01T20:58:04.1850007Z * [new branch] gh/ezyang/2480/next -> origin/gh/ezyang/2480/next 2025-06-01T20:58:04.1850467Z * [new branch] gh/ezyang/2973/base -> origin/gh/ezyang/2973/base 2025-06-01T20:58:04.1850938Z * [new branch] gh/ezyang/2973/head -> origin/gh/ezyang/2973/head 2025-06-01T20:58:04.1851398Z * [new branch] gh/ezyang/2973/orig -> origin/gh/ezyang/2973/orig 2025-06-01T20:58:04.1851872Z * [new branch] gh/ezyang/2974/base -> origin/gh/ezyang/2974/base 2025-06-01T20:58:04.1852380Z * [new branch] gh/ezyang/2974/head -> origin/gh/ezyang/2974/head 2025-06-01T20:58:04.1853062Z * [new branch] gh/ezyang/2974/orig -> origin/gh/ezyang/2974/orig 2025-06-01T20:58:04.1853541Z * [new branch] gh/ezyang/3031/base -> origin/gh/ezyang/3031/base 2025-06-01T20:58:04.1853999Z * [new branch] gh/ezyang/3031/head -> origin/gh/ezyang/3031/head 2025-06-01T20:58:04.1854473Z * [new branch] gh/ezyang/3031/orig -> origin/gh/ezyang/3031/orig 2025-06-01T20:58:04.1854945Z * [new branch] gh/ezyang/3068/base -> origin/gh/ezyang/3068/base 2025-06-01T20:58:04.1855413Z * [new branch] gh/ezyang/3068/head -> origin/gh/ezyang/3068/head 2025-06-01T20:58:04.1855881Z * [new branch] gh/ezyang/3068/orig -> origin/gh/ezyang/3068/orig 2025-06-01T20:58:04.1856343Z * [new branch] gh/ezyang/3069/base -> origin/gh/ezyang/3069/base 2025-06-01T20:58:04.1856815Z * [new branch] gh/ezyang/3069/head -> origin/gh/ezyang/3069/head 2025-06-01T20:58:04.2301779Z * [new branch] gh/ezyang/3069/orig -> origin/gh/ezyang/3069/orig 2025-06-01T20:58:04.2302306Z * [new branch] gh/ezyang/3070/base -> origin/gh/ezyang/3070/base 2025-06-01T20:58:04.2302812Z * [new branch] gh/ezyang/3070/head -> origin/gh/ezyang/3070/head 2025-06-01T20:58:04.2303285Z * [new branch] gh/ezyang/3070/orig -> origin/gh/ezyang/3070/orig 2025-06-01T20:58:04.2303755Z * [new branch] gh/fadara01/1/base -> origin/gh/fadara01/1/base 2025-06-01T20:58:04.2304233Z * [new branch] gh/fadara01/1/head -> origin/gh/fadara01/1/head 2025-06-01T20:58:04.2304687Z * [new branch] gh/fadara01/1/orig -> origin/gh/fadara01/1/orig 2025-06-01T20:58:04.2305161Z * [new branch] gh/fduwjj/134/base -> origin/gh/fduwjj/134/base 2025-06-01T20:58:04.2305636Z * [new branch] gh/fduwjj/134/head -> origin/gh/fduwjj/134/head 2025-06-01T20:58:04.2306096Z * [new branch] gh/fduwjj/134/orig -> origin/gh/fduwjj/134/orig 2025-06-01T20:58:04.2306563Z * [new branch] gh/fduwjj/135/base -> origin/gh/fduwjj/135/base 2025-06-01T20:58:04.2307060Z * [new branch] gh/fduwjj/135/head -> origin/gh/fduwjj/135/head 2025-06-01T20:58:04.2307565Z * [new branch] gh/fduwjj/135/orig -> origin/gh/fduwjj/135/orig 2025-06-01T20:58:04.2308028Z * [new branch] gh/fduwjj/136/base -> origin/gh/fduwjj/136/base 2025-06-01T20:58:04.2308488Z * [new branch] gh/fduwjj/136/head -> origin/gh/fduwjj/136/head 2025-06-01T20:58:04.2308951Z * [new branch] gh/fduwjj/136/orig -> origin/gh/fduwjj/136/orig 2025-06-01T20:58:04.2309403Z * [new branch] gh/fduwjj/137/base -> origin/gh/fduwjj/137/base 2025-06-01T20:58:04.2309869Z * [new branch] gh/fduwjj/137/head -> origin/gh/fduwjj/137/head 2025-06-01T20:58:04.2310332Z * [new branch] gh/fduwjj/137/orig -> origin/gh/fduwjj/137/orig 2025-06-01T20:58:04.2310790Z * [new branch] gh/fduwjj/138/base -> origin/gh/fduwjj/138/base 2025-06-01T20:58:04.2311249Z * [new branch] gh/fduwjj/138/head -> origin/gh/fduwjj/138/head 2025-06-01T20:58:04.2311710Z * [new branch] gh/fduwjj/138/orig -> origin/gh/fduwjj/138/orig 2025-06-01T20:58:04.2312171Z * [new branch] gh/fduwjj/139/base -> origin/gh/fduwjj/139/base 2025-06-01T20:58:04.2312622Z * [new branch] gh/fduwjj/139/head -> origin/gh/fduwjj/139/head 2025-06-01T20:58:04.2313167Z * [new branch] gh/fduwjj/139/orig -> origin/gh/fduwjj/139/orig 2025-06-01T20:58:04.2313636Z * [new branch] gh/fduwjj/140/base -> origin/gh/fduwjj/140/base 2025-06-01T20:58:04.2314264Z * [new branch] gh/fduwjj/140/head -> origin/gh/fduwjj/140/head 2025-06-01T20:58:04.2314911Z * [new branch] gh/fduwjj/140/orig -> origin/gh/fduwjj/140/orig 2025-06-01T20:58:04.2315372Z * [new branch] gh/fduwjj/141/base -> origin/gh/fduwjj/141/base 2025-06-01T20:58:04.2315842Z * [new branch] gh/fduwjj/141/head -> origin/gh/fduwjj/141/head 2025-06-01T20:58:04.2316310Z * [new branch] gh/fduwjj/141/orig -> origin/gh/fduwjj/141/orig 2025-06-01T20:58:04.2316777Z * [new branch] gh/fduwjj/142/base -> origin/gh/fduwjj/142/base 2025-06-01T20:58:04.2317247Z * [new branch] gh/fduwjj/142/head -> origin/gh/fduwjj/142/head 2025-06-01T20:58:04.2317717Z * [new branch] gh/fduwjj/142/orig -> origin/gh/fduwjj/142/orig 2025-06-01T20:58:04.2318183Z * [new branch] gh/fegin/297/base -> origin/gh/fegin/297/base 2025-06-01T20:58:04.2318703Z * [new branch] gh/fegin/297/head -> origin/gh/fegin/297/head 2025-06-01T20:58:04.2319212Z * [new branch] gh/fegin/297/orig -> origin/gh/fegin/297/orig 2025-06-01T20:58:04.2319671Z * [new branch] gh/fegin/299/base -> origin/gh/fegin/299/base 2025-06-01T20:58:04.2320123Z * [new branch] gh/fegin/299/head -> origin/gh/fegin/299/head 2025-06-01T20:58:04.2320576Z * [new branch] gh/fegin/299/orig -> origin/gh/fegin/299/orig 2025-06-01T20:58:04.2321026Z * [new branch] gh/fegin/300/base -> origin/gh/fegin/300/base 2025-06-01T20:58:04.2321484Z * [new branch] gh/fegin/300/head -> origin/gh/fegin/300/head 2025-06-01T20:58:04.2321937Z * [new branch] gh/fegin/300/orig -> origin/gh/fegin/300/orig 2025-06-01T20:58:04.2322383Z * [new branch] gh/fegin/301/base -> origin/gh/fegin/301/base 2025-06-01T20:58:04.2322853Z * [new branch] gh/fegin/301/head -> origin/gh/fegin/301/head 2025-06-01T20:58:04.2323308Z * [new branch] gh/fegin/301/orig -> origin/gh/fegin/301/orig 2025-06-01T20:58:04.2323764Z * [new branch] gh/fegin/302/base -> origin/gh/fegin/302/base 2025-06-01T20:58:04.2324255Z * [new branch] gh/fegin/302/head -> origin/gh/fegin/302/head 2025-06-01T20:58:04.2781404Z * [new branch] gh/fegin/302/orig -> origin/gh/fegin/302/orig 2025-06-01T20:58:04.2781930Z * [new branch] gh/fegin/303/base -> origin/gh/fegin/303/base 2025-06-01T20:58:04.2782400Z * [new branch] gh/fegin/303/head -> origin/gh/fegin/303/head 2025-06-01T20:58:04.2782863Z * [new branch] gh/fegin/303/orig -> origin/gh/fegin/303/orig 2025-06-01T20:58:04.2783335Z * [new branch] gh/fegin/304/base -> origin/gh/fegin/304/base 2025-06-01T20:58:04.2783802Z * [new branch] gh/fegin/304/head -> origin/gh/fegin/304/head 2025-06-01T20:58:04.2784259Z * [new branch] gh/fegin/304/orig -> origin/gh/fegin/304/orig 2025-06-01T20:58:04.2784719Z * [new branch] gh/fegin/305/base -> origin/gh/fegin/305/base 2025-06-01T20:58:04.2785182Z * [new branch] gh/fegin/305/head -> origin/gh/fegin/305/head 2025-06-01T20:58:04.2785641Z * [new branch] gh/fegin/305/orig -> origin/gh/fegin/305/orig 2025-06-01T20:58:04.2786094Z * [new branch] gh/fegin/306/base -> origin/gh/fegin/306/base 2025-06-01T20:58:04.2786551Z * [new branch] gh/fegin/306/head -> origin/gh/fegin/306/head 2025-06-01T20:58:04.2787003Z * [new branch] gh/fegin/306/orig -> origin/gh/fegin/306/orig 2025-06-01T20:58:04.2787612Z * [new branch] gh/fegin/307/base -> origin/gh/fegin/307/base 2025-06-01T20:58:04.2788161Z * [new branch] gh/fegin/307/head -> origin/gh/fegin/307/head 2025-06-01T20:58:04.2788619Z * [new branch] gh/fegin/307/orig -> origin/gh/fegin/307/orig 2025-06-01T20:58:04.2789082Z * [new branch] gh/fffrog/39/base -> origin/gh/fffrog/39/base 2025-06-01T20:58:04.2789731Z * [new branch] gh/fffrog/39/head -> origin/gh/fffrog/39/head 2025-06-01T20:58:04.2790256Z * [new branch] gh/fffrog/39/orig -> origin/gh/fffrog/39/orig 2025-06-01T20:58:04.2790711Z * [new branch] gh/fffrog/49/base -> origin/gh/fffrog/49/base 2025-06-01T20:58:04.2791193Z * [new branch] gh/fffrog/49/head -> origin/gh/fffrog/49/head 2025-06-01T20:58:04.2791657Z * [new branch] gh/fffrog/49/orig -> origin/gh/fffrog/49/orig 2025-06-01T20:58:04.2792121Z * [new branch] gh/fffrog/67/base -> origin/gh/fffrog/67/base 2025-06-01T20:58:04.2792580Z * [new branch] gh/fffrog/67/head -> origin/gh/fffrog/67/head 2025-06-01T20:58:04.2793024Z * [new branch] gh/fffrog/67/orig -> origin/gh/fffrog/67/orig 2025-06-01T20:58:04.2793483Z * [new branch] gh/fffrog/75/base -> origin/gh/fffrog/75/base 2025-06-01T20:58:04.2793943Z * [new branch] gh/fffrog/75/head -> origin/gh/fffrog/75/head 2025-06-01T20:58:04.2794460Z * [new branch] gh/fffrog/75/orig -> origin/gh/fffrog/75/orig 2025-06-01T20:58:04.2794968Z * [new branch] gh/fffrog/76/base -> origin/gh/fffrog/76/base 2025-06-01T20:58:04.2795464Z * [new branch] gh/fffrog/76/head -> origin/gh/fffrog/76/head 2025-06-01T20:58:04.2795926Z * [new branch] gh/fffrog/76/orig -> origin/gh/fffrog/76/orig 2025-06-01T20:58:04.2796381Z * [new branch] gh/fffrog/77/base -> origin/gh/fffrog/77/base 2025-06-01T20:58:04.2796843Z * [new branch] gh/fffrog/77/head -> origin/gh/fffrog/77/head 2025-06-01T20:58:04.2797294Z * [new branch] gh/fffrog/77/orig -> origin/gh/fffrog/77/orig 2025-06-01T20:58:04.2797745Z * [new branch] gh/fffrog/78/base -> origin/gh/fffrog/78/base 2025-06-01T20:58:04.2798202Z * [new branch] gh/fffrog/78/head -> origin/gh/fffrog/78/head 2025-06-01T20:58:04.2798652Z * [new branch] gh/fffrog/78/orig -> origin/gh/fffrog/78/orig 2025-06-01T20:58:04.2799109Z * [new branch] gh/fffrog/80/base -> origin/gh/fffrog/80/base 2025-06-01T20:58:04.2799565Z * [new branch] gh/fffrog/80/head -> origin/gh/fffrog/80/head 2025-06-01T20:58:04.2800011Z * [new branch] gh/fffrog/80/orig -> origin/gh/fffrog/80/orig 2025-06-01T20:58:04.2800507Z * [new branch] gh/fffrog/81/base -> origin/gh/fffrog/81/base 2025-06-01T20:58:04.2800966Z * [new branch] gh/fffrog/81/head -> origin/gh/fffrog/81/head 2025-06-01T20:58:04.2801469Z * [new branch] gh/fffrog/81/orig -> origin/gh/fffrog/81/orig 2025-06-01T20:58:04.2801929Z * [new branch] gh/fffrog/84/base -> origin/gh/fffrog/84/base 2025-06-01T20:58:04.2802383Z * [new branch] gh/fffrog/84/head -> origin/gh/fffrog/84/head 2025-06-01T20:58:04.2802846Z * [new branch] gh/fffrog/84/orig -> origin/gh/fffrog/84/orig 2025-06-01T20:58:04.2803296Z * [new branch] gh/fffrog/85/base -> origin/gh/fffrog/85/base 2025-06-01T20:58:04.2803754Z * [new branch] gh/fffrog/85/head -> origin/gh/fffrog/85/head 2025-06-01T20:58:04.3223554Z * [new branch] gh/fffrog/85/orig -> origin/gh/fffrog/85/orig 2025-06-01T20:58:04.3224192Z * [new branch] gh/fffrog/86/base -> origin/gh/fffrog/86/base 2025-06-01T20:58:04.3224746Z * [new branch] gh/fffrog/86/head -> origin/gh/fffrog/86/head 2025-06-01T20:58:04.3225206Z * [new branch] gh/fffrog/86/orig -> origin/gh/fffrog/86/orig 2025-06-01T20:58:04.3225683Z * [new branch] gh/fffrog/87/base -> origin/gh/fffrog/87/base 2025-06-01T20:58:04.3226158Z * [new branch] gh/fffrog/87/head -> origin/gh/fffrog/87/head 2025-06-01T20:58:04.3226662Z * [new branch] gh/fffrog/87/orig -> origin/gh/fffrog/87/orig 2025-06-01T20:58:04.3227177Z * [new branch] gh/fffrog/88/base -> origin/gh/fffrog/88/base 2025-06-01T20:58:04.3227629Z * [new branch] gh/fffrog/88/head -> origin/gh/fffrog/88/head 2025-06-01T20:58:04.3228090Z * [new branch] gh/fffrog/88/orig -> origin/gh/fffrog/88/orig 2025-06-01T20:58:04.3228565Z * [new branch] gh/fffrog/89/base -> origin/gh/fffrog/89/base 2025-06-01T20:58:04.3229025Z * [new branch] gh/fffrog/89/head -> origin/gh/fffrog/89/head 2025-06-01T20:58:04.3229482Z * [new branch] gh/fffrog/89/orig -> origin/gh/fffrog/89/orig 2025-06-01T20:58:04.3229928Z * [new branch] gh/fffrog/90/base -> origin/gh/fffrog/90/base 2025-06-01T20:58:04.3230390Z * [new branch] gh/fffrog/90/head -> origin/gh/fffrog/90/head 2025-06-01T20:58:04.3230845Z * [new branch] gh/fffrog/90/orig -> origin/gh/fffrog/90/orig 2025-06-01T20:58:04.3231294Z * [new branch] gh/fffrog/91/base -> origin/gh/fffrog/91/base 2025-06-01T20:58:04.3231754Z * [new branch] gh/fffrog/91/head -> origin/gh/fffrog/91/head 2025-06-01T20:58:04.3232205Z * [new branch] gh/fffrog/91/orig -> origin/gh/fffrog/91/orig 2025-06-01T20:58:04.3232755Z * [new branch] gh/fffrog/92/base -> origin/gh/fffrog/92/base 2025-06-01T20:58:04.3233224Z * [new branch] gh/fffrog/92/head -> origin/gh/fffrog/92/head 2025-06-01T20:58:04.3233682Z * [new branch] gh/fffrog/92/orig -> origin/gh/fffrog/92/orig 2025-06-01T20:58:04.3234138Z * [new branch] gh/fffrog/93/base -> origin/gh/fffrog/93/base 2025-06-01T20:58:04.3234692Z * [new branch] gh/fffrog/93/head -> origin/gh/fffrog/93/head 2025-06-01T20:58:04.3235162Z * [new branch] gh/fffrog/93/orig -> origin/gh/fffrog/93/orig 2025-06-01T20:58:04.3235612Z * [new branch] gh/fffrog/94/base -> origin/gh/fffrog/94/base 2025-06-01T20:58:04.3236071Z * [new branch] gh/fffrog/94/head -> origin/gh/fffrog/94/head 2025-06-01T20:58:04.3236537Z * [new branch] gh/fffrog/94/orig -> origin/gh/fffrog/94/orig 2025-06-01T20:58:04.3236994Z * [new branch] gh/fffrog/95/base -> origin/gh/fffrog/95/base 2025-06-01T20:58:04.3237456Z * [new branch] gh/fffrog/95/head -> origin/gh/fffrog/95/head 2025-06-01T20:58:04.3237902Z * [new branch] gh/fffrog/95/orig -> origin/gh/fffrog/95/orig 2025-06-01T20:58:04.3238447Z * [new branch] gh/fffrog/96/base -> origin/gh/fffrog/96/base 2025-06-01T20:58:04.3238898Z * [new branch] gh/fffrog/96/head -> origin/gh/fffrog/96/head 2025-06-01T20:58:04.3239355Z * [new branch] gh/fffrog/96/orig -> origin/gh/fffrog/96/orig 2025-06-01T20:58:04.3239819Z * [new branch] gh/fffrog/97/base -> origin/gh/fffrog/97/base 2025-06-01T20:58:04.3240271Z * [new branch] gh/fffrog/97/head -> origin/gh/fffrog/97/head 2025-06-01T20:58:04.3240727Z * [new branch] gh/fffrog/97/orig -> origin/gh/fffrog/97/orig 2025-06-01T20:58:04.3241354Z * [new branch] gh/fffrog/98/base -> origin/gh/fffrog/98/base 2025-06-01T20:58:04.3241827Z * [new branch] gh/fffrog/98/head -> origin/gh/fffrog/98/head 2025-06-01T20:58:04.3242291Z * [new branch] gh/fffrog/98/orig -> origin/gh/fffrog/98/orig 2025-06-01T20:58:04.3242768Z * [new branch] gh/guangyey/126/base -> origin/gh/guangyey/126/base 2025-06-01T20:58:04.3243271Z * [new branch] gh/guangyey/126/head -> origin/gh/guangyey/126/head 2025-06-01T20:58:04.3243805Z * [new branch] gh/guangyey/126/orig -> origin/gh/guangyey/126/orig 2025-06-01T20:58:04.3244336Z * [new branch] gh/guangyey/127/base -> origin/gh/guangyey/127/base 2025-06-01T20:58:04.3244817Z * [new branch] gh/guangyey/127/head -> origin/gh/guangyey/127/head 2025-06-01T20:58:04.3245301Z * [new branch] gh/guangyey/127/orig -> origin/gh/guangyey/127/orig 2025-06-01T20:58:04.3245786Z * [new branch] gh/guangyey/130/base -> origin/gh/guangyey/130/base 2025-06-01T20:58:04.3246260Z * [new branch] gh/guangyey/130/head -> origin/gh/guangyey/130/head 2025-06-01T20:58:04.3663854Z * [new branch] gh/guangyey/130/orig -> origin/gh/guangyey/130/orig 2025-06-01T20:58:04.3664409Z * [new branch] gh/guangyey/132/base -> origin/gh/guangyey/132/base 2025-06-01T20:58:04.3664908Z * [new branch] gh/guangyey/132/head -> origin/gh/guangyey/132/head 2025-06-01T20:58:04.3665394Z * [new branch] gh/guangyey/132/orig -> origin/gh/guangyey/132/orig 2025-06-01T20:58:04.3665895Z * [new branch] gh/guangyey/133/base -> origin/gh/guangyey/133/base 2025-06-01T20:58:04.3666375Z * [new branch] gh/guangyey/133/head -> origin/gh/guangyey/133/head 2025-06-01T20:58:04.3666875Z * [new branch] gh/guangyey/133/orig -> origin/gh/guangyey/133/orig 2025-06-01T20:58:04.3667366Z * [new branch] gh/guangyey/134/base -> origin/gh/guangyey/134/base 2025-06-01T20:58:04.3667849Z * [new branch] gh/guangyey/134/head -> origin/gh/guangyey/134/head 2025-06-01T20:58:04.3668336Z * [new branch] gh/guangyey/134/orig -> origin/gh/guangyey/134/orig 2025-06-01T20:58:04.3668823Z * [new branch] gh/guangyey/135/base -> origin/gh/guangyey/135/base 2025-06-01T20:58:04.3669372Z * [new branch] gh/guangyey/135/head -> origin/gh/guangyey/135/head 2025-06-01T20:58:04.3669867Z * [new branch] gh/guangyey/135/orig -> origin/gh/guangyey/135/orig 2025-06-01T20:58:04.3670345Z * [new branch] gh/guangyey/139/base -> origin/gh/guangyey/139/base 2025-06-01T20:58:04.3670835Z * [new branch] gh/guangyey/139/head -> origin/gh/guangyey/139/head 2025-06-01T20:58:04.3671328Z * [new branch] gh/guangyey/139/orig -> origin/gh/guangyey/139/orig 2025-06-01T20:58:04.3671805Z * [new branch] gh/guangyey/140/base -> origin/gh/guangyey/140/base 2025-06-01T20:58:04.3672291Z * [new branch] gh/guangyey/140/head -> origin/gh/guangyey/140/head 2025-06-01T20:58:04.3672772Z * [new branch] gh/guangyey/140/orig -> origin/gh/guangyey/140/orig 2025-06-01T20:58:04.3673254Z * [new branch] gh/guangyey/141/base -> origin/gh/guangyey/141/base 2025-06-01T20:58:04.3673736Z * [new branch] gh/guangyey/141/head -> origin/gh/guangyey/141/head 2025-06-01T20:58:04.3674215Z * [new branch] gh/guangyey/141/orig -> origin/gh/guangyey/141/orig 2025-06-01T20:58:04.3674813Z * [new branch] gh/guangyey/142/base -> origin/gh/guangyey/142/base 2025-06-01T20:58:04.3675484Z * [new branch] gh/guangyey/142/head -> origin/gh/guangyey/142/head 2025-06-01T20:58:04.3676054Z * [new branch] gh/guangyey/142/orig -> origin/gh/guangyey/142/orig 2025-06-01T20:58:04.3676538Z * [new branch] gh/guangyey/143/base -> origin/gh/guangyey/143/base 2025-06-01T20:58:04.3677029Z * [new branch] gh/guangyey/143/head -> origin/gh/guangyey/143/head 2025-06-01T20:58:04.3677515Z * [new branch] gh/guangyey/143/orig -> origin/gh/guangyey/143/orig 2025-06-01T20:58:04.3677994Z * [new branch] gh/guangyey/144/base -> origin/gh/guangyey/144/base 2025-06-01T20:58:04.3678478Z * [new branch] gh/guangyey/144/head -> origin/gh/guangyey/144/head 2025-06-01T20:58:04.3678952Z * [new branch] gh/guangyey/144/orig -> origin/gh/guangyey/144/orig 2025-06-01T20:58:04.3679440Z * [new branch] gh/guangyey/145/base -> origin/gh/guangyey/145/base 2025-06-01T20:58:04.3679926Z * [new branch] gh/guangyey/145/head -> origin/gh/guangyey/145/head 2025-06-01T20:58:04.3680453Z * [new branch] gh/guangyey/145/orig -> origin/gh/guangyey/145/orig 2025-06-01T20:58:04.3680985Z * [new branch] gh/guangyey/146/base -> origin/gh/guangyey/146/base 2025-06-01T20:58:04.3681461Z * [new branch] gh/guangyey/146/head -> origin/gh/guangyey/146/head 2025-06-01T20:58:04.3681943Z * [new branch] gh/guangyey/146/orig -> origin/gh/guangyey/146/orig 2025-06-01T20:58:04.3682428Z * [new branch] gh/guangyey/147/base -> origin/gh/guangyey/147/base 2025-06-01T20:58:04.3682900Z * [new branch] gh/guangyey/147/head -> origin/gh/guangyey/147/head 2025-06-01T20:58:04.3683394Z * [new branch] gh/guangyey/147/orig -> origin/gh/guangyey/147/orig 2025-06-01T20:58:04.3683877Z * [new branch] gh/guangyey/148/base -> origin/gh/guangyey/148/base 2025-06-01T20:58:04.3684368Z * [new branch] gh/guangyey/148/head -> origin/gh/guangyey/148/head 2025-06-01T20:58:04.3684859Z * [new branch] gh/guangyey/148/orig -> origin/gh/guangyey/148/orig 2025-06-01T20:58:04.3685342Z * [new branch] gh/guangyey/149/base -> origin/gh/guangyey/149/base 2025-06-01T20:58:04.3685835Z * [new branch] gh/guangyey/149/head -> origin/gh/guangyey/149/head 2025-06-01T20:58:04.3686352Z * [new branch] gh/guangyey/149/orig -> origin/gh/guangyey/149/orig 2025-06-01T20:58:04.4100483Z * [new branch] gh/guangyey/150/base -> origin/gh/guangyey/150/base 2025-06-01T20:58:04.4101047Z * [new branch] gh/guangyey/150/head -> origin/gh/guangyey/150/head 2025-06-01T20:58:04.4101533Z * [new branch] gh/guangyey/150/orig -> origin/gh/guangyey/150/orig 2025-06-01T20:58:04.4102046Z * [new branch] gh/guangyey/151/base -> origin/gh/guangyey/151/base 2025-06-01T20:58:04.4102532Z * [new branch] gh/guangyey/151/head -> origin/gh/guangyey/151/head 2025-06-01T20:58:04.4103015Z * [new branch] gh/guangyey/151/orig -> origin/gh/guangyey/151/orig 2025-06-01T20:58:04.4103495Z * [new branch] gh/guangyey/152/base -> origin/gh/guangyey/152/base 2025-06-01T20:58:04.4103968Z * [new branch] gh/guangyey/152/head -> origin/gh/guangyey/152/head 2025-06-01T20:58:04.4104455Z * [new branch] gh/guangyey/152/orig -> origin/gh/guangyey/152/orig 2025-06-01T20:58:04.4104934Z * [new branch] gh/guangyey/79/base -> origin/gh/guangyey/79/base 2025-06-01T20:58:04.4105415Z * [new branch] gh/guangyey/79/head -> origin/gh/guangyey/79/head 2025-06-01T20:58:04.4105899Z * [new branch] gh/guangyey/79/orig -> origin/gh/guangyey/79/orig 2025-06-01T20:58:04.4106509Z * [new branch] gh/guangyey/89/base -> origin/gh/guangyey/89/base 2025-06-01T20:58:04.4107076Z * [new branch] gh/guangyey/89/head -> origin/gh/guangyey/89/head 2025-06-01T20:58:04.4107550Z * [new branch] gh/guangyey/89/orig -> origin/gh/guangyey/89/orig 2025-06-01T20:58:04.4108086Z * [new branch] gh/guilhermeleobas/107/base -> origin/gh/guilhermeleobas/107/base 2025-06-01T20:58:04.4108666Z * [new branch] gh/guilhermeleobas/107/head -> origin/gh/guilhermeleobas/107/head 2025-06-01T20:58:04.4109232Z * [new branch] gh/guilhermeleobas/107/orig -> origin/gh/guilhermeleobas/107/orig 2025-06-01T20:58:04.4109800Z * [new branch] gh/guilhermeleobas/108/base -> origin/gh/guilhermeleobas/108/base 2025-06-01T20:58:04.4110356Z * [new branch] gh/guilhermeleobas/108/head -> origin/gh/guilhermeleobas/108/head 2025-06-01T20:58:04.4110936Z * [new branch] gh/guilhermeleobas/108/orig -> origin/gh/guilhermeleobas/108/orig 2025-06-01T20:58:04.4111506Z * [new branch] gh/guilhermeleobas/109/base -> origin/gh/guilhermeleobas/109/base 2025-06-01T20:58:04.4112065Z * [new branch] gh/guilhermeleobas/109/head -> origin/gh/guilhermeleobas/109/head 2025-06-01T20:58:04.4112625Z * [new branch] gh/guilhermeleobas/109/orig -> origin/gh/guilhermeleobas/109/orig 2025-06-01T20:58:04.4113178Z * [new branch] gh/guilhermeleobas/113/base -> origin/gh/guilhermeleobas/113/base 2025-06-01T20:58:04.4113740Z * [new branch] gh/guilhermeleobas/113/head -> origin/gh/guilhermeleobas/113/head 2025-06-01T20:58:04.4114380Z * [new branch] gh/guilhermeleobas/113/orig -> origin/gh/guilhermeleobas/113/orig 2025-06-01T20:58:04.4114945Z * [new branch] gh/guilhermeleobas/114/base -> origin/gh/guilhermeleobas/114/base 2025-06-01T20:58:04.4115504Z * [new branch] gh/guilhermeleobas/114/head -> origin/gh/guilhermeleobas/114/head 2025-06-01T20:58:04.4116068Z * [new branch] gh/guilhermeleobas/114/orig -> origin/gh/guilhermeleobas/114/orig 2025-06-01T20:58:04.4116629Z * [new branch] gh/guilhermeleobas/115/base -> origin/gh/guilhermeleobas/115/base 2025-06-01T20:58:04.4117202Z * [new branch] gh/guilhermeleobas/115/head -> origin/gh/guilhermeleobas/115/head 2025-06-01T20:58:04.4117763Z * [new branch] gh/guilhermeleobas/115/orig -> origin/gh/guilhermeleobas/115/orig 2025-06-01T20:58:04.4118329Z * [new branch] gh/guilhermeleobas/116/base -> origin/gh/guilhermeleobas/116/base 2025-06-01T20:58:04.4118887Z * [new branch] gh/guilhermeleobas/116/head -> origin/gh/guilhermeleobas/116/head 2025-06-01T20:58:04.4119461Z * [new branch] gh/guilhermeleobas/116/orig -> origin/gh/guilhermeleobas/116/orig 2025-06-01T20:58:04.4120020Z * [new branch] gh/guilhermeleobas/118/base -> origin/gh/guilhermeleobas/118/base 2025-06-01T20:58:04.4120589Z * [new branch] gh/guilhermeleobas/118/head -> origin/gh/guilhermeleobas/118/head 2025-06-01T20:58:04.4121169Z * [new branch] gh/guilhermeleobas/118/orig -> origin/gh/guilhermeleobas/118/orig 2025-06-01T20:58:04.4121727Z * [new branch] gh/guilhermeleobas/119/base -> origin/gh/guilhermeleobas/119/base 2025-06-01T20:58:04.4122291Z * [new branch] gh/guilhermeleobas/119/head -> origin/gh/guilhermeleobas/119/head 2025-06-01T20:58:04.4122847Z * [new branch] gh/guilhermeleobas/119/orig -> origin/gh/guilhermeleobas/119/orig 2025-06-01T20:58:04.4123404Z * [new branch] gh/guilhermeleobas/120/base -> origin/gh/guilhermeleobas/120/base 2025-06-01T20:58:04.4123967Z * [new branch] gh/guilhermeleobas/120/head -> origin/gh/guilhermeleobas/120/head 2025-06-01T20:58:04.4124524Z * [new branch] gh/guilhermeleobas/120/orig -> origin/gh/guilhermeleobas/120/orig 2025-06-01T20:58:04.4487951Z * [new branch] gh/guilhermeleobas/121/base -> origin/gh/guilhermeleobas/121/base 2025-06-01T20:58:04.4488707Z * [new branch] gh/guilhermeleobas/121/head -> origin/gh/guilhermeleobas/121/head 2025-06-01T20:58:04.4489307Z * [new branch] gh/guilhermeleobas/121/orig -> origin/gh/guilhermeleobas/121/orig 2025-06-01T20:58:04.4489893Z * [new branch] gh/guilhermeleobas/122/base -> origin/gh/guilhermeleobas/122/base 2025-06-01T20:58:04.4490451Z * [new branch] gh/guilhermeleobas/122/head -> origin/gh/guilhermeleobas/122/head 2025-06-01T20:58:04.4491017Z * [new branch] gh/guilhermeleobas/122/orig -> origin/gh/guilhermeleobas/122/orig 2025-06-01T20:58:04.4491588Z * [new branch] gh/guilhermeleobas/123/base -> origin/gh/guilhermeleobas/123/base 2025-06-01T20:58:04.4492153Z * [new branch] gh/guilhermeleobas/123/head -> origin/gh/guilhermeleobas/123/head 2025-06-01T20:58:04.4492730Z * [new branch] gh/guilhermeleobas/123/orig -> origin/gh/guilhermeleobas/123/orig 2025-06-01T20:58:04.4493290Z * [new branch] gh/guilhermeleobas/124/base -> origin/gh/guilhermeleobas/124/base 2025-06-01T20:58:04.4493862Z * [new branch] gh/guilhermeleobas/124/head -> origin/gh/guilhermeleobas/124/head 2025-06-01T20:58:04.4494429Z * [new branch] gh/guilhermeleobas/124/orig -> origin/gh/guilhermeleobas/124/orig 2025-06-01T20:58:04.4494983Z * [new branch] gh/guilhermeleobas/125/base -> origin/gh/guilhermeleobas/125/base 2025-06-01T20:58:04.4495547Z * [new branch] gh/guilhermeleobas/125/head -> origin/gh/guilhermeleobas/125/head 2025-06-01T20:58:04.4496104Z * [new branch] gh/guilhermeleobas/125/orig -> origin/gh/guilhermeleobas/125/orig 2025-06-01T20:58:04.4496685Z * [new branch] gh/guilhermeleobas/126/base -> origin/gh/guilhermeleobas/126/base 2025-06-01T20:58:04.4497253Z * [new branch] gh/guilhermeleobas/126/head -> origin/gh/guilhermeleobas/126/head 2025-06-01T20:58:04.4497820Z * [new branch] gh/guilhermeleobas/126/orig -> origin/gh/guilhermeleobas/126/orig 2025-06-01T20:58:04.4498383Z * [new branch] gh/guilhermeleobas/127/base -> origin/gh/guilhermeleobas/127/base 2025-06-01T20:58:04.4498939Z * [new branch] gh/guilhermeleobas/127/head -> origin/gh/guilhermeleobas/127/head 2025-06-01T20:58:04.4499504Z * [new branch] gh/guilhermeleobas/127/orig -> origin/gh/guilhermeleobas/127/orig 2025-06-01T20:58:04.4500160Z * [new branch] gh/guilhermeleobas/128/base -> origin/gh/guilhermeleobas/128/base 2025-06-01T20:58:04.4500762Z * [new branch] gh/guilhermeleobas/128/head -> origin/gh/guilhermeleobas/128/head 2025-06-01T20:58:04.4501374Z * [new branch] gh/guilhermeleobas/128/orig -> origin/gh/guilhermeleobas/128/orig 2025-06-01T20:58:04.4501980Z * [new branch] gh/guilhermeleobas/129/base -> origin/gh/guilhermeleobas/129/base 2025-06-01T20:58:04.4502808Z * [new branch] gh/guilhermeleobas/129/head -> origin/gh/guilhermeleobas/129/head 2025-06-01T20:58:04.4503713Z * [new branch] gh/guilhermeleobas/129/orig -> origin/gh/guilhermeleobas/129/orig 2025-06-01T20:58:04.4504595Z * [new branch] gh/guilhermeleobas/130/base -> origin/gh/guilhermeleobas/130/base 2025-06-01T20:58:04.4505589Z * [new branch] gh/guilhermeleobas/130/head -> origin/gh/guilhermeleobas/130/head 2025-06-01T20:58:04.4506487Z * [new branch] gh/guilhermeleobas/130/orig -> origin/gh/guilhermeleobas/130/orig 2025-06-01T20:58:04.4507431Z * [new branch] gh/guilhermeleobas/131/base -> origin/gh/guilhermeleobas/131/base 2025-06-01T20:58:04.4508727Z * [new branch] gh/guilhermeleobas/131/head -> origin/gh/guilhermeleobas/131/head 2025-06-01T20:58:04.4509936Z * [new branch] gh/guilhermeleobas/131/orig -> origin/gh/guilhermeleobas/131/orig 2025-06-01T20:58:04.4511178Z * [new branch] gh/guilhermeleobas/132/base -> origin/gh/guilhermeleobas/132/base 2025-06-01T20:58:04.4511891Z * [new branch] gh/guilhermeleobas/132/head -> origin/gh/guilhermeleobas/132/head 2025-06-01T20:58:04.4512543Z * [new branch] gh/guilhermeleobas/132/orig -> origin/gh/guilhermeleobas/132/orig 2025-06-01T20:58:04.4513185Z * [new branch] gh/guilhermeleobas/133/base -> origin/gh/guilhermeleobas/133/base 2025-06-01T20:58:04.4513792Z * [new branch] gh/guilhermeleobas/133/head -> origin/gh/guilhermeleobas/133/head 2025-06-01T20:58:04.4514536Z * [new branch] gh/guilhermeleobas/133/orig -> origin/gh/guilhermeleobas/133/orig 2025-06-01T20:58:04.4515180Z * [new branch] gh/guilhermeleobas/134/base -> origin/gh/guilhermeleobas/134/base 2025-06-01T20:58:04.4515841Z * [new branch] gh/guilhermeleobas/134/head -> origin/gh/guilhermeleobas/134/head 2025-06-01T20:58:04.4516450Z * [new branch] gh/guilhermeleobas/134/orig -> origin/gh/guilhermeleobas/134/orig 2025-06-01T20:58:04.4517111Z * [new branch] gh/guilhermeleobas/135/base -> origin/gh/guilhermeleobas/135/base 2025-06-01T20:58:04.4891821Z * [new branch] gh/guilhermeleobas/135/head -> origin/gh/guilhermeleobas/135/head 2025-06-01T20:58:04.4892433Z * [new branch] gh/guilhermeleobas/135/orig -> origin/gh/guilhermeleobas/135/orig 2025-06-01T20:58:04.4893020Z * [new branch] gh/guilhermeleobas/136/base -> origin/gh/guilhermeleobas/136/base 2025-06-01T20:58:04.4893575Z * [new branch] gh/guilhermeleobas/136/head -> origin/gh/guilhermeleobas/136/head 2025-06-01T20:58:04.4894163Z * [new branch] gh/guilhermeleobas/136/orig -> origin/gh/guilhermeleobas/136/orig 2025-06-01T20:58:04.4894730Z * [new branch] gh/guilhermeleobas/137/base -> origin/gh/guilhermeleobas/137/base 2025-06-01T20:58:04.4895309Z * [new branch] gh/guilhermeleobas/137/head -> origin/gh/guilhermeleobas/137/head 2025-06-01T20:58:04.4895881Z * [new branch] gh/guilhermeleobas/137/orig -> origin/gh/guilhermeleobas/137/orig 2025-06-01T20:58:04.4896496Z * [new branch] gh/guilhermeleobas/138/base -> origin/gh/guilhermeleobas/138/base 2025-06-01T20:58:04.4897095Z * [new branch] gh/guilhermeleobas/138/head -> origin/gh/guilhermeleobas/138/head 2025-06-01T20:58:04.4897656Z * [new branch] gh/guilhermeleobas/138/orig -> origin/gh/guilhermeleobas/138/orig 2025-06-01T20:58:04.4898212Z * [new branch] gh/guilhermeleobas/139/base -> origin/gh/guilhermeleobas/139/base 2025-06-01T20:58:04.4898777Z * [new branch] gh/guilhermeleobas/139/head -> origin/gh/guilhermeleobas/139/head 2025-06-01T20:58:04.4899342Z * [new branch] gh/guilhermeleobas/139/orig -> origin/gh/guilhermeleobas/139/orig 2025-06-01T20:58:04.4899898Z * [new branch] gh/guilhermeleobas/140/base -> origin/gh/guilhermeleobas/140/base 2025-06-01T20:58:04.4900471Z * [new branch] gh/guilhermeleobas/140/head -> origin/gh/guilhermeleobas/140/head 2025-06-01T20:58:04.4901021Z * [new branch] gh/guilhermeleobas/140/orig -> origin/gh/guilhermeleobas/140/orig 2025-06-01T20:58:04.4901582Z * [new branch] gh/guilhermeleobas/141/base -> origin/gh/guilhermeleobas/141/base 2025-06-01T20:58:04.4902189Z * [new branch] gh/guilhermeleobas/141/head -> origin/gh/guilhermeleobas/141/head 2025-06-01T20:58:04.4902787Z * [new branch] gh/guilhermeleobas/141/orig -> origin/gh/guilhermeleobas/141/orig 2025-06-01T20:58:04.4903353Z * [new branch] gh/guilhermeleobas/142/base -> origin/gh/guilhermeleobas/142/base 2025-06-01T20:58:04.4903905Z * [new branch] gh/guilhermeleobas/142/head -> origin/gh/guilhermeleobas/142/head 2025-06-01T20:58:04.4904467Z * [new branch] gh/guilhermeleobas/142/orig -> origin/gh/guilhermeleobas/142/orig 2025-06-01T20:58:04.4906366Z * [new branch] gh/guilhermeleobas/143/base -> origin/gh/guilhermeleobas/143/base 2025-06-01T20:58:04.4906962Z * [new branch] gh/guilhermeleobas/143/head -> origin/gh/guilhermeleobas/143/head 2025-06-01T20:58:04.4907582Z * [new branch] gh/guilhermeleobas/143/orig -> origin/gh/guilhermeleobas/143/orig 2025-06-01T20:58:04.4908177Z * [new branch] gh/guilhermeleobas/144/base -> origin/gh/guilhermeleobas/144/base 2025-06-01T20:58:04.4908738Z * [new branch] gh/guilhermeleobas/144/head -> origin/gh/guilhermeleobas/144/head 2025-06-01T20:58:04.4909304Z * [new branch] gh/guilhermeleobas/144/orig -> origin/gh/guilhermeleobas/144/orig 2025-06-01T20:58:04.4909854Z * [new branch] gh/guilhermeleobas/145/base -> origin/gh/guilhermeleobas/145/base 2025-06-01T20:58:04.4910417Z * [new branch] gh/guilhermeleobas/145/head -> origin/gh/guilhermeleobas/145/head 2025-06-01T20:58:04.4910987Z * [new branch] gh/guilhermeleobas/145/orig -> origin/gh/guilhermeleobas/145/orig 2025-06-01T20:58:04.4911558Z * [new branch] gh/guilhermeleobas/146/base -> origin/gh/guilhermeleobas/146/base 2025-06-01T20:58:04.4912120Z * [new branch] gh/guilhermeleobas/146/head -> origin/gh/guilhermeleobas/146/head 2025-06-01T20:58:04.4912676Z * [new branch] gh/guilhermeleobas/146/orig -> origin/gh/guilhermeleobas/146/orig 2025-06-01T20:58:04.4913285Z * [new branch] gh/guilhermeleobas/147/base -> origin/gh/guilhermeleobas/147/base 2025-06-01T20:58:04.4913880Z * [new branch] gh/guilhermeleobas/147/head -> origin/gh/guilhermeleobas/147/head 2025-06-01T20:58:04.4914528Z * [new branch] gh/guilhermeleobas/147/orig -> origin/gh/guilhermeleobas/147/orig 2025-06-01T20:58:04.4915092Z * [new branch] gh/guilhermeleobas/148/base -> origin/gh/guilhermeleobas/148/base 2025-06-01T20:58:04.4915666Z * [new branch] gh/guilhermeleobas/148/head -> origin/gh/guilhermeleobas/148/head 2025-06-01T20:58:04.4916243Z * [new branch] gh/guilhermeleobas/148/orig -> origin/gh/guilhermeleobas/148/orig 2025-06-01T20:58:04.4916809Z * [new branch] gh/guilhermeleobas/149/base -> origin/gh/guilhermeleobas/149/base 2025-06-01T20:58:04.4917386Z * [new branch] gh/guilhermeleobas/149/head -> origin/gh/guilhermeleobas/149/head 2025-06-01T20:58:04.5311517Z * [new branch] gh/guilhermeleobas/149/orig -> origin/gh/guilhermeleobas/149/orig 2025-06-01T20:58:04.5312174Z * [new branch] gh/guilhermeleobas/150/base -> origin/gh/guilhermeleobas/150/base 2025-06-01T20:58:04.5312788Z * [new branch] gh/guilhermeleobas/150/head -> origin/gh/guilhermeleobas/150/head 2025-06-01T20:58:04.5313352Z * [new branch] gh/guilhermeleobas/150/orig -> origin/gh/guilhermeleobas/150/orig 2025-06-01T20:58:04.5313926Z * [new branch] gh/guilhermeleobas/151/base -> origin/gh/guilhermeleobas/151/base 2025-06-01T20:58:04.5314540Z * [new branch] gh/guilhermeleobas/151/head -> origin/gh/guilhermeleobas/151/head 2025-06-01T20:58:04.5315101Z * [new branch] gh/guilhermeleobas/151/orig -> origin/gh/guilhermeleobas/151/orig 2025-06-01T20:58:04.5315662Z * [new branch] gh/guilhermeleobas/152/base -> origin/gh/guilhermeleobas/152/base 2025-06-01T20:58:04.5316220Z * [new branch] gh/guilhermeleobas/152/head -> origin/gh/guilhermeleobas/152/head 2025-06-01T20:58:04.5316788Z * [new branch] gh/guilhermeleobas/152/orig -> origin/gh/guilhermeleobas/152/orig 2025-06-01T20:58:04.5317341Z * [new branch] gh/guilhermeleobas/153/base -> origin/gh/guilhermeleobas/153/base 2025-06-01T20:58:04.5318018Z * [new branch] gh/guilhermeleobas/153/head -> origin/gh/guilhermeleobas/153/head 2025-06-01T20:58:04.5318734Z * [new branch] gh/guilhermeleobas/153/orig -> origin/gh/guilhermeleobas/153/orig 2025-06-01T20:58:04.5319372Z * [new branch] gh/guilhermeleobas/154/base -> origin/gh/guilhermeleobas/154/base 2025-06-01T20:58:04.5319944Z * [new branch] gh/guilhermeleobas/154/head -> origin/gh/guilhermeleobas/154/head 2025-06-01T20:58:04.5320510Z * [new branch] gh/guilhermeleobas/154/orig -> origin/gh/guilhermeleobas/154/orig 2025-06-01T20:58:04.5321070Z * [new branch] gh/guilhermeleobas/155/base -> origin/gh/guilhermeleobas/155/base 2025-06-01T20:58:04.5321638Z * [new branch] gh/guilhermeleobas/155/head -> origin/gh/guilhermeleobas/155/head 2025-06-01T20:58:04.5322198Z * [new branch] gh/guilhermeleobas/155/orig -> origin/gh/guilhermeleobas/155/orig 2025-06-01T20:58:04.5322759Z * [new branch] gh/guilhermeleobas/156/base -> origin/gh/guilhermeleobas/156/base 2025-06-01T20:58:04.5323367Z * [new branch] gh/guilhermeleobas/156/head -> origin/gh/guilhermeleobas/156/head 2025-06-01T20:58:04.5323984Z * [new branch] gh/guilhermeleobas/156/orig -> origin/gh/guilhermeleobas/156/orig 2025-06-01T20:58:04.5324549Z * [new branch] gh/guilhermeleobas/157/base -> origin/gh/guilhermeleobas/157/base 2025-06-01T20:58:04.5325108Z * [new branch] gh/guilhermeleobas/157/head -> origin/gh/guilhermeleobas/157/head 2025-06-01T20:58:04.5325672Z * [new branch] gh/guilhermeleobas/157/orig -> origin/gh/guilhermeleobas/157/orig 2025-06-01T20:58:04.5326233Z * [new branch] gh/guilhermeleobas/158/base -> origin/gh/guilhermeleobas/158/base 2025-06-01T20:58:04.5326794Z * [new branch] gh/guilhermeleobas/158/head -> origin/gh/guilhermeleobas/158/head 2025-06-01T20:58:04.5327363Z * [new branch] gh/guilhermeleobas/158/orig -> origin/gh/guilhermeleobas/158/orig 2025-06-01T20:58:04.5327918Z * [new branch] gh/guilhermeleobas/159/base -> origin/gh/guilhermeleobas/159/base 2025-06-01T20:58:04.5328496Z * [new branch] gh/guilhermeleobas/159/head -> origin/gh/guilhermeleobas/159/head 2025-06-01T20:58:04.5337156Z * [new branch] gh/guilhermeleobas/159/orig -> origin/gh/guilhermeleobas/159/orig 2025-06-01T20:58:04.5337743Z * [new branch] gh/guilhermeleobas/73/base -> origin/gh/guilhermeleobas/73/base 2025-06-01T20:58:04.5338301Z * [new branch] gh/guilhermeleobas/73/head -> origin/gh/guilhermeleobas/73/head 2025-06-01T20:58:04.5338865Z * [new branch] gh/guilhermeleobas/73/orig -> origin/gh/guilhermeleobas/73/orig 2025-06-01T20:58:04.5339398Z * [new branch] gh/henrylhtsang/13/base -> origin/gh/henrylhtsang/13/base 2025-06-01T20:58:04.5339932Z * [new branch] gh/henrylhtsang/13/head -> origin/gh/henrylhtsang/13/head 2025-06-01T20:58:04.5340520Z * [new branch] gh/henrylhtsang/13/orig -> origin/gh/henrylhtsang/13/orig 2025-06-01T20:58:04.5341099Z * [new branch] gh/henrylhtsang/31/base -> origin/gh/henrylhtsang/31/base 2025-06-01T20:58:04.5341640Z * [new branch] gh/henrylhtsang/31/head -> origin/gh/henrylhtsang/31/head 2025-06-01T20:58:04.5342151Z * [new branch] gh/henrylhtsang/31/orig -> origin/gh/henrylhtsang/31/orig 2025-06-01T20:58:04.5342683Z * [new branch] gh/henrylhtsang/58/base -> origin/gh/henrylhtsang/58/base 2025-06-01T20:58:04.5343206Z * [new branch] gh/henrylhtsang/58/head -> origin/gh/henrylhtsang/58/head 2025-06-01T20:58:04.5343720Z * [new branch] gh/henrylhtsang/58/orig -> origin/gh/henrylhtsang/58/orig 2025-06-01T20:58:04.5752392Z * [new branch] gh/henrylhtsang/59/base -> origin/gh/henrylhtsang/59/base 2025-06-01T20:58:04.5752987Z * [new branch] gh/henrylhtsang/59/head -> origin/gh/henrylhtsang/59/head 2025-06-01T20:58:04.5753515Z * [new branch] gh/henrylhtsang/60/base -> origin/gh/henrylhtsang/60/base 2025-06-01T20:58:04.5754370Z * [new branch] gh/henrylhtsang/60/head -> origin/gh/henrylhtsang/60/head 2025-06-01T20:58:04.5754896Z * [new branch] gh/henrylhtsang/60/orig -> origin/gh/henrylhtsang/60/orig 2025-06-01T20:58:04.5755426Z * [new branch] gh/henrylhtsang/61/base -> origin/gh/henrylhtsang/61/base 2025-06-01T20:58:04.5755969Z * [new branch] gh/henrylhtsang/61/head -> origin/gh/henrylhtsang/61/head 2025-06-01T20:58:04.5756487Z * [new branch] gh/henrylhtsang/61/orig -> origin/gh/henrylhtsang/61/orig 2025-06-01T20:58:04.5757062Z * [new branch] gh/henrylhtsang/62/base -> origin/gh/henrylhtsang/62/base 2025-06-01T20:58:04.5757617Z * [new branch] gh/henrylhtsang/62/head -> origin/gh/henrylhtsang/62/head 2025-06-01T20:58:04.5758132Z * [new branch] gh/henrylhtsang/62/orig -> origin/gh/henrylhtsang/62/orig 2025-06-01T20:58:04.5758642Z * [new branch] gh/henrylhtsang/63/base -> origin/gh/henrylhtsang/63/base 2025-06-01T20:58:04.5759166Z * [new branch] gh/henrylhtsang/63/head -> origin/gh/henrylhtsang/63/head 2025-06-01T20:58:04.5759687Z * [new branch] gh/henrylhtsang/63/orig -> origin/gh/henrylhtsang/63/orig 2025-06-01T20:58:04.5760194Z * [new branch] gh/henrylhtsang/64/base -> origin/gh/henrylhtsang/64/base 2025-06-01T20:58:04.5760706Z * [new branch] gh/henrylhtsang/64/head -> origin/gh/henrylhtsang/64/head 2025-06-01T20:58:04.5761217Z * [new branch] gh/henrylhtsang/64/orig -> origin/gh/henrylhtsang/64/orig 2025-06-01T20:58:04.5761734Z * [new branch] gh/henrylhtsang/65/base -> origin/gh/henrylhtsang/65/base 2025-06-01T20:58:04.5762244Z * [new branch] gh/henrylhtsang/65/head -> origin/gh/henrylhtsang/65/head 2025-06-01T20:58:04.5762808Z * [new branch] gh/henrylhtsang/65/orig -> origin/gh/henrylhtsang/65/orig 2025-06-01T20:58:04.5763378Z * [new branch] gh/henrylhtsang/66/base -> origin/gh/henrylhtsang/66/base 2025-06-01T20:58:04.5763891Z * [new branch] gh/henrylhtsang/66/head -> origin/gh/henrylhtsang/66/head 2025-06-01T20:58:04.5764401Z * [new branch] gh/henrylhtsang/66/orig -> origin/gh/henrylhtsang/66/orig 2025-06-01T20:58:04.5764904Z * [new branch] gh/henrylhtsang/67/base -> origin/gh/henrylhtsang/67/base 2025-06-01T20:58:04.5765429Z * [new branch] gh/henrylhtsang/67/head -> origin/gh/henrylhtsang/67/head 2025-06-01T20:58:04.5765945Z * [new branch] gh/henrylhtsang/67/orig -> origin/gh/henrylhtsang/67/orig 2025-06-01T20:58:04.5766450Z * [new branch] gh/henrylhtsang/68/base -> origin/gh/henrylhtsang/68/base 2025-06-01T20:58:04.5766963Z * [new branch] gh/henrylhtsang/68/head -> origin/gh/henrylhtsang/68/head 2025-06-01T20:58:04.5767477Z * [new branch] gh/henrylhtsang/68/orig -> origin/gh/henrylhtsang/68/orig 2025-06-01T20:58:04.5768003Z * [new branch] gh/henrylhtsang/69/base -> origin/gh/henrylhtsang/69/base 2025-06-01T20:58:04.5768552Z * [new branch] gh/henrylhtsang/69/head -> origin/gh/henrylhtsang/69/head 2025-06-01T20:58:04.5769110Z * [new branch] gh/henrylhtsang/69/orig -> origin/gh/henrylhtsang/69/orig 2025-06-01T20:58:04.5769636Z * [new branch] gh/henrylhtsang/70/base -> origin/gh/henrylhtsang/70/base 2025-06-01T20:58:04.5770142Z * [new branch] gh/henrylhtsang/70/head -> origin/gh/henrylhtsang/70/head 2025-06-01T20:58:04.5770661Z * [new branch] gh/henrylhtsang/70/orig -> origin/gh/henrylhtsang/70/orig 2025-06-01T20:58:04.5771176Z * [new branch] gh/henrylhtsang/71/base -> origin/gh/henrylhtsang/71/base 2025-06-01T20:58:04.5771774Z * [new branch] gh/henrylhtsang/71/head -> origin/gh/henrylhtsang/71/head 2025-06-01T20:58:04.5772379Z * [new branch] gh/henrylhtsang/71/orig -> origin/gh/henrylhtsang/71/orig 2025-06-01T20:58:04.5772892Z * [new branch] gh/henrylhtsang/72/base -> origin/gh/henrylhtsang/72/base 2025-06-01T20:58:04.5773413Z * [new branch] gh/henrylhtsang/72/head -> origin/gh/henrylhtsang/72/head 2025-06-01T20:58:04.5773940Z * [new branch] gh/henrylhtsang/72/orig -> origin/gh/henrylhtsang/72/orig 2025-06-01T20:58:04.5774492Z * [new branch] gh/henrylhtsang/73/base -> origin/gh/henrylhtsang/73/base 2025-06-01T20:58:04.5775049Z * [new branch] gh/henrylhtsang/73/head -> origin/gh/henrylhtsang/73/head 2025-06-01T20:58:04.5775565Z * [new branch] gh/henrylhtsang/73/orig -> origin/gh/henrylhtsang/73/orig 2025-06-01T20:58:04.5776089Z * [new branch] gh/henrylhtsang/74/base -> origin/gh/henrylhtsang/74/base 2025-06-01T20:58:04.6180911Z * [new branch] gh/henrylhtsang/74/head -> origin/gh/henrylhtsang/74/head 2025-06-01T20:58:04.6181448Z * [new branch] gh/henrylhtsang/74/orig -> origin/gh/henrylhtsang/74/orig 2025-06-01T20:58:04.6181970Z * [new branch] gh/henrylhtsang/75/base -> origin/gh/henrylhtsang/75/base 2025-06-01T20:58:04.6182488Z * [new branch] gh/henrylhtsang/75/head -> origin/gh/henrylhtsang/75/head 2025-06-01T20:58:04.6183009Z * [new branch] gh/henrylhtsang/75/orig -> origin/gh/henrylhtsang/75/orig 2025-06-01T20:58:04.6183524Z * [new branch] gh/henrylhtsang/76/base -> origin/gh/henrylhtsang/76/base 2025-06-01T20:58:04.6184033Z * [new branch] gh/henrylhtsang/76/head -> origin/gh/henrylhtsang/76/head 2025-06-01T20:58:04.6184550Z * [new branch] gh/henrylhtsang/76/orig -> origin/gh/henrylhtsang/76/orig 2025-06-01T20:58:04.6185064Z * [new branch] gh/henrylhtsang/77/base -> origin/gh/henrylhtsang/77/base 2025-06-01T20:58:04.6185588Z * [new branch] gh/henrylhtsang/77/head -> origin/gh/henrylhtsang/77/head 2025-06-01T20:58:04.6186111Z * [new branch] gh/henrylhtsang/77/orig -> origin/gh/henrylhtsang/77/orig 2025-06-01T20:58:04.6186618Z * [new branch] gh/henrylhtsang/78/base -> origin/gh/henrylhtsang/78/base 2025-06-01T20:58:04.6187141Z * [new branch] gh/henrylhtsang/78/head -> origin/gh/henrylhtsang/78/head 2025-06-01T20:58:04.6187659Z * [new branch] gh/henrylhtsang/78/orig -> origin/gh/henrylhtsang/78/orig 2025-06-01T20:58:04.6188183Z * [new branch] gh/henrylhtsang/79/base -> origin/gh/henrylhtsang/79/base 2025-06-01T20:58:04.6188701Z * [new branch] gh/henrylhtsang/79/head -> origin/gh/henrylhtsang/79/head 2025-06-01T20:58:04.6189213Z * [new branch] gh/henrylhtsang/79/orig -> origin/gh/henrylhtsang/79/orig 2025-06-01T20:58:04.6189744Z * [new branch] gh/henrylhtsang/80/base -> origin/gh/henrylhtsang/80/base 2025-06-01T20:58:04.6190253Z * [new branch] gh/henrylhtsang/80/head -> origin/gh/henrylhtsang/80/head 2025-06-01T20:58:04.6190763Z * [new branch] gh/henrylhtsang/80/orig -> origin/gh/henrylhtsang/80/orig 2025-06-01T20:58:04.6191287Z * [new branch] gh/henrylhtsang/81/base -> origin/gh/henrylhtsang/81/base 2025-06-01T20:58:04.6191807Z * [new branch] gh/henrylhtsang/81/head -> origin/gh/henrylhtsang/81/head 2025-06-01T20:58:04.6192325Z * [new branch] gh/henrylhtsang/81/orig -> origin/gh/henrylhtsang/81/orig 2025-06-01T20:58:04.6192838Z * [new branch] gh/henrylhtsang/82/base -> origin/gh/henrylhtsang/82/base 2025-06-01T20:58:04.6193357Z * [new branch] gh/henrylhtsang/82/head -> origin/gh/henrylhtsang/82/head 2025-06-01T20:58:04.6193997Z * [new branch] gh/henrylhtsang/82/orig -> origin/gh/henrylhtsang/82/orig 2025-06-01T20:58:04.6194652Z * [new branch] gh/henrylhtsang/83/base -> origin/gh/henrylhtsang/83/base 2025-06-01T20:58:04.6195185Z * [new branch] gh/henrylhtsang/83/head -> origin/gh/henrylhtsang/83/head 2025-06-01T20:58:04.6195708Z * [new branch] gh/henrylhtsang/83/orig -> origin/gh/henrylhtsang/83/orig 2025-06-01T20:58:04.6196236Z * [new branch] gh/henrylhtsang/84/base -> origin/gh/henrylhtsang/84/base 2025-06-01T20:58:04.6196763Z * [new branch] gh/henrylhtsang/84/head -> origin/gh/henrylhtsang/84/head 2025-06-01T20:58:04.6197277Z * [new branch] gh/henrylhtsang/84/orig -> origin/gh/henrylhtsang/84/orig 2025-06-01T20:58:04.6197788Z * [new branch] gh/henrylhtsang/85/base -> origin/gh/henrylhtsang/85/base 2025-06-01T20:58:04.6198303Z * [new branch] gh/henrylhtsang/85/head -> origin/gh/henrylhtsang/85/head 2025-06-01T20:58:04.6198828Z * [new branch] gh/henrylhtsang/85/orig -> origin/gh/henrylhtsang/85/orig 2025-06-01T20:58:04.6199348Z * [new branch] gh/henrylhtsang/86/base -> origin/gh/henrylhtsang/86/base 2025-06-01T20:58:04.6199865Z * [new branch] gh/henrylhtsang/86/head -> origin/gh/henrylhtsang/86/head 2025-06-01T20:58:04.6200386Z * [new branch] gh/henrylhtsang/86/orig -> origin/gh/henrylhtsang/86/orig 2025-06-01T20:58:04.6200897Z * [new branch] gh/henrylhtsang/87/base -> origin/gh/henrylhtsang/87/base 2025-06-01T20:58:04.6201409Z * [new branch] gh/henrylhtsang/87/head -> origin/gh/henrylhtsang/87/head 2025-06-01T20:58:04.6201916Z * [new branch] gh/henrylhtsang/87/orig -> origin/gh/henrylhtsang/87/orig 2025-06-01T20:58:04.6202431Z * [new branch] gh/henrylhtsang/88/base -> origin/gh/henrylhtsang/88/base 2025-06-01T20:58:04.6202954Z * [new branch] gh/henrylhtsang/88/head -> origin/gh/henrylhtsang/88/head 2025-06-01T20:58:04.6203465Z * [new branch] gh/henrylhtsang/88/orig -> origin/gh/henrylhtsang/88/orig 2025-06-01T20:58:04.6203985Z * [new branch] gh/henrylhtsang/89/base -> origin/gh/henrylhtsang/89/base 2025-06-01T20:58:04.6204485Z * [new branch] gh/henrylhtsang/89/head -> origin/gh/henrylhtsang/89/head 2025-06-01T20:58:04.6642477Z * [new branch] gh/henrylhtsang/89/orig -> origin/gh/henrylhtsang/89/orig 2025-06-01T20:58:04.6643060Z * [new branch] gh/henrylhtsang/90/base -> origin/gh/henrylhtsang/90/base 2025-06-01T20:58:04.6643621Z * [new branch] gh/henrylhtsang/90/head -> origin/gh/henrylhtsang/90/head 2025-06-01T20:58:04.6644195Z * [new branch] gh/henrylhtsang/90/orig -> origin/gh/henrylhtsang/90/orig 2025-06-01T20:58:04.6644783Z * [new branch] gh/henrylhtsang/91/base -> origin/gh/henrylhtsang/91/base 2025-06-01T20:58:04.6645366Z * [new branch] gh/henrylhtsang/91/head -> origin/gh/henrylhtsang/91/head 2025-06-01T20:58:04.6645926Z * [new branch] gh/henrylhtsang/91/orig -> origin/gh/henrylhtsang/91/orig 2025-06-01T20:58:04.6646434Z * [new branch] gh/henrylhtsang/92/base -> origin/gh/henrylhtsang/92/base 2025-06-01T20:58:04.6646957Z * [new branch] gh/henrylhtsang/92/head -> origin/gh/henrylhtsang/92/head 2025-06-01T20:58:04.6647468Z * [new branch] gh/henrylhtsang/92/orig -> origin/gh/henrylhtsang/92/orig 2025-06-01T20:58:04.6647955Z * [new branch] gh/int3/97/base -> origin/gh/int3/97/base 2025-06-01T20:58:04.6648403Z * [new branch] gh/int3/97/head -> origin/gh/int3/97/head 2025-06-01T20:58:04.6648857Z * [new branch] gh/isuruf/101/base -> origin/gh/isuruf/101/base 2025-06-01T20:58:04.6649448Z * [new branch] gh/isuruf/101/head -> origin/gh/isuruf/101/head 2025-06-01T20:58:04.6649989Z * [new branch] gh/isuruf/105/base -> origin/gh/isuruf/105/base 2025-06-01T20:58:04.6650472Z * [new branch] gh/isuruf/105/head -> origin/gh/isuruf/105/head 2025-06-01T20:58:04.6650940Z * [new branch] gh/isuruf/105/orig -> origin/gh/isuruf/105/orig 2025-06-01T20:58:04.6651437Z * [new branch] gh/isuruf/110/base -> origin/gh/isuruf/110/base 2025-06-01T20:58:04.6651945Z * [new branch] gh/isuruf/110/head -> origin/gh/isuruf/110/head 2025-06-01T20:58:04.6652417Z * [new branch] gh/isuruf/110/orig -> origin/gh/isuruf/110/orig 2025-06-01T20:58:04.6652885Z * [new branch] gh/isuruf/116/base -> origin/gh/isuruf/116/base 2025-06-01T20:58:04.6653345Z * [new branch] gh/isuruf/116/head -> origin/gh/isuruf/116/head 2025-06-01T20:58:04.6653801Z * [new branch] gh/isuruf/116/orig -> origin/gh/isuruf/116/orig 2025-06-01T20:58:04.6654285Z * [new branch] gh/isuruf/119/base -> origin/gh/isuruf/119/base 2025-06-01T20:58:04.6654747Z * [new branch] gh/isuruf/119/head -> origin/gh/isuruf/119/head 2025-06-01T20:58:04.6655208Z * [new branch] gh/isuruf/119/orig -> origin/gh/isuruf/119/orig 2025-06-01T20:58:04.6655669Z * [new branch] gh/isuruf/120/base -> origin/gh/isuruf/120/base 2025-06-01T20:58:04.6656122Z * [new branch] gh/isuruf/120/head -> origin/gh/isuruf/120/head 2025-06-01T20:58:04.6656585Z * [new branch] gh/isuruf/120/orig -> origin/gh/isuruf/120/orig 2025-06-01T20:58:04.6657045Z * [new branch] gh/isuruf/127/base -> origin/gh/isuruf/127/base 2025-06-01T20:58:04.6657556Z * [new branch] gh/isuruf/127/head -> origin/gh/isuruf/127/head 2025-06-01T20:58:04.6658067Z * [new branch] gh/isuruf/127/orig -> origin/gh/isuruf/127/orig 2025-06-01T20:58:04.6658521Z * [new branch] gh/isuruf/136/base -> origin/gh/isuruf/136/base 2025-06-01T20:58:04.6658991Z * [new branch] gh/isuruf/136/head -> origin/gh/isuruf/136/head 2025-06-01T20:58:04.6659444Z * [new branch] gh/isuruf/136/orig -> origin/gh/isuruf/136/orig 2025-06-01T20:58:04.6659904Z * [new branch] gh/isuruf/137/base -> origin/gh/isuruf/137/base 2025-06-01T20:58:04.6660357Z * [new branch] gh/isuruf/137/head -> origin/gh/isuruf/137/head 2025-06-01T20:58:04.6660815Z * [new branch] gh/isuruf/137/orig -> origin/gh/isuruf/137/orig 2025-06-01T20:58:04.6661279Z * [new branch] gh/isuruf/138/base -> origin/gh/isuruf/138/base 2025-06-01T20:58:04.6661736Z * [new branch] gh/isuruf/138/orig -> origin/gh/isuruf/138/orig 2025-06-01T20:58:04.6662200Z * [new branch] gh/isuruf/139/base -> origin/gh/isuruf/139/base 2025-06-01T20:58:04.6662655Z * [new branch] gh/isuruf/139/head -> origin/gh/isuruf/139/head 2025-06-01T20:58:04.6663115Z * [new branch] gh/isuruf/139/orig -> origin/gh/isuruf/139/orig 2025-06-01T20:58:04.6663622Z * [new branch] gh/isuruf/140/base -> origin/gh/isuruf/140/base 2025-06-01T20:58:04.6664123Z * [new branch] gh/isuruf/140/head -> origin/gh/isuruf/140/head 2025-06-01T20:58:04.6664582Z * [new branch] gh/isuruf/140/orig -> origin/gh/isuruf/140/orig 2025-06-01T20:58:04.6665036Z * [new branch] gh/isuruf/141/base -> origin/gh/isuruf/141/base 2025-06-01T20:58:04.7095137Z * [new branch] gh/isuruf/141/head -> origin/gh/isuruf/141/head 2025-06-01T20:58:04.7095625Z * [new branch] gh/isuruf/141/orig -> origin/gh/isuruf/141/orig 2025-06-01T20:58:04.7096296Z * [new branch] gh/isuruf/142/base -> origin/gh/isuruf/142/base 2025-06-01T20:58:04.7096767Z * [new branch] gh/isuruf/142/head -> origin/gh/isuruf/142/head 2025-06-01T20:58:04.7097228Z * [new branch] gh/isuruf/142/orig -> origin/gh/isuruf/142/orig 2025-06-01T20:58:04.7097701Z * [new branch] gh/isuruf/143/base -> origin/gh/isuruf/143/base 2025-06-01T20:58:04.7098175Z * [new branch] gh/isuruf/143/head -> origin/gh/isuruf/143/head 2025-06-01T20:58:04.7098636Z * [new branch] gh/isuruf/143/orig -> origin/gh/isuruf/143/orig 2025-06-01T20:58:04.7099116Z * [new branch] gh/isuruf/144/base -> origin/gh/isuruf/144/base 2025-06-01T20:58:04.7099580Z * [new branch] gh/isuruf/144/head -> origin/gh/isuruf/144/head 2025-06-01T20:58:04.7100066Z * [new branch] gh/isuruf/144/orig -> origin/gh/isuruf/144/orig 2025-06-01T20:58:04.7100545Z * [new branch] gh/isuruf/145/base -> origin/gh/isuruf/145/base 2025-06-01T20:58:04.7101009Z * [new branch] gh/isuruf/145/head -> origin/gh/isuruf/145/head 2025-06-01T20:58:04.7101476Z * [new branch] gh/isuruf/145/orig -> origin/gh/isuruf/145/orig 2025-06-01T20:58:04.7101940Z * [new branch] gh/isuruf/146/base -> origin/gh/isuruf/146/base 2025-06-01T20:58:04.7102406Z * [new branch] gh/isuruf/146/head -> origin/gh/isuruf/146/head 2025-06-01T20:58:04.7102873Z * [new branch] gh/isuruf/146/orig -> origin/gh/isuruf/146/orig 2025-06-01T20:58:04.7103328Z * [new branch] gh/isuruf/147/base -> origin/gh/isuruf/147/base 2025-06-01T20:58:04.7103796Z * [new branch] gh/isuruf/147/head -> origin/gh/isuruf/147/head 2025-06-01T20:58:04.7104261Z * [new branch] gh/isuruf/147/orig -> origin/gh/isuruf/147/orig 2025-06-01T20:58:04.7104744Z * [new branch] gh/jamesjwu/100/base -> origin/gh/jamesjwu/100/base 2025-06-01T20:58:04.7105239Z * [new branch] gh/jamesjwu/100/head -> origin/gh/jamesjwu/100/head 2025-06-01T20:58:04.7105721Z * [new branch] gh/jamesjwu/100/orig -> origin/gh/jamesjwu/100/orig 2025-06-01T20:58:04.7106209Z * [new branch] gh/jamesjwu/102/base -> origin/gh/jamesjwu/102/base 2025-06-01T20:58:04.7106688Z * [new branch] gh/jamesjwu/102/head -> origin/gh/jamesjwu/102/head 2025-06-01T20:58:04.7107177Z * [new branch] gh/jamesjwu/105/base -> origin/gh/jamesjwu/105/base 2025-06-01T20:58:04.7107658Z * [new branch] gh/jamesjwu/105/head -> origin/gh/jamesjwu/105/head 2025-06-01T20:58:04.7108137Z * [new branch] gh/jamesjwu/105/orig -> origin/gh/jamesjwu/105/orig 2025-06-01T20:58:04.7108630Z * [new branch] gh/jamesjwu/108/base -> origin/gh/jamesjwu/108/base 2025-06-01T20:58:04.7109109Z * [new branch] gh/jamesjwu/108/head -> origin/gh/jamesjwu/108/head 2025-06-01T20:58:04.7109592Z * [new branch] gh/jamesjwu/108/orig -> origin/gh/jamesjwu/108/orig 2025-06-01T20:58:04.7110073Z * [new branch] gh/jamesjwu/111/base -> origin/gh/jamesjwu/111/base 2025-06-01T20:58:04.7110556Z * [new branch] gh/jamesjwu/111/head -> origin/gh/jamesjwu/111/head 2025-06-01T20:58:04.7111044Z * [new branch] gh/jamesjwu/111/orig -> origin/gh/jamesjwu/111/orig 2025-06-01T20:58:04.7111519Z * [new branch] gh/jamesjwu/113/base -> origin/gh/jamesjwu/113/base 2025-06-01T20:58:04.7112019Z * [new branch] gh/jamesjwu/113/head -> origin/gh/jamesjwu/113/head 2025-06-01T20:58:04.7112502Z * [new branch] gh/jamesjwu/113/orig -> origin/gh/jamesjwu/113/orig 2025-06-01T20:58:04.7113143Z * [new branch] gh/jamesjwu/122/base -> origin/gh/jamesjwu/122/base 2025-06-01T20:58:04.7113630Z * [new branch] gh/jamesjwu/122/head -> origin/gh/jamesjwu/122/head 2025-06-01T20:58:04.7114105Z * [new branch] gh/jamesjwu/122/orig -> origin/gh/jamesjwu/122/orig 2025-06-01T20:58:04.7114700Z * [new branch] gh/jamesjwu/124/base -> origin/gh/jamesjwu/124/base 2025-06-01T20:58:04.7115183Z * [new branch] gh/jamesjwu/124/head -> origin/gh/jamesjwu/124/head 2025-06-01T20:58:04.7115655Z * [new branch] gh/jamesjwu/124/orig -> origin/gh/jamesjwu/124/orig 2025-06-01T20:58:04.7116146Z * [new branch] gh/jamesjwu/128/base -> origin/gh/jamesjwu/128/base 2025-06-01T20:58:04.7116631Z * [new branch] gh/jamesjwu/128/head -> origin/gh/jamesjwu/128/head 2025-06-01T20:58:04.7117112Z * [new branch] gh/jamesjwu/128/orig -> origin/gh/jamesjwu/128/orig 2025-06-01T20:58:04.7117603Z * [new branch] gh/jamesjwu/129/base -> origin/gh/jamesjwu/129/base 2025-06-01T20:58:04.7512426Z * [new branch] gh/jamesjwu/129/head -> origin/gh/jamesjwu/129/head 2025-06-01T20:58:04.7513040Z * [new branch] gh/jamesjwu/129/orig -> origin/gh/jamesjwu/129/orig 2025-06-01T20:58:04.7513569Z * [new branch] gh/jamesjwu/139/base -> origin/gh/jamesjwu/139/base 2025-06-01T20:58:04.7514097Z * [new branch] gh/jamesjwu/139/head -> origin/gh/jamesjwu/139/head 2025-06-01T20:58:04.7514649Z * [new branch] gh/jamesjwu/139/orig -> origin/gh/jamesjwu/139/orig 2025-06-01T20:58:04.7515127Z * [new branch] gh/jamesjwu/140/base -> origin/gh/jamesjwu/140/base 2025-06-01T20:58:04.7515611Z * [new branch] gh/jamesjwu/140/head -> origin/gh/jamesjwu/140/head 2025-06-01T20:58:04.7516106Z * [new branch] gh/jamesjwu/140/orig -> origin/gh/jamesjwu/140/orig 2025-06-01T20:58:04.7516602Z * [new branch] gh/jamesjwu/141/base -> origin/gh/jamesjwu/141/base 2025-06-01T20:58:04.7517088Z * [new branch] gh/jamesjwu/141/head -> origin/gh/jamesjwu/141/head 2025-06-01T20:58:04.7517560Z * [new branch] gh/jamesjwu/141/orig -> origin/gh/jamesjwu/141/orig 2025-06-01T20:58:04.7518048Z * [new branch] gh/jamesjwu/142/base -> origin/gh/jamesjwu/142/base 2025-06-01T20:58:04.7518525Z * [new branch] gh/jamesjwu/142/head -> origin/gh/jamesjwu/142/head 2025-06-01T20:58:04.7519011Z * [new branch] gh/jamesjwu/142/orig -> origin/gh/jamesjwu/142/orig 2025-06-01T20:58:04.7519579Z * [new branch] gh/jamesjwu/143/base -> origin/gh/jamesjwu/143/base 2025-06-01T20:58:04.7520102Z * [new branch] gh/jamesjwu/143/head -> origin/gh/jamesjwu/143/head 2025-06-01T20:58:04.7520597Z * [new branch] gh/jamesjwu/143/orig -> origin/gh/jamesjwu/143/orig 2025-06-01T20:58:04.7521071Z * [new branch] gh/jamesjwu/144/base -> origin/gh/jamesjwu/144/base 2025-06-01T20:58:04.7521562Z * [new branch] gh/jamesjwu/144/head -> origin/gh/jamesjwu/144/head 2025-06-01T20:58:04.7522046Z * [new branch] gh/jamesjwu/144/orig -> origin/gh/jamesjwu/144/orig 2025-06-01T20:58:04.7522518Z * [new branch] gh/jamesjwu/145/base -> origin/gh/jamesjwu/145/base 2025-06-01T20:58:04.7522998Z * [new branch] gh/jamesjwu/145/head -> origin/gh/jamesjwu/145/head 2025-06-01T20:58:04.7523477Z * [new branch] gh/jamesjwu/145/orig -> origin/gh/jamesjwu/145/orig 2025-06-01T20:58:04.7523965Z * [new branch] gh/jamesjwu/146/base -> origin/gh/jamesjwu/146/base 2025-06-01T20:58:04.7524579Z * [new branch] gh/jamesjwu/146/head -> origin/gh/jamesjwu/146/head 2025-06-01T20:58:04.7525195Z * [new branch] gh/jamesjwu/146/orig -> origin/gh/jamesjwu/146/orig 2025-06-01T20:58:04.7525727Z * [new branch] gh/jamesjwu/147/base -> origin/gh/jamesjwu/147/base 2025-06-01T20:58:04.7526245Z * [new branch] gh/jamesjwu/147/head -> origin/gh/jamesjwu/147/head 2025-06-01T20:58:04.7526732Z * [new branch] gh/jamesjwu/147/orig -> origin/gh/jamesjwu/147/orig 2025-06-01T20:58:04.7527211Z * [new branch] gh/jamesjwu/148/base -> origin/gh/jamesjwu/148/base 2025-06-01T20:58:04.7527696Z * [new branch] gh/jamesjwu/148/head -> origin/gh/jamesjwu/148/head 2025-06-01T20:58:04.7528185Z * [new branch] gh/jamesjwu/148/orig -> origin/gh/jamesjwu/148/orig 2025-06-01T20:58:04.7528655Z * [new branch] gh/jamesjwu/149/base -> origin/gh/jamesjwu/149/base 2025-06-01T20:58:04.7529139Z * [new branch] gh/jamesjwu/149/head -> origin/gh/jamesjwu/149/head 2025-06-01T20:58:04.7529617Z * [new branch] gh/jamesjwu/149/orig -> origin/gh/jamesjwu/149/orig 2025-06-01T20:58:04.7530104Z * [new branch] gh/jamesjwu/150/base -> origin/gh/jamesjwu/150/base 2025-06-01T20:58:04.7530595Z * [new branch] gh/jamesjwu/150/head -> origin/gh/jamesjwu/150/head 2025-06-01T20:58:04.7531070Z * [new branch] gh/jamesjwu/150/orig -> origin/gh/jamesjwu/150/orig 2025-06-01T20:58:04.7531547Z * [new branch] gh/jamesjwu/151/base -> origin/gh/jamesjwu/151/base 2025-06-01T20:58:04.7532021Z * [new branch] gh/jamesjwu/151/head -> origin/gh/jamesjwu/151/head 2025-06-01T20:58:04.7532503Z * [new branch] gh/jamesjwu/151/orig -> origin/gh/jamesjwu/151/orig 2025-06-01T20:58:04.7532983Z * [new branch] gh/jamesjwu/152/base -> origin/gh/jamesjwu/152/base 2025-06-01T20:58:04.7533468Z * [new branch] gh/jamesjwu/152/head -> origin/gh/jamesjwu/152/head 2025-06-01T20:58:04.7533959Z * [new branch] gh/jamesjwu/152/orig -> origin/gh/jamesjwu/152/orig 2025-06-01T20:58:04.7534430Z * [new branch] gh/jamesjwu/153/base -> origin/gh/jamesjwu/153/base 2025-06-01T20:58:04.7534913Z * [new branch] gh/jamesjwu/153/head -> origin/gh/jamesjwu/153/head 2025-06-01T20:58:04.7967686Z * [new branch] gh/jamesjwu/153/orig -> origin/gh/jamesjwu/153/orig 2025-06-01T20:58:04.7968177Z * [new branch] gh/jamesjwu/154/base -> origin/gh/jamesjwu/154/base 2025-06-01T20:58:04.7968665Z * [new branch] gh/jamesjwu/154/head -> origin/gh/jamesjwu/154/head 2025-06-01T20:58:04.7969143Z * [new branch] gh/jamesjwu/154/orig -> origin/gh/jamesjwu/154/orig 2025-06-01T20:58:04.7969638Z * [new branch] gh/jamesjwu/155/base -> origin/gh/jamesjwu/155/base 2025-06-01T20:58:04.7970120Z * [new branch] gh/jamesjwu/155/head -> origin/gh/jamesjwu/155/head 2025-06-01T20:58:04.7970602Z * [new branch] gh/jamesjwu/155/orig -> origin/gh/jamesjwu/155/orig 2025-06-01T20:58:04.7971180Z * [new branch] gh/jamesjwu/156/base -> origin/gh/jamesjwu/156/base 2025-06-01T20:58:04.7971667Z * [new branch] gh/jamesjwu/156/head -> origin/gh/jamesjwu/156/head 2025-06-01T20:58:04.7972153Z * [new branch] gh/jamesjwu/156/orig -> origin/gh/jamesjwu/156/orig 2025-06-01T20:58:04.7972639Z * [new branch] gh/jamesjwu/157/base -> origin/gh/jamesjwu/157/base 2025-06-01T20:58:04.7973108Z * [new branch] gh/jamesjwu/157/head -> origin/gh/jamesjwu/157/head 2025-06-01T20:58:04.7973590Z * [new branch] gh/jamesjwu/157/orig -> origin/gh/jamesjwu/157/orig 2025-06-01T20:58:04.7974193Z * [new branch] gh/jamesjwu/158/base -> origin/gh/jamesjwu/158/base 2025-06-01T20:58:04.7974762Z * [new branch] gh/jamesjwu/158/head -> origin/gh/jamesjwu/158/head 2025-06-01T20:58:04.7975261Z * [new branch] gh/jamesjwu/158/orig -> origin/gh/jamesjwu/158/orig 2025-06-01T20:58:04.7975753Z * [new branch] gh/jamesjwu/159/base -> origin/gh/jamesjwu/159/base 2025-06-01T20:58:04.7976243Z * [new branch] gh/jamesjwu/159/head -> origin/gh/jamesjwu/159/head 2025-06-01T20:58:04.7976769Z * [new branch] gh/jamesjwu/159/orig -> origin/gh/jamesjwu/159/orig 2025-06-01T20:58:04.7977298Z * [new branch] gh/jamesjwu/52/base -> origin/gh/jamesjwu/52/base 2025-06-01T20:58:04.7977769Z * [new branch] gh/jamesjwu/52/head -> origin/gh/jamesjwu/52/head 2025-06-01T20:58:04.7978250Z * [new branch] gh/jamesjwu/53/base -> origin/gh/jamesjwu/53/base 2025-06-01T20:58:04.7978730Z * [new branch] gh/jamesjwu/53/head -> origin/gh/jamesjwu/53/head 2025-06-01T20:58:04.7979201Z * [new branch] gh/jamesjwu/54/base -> origin/gh/jamesjwu/54/base 2025-06-01T20:58:04.7979679Z * [new branch] gh/jamesjwu/54/head -> origin/gh/jamesjwu/54/head 2025-06-01T20:58:04.7980149Z * [new branch] gh/jamesjwu/55/base -> origin/gh/jamesjwu/55/base 2025-06-01T20:58:04.7980629Z * [new branch] gh/jamesjwu/55/head -> origin/gh/jamesjwu/55/head 2025-06-01T20:58:04.7981108Z * [new branch] gh/jamesjwu/56/base -> origin/gh/jamesjwu/56/base 2025-06-01T20:58:04.7981579Z * [new branch] gh/jamesjwu/56/head -> origin/gh/jamesjwu/56/head 2025-06-01T20:58:04.7982095Z * [new branch] gh/jamesjwu/57/base -> origin/gh/jamesjwu/57/base 2025-06-01T20:58:04.7982610Z * [new branch] gh/jamesjwu/57/head -> origin/gh/jamesjwu/57/head 2025-06-01T20:58:04.7983097Z * [new branch] gh/jamesjwu/58/base -> origin/gh/jamesjwu/58/base 2025-06-01T20:58:04.7983577Z * [new branch] gh/jamesjwu/58/head -> origin/gh/jamesjwu/58/head 2025-06-01T20:58:04.7984046Z * [new branch] gh/jamesjwu/59/base -> origin/gh/jamesjwu/59/base 2025-06-01T20:58:04.7984528Z * [new branch] gh/jamesjwu/59/head -> origin/gh/jamesjwu/59/head 2025-06-01T20:58:04.7985003Z * [new branch] gh/jamesjwu/60/base -> origin/gh/jamesjwu/60/base 2025-06-01T20:58:04.7985484Z * [new branch] gh/jamesjwu/60/head -> origin/gh/jamesjwu/60/head 2025-06-01T20:58:04.7985969Z * [new branch] gh/jamesjwu/61/base -> origin/gh/jamesjwu/61/base 2025-06-01T20:58:04.7986441Z * [new branch] gh/jamesjwu/61/head -> origin/gh/jamesjwu/61/head 2025-06-01T20:58:04.7986926Z * [new branch] gh/jamesjwu/62/base -> origin/gh/jamesjwu/62/base 2025-06-01T20:58:04.7987401Z * [new branch] gh/jamesjwu/62/head -> origin/gh/jamesjwu/62/head 2025-06-01T20:58:04.7987924Z * [new branch] gh/jamesjwu/63/base -> origin/gh/jamesjwu/63/base 2025-06-01T20:58:04.7988442Z * [new branch] gh/jamesjwu/63/head -> origin/gh/jamesjwu/63/head 2025-06-01T20:58:04.7988929Z * [new branch] gh/jamesjwu/64/base -> origin/gh/jamesjwu/64/base 2025-06-01T20:58:04.7989414Z * [new branch] gh/jamesjwu/64/head -> origin/gh/jamesjwu/64/head 2025-06-01T20:58:04.7989884Z * [new branch] gh/jamesjwu/65/base -> origin/gh/jamesjwu/65/base 2025-06-01T20:58:04.7990357Z * [new branch] gh/jamesjwu/65/head -> origin/gh/jamesjwu/65/head 2025-06-01T20:58:04.8407510Z * [new branch] gh/jamesjwu/97/base -> origin/gh/jamesjwu/97/base 2025-06-01T20:58:04.8408176Z * [new branch] gh/jamesjwu/97/head -> origin/gh/jamesjwu/97/head 2025-06-01T20:58:04.8408840Z * [new branch] gh/jamesjwu/97/orig -> origin/gh/jamesjwu/97/orig 2025-06-01T20:58:04.8409368Z * [new branch] gh/janeyx99/165/base -> origin/gh/janeyx99/165/base 2025-06-01T20:58:04.8409854Z * [new branch] gh/janeyx99/165/head -> origin/gh/janeyx99/165/head 2025-06-01T20:58:04.8410329Z * [new branch] gh/janeyx99/165/orig -> origin/gh/janeyx99/165/orig 2025-06-01T20:58:04.8410813Z * [new branch] gh/janeyx99/201/base -> origin/gh/janeyx99/201/base 2025-06-01T20:58:04.8411280Z * [new branch] gh/janeyx99/201/head -> origin/gh/janeyx99/201/head 2025-06-01T20:58:04.8411764Z * [new branch] gh/janeyx99/201/orig -> origin/gh/janeyx99/201/orig 2025-06-01T20:58:04.8412246Z * [new branch] gh/janeyx99/222/base -> origin/gh/janeyx99/222/base 2025-06-01T20:58:04.8412725Z * [new branch] gh/janeyx99/222/head -> origin/gh/janeyx99/222/head 2025-06-01T20:58:04.8413205Z * [new branch] gh/janeyx99/222/orig -> origin/gh/janeyx99/222/orig 2025-06-01T20:58:04.8413674Z * [new branch] gh/janeyx99/225/base -> origin/gh/janeyx99/225/base 2025-06-01T20:58:04.8414155Z * [new branch] gh/janeyx99/225/head -> origin/gh/janeyx99/225/head 2025-06-01T20:58:04.8414679Z * [new branch] gh/janeyx99/225/orig -> origin/gh/janeyx99/225/orig 2025-06-01T20:58:04.8415192Z * [new branch] gh/janeyx99/239/base -> origin/gh/janeyx99/239/base 2025-06-01T20:58:04.8415676Z * [new branch] gh/janeyx99/239/head -> origin/gh/janeyx99/239/head 2025-06-01T20:58:04.8416142Z * [new branch] gh/janeyx99/239/orig -> origin/gh/janeyx99/239/orig 2025-06-01T20:58:04.8416622Z * [new branch] gh/janeyx99/240/base -> origin/gh/janeyx99/240/base 2025-06-01T20:58:04.8417110Z * [new branch] gh/janeyx99/240/head -> origin/gh/janeyx99/240/head 2025-06-01T20:58:04.8417580Z * [new branch] gh/janeyx99/240/orig -> origin/gh/janeyx99/240/orig 2025-06-01T20:58:04.8418061Z * [new branch] gh/janeyx99/241/base -> origin/gh/janeyx99/241/base 2025-06-01T20:58:04.8418534Z * [new branch] gh/janeyx99/241/head -> origin/gh/janeyx99/241/head 2025-06-01T20:58:04.8419007Z * [new branch] gh/janeyx99/241/orig -> origin/gh/janeyx99/241/orig 2025-06-01T20:58:04.8419486Z * [new branch] gh/janeyx99/242/base -> origin/gh/janeyx99/242/base 2025-06-01T20:58:04.8419961Z * [new branch] gh/janeyx99/242/head -> origin/gh/janeyx99/242/head 2025-06-01T20:58:04.8420491Z * [new branch] gh/janeyx99/242/orig -> origin/gh/janeyx99/242/orig 2025-06-01T20:58:04.8421014Z * [new branch] gh/janeyx99/243/base -> origin/gh/janeyx99/243/base 2025-06-01T20:58:04.8421502Z * [new branch] gh/janeyx99/243/head -> origin/gh/janeyx99/243/head 2025-06-01T20:58:04.8421973Z * [new branch] gh/janeyx99/243/orig -> origin/gh/janeyx99/243/orig 2025-06-01T20:58:04.8422443Z * [new branch] gh/janeyx99/244/base -> origin/gh/janeyx99/244/base 2025-06-01T20:58:04.8422920Z * [new branch] gh/janeyx99/244/head -> origin/gh/janeyx99/244/head 2025-06-01T20:58:04.8423392Z * [new branch] gh/janeyx99/244/orig -> origin/gh/janeyx99/244/orig 2025-06-01T20:58:04.8423871Z * [new branch] gh/janeyx99/245/base -> origin/gh/janeyx99/245/base 2025-06-01T20:58:04.8424341Z * [new branch] gh/janeyx99/245/head -> origin/gh/janeyx99/245/head 2025-06-01T20:58:04.8424825Z * [new branch] gh/janeyx99/245/orig -> origin/gh/janeyx99/245/orig 2025-06-01T20:58:04.8425475Z * [new branch] gh/janeyx99/246/base -> origin/gh/janeyx99/246/base 2025-06-01T20:58:04.8426005Z * [new branch] gh/janeyx99/246/head -> origin/gh/janeyx99/246/head 2025-06-01T20:58:04.8426546Z * [new branch] gh/janeyx99/246/orig -> origin/gh/janeyx99/246/orig 2025-06-01T20:58:04.8427024Z * [new branch] gh/janeyx99/247/base -> origin/gh/janeyx99/247/base 2025-06-01T20:58:04.8427504Z * [new branch] gh/janeyx99/247/head -> origin/gh/janeyx99/247/head 2025-06-01T20:58:04.8427988Z * [new branch] gh/janeyx99/247/orig -> origin/gh/janeyx99/247/orig 2025-06-01T20:58:04.8428463Z * [new branch] gh/janeyx99/248/base -> origin/gh/janeyx99/248/base 2025-06-01T20:58:04.8428945Z * [new branch] gh/janeyx99/248/head -> origin/gh/janeyx99/248/head 2025-06-01T20:58:04.8429420Z * [new branch] gh/janeyx99/248/orig -> origin/gh/janeyx99/248/orig 2025-06-01T20:58:04.8429904Z * [new branch] gh/janeyx99/249/base -> origin/gh/janeyx99/249/base 2025-06-01T20:58:04.8430378Z * [new branch] gh/janeyx99/249/head -> origin/gh/janeyx99/249/head 2025-06-01T20:58:04.8848313Z * [new branch] gh/janeyx99/249/orig -> origin/gh/janeyx99/249/orig 2025-06-01T20:58:04.8848836Z * [new branch] gh/janeyx99/250/base -> origin/gh/janeyx99/250/base 2025-06-01T20:58:04.8849329Z * [new branch] gh/janeyx99/250/head -> origin/gh/janeyx99/250/head 2025-06-01T20:58:04.8849817Z * [new branch] gh/janeyx99/250/orig -> origin/gh/janeyx99/250/orig 2025-06-01T20:58:04.8850304Z * [new branch] gh/janeyx99/88/base -> origin/gh/janeyx99/88/base 2025-06-01T20:58:04.8850776Z * [new branch] gh/janeyx99/88/head -> origin/gh/janeyx99/88/head 2025-06-01T20:58:04.8851265Z * [new branch] gh/janeyx99/88/orig -> origin/gh/janeyx99/88/orig 2025-06-01T20:58:04.8851742Z * [new branch] gh/jansel/360/base -> origin/gh/jansel/360/base 2025-06-01T20:58:04.8852208Z * [new branch] gh/jansel/360/head -> origin/gh/jansel/360/head 2025-06-01T20:58:04.8852672Z * [new branch] gh/jansel/451/base -> origin/gh/jansel/451/base 2025-06-01T20:58:04.8853127Z * [new branch] gh/jansel/451/head -> origin/gh/jansel/451/head 2025-06-01T20:58:04.8853591Z * [new branch] gh/jansel/451/orig -> origin/gh/jansel/451/orig 2025-06-01T20:58:04.8854043Z * [new branch] gh/jansel/462/base -> origin/gh/jansel/462/base 2025-06-01T20:58:04.8854512Z * [new branch] gh/jansel/462/head -> origin/gh/jansel/462/head 2025-06-01T20:58:04.8854978Z * [new branch] gh/jansel/462/orig -> origin/gh/jansel/462/orig 2025-06-01T20:58:04.8855436Z * [new branch] gh/jansel/513/base -> origin/gh/jansel/513/base 2025-06-01T20:58:04.8855903Z * [new branch] gh/jansel/513/head -> origin/gh/jansel/513/head 2025-06-01T20:58:04.8856356Z * [new branch] gh/jansel/513/orig -> origin/gh/jansel/513/orig 2025-06-01T20:58:04.8856820Z * [new branch] gh/jansel/514/base -> origin/gh/jansel/514/base 2025-06-01T20:58:04.8857351Z * [new branch] gh/jansel/514/head -> origin/gh/jansel/514/head 2025-06-01T20:58:04.8857874Z * [new branch] gh/jansel/514/orig -> origin/gh/jansel/514/orig 2025-06-01T20:58:04.8858357Z * [new branch] gh/jansel/515/base -> origin/gh/jansel/515/base 2025-06-01T20:58:04.8858821Z * [new branch] gh/jansel/515/head -> origin/gh/jansel/515/head 2025-06-01T20:58:04.8859299Z * [new branch] gh/jansel/515/orig -> origin/gh/jansel/515/orig 2025-06-01T20:58:04.8859897Z * [new branch] gh/jansel/516/base -> origin/gh/jansel/516/base 2025-06-01T20:58:04.8860460Z * [new branch] gh/jansel/516/head -> origin/gh/jansel/516/head 2025-06-01T20:58:04.8860927Z * [new branch] gh/jansel/516/orig -> origin/gh/jansel/516/orig 2025-06-01T20:58:04.8861380Z * [new branch] gh/jansel/517/base -> origin/gh/jansel/517/base 2025-06-01T20:58:04.8861843Z * [new branch] gh/jansel/517/head -> origin/gh/jansel/517/head 2025-06-01T20:58:04.8862301Z * [new branch] gh/jansel/517/orig -> origin/gh/jansel/517/orig 2025-06-01T20:58:04.8862808Z * [new branch] gh/jansel/518/base -> origin/gh/jansel/518/base 2025-06-01T20:58:04.8863309Z * [new branch] gh/jansel/518/head -> origin/gh/jansel/518/head 2025-06-01T20:58:04.8863769Z * [new branch] gh/jansel/518/orig -> origin/gh/jansel/518/orig 2025-06-01T20:58:04.8864279Z * [new branch] gh/jbschlosser/208/base -> origin/gh/jbschlosser/208/base 2025-06-01T20:58:04.8864794Z * [new branch] gh/jbschlosser/208/head -> origin/gh/jbschlosser/208/head 2025-06-01T20:58:04.8865313Z * [new branch] gh/jbschlosser/208/orig -> origin/gh/jbschlosser/208/orig 2025-06-01T20:58:04.8865826Z * [new branch] gh/jbschlosser/214/base -> origin/gh/jbschlosser/214/base 2025-06-01T20:58:04.8866340Z * [new branch] gh/jbschlosser/214/head -> origin/gh/jbschlosser/214/head 2025-06-01T20:58:04.8866854Z * [new branch] gh/jbschlosser/214/orig -> origin/gh/jbschlosser/214/orig 2025-06-01T20:58:04.8867362Z * [new branch] gh/jbschlosser/226/base -> origin/gh/jbschlosser/226/base 2025-06-01T20:58:04.8867876Z * [new branch] gh/jbschlosser/226/head -> origin/gh/jbschlosser/226/head 2025-06-01T20:58:04.8868393Z * [new branch] gh/jbschlosser/226/orig -> origin/gh/jbschlosser/226/orig 2025-06-01T20:58:04.8868988Z * [new branch] gh/jbschlosser/228/base -> origin/gh/jbschlosser/228/base 2025-06-01T20:58:04.8869497Z * [new branch] gh/jbschlosser/228/head -> origin/gh/jbschlosser/228/head 2025-06-01T20:58:04.8869999Z * [new branch] gh/jbschlosser/228/orig -> origin/gh/jbschlosser/228/orig 2025-06-01T20:58:04.8870513Z * [new branch] gh/jbschlosser/229/base -> origin/gh/jbschlosser/229/base 2025-06-01T20:58:04.9280441Z * [new branch] gh/jbschlosser/229/head -> origin/gh/jbschlosser/229/head 2025-06-01T20:58:04.9281023Z * [new branch] gh/jbschlosser/229/orig -> origin/gh/jbschlosser/229/orig 2025-06-01T20:58:04.9281556Z * [new branch] gh/jbschlosser/232/base -> origin/gh/jbschlosser/232/base 2025-06-01T20:58:04.9282069Z * [new branch] gh/jbschlosser/232/head -> origin/gh/jbschlosser/232/head 2025-06-01T20:58:04.9282621Z * [new branch] gh/jbschlosser/232/orig -> origin/gh/jbschlosser/232/orig 2025-06-01T20:58:04.9283136Z * [new branch] gh/jbschlosser/233/base -> origin/gh/jbschlosser/233/base 2025-06-01T20:58:04.9283638Z * [new branch] gh/jbschlosser/233/head -> origin/gh/jbschlosser/233/head 2025-06-01T20:58:04.9284149Z * [new branch] gh/jbschlosser/233/orig -> origin/gh/jbschlosser/233/orig 2025-06-01T20:58:04.9284652Z * [new branch] gh/jbschlosser/234/base -> origin/gh/jbschlosser/234/base 2025-06-01T20:58:04.9285167Z * [new branch] gh/jbschlosser/234/head -> origin/gh/jbschlosser/234/head 2025-06-01T20:58:04.9285676Z * [new branch] gh/jbschlosser/234/orig -> origin/gh/jbschlosser/234/orig 2025-06-01T20:58:04.9286189Z * [new branch] gh/jbschlosser/235/base -> origin/gh/jbschlosser/235/base 2025-06-01T20:58:04.9286839Z * [new branch] gh/jbschlosser/235/head -> origin/gh/jbschlosser/235/head 2025-06-01T20:58:04.9287436Z * [new branch] gh/jbschlosser/235/orig -> origin/gh/jbschlosser/235/orig 2025-06-01T20:58:04.9287963Z * [new branch] gh/jbschlosser/236/base -> origin/gh/jbschlosser/236/base 2025-06-01T20:58:04.9288479Z * [new branch] gh/jbschlosser/236/head -> origin/gh/jbschlosser/236/head 2025-06-01T20:58:04.9289013Z * [new branch] gh/jbschlosser/236/orig -> origin/gh/jbschlosser/236/orig 2025-06-01T20:58:04.9289532Z * [new branch] gh/jbschlosser/237/base -> origin/gh/jbschlosser/237/base 2025-06-01T20:58:04.9290053Z * [new branch] gh/jbschlosser/237/head -> origin/gh/jbschlosser/237/head 2025-06-01T20:58:04.9290572Z * [new branch] gh/jbschlosser/237/orig -> origin/gh/jbschlosser/237/orig 2025-06-01T20:58:04.9291090Z * [new branch] gh/jbschlosser/238/base -> origin/gh/jbschlosser/238/base 2025-06-01T20:58:04.9291609Z * [new branch] gh/jbschlosser/238/head -> origin/gh/jbschlosser/238/head 2025-06-01T20:58:04.9292125Z * [new branch] gh/jbschlosser/238/orig -> origin/gh/jbschlosser/238/orig 2025-06-01T20:58:04.9292629Z * [new branch] gh/jbschlosser/239/base -> origin/gh/jbschlosser/239/base 2025-06-01T20:58:04.9293142Z * [new branch] gh/jbschlosser/239/head -> origin/gh/jbschlosser/239/head 2025-06-01T20:58:04.9293649Z * [new branch] gh/jbschlosser/239/orig -> origin/gh/jbschlosser/239/orig 2025-06-01T20:58:04.9294170Z * [new branch] gh/jbschlosser/240/base -> origin/gh/jbschlosser/240/base 2025-06-01T20:58:04.9294678Z * [new branch] gh/jbschlosser/240/head -> origin/gh/jbschlosser/240/head 2025-06-01T20:58:04.9295182Z * [new branch] gh/jbschlosser/240/orig -> origin/gh/jbschlosser/240/orig 2025-06-01T20:58:04.9295700Z * [new branch] gh/jbschlosser/241/base -> origin/gh/jbschlosser/241/base 2025-06-01T20:58:04.9296210Z * [new branch] gh/jbschlosser/241/head -> origin/gh/jbschlosser/241/head 2025-06-01T20:58:04.9296726Z * [new branch] gh/jbschlosser/241/orig -> origin/gh/jbschlosser/241/orig 2025-06-01T20:58:04.9297238Z * [new branch] gh/jbschlosser/242/base -> origin/gh/jbschlosser/242/base 2025-06-01T20:58:04.9297741Z * [new branch] gh/jbschlosser/242/head -> origin/gh/jbschlosser/242/head 2025-06-01T20:58:04.9298249Z * [new branch] gh/jbschlosser/242/orig -> origin/gh/jbschlosser/242/orig 2025-06-01T20:58:04.9298752Z * [new branch] gh/jbschlosser/243/base -> origin/gh/jbschlosser/243/base 2025-06-01T20:58:04.9299266Z * [new branch] gh/jbschlosser/243/head -> origin/gh/jbschlosser/243/head 2025-06-01T20:58:04.9299787Z * [new branch] gh/jbschlosser/243/orig -> origin/gh/jbschlosser/243/orig 2025-06-01T20:58:04.9300300Z * [new branch] gh/jbschlosser/244/base -> origin/gh/jbschlosser/244/base 2025-06-01T20:58:04.9300816Z * [new branch] gh/jbschlosser/244/head -> origin/gh/jbschlosser/244/head 2025-06-01T20:58:04.9301320Z * [new branch] gh/jbschlosser/244/orig -> origin/gh/jbschlosser/244/orig 2025-06-01T20:58:04.9301838Z * [new branch] gh/jbschlosser/245/base -> origin/gh/jbschlosser/245/base 2025-06-01T20:58:04.9302346Z * [new branch] gh/jbschlosser/245/head -> origin/gh/jbschlosser/245/head 2025-06-01T20:58:04.9302861Z * [new branch] gh/jbschlosser/245/orig -> origin/gh/jbschlosser/245/orig 2025-06-01T20:58:04.9303373Z * [new branch] gh/jbschlosser/246/base -> origin/gh/jbschlosser/246/base 2025-06-01T20:58:04.9734901Z * [new branch] gh/jbschlosser/246/head -> origin/gh/jbschlosser/246/head 2025-06-01T20:58:04.9735612Z * [new branch] gh/jbschlosser/246/orig -> origin/gh/jbschlosser/246/orig 2025-06-01T20:58:04.9736253Z * [new branch] gh/jbschlosser/247/base -> origin/gh/jbschlosser/247/base 2025-06-01T20:58:04.9736774Z * [new branch] gh/jbschlosser/247/head -> origin/gh/jbschlosser/247/head 2025-06-01T20:58:04.9737294Z * [new branch] gh/jbschlosser/247/orig -> origin/gh/jbschlosser/247/orig 2025-06-01T20:58:04.9737803Z * [new branch] gh/jbschlosser/248/base -> origin/gh/jbschlosser/248/base 2025-06-01T20:58:04.9738319Z * [new branch] gh/jbschlosser/248/head -> origin/gh/jbschlosser/248/head 2025-06-01T20:58:04.9738837Z * [new branch] gh/jbschlosser/248/orig -> origin/gh/jbschlosser/248/orig 2025-06-01T20:58:04.9739346Z * [new branch] gh/jerryzh168/855/base -> origin/gh/jerryzh168/855/base 2025-06-01T20:58:04.9739855Z * [new branch] gh/jerryzh168/855/head -> origin/gh/jerryzh168/855/head 2025-06-01T20:58:04.9740349Z * [new branch] gh/jerryzh168/855/orig -> origin/gh/jerryzh168/855/orig 2025-06-01T20:58:04.9740842Z * [new branch] gh/jerryzh168/856/base -> origin/gh/jerryzh168/856/base 2025-06-01T20:58:04.9741370Z * [new branch] gh/jerryzh168/856/head -> origin/gh/jerryzh168/856/head 2025-06-01T20:58:04.9741910Z * [new branch] gh/jerryzh168/856/orig -> origin/gh/jerryzh168/856/orig 2025-06-01T20:58:04.9742410Z * [new branch] gh/jiayisunx/57/base -> origin/gh/jiayisunx/57/base 2025-06-01T20:58:04.9742895Z * [new branch] gh/jiayisunx/57/head -> origin/gh/jiayisunx/57/head 2025-06-01T20:58:04.9743385Z * [new branch] gh/jiayisunx/57/orig -> origin/gh/jiayisunx/57/orig 2025-06-01T20:58:04.9743862Z * [new branch] gh/jiayisunx/58/base -> origin/gh/jiayisunx/58/base 2025-06-01T20:58:04.9744362Z * [new branch] gh/jiayisunx/58/head -> origin/gh/jiayisunx/58/head 2025-06-01T20:58:04.9744854Z * [new branch] gh/jiayisunx/58/orig -> origin/gh/jiayisunx/58/orig 2025-06-01T20:58:04.9745337Z * [new branch] gh/jiayisunx/59/base -> origin/gh/jiayisunx/59/base 2025-06-01T20:58:04.9745830Z * [new branch] gh/jiayisunx/59/head -> origin/gh/jiayisunx/59/head 2025-06-01T20:58:04.9746311Z * [new branch] gh/jiayisunx/59/orig -> origin/gh/jiayisunx/59/orig 2025-06-01T20:58:04.9746850Z * [new branch] gh/jiayisunx/61/base -> origin/gh/jiayisunx/61/base 2025-06-01T20:58:04.9747395Z * [new branch] gh/jiayisunx/61/head -> origin/gh/jiayisunx/61/head 2025-06-01T20:58:04.9747886Z * [new branch] gh/jiayisunx/61/orig -> origin/gh/jiayisunx/61/orig 2025-06-01T20:58:04.9748370Z * [new branch] gh/jiayisunx/63/base -> origin/gh/jiayisunx/63/base 2025-06-01T20:58:04.9748863Z * [new branch] gh/jiayisunx/63/head -> origin/gh/jiayisunx/63/head 2025-06-01T20:58:04.9749355Z * [new branch] gh/jiayisunx/63/orig -> origin/gh/jiayisunx/63/orig 2025-06-01T20:58:04.9749855Z * [new branch] gh/jjwu@meta.com/1/base -> origin/gh/jjwu@meta.com/1/base 2025-06-01T20:58:04.9750354Z * [new branch] gh/jjwu@meta.com/1/head -> origin/gh/jjwu@meta.com/1/head 2025-06-01T20:58:04.9750874Z * [new branch] gh/justinchuby/111/base -> origin/gh/justinchuby/111/base 2025-06-01T20:58:04.9751382Z * [new branch] gh/justinchuby/111/head -> origin/gh/justinchuby/111/head 2025-06-01T20:58:04.9751894Z * [new branch] gh/justinchuby/111/orig -> origin/gh/justinchuby/111/orig 2025-06-01T20:58:04.9752412Z * [new branch] gh/kurtamohler/31/base -> origin/gh/kurtamohler/31/base 2025-06-01T20:58:04.9753097Z * [new branch] gh/kurtamohler/31/head -> origin/gh/kurtamohler/31/head 2025-06-01T20:58:04.9753688Z * [new branch] gh/kurtamohler/31/orig -> origin/gh/kurtamohler/31/orig 2025-06-01T20:58:04.9754188Z * [new branch] gh/kurtamohler/32/base -> origin/gh/kurtamohler/32/base 2025-06-01T20:58:04.9754767Z * [new branch] gh/kurtamohler/32/head -> origin/gh/kurtamohler/32/head 2025-06-01T20:58:04.9755278Z * [new branch] gh/kurtamohler/32/orig -> origin/gh/kurtamohler/32/orig 2025-06-01T20:58:04.9755781Z * [new branch] gh/kurtamohler/33/base -> origin/gh/kurtamohler/33/base 2025-06-01T20:58:04.9756292Z * [new branch] gh/kurtamohler/33/head -> origin/gh/kurtamohler/33/head 2025-06-01T20:58:04.9756796Z * [new branch] gh/kurtamohler/33/orig -> origin/gh/kurtamohler/33/orig 2025-06-01T20:58:04.9757304Z * [new branch] gh/kurtamohler/34/base -> origin/gh/kurtamohler/34/base 2025-06-01T20:58:04.9757817Z * [new branch] gh/kurtamohler/34/head -> origin/gh/kurtamohler/34/head 2025-06-01T20:58:04.9758362Z * [new branch] gh/kurtamohler/34/orig -> origin/gh/kurtamohler/34/orig 2025-06-01T20:58:05.0194964Z * [new branch] gh/kwen2501/1/base -> origin/gh/kwen2501/1/base 2025-06-01T20:58:05.0195469Z * [new branch] gh/kwen2501/1/head -> origin/gh/kwen2501/1/head 2025-06-01T20:58:05.0195949Z * [new branch] gh/kwen2501/128/base -> origin/gh/kwen2501/128/base 2025-06-01T20:58:05.0196429Z * [new branch] gh/kwen2501/128/head -> origin/gh/kwen2501/128/head 2025-06-01T20:58:05.0196900Z * [new branch] gh/kwen2501/128/orig -> origin/gh/kwen2501/128/orig 2025-06-01T20:58:05.0197370Z * [new branch] gh/kwen2501/130/base -> origin/gh/kwen2501/130/base 2025-06-01T20:58:05.0197853Z * [new branch] gh/kwen2501/130/head -> origin/gh/kwen2501/130/head 2025-06-01T20:58:05.0198334Z * [new branch] gh/kwen2501/130/orig -> origin/gh/kwen2501/130/orig 2025-06-01T20:58:05.0198800Z * [new branch] gh/kwen2501/131/base -> origin/gh/kwen2501/131/base 2025-06-01T20:58:05.0199264Z * [new branch] gh/kwen2501/131/head -> origin/gh/kwen2501/131/head 2025-06-01T20:58:05.0199749Z * [new branch] gh/kwen2501/131/orig -> origin/gh/kwen2501/131/orig 2025-06-01T20:58:05.0200212Z * [new branch] gh/kwen2501/132/base -> origin/gh/kwen2501/132/base 2025-06-01T20:58:05.0200690Z * [new branch] gh/kwen2501/132/head -> origin/gh/kwen2501/132/head 2025-06-01T20:58:05.0201160Z * [new branch] gh/kwen2501/132/orig -> origin/gh/kwen2501/132/orig 2025-06-01T20:58:05.0201620Z * [new branch] gh/kwen2501/134/base -> origin/gh/kwen2501/134/base 2025-06-01T20:58:05.0202106Z * [new branch] gh/kwen2501/134/head -> origin/gh/kwen2501/134/head 2025-06-01T20:58:05.0202589Z * [new branch] gh/kwen2501/134/orig -> origin/gh/kwen2501/134/orig 2025-06-01T20:58:05.0203067Z * [new branch] gh/kwen2501/135/base -> origin/gh/kwen2501/135/base 2025-06-01T20:58:05.0203544Z * [new branch] gh/kwen2501/135/head -> origin/gh/kwen2501/135/head 2025-06-01T20:58:05.0204017Z * [new branch] gh/kwen2501/135/orig -> origin/gh/kwen2501/135/orig 2025-06-01T20:58:05.0204491Z * [new branch] gh/kwen2501/136/base -> origin/gh/kwen2501/136/base 2025-06-01T20:58:05.0204964Z * [new branch] gh/kwen2501/136/head -> origin/gh/kwen2501/136/head 2025-06-01T20:58:05.0205441Z * [new branch] gh/kwen2501/136/orig -> origin/gh/kwen2501/136/orig 2025-06-01T20:58:05.0205911Z * [new branch] gh/kwen2501/137/base -> origin/gh/kwen2501/137/base 2025-06-01T20:58:05.0207990Z * [new branch] gh/kwen2501/137/head -> origin/gh/kwen2501/137/head 2025-06-01T20:58:05.0208512Z * [new branch] gh/kwen2501/137/orig -> origin/gh/kwen2501/137/orig 2025-06-01T20:58:05.0208990Z * [new branch] gh/kwen2501/138/base -> origin/gh/kwen2501/138/base 2025-06-01T20:58:05.0209468Z * [new branch] gh/kwen2501/138/head -> origin/gh/kwen2501/138/head 2025-06-01T20:58:05.0209934Z * [new branch] gh/kwen2501/138/orig -> origin/gh/kwen2501/138/orig 2025-06-01T20:58:05.0210406Z * [new branch] gh/kwen2501/141/base -> origin/gh/kwen2501/141/base 2025-06-01T20:58:05.0210877Z * [new branch] gh/kwen2501/141/head -> origin/gh/kwen2501/141/head 2025-06-01T20:58:05.0211337Z * [new branch] gh/kwen2501/141/orig -> origin/gh/kwen2501/141/orig 2025-06-01T20:58:05.0211816Z * [new branch] gh/kwen2501/142/base -> origin/gh/kwen2501/142/base 2025-06-01T20:58:05.0212285Z * [new branch] gh/kwen2501/142/head -> origin/gh/kwen2501/142/head 2025-06-01T20:58:05.0212760Z * [new branch] gh/kwen2501/142/orig -> origin/gh/kwen2501/142/orig 2025-06-01T20:58:05.0213225Z * [new branch] gh/kwen2501/143/base -> origin/gh/kwen2501/143/base 2025-06-01T20:58:05.0213686Z * [new branch] gh/kwen2501/143/head -> origin/gh/kwen2501/143/head 2025-06-01T20:58:05.0214156Z * [new branch] gh/kwen2501/143/orig -> origin/gh/kwen2501/143/orig 2025-06-01T20:58:05.0214616Z * [new branch] gh/kwen2501/144/base -> origin/gh/kwen2501/144/base 2025-06-01T20:58:05.0215089Z * [new branch] gh/kwen2501/144/head -> origin/gh/kwen2501/144/head 2025-06-01T20:58:05.0215556Z * [new branch] gh/kwen2501/144/orig -> origin/gh/kwen2501/144/orig 2025-06-01T20:58:05.0216025Z * [new branch] gh/kwen2501/145/base -> origin/gh/kwen2501/145/base 2025-06-01T20:58:05.0216496Z * [new branch] gh/kwen2501/145/head -> origin/gh/kwen2501/145/head 2025-06-01T20:58:05.0216967Z * [new branch] gh/kwen2501/145/orig -> origin/gh/kwen2501/145/orig 2025-06-01T20:58:05.0217443Z * [new branch] gh/kwen2501/146/base -> origin/gh/kwen2501/146/base 2025-06-01T20:58:05.0217916Z * [new branch] gh/kwen2501/146/head -> origin/gh/kwen2501/146/head 2025-06-01T20:58:05.0218381Z * [new branch] gh/kwen2501/146/orig -> origin/gh/kwen2501/146/orig 2025-06-01T20:58:05.0612273Z * [new branch] gh/kwen2501/147/base -> origin/gh/kwen2501/147/base 2025-06-01T20:58:05.0612767Z * [new branch] gh/kwen2501/147/head -> origin/gh/kwen2501/147/head 2025-06-01T20:58:05.0613247Z * [new branch] gh/kwen2501/147/orig -> origin/gh/kwen2501/147/orig 2025-06-01T20:58:05.0613756Z * [new branch] gh/kwen2501/148/base -> origin/gh/kwen2501/148/base 2025-06-01T20:58:05.0614220Z * [new branch] gh/kwen2501/148/head -> origin/gh/kwen2501/148/head 2025-06-01T20:58:05.0614700Z * [new branch] gh/kwen2501/148/orig -> origin/gh/kwen2501/148/orig 2025-06-01T20:58:05.0615166Z * [new branch] gh/kwen2501/149/base -> origin/gh/kwen2501/149/base 2025-06-01T20:58:05.0615641Z * [new branch] gh/kwen2501/149/head -> origin/gh/kwen2501/149/head 2025-06-01T20:58:05.0616117Z * [new branch] gh/kwen2501/149/orig -> origin/gh/kwen2501/149/orig 2025-06-01T20:58:05.0616593Z * [new branch] gh/kwen2501/15/base -> origin/gh/kwen2501/15/base 2025-06-01T20:58:05.0617069Z * [new branch] gh/kwen2501/15/head -> origin/gh/kwen2501/15/head 2025-06-01T20:58:05.0617661Z * [new branch] gh/kwen2501/150/base -> origin/gh/kwen2501/150/base 2025-06-01T20:58:05.0618504Z * [new branch] gh/kwen2501/150/head -> origin/gh/kwen2501/150/head 2025-06-01T20:58:05.0618991Z * [new branch] gh/kwen2501/150/orig -> origin/gh/kwen2501/150/orig 2025-06-01T20:58:05.0619479Z * [new branch] gh/kwen2501/151/base -> origin/gh/kwen2501/151/base 2025-06-01T20:58:05.0619964Z * [new branch] gh/kwen2501/151/head -> origin/gh/kwen2501/151/head 2025-06-01T20:58:05.0620433Z * [new branch] gh/kwen2501/151/orig -> origin/gh/kwen2501/151/orig 2025-06-01T20:58:05.0620911Z * [new branch] gh/kwen2501/152/base -> origin/gh/kwen2501/152/base 2025-06-01T20:58:05.0621379Z * [new branch] gh/kwen2501/152/head -> origin/gh/kwen2501/152/head 2025-06-01T20:58:05.0621859Z * [new branch] gh/kwen2501/152/orig -> origin/gh/kwen2501/152/orig 2025-06-01T20:58:05.0622344Z * [new branch] gh/kwen2501/153/base -> origin/gh/kwen2501/153/base 2025-06-01T20:58:05.0622820Z * [new branch] gh/kwen2501/153/head -> origin/gh/kwen2501/153/head 2025-06-01T20:58:05.0623298Z * [new branch] gh/kwen2501/153/orig -> origin/gh/kwen2501/153/orig 2025-06-01T20:58:05.0623768Z * [new branch] gh/kwen2501/154/base -> origin/gh/kwen2501/154/base 2025-06-01T20:58:05.0624245Z * [new branch] gh/kwen2501/154/head -> origin/gh/kwen2501/154/head 2025-06-01T20:58:05.0624723Z * [new branch] gh/kwen2501/154/orig -> origin/gh/kwen2501/154/orig 2025-06-01T20:58:05.0625203Z * [new branch] gh/kwen2501/155/base -> origin/gh/kwen2501/155/base 2025-06-01T20:58:05.0625680Z * [new branch] gh/kwen2501/155/head -> origin/gh/kwen2501/155/head 2025-06-01T20:58:05.0626148Z * [new branch] gh/kwen2501/155/orig -> origin/gh/kwen2501/155/orig 2025-06-01T20:58:05.0626635Z * [new branch] gh/kwen2501/156/base -> origin/gh/kwen2501/156/base 2025-06-01T20:58:05.0627127Z * [new branch] gh/kwen2501/156/head -> origin/gh/kwen2501/156/head 2025-06-01T20:58:05.0627597Z * [new branch] gh/kwen2501/156/orig -> origin/gh/kwen2501/156/orig 2025-06-01T20:58:05.0628074Z * [new branch] gh/kwen2501/157/base -> origin/gh/kwen2501/157/base 2025-06-01T20:58:05.0628542Z * [new branch] gh/kwen2501/157/head -> origin/gh/kwen2501/157/head 2025-06-01T20:58:05.0629034Z * [new branch] gh/kwen2501/157/orig -> origin/gh/kwen2501/157/orig 2025-06-01T20:58:05.0629622Z * [new branch] gh/kwen2501/158/base -> origin/gh/kwen2501/158/base 2025-06-01T20:58:05.0630098Z * [new branch] gh/kwen2501/158/head -> origin/gh/kwen2501/158/head 2025-06-01T20:58:05.0630577Z * [new branch] gh/kwen2501/158/orig -> origin/gh/kwen2501/158/orig 2025-06-01T20:58:05.0631041Z * [new branch] gh/kwen2501/159/base -> origin/gh/kwen2501/159/base 2025-06-01T20:58:05.0631511Z * [new branch] gh/kwen2501/159/head -> origin/gh/kwen2501/159/head 2025-06-01T20:58:05.0631991Z * [new branch] gh/kwen2501/159/orig -> origin/gh/kwen2501/159/orig 2025-06-01T20:58:05.0632458Z * [new branch] gh/kwen2501/160/base -> origin/gh/kwen2501/160/base 2025-06-01T20:58:05.0632929Z * [new branch] gh/kwen2501/160/head -> origin/gh/kwen2501/160/head 2025-06-01T20:58:05.0633395Z * [new branch] gh/kwen2501/160/orig -> origin/gh/kwen2501/160/orig 2025-06-01T20:58:05.0633873Z * [new branch] gh/kwen2501/161/base -> origin/gh/kwen2501/161/base 2025-06-01T20:58:05.0634415Z * [new branch] gh/kwen2501/161/head -> origin/gh/kwen2501/161/head 2025-06-01T20:58:05.1048368Z * [new branch] gh/kwen2501/162/base -> origin/gh/kwen2501/162/base 2025-06-01T20:58:05.1049401Z * [new branch] gh/kwen2501/162/head -> origin/gh/kwen2501/162/head 2025-06-01T20:58:05.1049979Z * [new branch] gh/kwen2501/162/orig -> origin/gh/kwen2501/162/orig 2025-06-01T20:58:05.1050496Z * [new branch] gh/kwen2501/163/base -> origin/gh/kwen2501/163/base 2025-06-01T20:58:05.1051052Z * [new branch] gh/kwen2501/163/head -> origin/gh/kwen2501/163/head 2025-06-01T20:58:05.1051555Z * [new branch] gh/kwen2501/163/orig -> origin/gh/kwen2501/163/orig 2025-06-01T20:58:05.1052130Z * [new branch] gh/laithsakka/113/base -> origin/gh/laithsakka/113/base 2025-06-01T20:58:05.1052674Z * [new branch] gh/laithsakka/113/head -> origin/gh/laithsakka/113/head 2025-06-01T20:58:05.1053247Z * [new branch] gh/laithsakka/113/orig -> origin/gh/laithsakka/113/orig 2025-06-01T20:58:05.1053829Z * [new branch] gh/laithsakka/114/base -> origin/gh/laithsakka/114/base 2025-06-01T20:58:05.1054403Z * [new branch] gh/laithsakka/114/head -> origin/gh/laithsakka/114/head 2025-06-01T20:58:05.1054921Z * [new branch] gh/laithsakka/114/orig -> origin/gh/laithsakka/114/orig 2025-06-01T20:58:05.1055418Z * [new branch] gh/laithsakka/117/base -> origin/gh/laithsakka/117/base 2025-06-01T20:58:05.1055929Z * [new branch] gh/laithsakka/117/head -> origin/gh/laithsakka/117/head 2025-06-01T20:58:05.1056432Z * [new branch] gh/laithsakka/117/orig -> origin/gh/laithsakka/117/orig 2025-06-01T20:58:05.1056925Z * [new branch] gh/laithsakka/118/base -> origin/gh/laithsakka/118/base 2025-06-01T20:58:05.1057425Z * [new branch] gh/laithsakka/118/head -> origin/gh/laithsakka/118/head 2025-06-01T20:58:05.1057927Z * [new branch] gh/laithsakka/118/orig -> origin/gh/laithsakka/118/orig 2025-06-01T20:58:05.1058439Z * [new branch] gh/laithsakka/119/base -> origin/gh/laithsakka/119/base 2025-06-01T20:58:05.1058949Z * [new branch] gh/laithsakka/119/head -> origin/gh/laithsakka/119/head 2025-06-01T20:58:05.1059448Z * [new branch] gh/laithsakka/119/orig -> origin/gh/laithsakka/119/orig 2025-06-01T20:58:05.1060027Z * [new branch] gh/laithsakka/120/base -> origin/gh/laithsakka/120/base 2025-06-01T20:58:05.1060562Z * [new branch] gh/laithsakka/120/head -> origin/gh/laithsakka/120/head 2025-06-01T20:58:05.1061069Z * [new branch] gh/laithsakka/120/orig -> origin/gh/laithsakka/120/orig 2025-06-01T20:58:05.1061563Z * [new branch] gh/laithsakka/122/base -> origin/gh/laithsakka/122/base 2025-06-01T20:58:05.1062059Z * [new branch] gh/laithsakka/122/head -> origin/gh/laithsakka/122/head 2025-06-01T20:58:05.1062568Z * [new branch] gh/laithsakka/122/orig -> origin/gh/laithsakka/122/orig 2025-06-01T20:58:05.1063075Z * [new branch] gh/laithsakka/124/base -> origin/gh/laithsakka/124/base 2025-06-01T20:58:05.1063579Z * [new branch] gh/laithsakka/124/head -> origin/gh/laithsakka/124/head 2025-06-01T20:58:05.1064076Z * [new branch] gh/laithsakka/124/orig -> origin/gh/laithsakka/124/orig 2025-06-01T20:58:05.1064576Z * [new branch] gh/laithsakka/127/base -> origin/gh/laithsakka/127/base 2025-06-01T20:58:05.1065074Z * [new branch] gh/laithsakka/127/head -> origin/gh/laithsakka/127/head 2025-06-01T20:58:05.1065613Z * [new branch] gh/laithsakka/127/orig -> origin/gh/laithsakka/127/orig 2025-06-01T20:58:05.1066159Z * [new branch] gh/laithsakka/132/base -> origin/gh/laithsakka/132/base 2025-06-01T20:58:05.1066817Z * [new branch] gh/laithsakka/132/head -> origin/gh/laithsakka/132/head 2025-06-01T20:58:05.1067630Z * [new branch] gh/laithsakka/132/orig -> origin/gh/laithsakka/132/orig 2025-06-01T20:58:05.1068151Z * [new branch] gh/laithsakka/137/base -> origin/gh/laithsakka/137/base 2025-06-01T20:58:05.1068662Z * [new branch] gh/laithsakka/137/head -> origin/gh/laithsakka/137/head 2025-06-01T20:58:05.1069179Z * [new branch] gh/laithsakka/137/orig -> origin/gh/laithsakka/137/orig 2025-06-01T20:58:05.1069677Z * [new branch] gh/laithsakka/138/base -> origin/gh/laithsakka/138/base 2025-06-01T20:58:05.1070185Z * [new branch] gh/laithsakka/138/head -> origin/gh/laithsakka/138/head 2025-06-01T20:58:05.1070688Z * [new branch] gh/laithsakka/138/orig -> origin/gh/laithsakka/138/orig 2025-06-01T20:58:05.1071186Z * [new branch] gh/laithsakka/140/base -> origin/gh/laithsakka/140/base 2025-06-01T20:58:05.1071735Z * [new branch] gh/laithsakka/140/head -> origin/gh/laithsakka/140/head 2025-06-01T20:58:05.1072272Z * [new branch] gh/laithsakka/140/orig -> origin/gh/laithsakka/140/orig 2025-06-01T20:58:05.1072816Z * [new branch] gh/laithsakka/141/base -> origin/gh/laithsakka/141/base 2025-06-01T20:58:05.1451061Z * [new branch] gh/laithsakka/141/head -> origin/gh/laithsakka/141/head 2025-06-01T20:58:05.1451585Z * [new branch] gh/laithsakka/141/orig -> origin/gh/laithsakka/141/orig 2025-06-01T20:58:05.1452100Z * [new branch] gh/laithsakka/143/base -> origin/gh/laithsakka/143/base 2025-06-01T20:58:05.1452598Z * [new branch] gh/laithsakka/143/head -> origin/gh/laithsakka/143/head 2025-06-01T20:58:05.1453101Z * [new branch] gh/laithsakka/143/orig -> origin/gh/laithsakka/143/orig 2025-06-01T20:58:05.1453620Z * [new branch] gh/laithsakka/144/base -> origin/gh/laithsakka/144/base 2025-06-01T20:58:05.1454124Z * [new branch] gh/laithsakka/144/head -> origin/gh/laithsakka/144/head 2025-06-01T20:58:05.1454627Z * [new branch] gh/laithsakka/144/orig -> origin/gh/laithsakka/144/orig 2025-06-01T20:58:05.1455120Z * [new branch] gh/laithsakka/145/base -> origin/gh/laithsakka/145/base 2025-06-01T20:58:05.1455624Z * [new branch] gh/laithsakka/145/head -> origin/gh/laithsakka/145/head 2025-06-01T20:58:05.1456121Z * [new branch] gh/laithsakka/145/orig -> origin/gh/laithsakka/145/orig 2025-06-01T20:58:05.1456620Z * [new branch] gh/laithsakka/152/base -> origin/gh/laithsakka/152/base 2025-06-01T20:58:05.1457131Z * [new branch] gh/laithsakka/152/head -> origin/gh/laithsakka/152/head 2025-06-01T20:58:05.1457626Z * [new branch] gh/laithsakka/152/orig -> origin/gh/laithsakka/152/orig 2025-06-01T20:58:05.1458138Z * [new branch] gh/laithsakka/154/base -> origin/gh/laithsakka/154/base 2025-06-01T20:58:05.1458643Z * [new branch] gh/laithsakka/154/head -> origin/gh/laithsakka/154/head 2025-06-01T20:58:05.1459139Z * [new branch] gh/laithsakka/154/orig -> origin/gh/laithsakka/154/orig 2025-06-01T20:58:05.1459649Z * [new branch] gh/laithsakka/155/base -> origin/gh/laithsakka/155/base 2025-06-01T20:58:05.1460146Z * [new branch] gh/laithsakka/155/head -> origin/gh/laithsakka/155/head 2025-06-01T20:58:05.1460654Z * [new branch] gh/laithsakka/155/orig -> origin/gh/laithsakka/155/orig 2025-06-01T20:58:05.1461169Z * [new branch] gh/laithsakka/156/base -> origin/gh/laithsakka/156/base 2025-06-01T20:58:05.1461663Z * [new branch] gh/laithsakka/156/head -> origin/gh/laithsakka/156/head 2025-06-01T20:58:05.1462173Z * [new branch] gh/laithsakka/156/orig -> origin/gh/laithsakka/156/orig 2025-06-01T20:58:05.1463131Z * [new branch] gh/laithsakka/157/base -> origin/gh/laithsakka/157/base 2025-06-01T20:58:05.1463654Z * [new branch] gh/laithsakka/157/head -> origin/gh/laithsakka/157/head 2025-06-01T20:58:05.1464164Z * [new branch] gh/laithsakka/157/orig -> origin/gh/laithsakka/157/orig 2025-06-01T20:58:05.1464669Z * [new branch] gh/laithsakka/158/base -> origin/gh/laithsakka/158/base 2025-06-01T20:58:05.1465176Z * [new branch] gh/laithsakka/158/head -> origin/gh/laithsakka/158/head 2025-06-01T20:58:05.1465678Z * [new branch] gh/laithsakka/158/orig -> origin/gh/laithsakka/158/orig 2025-06-01T20:58:05.1466192Z * [new branch] gh/laithsakka/159/base -> origin/gh/laithsakka/159/base 2025-06-01T20:58:05.1466699Z * [new branch] gh/laithsakka/159/head -> origin/gh/laithsakka/159/head 2025-06-01T20:58:05.1467200Z * [new branch] gh/laithsakka/159/orig -> origin/gh/laithsakka/159/orig 2025-06-01T20:58:05.1467706Z * [new branch] gh/laithsakka/160/base -> origin/gh/laithsakka/160/base 2025-06-01T20:58:05.1468196Z * [new branch] gh/laithsakka/160/head -> origin/gh/laithsakka/160/head 2025-06-01T20:58:05.1468703Z * [new branch] gh/laithsakka/160/orig -> origin/gh/laithsakka/160/orig 2025-06-01T20:58:05.1469202Z * [new branch] gh/laithsakka/161/base -> origin/gh/laithsakka/161/base 2025-06-01T20:58:05.1469703Z * [new branch] gh/laithsakka/161/head -> origin/gh/laithsakka/161/head 2025-06-01T20:58:05.1470209Z * [new branch] gh/laithsakka/161/orig -> origin/gh/laithsakka/161/orig 2025-06-01T20:58:05.1470706Z * [new branch] gh/laithsakka/162/base -> origin/gh/laithsakka/162/base 2025-06-01T20:58:05.1471209Z * [new branch] gh/laithsakka/162/head -> origin/gh/laithsakka/162/head 2025-06-01T20:58:05.1471714Z * [new branch] gh/laithsakka/162/orig -> origin/gh/laithsakka/162/orig 2025-06-01T20:58:05.1472223Z * [new branch] gh/laithsakka/163/base -> origin/gh/laithsakka/163/base 2025-06-01T20:58:05.1472727Z * [new branch] gh/laithsakka/163/head -> origin/gh/laithsakka/163/head 2025-06-01T20:58:05.1473218Z * [new branch] gh/laithsakka/163/orig -> origin/gh/laithsakka/163/orig 2025-06-01T20:58:05.1473719Z * [new branch] gh/laithsakka/164/base -> origin/gh/laithsakka/164/base 2025-06-01T20:58:05.1865878Z * [new branch] gh/laithsakka/164/head -> origin/gh/laithsakka/164/head 2025-06-01T20:58:05.1866460Z * [new branch] gh/laithsakka/164/orig -> origin/gh/laithsakka/164/orig 2025-06-01T20:58:05.1866971Z * [new branch] gh/laithsakka/165/base -> origin/gh/laithsakka/165/base 2025-06-01T20:58:05.1867489Z * [new branch] gh/laithsakka/165/head -> origin/gh/laithsakka/165/head 2025-06-01T20:58:05.1868004Z * [new branch] gh/laithsakka/165/orig -> origin/gh/laithsakka/165/orig 2025-06-01T20:58:05.1868511Z * [new branch] gh/laithsakka/166/base -> origin/gh/laithsakka/166/base 2025-06-01T20:58:05.1869006Z * [new branch] gh/laithsakka/166/head -> origin/gh/laithsakka/166/head 2025-06-01T20:58:05.1869515Z * [new branch] gh/laithsakka/166/orig -> origin/gh/laithsakka/166/orig 2025-06-01T20:58:05.1870010Z * [new branch] gh/laithsakka/167/base -> origin/gh/laithsakka/167/base 2025-06-01T20:58:05.1870515Z * [new branch] gh/laithsakka/167/head -> origin/gh/laithsakka/167/head 2025-06-01T20:58:05.1871025Z * [new branch] gh/laithsakka/167/orig -> origin/gh/laithsakka/167/orig 2025-06-01T20:58:05.1871522Z * [new branch] gh/laithsakka/168/base -> origin/gh/laithsakka/168/base 2025-06-01T20:58:05.1872527Z * [new branch] gh/laithsakka/168/head -> origin/gh/laithsakka/168/head 2025-06-01T20:58:05.1873038Z * [new branch] gh/laithsakka/168/orig -> origin/gh/laithsakka/168/orig 2025-06-01T20:58:05.1873540Z * [new branch] gh/laithsakka/169/base -> origin/gh/laithsakka/169/base 2025-06-01T20:58:05.1874032Z * [new branch] gh/laithsakka/169/head -> origin/gh/laithsakka/169/head 2025-06-01T20:58:05.1874638Z * [new branch] gh/laithsakka/169/orig -> origin/gh/laithsakka/169/orig 2025-06-01T20:58:05.1875148Z * [new branch] gh/laithsakka/170/base -> origin/gh/laithsakka/170/base 2025-06-01T20:58:05.1875649Z * [new branch] gh/laithsakka/170/head -> origin/gh/laithsakka/170/head 2025-06-01T20:58:05.1876152Z * [new branch] gh/laithsakka/170/orig -> origin/gh/laithsakka/170/orig 2025-06-01T20:58:05.1876654Z * [new branch] gh/laithsakka/171/base -> origin/gh/laithsakka/171/base 2025-06-01T20:58:05.1877157Z * [new branch] gh/laithsakka/171/head -> origin/gh/laithsakka/171/head 2025-06-01T20:58:05.1877660Z * [new branch] gh/laithsakka/171/orig -> origin/gh/laithsakka/171/orig 2025-06-01T20:58:05.1878154Z * [new branch] gh/laithsakka/172/base -> origin/gh/laithsakka/172/base 2025-06-01T20:58:05.1878655Z * [new branch] gh/laithsakka/172/head -> origin/gh/laithsakka/172/head 2025-06-01T20:58:05.1879148Z * [new branch] gh/laithsakka/172/orig -> origin/gh/laithsakka/172/orig 2025-06-01T20:58:05.1879654Z * [new branch] gh/laithsakka/173/base -> origin/gh/laithsakka/173/base 2025-06-01T20:58:05.1880157Z * [new branch] gh/laithsakka/173/head -> origin/gh/laithsakka/173/head 2025-06-01T20:58:05.1880647Z * [new branch] gh/laithsakka/173/orig -> origin/gh/laithsakka/173/orig 2025-06-01T20:58:05.1881160Z * [new branch] gh/laithsakka/174/base -> origin/gh/laithsakka/174/base 2025-06-01T20:58:05.1881660Z * [new branch] gh/laithsakka/174/head -> origin/gh/laithsakka/174/head 2025-06-01T20:58:05.1882161Z * [new branch] gh/laithsakka/174/orig -> origin/gh/laithsakka/174/orig 2025-06-01T20:58:05.1882664Z * [new branch] gh/laithsakka/175/base -> origin/gh/laithsakka/175/base 2025-06-01T20:58:05.1883157Z * [new branch] gh/laithsakka/175/head -> origin/gh/laithsakka/175/head 2025-06-01T20:58:05.1883660Z * [new branch] gh/laithsakka/175/orig -> origin/gh/laithsakka/175/orig 2025-06-01T20:58:05.1884155Z * [new branch] gh/laithsakka/176/base -> origin/gh/laithsakka/176/base 2025-06-01T20:58:05.1884663Z * [new branch] gh/laithsakka/176/head -> origin/gh/laithsakka/176/head 2025-06-01T20:58:05.1885174Z * [new branch] gh/laithsakka/176/orig -> origin/gh/laithsakka/176/orig 2025-06-01T20:58:05.1885673Z * [new branch] gh/laithsakka/177/base -> origin/gh/laithsakka/177/base 2025-06-01T20:58:05.1886172Z * [new branch] gh/laithsakka/177/head -> origin/gh/laithsakka/177/head 2025-06-01T20:58:05.1886668Z * [new branch] gh/laithsakka/177/orig -> origin/gh/laithsakka/177/orig 2025-06-01T20:58:05.1887177Z * [new branch] gh/laithsakka/178/base -> origin/gh/laithsakka/178/base 2025-06-01T20:58:05.1887675Z * [new branch] gh/laithsakka/178/head -> origin/gh/laithsakka/178/head 2025-06-01T20:58:05.1888184Z * [new branch] gh/laithsakka/178/orig -> origin/gh/laithsakka/178/orig 2025-06-01T20:58:05.1888689Z * [new branch] gh/laithsakka/179/base -> origin/gh/laithsakka/179/base 2025-06-01T20:58:05.1889182Z * [new branch] gh/laithsakka/179/head -> origin/gh/laithsakka/179/head 2025-06-01T20:58:05.2300545Z * [new branch] gh/laithsakka/179/orig -> origin/gh/laithsakka/179/orig 2025-06-01T20:58:05.2301143Z * [new branch] gh/laithsakka/180/base -> origin/gh/laithsakka/180/base 2025-06-01T20:58:05.2301651Z * [new branch] gh/laithsakka/180/head -> origin/gh/laithsakka/180/head 2025-06-01T20:58:05.2302161Z * [new branch] gh/laithsakka/180/orig -> origin/gh/laithsakka/180/orig 2025-06-01T20:58:05.2302655Z * [new branch] gh/laithsakka/181/base -> origin/gh/laithsakka/181/base 2025-06-01T20:58:05.2303150Z * [new branch] gh/laithsakka/181/head -> origin/gh/laithsakka/181/head 2025-06-01T20:58:05.2303655Z * [new branch] gh/laithsakka/181/orig -> origin/gh/laithsakka/181/orig 2025-06-01T20:58:05.2304157Z * [new branch] gh/laithsakka/182/base -> origin/gh/laithsakka/182/base 2025-06-01T20:58:05.2304666Z * [new branch] gh/laithsakka/182/head -> origin/gh/laithsakka/182/head 2025-06-01T20:58:05.2305164Z * [new branch] gh/laithsakka/182/orig -> origin/gh/laithsakka/182/orig 2025-06-01T20:58:05.2305667Z * [new branch] gh/laithsakka/183/base -> origin/gh/laithsakka/183/base 2025-06-01T20:58:05.2306172Z * [new branch] gh/laithsakka/183/head -> origin/gh/laithsakka/183/head 2025-06-01T20:58:05.2306665Z * [new branch] gh/laithsakka/183/orig -> origin/gh/laithsakka/183/orig 2025-06-01T20:58:05.2307167Z * [new branch] gh/laithsakka/184/base -> origin/gh/laithsakka/184/base 2025-06-01T20:58:05.2307655Z * [new branch] gh/laithsakka/184/head -> origin/gh/laithsakka/184/head 2025-06-01T20:58:05.2308161Z * [new branch] gh/laithsakka/184/orig -> origin/gh/laithsakka/184/orig 2025-06-01T20:58:05.2308663Z * [new branch] gh/laithsakka/185/base -> origin/gh/laithsakka/185/base 2025-06-01T20:58:05.2309223Z * [new branch] gh/laithsakka/185/head -> origin/gh/laithsakka/185/head 2025-06-01T20:58:05.2309777Z * [new branch] gh/laithsakka/185/orig -> origin/gh/laithsakka/185/orig 2025-06-01T20:58:05.2310281Z * [new branch] gh/laithsakka/186/base -> origin/gh/laithsakka/186/base 2025-06-01T20:58:05.2310796Z * [new branch] gh/laithsakka/186/head -> origin/gh/laithsakka/186/head 2025-06-01T20:58:05.2311302Z * [new branch] gh/laithsakka/186/orig -> origin/gh/laithsakka/186/orig 2025-06-01T20:58:05.2311809Z * [new branch] gh/laithsakka/187/base -> origin/gh/laithsakka/187/base 2025-06-01T20:58:05.2312317Z * [new branch] gh/laithsakka/187/head -> origin/gh/laithsakka/187/head 2025-06-01T20:58:05.2312812Z * [new branch] gh/laithsakka/187/orig -> origin/gh/laithsakka/187/orig 2025-06-01T20:58:05.2313317Z * [new branch] gh/laithsakka/188/base -> origin/gh/laithsakka/188/base 2025-06-01T20:58:05.2313817Z * [new branch] gh/laithsakka/188/head -> origin/gh/laithsakka/188/head 2025-06-01T20:58:05.2314429Z * [new branch] gh/laithsakka/188/orig -> origin/gh/laithsakka/188/orig 2025-06-01T20:58:05.2314934Z * [new branch] gh/laithsakka/189/base -> origin/gh/laithsakka/189/base 2025-06-01T20:58:05.2315433Z * [new branch] gh/laithsakka/189/head -> origin/gh/laithsakka/189/head 2025-06-01T20:58:05.2315939Z * [new branch] gh/laithsakka/189/orig -> origin/gh/laithsakka/189/orig 2025-06-01T20:58:05.2316443Z * [new branch] gh/laithsakka/190/base -> origin/gh/laithsakka/190/base 2025-06-01T20:58:05.2316954Z * [new branch] gh/laithsakka/190/head -> origin/gh/laithsakka/190/head 2025-06-01T20:58:05.2317464Z * [new branch] gh/laithsakka/190/orig -> origin/gh/laithsakka/190/orig 2025-06-01T20:58:05.2318080Z * [new branch] gh/laithsakka/191/base -> origin/gh/laithsakka/191/base 2025-06-01T20:58:05.2318908Z * [new branch] gh/laithsakka/191/head -> origin/gh/laithsakka/191/head 2025-06-01T20:58:05.2319417Z * [new branch] gh/laithsakka/191/orig -> origin/gh/laithsakka/191/orig 2025-06-01T20:58:05.2319926Z * [new branch] gh/laithsakka/192/base -> origin/gh/laithsakka/192/base 2025-06-01T20:58:05.2320437Z * [new branch] gh/laithsakka/192/head -> origin/gh/laithsakka/192/head 2025-06-01T20:58:05.2320933Z * [new branch] gh/laithsakka/192/orig -> origin/gh/laithsakka/192/orig 2025-06-01T20:58:05.2321450Z * [new branch] gh/laithsakka/193/base -> origin/gh/laithsakka/193/base 2025-06-01T20:58:05.2321957Z * [new branch] gh/laithsakka/193/head -> origin/gh/laithsakka/193/head 2025-06-01T20:58:05.2322465Z * [new branch] gh/laithsakka/193/orig -> origin/gh/laithsakka/193/orig 2025-06-01T20:58:05.2322982Z * [new branch] gh/laithsakka/194/base -> origin/gh/laithsakka/194/base 2025-06-01T20:58:05.2323480Z * [new branch] gh/laithsakka/194/head -> origin/gh/laithsakka/194/head 2025-06-01T20:58:05.2764099Z * [new branch] gh/laithsakka/194/orig -> origin/gh/laithsakka/194/orig 2025-06-01T20:58:05.2764651Z * [new branch] gh/laithsakka/195/base -> origin/gh/laithsakka/195/base 2025-06-01T20:58:05.2765165Z * [new branch] gh/laithsakka/195/head -> origin/gh/laithsakka/195/head 2025-06-01T20:58:05.2765669Z * [new branch] gh/laithsakka/195/orig -> origin/gh/laithsakka/195/orig 2025-06-01T20:58:05.2766158Z * [new branch] gh/laithsakka/196/base -> origin/gh/laithsakka/196/base 2025-06-01T20:58:05.2766661Z * [new branch] gh/laithsakka/196/head -> origin/gh/laithsakka/196/head 2025-06-01T20:58:05.2767177Z * [new branch] gh/laithsakka/196/orig -> origin/gh/laithsakka/196/orig 2025-06-01T20:58:05.2767692Z * [new branch] gh/laithsakka/197/base -> origin/gh/laithsakka/197/base 2025-06-01T20:58:05.2768189Z * [new branch] gh/laithsakka/197/head -> origin/gh/laithsakka/197/head 2025-06-01T20:58:05.2768683Z * [new branch] gh/laithsakka/197/orig -> origin/gh/laithsakka/197/orig 2025-06-01T20:58:05.2769188Z * [new branch] gh/laithsakka/198/base -> origin/gh/laithsakka/198/base 2025-06-01T20:58:05.2769681Z * [new branch] gh/laithsakka/198/head -> origin/gh/laithsakka/198/head 2025-06-01T20:58:05.2770185Z * [new branch] gh/laithsakka/198/orig -> origin/gh/laithsakka/198/orig 2025-06-01T20:58:05.2770688Z * [new branch] gh/laithsakka/199/base -> origin/gh/laithsakka/199/base 2025-06-01T20:58:05.2771182Z * [new branch] gh/laithsakka/199/head -> origin/gh/laithsakka/199/head 2025-06-01T20:58:05.2771691Z * [new branch] gh/laithsakka/199/orig -> origin/gh/laithsakka/199/orig 2025-06-01T20:58:05.2772180Z * [new branch] gh/laithsakka/200/base -> origin/gh/laithsakka/200/base 2025-06-01T20:58:05.2772686Z * [new branch] gh/laithsakka/200/head -> origin/gh/laithsakka/200/head 2025-06-01T20:58:05.2773176Z * [new branch] gh/laithsakka/200/orig -> origin/gh/laithsakka/200/orig 2025-06-01T20:58:05.2773695Z * [new branch] gh/laithsakka/28/base -> origin/gh/laithsakka/28/base 2025-06-01T20:58:05.2774203Z * [new branch] gh/laithsakka/29/base -> origin/gh/laithsakka/29/base 2025-06-01T20:58:05.2774693Z * [new branch] gh/laithsakka/30/base -> origin/gh/laithsakka/30/base 2025-06-01T20:58:05.2775191Z * [new branch] gh/laithsakka/30/head -> origin/gh/laithsakka/30/head 2025-06-01T20:58:05.2775840Z * [new branch] gh/laithsakka/31/base -> origin/gh/laithsakka/31/base 2025-06-01T20:58:05.2776732Z * [new branch] gh/laithsakka/31/head -> origin/gh/laithsakka/31/head 2025-06-01T20:58:05.2777246Z * [new branch] gh/laithsakka/32/base -> origin/gh/laithsakka/32/base 2025-06-01T20:58:05.2777736Z * [new branch] gh/laithsakka/32/head -> origin/gh/laithsakka/32/head 2025-06-01T20:58:05.2778245Z * [new branch] gh/larryliu0820/1/base -> origin/gh/larryliu0820/1/base 2025-06-01T20:58:05.2778740Z * [new branch] gh/larryliu0820/1/head -> origin/gh/larryliu0820/1/head 2025-06-01T20:58:05.2779245Z * [new branch] gh/larryliu0820/1/orig -> origin/gh/larryliu0820/1/orig 2025-06-01T20:58:05.2779743Z * [new branch] gh/larryliu0820/2/base -> origin/gh/larryliu0820/2/base 2025-06-01T20:58:05.2780232Z * [new branch] gh/larryliu0820/2/head -> origin/gh/larryliu0820/2/head 2025-06-01T20:58:05.2780750Z * [new branch] gh/larryliu0820/2/orig -> origin/gh/larryliu0820/2/orig 2025-06-01T20:58:05.2781237Z * [new branch] gh/larryliu0820/3/base -> origin/gh/larryliu0820/3/base 2025-06-01T20:58:05.2781740Z * [new branch] gh/larryliu0820/3/head -> origin/gh/larryliu0820/3/head 2025-06-01T20:58:05.2782241Z * [new branch] gh/larryliu0820/3/orig -> origin/gh/larryliu0820/3/orig 2025-06-01T20:58:05.2782735Z * [new branch] gh/larryliu0820/4/base -> origin/gh/larryliu0820/4/base 2025-06-01T20:58:05.2783239Z * [new branch] gh/larryliu0820/4/head -> origin/gh/larryliu0820/4/head 2025-06-01T20:58:05.2783733Z * [new branch] gh/larryliu0820/4/orig -> origin/gh/larryliu0820/4/orig 2025-06-01T20:58:05.2784287Z * [new branch] gh/leslie-fang-intel/190/base -> origin/gh/leslie-fang-intel/190/base 2025-06-01T20:58:05.2784889Z * [new branch] gh/leslie-fang-intel/190/head -> origin/gh/leslie-fang-intel/190/head 2025-06-01T20:58:05.2785470Z * [new branch] gh/leslie-fang-intel/190/orig -> origin/gh/leslie-fang-intel/190/orig 2025-06-01T20:58:05.2786054Z * [new branch] gh/leslie-fang-intel/192/base -> origin/gh/leslie-fang-intel/192/base 2025-06-01T20:58:05.2786623Z * [new branch] gh/leslie-fang-intel/192/head -> origin/gh/leslie-fang-intel/192/head 2025-06-01T20:58:05.2787199Z * [new branch] gh/leslie-fang-intel/192/orig -> origin/gh/leslie-fang-intel/192/orig 2025-06-01T20:58:05.3205715Z * [new branch] gh/leslie-fang-intel/193/base -> origin/gh/leslie-fang-intel/193/base 2025-06-01T20:58:05.3206337Z * [new branch] gh/leslie-fang-intel/193/head -> origin/gh/leslie-fang-intel/193/head 2025-06-01T20:58:05.3206965Z * [new branch] gh/leslie-fang-intel/193/orig -> origin/gh/leslie-fang-intel/193/orig 2025-06-01T20:58:05.3207616Z * [new branch] gh/leslie-fang-intel/194/base -> origin/gh/leslie-fang-intel/194/base 2025-06-01T20:58:05.3208200Z * [new branch] gh/leslie-fang-intel/194/head -> origin/gh/leslie-fang-intel/194/head 2025-06-01T20:58:05.3208788Z * [new branch] gh/leslie-fang-intel/194/orig -> origin/gh/leslie-fang-intel/194/orig 2025-06-01T20:58:05.3209370Z * [new branch] gh/leslie-fang-intel/195/base -> origin/gh/leslie-fang-intel/195/base 2025-06-01T20:58:05.3209964Z * [new branch] gh/leslie-fang-intel/195/head -> origin/gh/leslie-fang-intel/195/head 2025-06-01T20:58:05.3210548Z * [new branch] gh/leslie-fang-intel/195/orig -> origin/gh/leslie-fang-intel/195/orig 2025-06-01T20:58:05.3211269Z * [new branch] gh/leslie-fang-intel/196/base -> origin/gh/leslie-fang-intel/196/base 2025-06-01T20:58:05.3211854Z * [new branch] gh/leslie-fang-intel/196/head -> origin/gh/leslie-fang-intel/196/head 2025-06-01T20:58:05.3212564Z * [new branch] gh/leslie-fang-intel/196/orig -> origin/gh/leslie-fang-intel/196/orig 2025-06-01T20:58:05.3213588Z * [new branch] gh/leslie-fang-intel/197/base -> origin/gh/leslie-fang-intel/197/base 2025-06-01T20:58:05.3214183Z * [new branch] gh/leslie-fang-intel/197/head -> origin/gh/leslie-fang-intel/197/head 2025-06-01T20:58:05.3214760Z * [new branch] gh/leslie-fang-intel/197/orig -> origin/gh/leslie-fang-intel/197/orig 2025-06-01T20:58:05.3215344Z * [new branch] gh/leslie-fang-intel/198/base -> origin/gh/leslie-fang-intel/198/base 2025-06-01T20:58:05.3215925Z * [new branch] gh/leslie-fang-intel/198/head -> origin/gh/leslie-fang-intel/198/head 2025-06-01T20:58:05.3216514Z * [new branch] gh/leslie-fang-intel/198/orig -> origin/gh/leslie-fang-intel/198/orig 2025-06-01T20:58:05.3217108Z * [new branch] gh/leslie-fang-intel/199/base -> origin/gh/leslie-fang-intel/199/base 2025-06-01T20:58:05.3217685Z * [new branch] gh/leslie-fang-intel/199/head -> origin/gh/leslie-fang-intel/199/head 2025-06-01T20:58:05.3218280Z * [new branch] gh/leslie-fang-intel/199/orig -> origin/gh/leslie-fang-intel/199/orig 2025-06-01T20:58:05.3218915Z * [new branch] gh/lucaskabela/1/base -> origin/gh/lucaskabela/1/base 2025-06-01T20:58:05.3219427Z * [new branch] gh/lucaskabela/1/head -> origin/gh/lucaskabela/1/head 2025-06-01T20:58:05.3219927Z * [new branch] gh/lucaskabela/1/orig -> origin/gh/lucaskabela/1/orig 2025-06-01T20:58:05.3220426Z * [new branch] gh/lucaskabela/10/base -> origin/gh/lucaskabela/10/base 2025-06-01T20:58:05.3220939Z * [new branch] gh/lucaskabela/10/head -> origin/gh/lucaskabela/10/head 2025-06-01T20:58:05.3221436Z * [new branch] gh/lucaskabela/10/orig -> origin/gh/lucaskabela/10/orig 2025-06-01T20:58:05.3221945Z * [new branch] gh/lucaskabela/5/base -> origin/gh/lucaskabela/5/base 2025-06-01T20:58:05.3222455Z * [new branch] gh/lucaskabela/5/head -> origin/gh/lucaskabela/5/head 2025-06-01T20:58:05.3222945Z * [new branch] gh/lucaskabela/5/orig -> origin/gh/lucaskabela/5/orig 2025-06-01T20:58:05.3223453Z * [new branch] gh/lucaskabela/6/base -> origin/gh/lucaskabela/6/base 2025-06-01T20:58:05.3223943Z * [new branch] gh/lucaskabela/6/head -> origin/gh/lucaskabela/6/head 2025-06-01T20:58:05.3224518Z * [new branch] gh/lucaskabela/6/orig -> origin/gh/lucaskabela/6/orig 2025-06-01T20:58:05.3225022Z * [new branch] gh/lucaskabela/7/base -> origin/gh/lucaskabela/7/base 2025-06-01T20:58:05.3225514Z * [new branch] gh/lucaskabela/7/head -> origin/gh/lucaskabela/7/head 2025-06-01T20:58:05.3226021Z * [new branch] gh/lucaskabela/7/orig -> origin/gh/lucaskabela/7/orig 2025-06-01T20:58:05.3226520Z * [new branch] gh/lucaskabela/8/base -> origin/gh/lucaskabela/8/base 2025-06-01T20:58:05.3227024Z * [new branch] gh/lucaskabela/8/head -> origin/gh/lucaskabela/8/head 2025-06-01T20:58:05.3227513Z * [new branch] gh/lucaskabela/8/orig -> origin/gh/lucaskabela/8/orig 2025-06-01T20:58:05.3228018Z * [new branch] gh/lucaskabela/9/base -> origin/gh/lucaskabela/9/base 2025-06-01T20:58:05.3228515Z * [new branch] gh/lucaskabela/9/head -> origin/gh/lucaskabela/9/head 2025-06-01T20:58:05.3228984Z * [new branch] gh/lw/10/base -> origin/gh/lw/10/base 2025-06-01T20:58:05.3229423Z * [new branch] gh/lw/10/head -> origin/gh/lw/10/head 2025-06-01T20:58:05.3229884Z * [new branch] gh/lw/10/orig -> origin/gh/lw/10/orig 2025-06-01T20:58:05.4358850Z * [new branch] gh/lw/15/base -> origin/gh/lw/15/base 2025-06-01T20:58:05.4359628Z * [new branch] gh/lw/15/head -> origin/gh/lw/15/head 2025-06-01T20:58:05.4360523Z * [new branch] gh/lw/15/orig -> origin/gh/lw/15/orig 2025-06-01T20:58:05.4360970Z * [new branch] gh/lw/5/head -> origin/gh/lw/5/head 2025-06-01T20:58:05.4361414Z * [new branch] gh/malfet/14/base -> origin/gh/malfet/14/base 2025-06-01T20:58:05.4361894Z * [new branch] gh/malfet/155/base -> origin/gh/malfet/155/base 2025-06-01T20:58:05.4362364Z * [new branch] gh/malfet/155/head -> origin/gh/malfet/155/head 2025-06-01T20:58:05.4362828Z * [new branch] gh/malfet/155/orig -> origin/gh/malfet/155/orig 2025-06-01T20:58:05.4363293Z * [new branch] gh/malfet/159/base -> origin/gh/malfet/159/base 2025-06-01T20:58:05.4363754Z * [new branch] gh/malfet/159/head -> origin/gh/malfet/159/head 2025-06-01T20:58:05.4364229Z * [new branch] gh/malfet/159/orig -> origin/gh/malfet/159/orig 2025-06-01T20:58:05.4364782Z * [new branch] gh/malfet/169/base -> origin/gh/malfet/169/base 2025-06-01T20:58:05.4365263Z * [new branch] gh/malfet/169/head -> origin/gh/malfet/169/head 2025-06-01T20:58:05.4365731Z * [new branch] gh/malfet/169/orig -> origin/gh/malfet/169/orig 2025-06-01T20:58:05.4366191Z * [new branch] gh/malfet/197/base -> origin/gh/malfet/197/base 2025-06-01T20:58:05.4366668Z * [new branch] gh/malfet/197/head -> origin/gh/malfet/197/head 2025-06-01T20:58:05.4367135Z * [new branch] gh/malfet/197/orig -> origin/gh/malfet/197/orig 2025-06-01T20:58:05.4367640Z * [new branch] gh/malfet/259/base -> origin/gh/malfet/259/base 2025-06-01T20:58:05.4368106Z * [new branch] gh/malfet/259/head -> origin/gh/malfet/259/head 2025-06-01T20:58:05.4368576Z * [new branch] gh/malfet/259/orig -> origin/gh/malfet/259/orig 2025-06-01T20:58:05.4369038Z * [new branch] gh/malfet/268/base -> origin/gh/malfet/268/base 2025-06-01T20:58:05.4369499Z * [new branch] gh/malfet/268/head -> origin/gh/malfet/268/head 2025-06-01T20:58:05.4369950Z * [new branch] gh/malfet/268/orig -> origin/gh/malfet/268/orig 2025-06-01T20:58:05.4370504Z * [new branch] gh/malfet/292/base -> origin/gh/malfet/292/base 2025-06-01T20:58:05.4370977Z * [new branch] gh/malfet/292/head -> origin/gh/malfet/292/head 2025-06-01T20:58:05.4371446Z * [new branch] gh/malfet/292/orig -> origin/gh/malfet/292/orig 2025-06-01T20:58:05.4371910Z * [new branch] gh/malfet/293/base -> origin/gh/malfet/293/base 2025-06-01T20:58:05.4372368Z * [new branch] gh/malfet/293/head -> origin/gh/malfet/293/head 2025-06-01T20:58:05.4372839Z * [new branch] gh/malfet/293/orig -> origin/gh/malfet/293/orig 2025-06-01T20:58:05.4373292Z * [new branch] gh/malfet/294/base -> origin/gh/malfet/294/base 2025-06-01T20:58:05.4373766Z * [new branch] gh/malfet/294/head -> origin/gh/malfet/294/head 2025-06-01T20:58:05.4374223Z * [new branch] gh/malfet/294/orig -> origin/gh/malfet/294/orig 2025-06-01T20:58:05.4374684Z * [new branch] gh/malfet/295/base -> origin/gh/malfet/295/base 2025-06-01T20:58:05.4375148Z * [new branch] gh/malfet/295/head -> origin/gh/malfet/295/head 2025-06-01T20:58:05.4375605Z * [new branch] gh/malfet/295/orig -> origin/gh/malfet/295/orig 2025-06-01T20:58:05.4376127Z * [new branch] gh/malfet/296/base -> origin/gh/malfet/296/base 2025-06-01T20:58:05.4376746Z * [new branch] gh/malfet/296/head -> origin/gh/malfet/296/head 2025-06-01T20:58:05.4377593Z * [new branch] gh/malfet/296/orig -> origin/gh/malfet/296/orig 2025-06-01T20:58:05.4378089Z * [new branch] gh/malfet/297/base -> origin/gh/malfet/297/base 2025-06-01T20:58:05.4378550Z * [new branch] gh/malfet/297/head -> origin/gh/malfet/297/head 2025-06-01T20:58:05.4379017Z * [new branch] gh/malfet/297/orig -> origin/gh/malfet/297/orig 2025-06-01T20:58:05.4379476Z * [new branch] gh/malfet/298/base -> origin/gh/malfet/298/base 2025-06-01T20:58:05.4379949Z * [new branch] gh/malfet/298/head -> origin/gh/malfet/298/head 2025-06-01T20:58:05.4380416Z * [new branch] gh/malfet/298/orig -> origin/gh/malfet/298/orig 2025-06-01T20:58:05.4380875Z * [new branch] gh/malfet/299/base -> origin/gh/malfet/299/base 2025-06-01T20:58:05.4381342Z * [new branch] gh/malfet/299/head -> origin/gh/malfet/299/head 2025-06-01T20:58:05.4381891Z * [new branch] gh/malfet/299/orig -> origin/gh/malfet/299/orig 2025-06-01T20:58:05.4382372Z * [new branch] gh/malfet/300/base -> origin/gh/malfet/300/base 2025-06-01T20:58:05.4800755Z * [new branch] gh/malfet/300/head -> origin/gh/malfet/300/head 2025-06-01T20:58:05.4801282Z * [new branch] gh/malfet/300/orig -> origin/gh/malfet/300/orig 2025-06-01T20:58:05.4801767Z * [new branch] gh/malfet/301/base -> origin/gh/malfet/301/base 2025-06-01T20:58:05.4802237Z * [new branch] gh/malfet/301/head -> origin/gh/malfet/301/head 2025-06-01T20:58:05.4802709Z * [new branch] gh/malfet/301/orig -> origin/gh/malfet/301/orig 2025-06-01T20:58:05.4803176Z * [new branch] gh/malfet/302/base -> origin/gh/malfet/302/base 2025-06-01T20:58:05.4803652Z * [new branch] gh/malfet/302/head -> origin/gh/malfet/302/head 2025-06-01T20:58:05.4804130Z * [new branch] gh/malfet/302/orig -> origin/gh/malfet/302/orig 2025-06-01T20:58:05.4804590Z * [new branch] gh/malfet/303/base -> origin/gh/malfet/303/base 2025-06-01T20:58:05.4805051Z * [new branch] gh/malfet/303/head -> origin/gh/malfet/303/head 2025-06-01T20:58:05.4805519Z * [new branch] gh/malfet/303/orig -> origin/gh/malfet/303/orig 2025-06-01T20:58:05.4805975Z * [new branch] gh/malfet/304/base -> origin/gh/malfet/304/base 2025-06-01T20:58:05.4806450Z * [new branch] gh/malfet/304/head -> origin/gh/malfet/304/head 2025-06-01T20:58:05.4806908Z * [new branch] gh/malfet/304/orig -> origin/gh/malfet/304/orig 2025-06-01T20:58:05.4807374Z * [new branch] gh/malfet/305/base -> origin/gh/malfet/305/base 2025-06-01T20:58:05.4807847Z * [new branch] gh/malfet/305/head -> origin/gh/malfet/305/head 2025-06-01T20:58:05.4808302Z * [new branch] gh/malfet/305/orig -> origin/gh/malfet/305/orig 2025-06-01T20:58:05.4808762Z * [new branch] gh/malfet/306/base -> origin/gh/malfet/306/base 2025-06-01T20:58:05.4809219Z * [new branch] gh/malfet/306/head -> origin/gh/malfet/306/head 2025-06-01T20:58:05.4809684Z * [new branch] gh/malfet/306/orig -> origin/gh/malfet/306/orig 2025-06-01T20:58:05.4810141Z * [new branch] gh/malfet/307/base -> origin/gh/malfet/307/base 2025-06-01T20:58:05.4810608Z * [new branch] gh/malfet/307/head -> origin/gh/malfet/307/head 2025-06-01T20:58:05.4811069Z * [new branch] gh/malfet/307/orig -> origin/gh/malfet/307/orig 2025-06-01T20:58:05.4811530Z * [new branch] gh/malfet/308/base -> origin/gh/malfet/308/base 2025-06-01T20:58:05.4812524Z * [new branch] gh/malfet/308/head -> origin/gh/malfet/308/head 2025-06-01T20:58:05.4813002Z * [new branch] gh/malfet/308/orig -> origin/gh/malfet/308/orig 2025-06-01T20:58:05.4813473Z * [new branch] gh/malfet/309/base -> origin/gh/malfet/309/base 2025-06-01T20:58:05.4813953Z * [new branch] gh/malfet/309/head -> origin/gh/malfet/309/head 2025-06-01T20:58:05.4814413Z * [new branch] gh/malfet/309/orig -> origin/gh/malfet/309/orig 2025-06-01T20:58:05.4814886Z * [new branch] gh/malfet/310/base -> origin/gh/malfet/310/base 2025-06-01T20:58:05.4815341Z * [new branch] gh/malfet/310/head -> origin/gh/malfet/310/head 2025-06-01T20:58:05.4815802Z * [new branch] gh/malfet/310/orig -> origin/gh/malfet/310/orig 2025-06-01T20:58:05.4816272Z * [new branch] gh/malfet/311/base -> origin/gh/malfet/311/base 2025-06-01T20:58:05.4816729Z * [new branch] gh/malfet/311/head -> origin/gh/malfet/311/head 2025-06-01T20:58:05.4817193Z * [new branch] gh/malfet/311/orig -> origin/gh/malfet/311/orig 2025-06-01T20:58:05.4817643Z * [new branch] gh/malfet/312/base -> origin/gh/malfet/312/base 2025-06-01T20:58:05.4818104Z * [new branch] gh/malfet/312/head -> origin/gh/malfet/312/head 2025-06-01T20:58:05.4818557Z * [new branch] gh/malfet/313/base -> origin/gh/malfet/313/base 2025-06-01T20:58:05.4819016Z * [new branch] gh/malfet/313/head -> origin/gh/malfet/313/head 2025-06-01T20:58:05.4819480Z * [new branch] gh/malfet/313/orig -> origin/gh/malfet/313/orig 2025-06-01T20:58:05.4819938Z * [new branch] gh/malfet/314/base -> origin/gh/malfet/314/base 2025-06-01T20:58:05.4820411Z * [new branch] gh/malfet/314/head -> origin/gh/malfet/314/head 2025-06-01T20:58:05.4820871Z * [new branch] gh/malfet/314/orig -> origin/gh/malfet/314/orig 2025-06-01T20:58:05.4821328Z * [new branch] gh/malfet/315/base -> origin/gh/malfet/315/base 2025-06-01T20:58:05.4821788Z * [new branch] gh/malfet/315/head -> origin/gh/malfet/315/head 2025-06-01T20:58:05.4822243Z * [new branch] gh/malfet/315/orig -> origin/gh/malfet/315/orig 2025-06-01T20:58:05.4822706Z * [new branch] gh/malfet/316/base -> origin/gh/malfet/316/base 2025-06-01T20:58:05.4823158Z * [new branch] gh/malfet/316/head -> origin/gh/malfet/316/head 2025-06-01T20:58:05.5271039Z * [new branch] gh/malfet/316/orig -> origin/gh/malfet/316/orig 2025-06-01T20:58:05.5271579Z * [new branch] gh/malfet/317/base -> origin/gh/malfet/317/base 2025-06-01T20:58:05.5272067Z * [new branch] gh/malfet/317/head -> origin/gh/malfet/317/head 2025-06-01T20:58:05.5272554Z * [new branch] gh/malfet/317/orig -> origin/gh/malfet/317/orig 2025-06-01T20:58:05.5273032Z * [new branch] gh/malfet/318/base -> origin/gh/malfet/318/base 2025-06-01T20:58:05.5273489Z * [new branch] gh/malfet/318/head -> origin/gh/malfet/318/head 2025-06-01T20:58:05.5273967Z * [new branch] gh/malfet/318/orig -> origin/gh/malfet/318/orig 2025-06-01T20:58:05.5274475Z * [new branch] gh/malfet/319/base -> origin/gh/malfet/319/base 2025-06-01T20:58:05.5274940Z * [new branch] gh/malfet/319/head -> origin/gh/malfet/319/head 2025-06-01T20:58:05.5275400Z * [new branch] gh/malfet/319/orig -> origin/gh/malfet/319/orig 2025-06-01T20:58:05.5275868Z * [new branch] gh/malfet/320/base -> origin/gh/malfet/320/base 2025-06-01T20:58:05.5276491Z * [new branch] gh/malfet/320/head -> origin/gh/malfet/320/head 2025-06-01T20:58:05.5277336Z * [new branch] gh/malfet/320/orig -> origin/gh/malfet/320/orig 2025-06-01T20:58:05.5277826Z * [new branch] gh/malfet/321/base -> origin/gh/malfet/321/base 2025-06-01T20:58:05.5278281Z * [new branch] gh/malfet/321/head -> origin/gh/malfet/321/head 2025-06-01T20:58:05.5278750Z * [new branch] gh/malfet/321/orig -> origin/gh/malfet/321/orig 2025-06-01T20:58:05.5279216Z * [new branch] gh/malfet/322/base -> origin/gh/malfet/322/base 2025-06-01T20:58:05.5279677Z * [new branch] gh/malfet/322/head -> origin/gh/malfet/322/head 2025-06-01T20:58:05.5280137Z * [new branch] gh/malfet/322/orig -> origin/gh/malfet/322/orig 2025-06-01T20:58:05.5280591Z * [new branch] gh/malfet/323/base -> origin/gh/malfet/323/base 2025-06-01T20:58:05.5281068Z * [new branch] gh/malfet/323/head -> origin/gh/malfet/323/head 2025-06-01T20:58:05.5281529Z * [new branch] gh/malfet/323/orig -> origin/gh/malfet/323/orig 2025-06-01T20:58:05.5281988Z * [new branch] gh/malfet/324/base -> origin/gh/malfet/324/base 2025-06-01T20:58:05.5282448Z * [new branch] gh/malfet/324/head -> origin/gh/malfet/324/head 2025-06-01T20:58:05.5282907Z * [new branch] gh/malfet/324/orig -> origin/gh/malfet/324/orig 2025-06-01T20:58:05.5283377Z * [new branch] gh/malfet/325/base -> origin/gh/malfet/325/base 2025-06-01T20:58:05.5283835Z * [new branch] gh/malfet/325/head -> origin/gh/malfet/325/head 2025-06-01T20:58:05.5284298Z * [new branch] gh/malfet/325/orig -> origin/gh/malfet/325/orig 2025-06-01T20:58:05.5284768Z * [new branch] gh/malfet/326/base -> origin/gh/malfet/326/base 2025-06-01T20:58:05.5285235Z * [new branch] gh/malfet/326/head -> origin/gh/malfet/326/head 2025-06-01T20:58:05.5285700Z * [new branch] gh/malfet/326/orig -> origin/gh/malfet/326/orig 2025-06-01T20:58:05.5286154Z * [new branch] gh/malfet/327/base -> origin/gh/malfet/327/base 2025-06-01T20:58:05.5286622Z * [new branch] gh/malfet/327/head -> origin/gh/malfet/327/head 2025-06-01T20:58:05.5287087Z * [new branch] gh/malfet/327/orig -> origin/gh/malfet/327/orig 2025-06-01T20:58:05.5287544Z * [new branch] gh/malfet/328/base -> origin/gh/malfet/328/base 2025-06-01T20:58:05.5288011Z * [new branch] gh/malfet/328/head -> origin/gh/malfet/328/head 2025-06-01T20:58:05.5288465Z * [new branch] gh/malfet/328/orig -> origin/gh/malfet/328/orig 2025-06-01T20:58:05.5288934Z * [new branch] gh/malfet/329/base -> origin/gh/malfet/329/base 2025-06-01T20:58:05.5289405Z * [new branch] gh/malfet/329/head -> origin/gh/malfet/329/head 2025-06-01T20:58:05.5289862Z * [new branch] gh/malfet/329/orig -> origin/gh/malfet/329/orig 2025-06-01T20:58:05.5290329Z * [new branch] gh/malfet/330/base -> origin/gh/malfet/330/base 2025-06-01T20:58:05.5290787Z * [new branch] gh/malfet/330/head -> origin/gh/malfet/330/head 2025-06-01T20:58:05.5291257Z * [new branch] gh/malfet/330/orig -> origin/gh/malfet/330/orig 2025-06-01T20:58:05.5291722Z * [new branch] gh/malfet/331/base -> origin/gh/malfet/331/base 2025-06-01T20:58:05.5292185Z * [new branch] gh/malfet/331/head -> origin/gh/malfet/331/head 2025-06-01T20:58:05.5292647Z * [new branch] gh/malfet/331/orig -> origin/gh/malfet/331/orig 2025-06-01T20:58:05.5293207Z * [new branch] gh/malfet/332/base -> origin/gh/malfet/332/base 2025-06-01T20:58:05.5710106Z * [new branch] gh/malfet/332/head -> origin/gh/malfet/332/head 2025-06-01T20:58:05.5710609Z * [new branch] gh/malfet/332/orig -> origin/gh/malfet/332/orig 2025-06-01T20:58:05.5711067Z * [new branch] gh/malfet/333/base -> origin/gh/malfet/333/base 2025-06-01T20:58:05.5711542Z * [new branch] gh/malfet/333/head -> origin/gh/malfet/333/head 2025-06-01T20:58:05.5712002Z * [new branch] gh/malfet/333/orig -> origin/gh/malfet/333/orig 2025-06-01T20:58:05.5712472Z * [new branch] gh/malfet/334/base -> origin/gh/malfet/334/base 2025-06-01T20:58:05.5712924Z * [new branch] gh/malfet/334/head -> origin/gh/malfet/334/head 2025-06-01T20:58:05.5713436Z * [new branch] gh/malfet/334/orig -> origin/gh/malfet/334/orig 2025-06-01T20:58:05.5713949Z * [new branch] gh/malfet/335/base -> origin/gh/malfet/335/base 2025-06-01T20:58:05.5714454Z * [new branch] gh/malfet/335/head -> origin/gh/malfet/335/head 2025-06-01T20:58:05.5714930Z * [new branch] gh/malfet/335/orig -> origin/gh/malfet/335/orig 2025-06-01T20:58:05.5715391Z * [new branch] gh/malfet/336/base -> origin/gh/malfet/336/base 2025-06-01T20:58:05.5715845Z * [new branch] gh/malfet/336/head -> origin/gh/malfet/336/head 2025-06-01T20:58:05.5716317Z * [new branch] gh/malfet/336/orig -> origin/gh/malfet/336/orig 2025-06-01T20:58:05.5716778Z * [new branch] gh/malfet/337/base -> origin/gh/malfet/337/base 2025-06-01T20:58:05.5717243Z * [new branch] gh/malfet/337/head -> origin/gh/malfet/337/head 2025-06-01T20:58:05.5717711Z * [new branch] gh/malfet/337/orig -> origin/gh/malfet/337/orig 2025-06-01T20:58:05.5718169Z * [new branch] gh/malfet/338/base -> origin/gh/malfet/338/base 2025-06-01T20:58:05.5718639Z * [new branch] gh/malfet/338/head -> origin/gh/malfet/338/head 2025-06-01T20:58:05.5719136Z * [new branch] gh/malfet/338/orig -> origin/gh/malfet/338/orig 2025-06-01T20:58:05.5719639Z * [new branch] gh/malfet/339/base -> origin/gh/malfet/339/base 2025-06-01T20:58:05.5720095Z * [new branch] gh/malfet/339/head -> origin/gh/malfet/339/head 2025-06-01T20:58:05.5720555Z * [new branch] gh/malfet/339/orig -> origin/gh/malfet/339/orig 2025-06-01T20:58:05.5721020Z * [new branch] gh/malfet/340/base -> origin/gh/malfet/340/base 2025-06-01T20:58:05.5721472Z * [new branch] gh/malfet/340/head -> origin/gh/malfet/340/head 2025-06-01T20:58:05.5721937Z * [new branch] gh/malfet/340/orig -> origin/gh/malfet/340/orig 2025-06-01T20:58:05.5722399Z * [new branch] gh/malfet/341/base -> origin/gh/malfet/341/base 2025-06-01T20:58:05.5722865Z * [new branch] gh/malfet/341/head -> origin/gh/malfet/341/head 2025-06-01T20:58:05.5723333Z * [new branch] gh/malfet/341/orig -> origin/gh/malfet/341/orig 2025-06-01T20:58:05.5723791Z * [new branch] gh/malfet/342/base -> origin/gh/malfet/342/base 2025-06-01T20:58:05.5724267Z * [new branch] gh/malfet/342/head -> origin/gh/malfet/342/head 2025-06-01T20:58:05.5724762Z * [new branch] gh/malfet/342/orig -> origin/gh/malfet/342/orig 2025-06-01T20:58:05.5725277Z * [new branch] gh/malfet/343/base -> origin/gh/malfet/343/base 2025-06-01T20:58:05.5725747Z * [new branch] gh/malfet/343/head -> origin/gh/malfet/343/head 2025-06-01T20:58:05.5726322Z * [new branch] gh/malfet/343/orig -> origin/gh/malfet/343/orig 2025-06-01T20:58:05.5727091Z * [new branch] gh/malfet/344/base -> origin/gh/malfet/344/base 2025-06-01T20:58:05.5727560Z * [new branch] gh/malfet/344/head -> origin/gh/malfet/344/head 2025-06-01T20:58:05.5728024Z * [new branch] gh/malfet/344/orig -> origin/gh/malfet/344/orig 2025-06-01T20:58:05.5728489Z * [new branch] gh/malfet/345/base -> origin/gh/malfet/345/base 2025-06-01T20:58:05.5728949Z * [new branch] gh/malfet/345/head -> origin/gh/malfet/345/head 2025-06-01T20:58:05.5729420Z * [new branch] gh/malfet/345/orig -> origin/gh/malfet/345/orig 2025-06-01T20:58:05.5729877Z * [new branch] gh/malfet/346/base -> origin/gh/malfet/346/base 2025-06-01T20:58:05.5730386Z * [new branch] gh/malfet/346/head -> origin/gh/malfet/346/head 2025-06-01T20:58:05.5730893Z * [new branch] gh/malfet/346/orig -> origin/gh/malfet/346/orig 2025-06-01T20:58:05.5731356Z * [new branch] gh/malfet/347/base -> origin/gh/malfet/347/base 2025-06-01T20:58:05.5731817Z * [new branch] gh/malfet/347/head -> origin/gh/malfet/347/head 2025-06-01T20:58:05.5732275Z * [new branch] gh/malfet/347/orig -> origin/gh/malfet/347/orig 2025-06-01T20:58:05.5732739Z * [new branch] gh/malfet/348/base -> origin/gh/malfet/348/base 2025-06-01T20:58:05.6168314Z * [new branch] gh/malfet/348/head -> origin/gh/malfet/348/head 2025-06-01T20:58:05.6168857Z * [new branch] gh/malfet/348/orig -> origin/gh/malfet/348/orig 2025-06-01T20:58:05.6169338Z * [new branch] gh/malfet/349/base -> origin/gh/malfet/349/base 2025-06-01T20:58:05.6169813Z * [new branch] gh/malfet/349/head -> origin/gh/malfet/349/head 2025-06-01T20:58:05.6170287Z * [new branch] gh/malfet/349/orig -> origin/gh/malfet/349/orig 2025-06-01T20:58:05.6170766Z * [new branch] gh/malfet/350/base -> origin/gh/malfet/350/base 2025-06-01T20:58:05.6171217Z * [new branch] gh/malfet/350/head -> origin/gh/malfet/350/head 2025-06-01T20:58:05.6171682Z * [new branch] gh/malfet/350/orig -> origin/gh/malfet/350/orig 2025-06-01T20:58:05.6172140Z * [new branch] gh/malfet/351/base -> origin/gh/malfet/351/base 2025-06-01T20:58:05.6172602Z * [new branch] gh/malfet/351/head -> origin/gh/malfet/351/head 2025-06-01T20:58:05.6173067Z * [new branch] gh/malfet/351/orig -> origin/gh/malfet/351/orig 2025-06-01T20:58:05.6173517Z * [new branch] gh/malfet/352/base -> origin/gh/malfet/352/base 2025-06-01T20:58:05.6173985Z * [new branch] gh/malfet/352/head -> origin/gh/malfet/352/head 2025-06-01T20:58:05.6174445Z * [new branch] gh/malfet/352/orig -> origin/gh/malfet/352/orig 2025-06-01T20:58:05.6174919Z * [new branch] gh/malfet/353/base -> origin/gh/malfet/353/base 2025-06-01T20:58:05.6175381Z * [new branch] gh/malfet/353/head -> origin/gh/malfet/353/head 2025-06-01T20:58:05.6175833Z * [new branch] gh/malfet/353/orig -> origin/gh/malfet/353/orig 2025-06-01T20:58:05.6176286Z * [new branch] gh/malfet/354/base -> origin/gh/malfet/354/base 2025-06-01T20:58:05.6176742Z * [new branch] gh/malfet/354/head -> origin/gh/malfet/354/head 2025-06-01T20:58:05.6177206Z * [new branch] gh/malfet/354/orig -> origin/gh/malfet/354/orig 2025-06-01T20:58:05.6177672Z * [new branch] gh/malfet/355/base -> origin/gh/malfet/355/base 2025-06-01T20:58:05.6178132Z * [new branch] gh/malfet/355/head -> origin/gh/malfet/355/head 2025-06-01T20:58:05.6179214Z * [new branch] gh/malfet/355/orig -> origin/gh/malfet/355/orig 2025-06-01T20:58:05.6179943Z * [new branch] gh/malfet/356/base -> origin/gh/malfet/356/base 2025-06-01T20:58:05.6180427Z * [new branch] gh/malfet/356/head -> origin/gh/malfet/356/head 2025-06-01T20:58:05.6180893Z * [new branch] gh/malfet/356/orig -> origin/gh/malfet/356/orig 2025-06-01T20:58:05.6181362Z * [new branch] gh/malfet/357/base -> origin/gh/malfet/357/base 2025-06-01T20:58:05.6181842Z * [new branch] gh/malfet/357/head -> origin/gh/malfet/357/head 2025-06-01T20:58:05.6182298Z * [new branch] gh/malfet/357/orig -> origin/gh/malfet/357/orig 2025-06-01T20:58:05.6182769Z * [new branch] gh/malfet/358/base -> origin/gh/malfet/358/base 2025-06-01T20:58:05.6183228Z * [new branch] gh/malfet/358/head -> origin/gh/malfet/358/head 2025-06-01T20:58:05.6183700Z * [new branch] gh/malfet/358/orig -> origin/gh/malfet/358/orig 2025-06-01T20:58:05.6184164Z * [new branch] gh/malfet/359/base -> origin/gh/malfet/359/base 2025-06-01T20:58:05.6184622Z * [new branch] gh/malfet/359/head -> origin/gh/malfet/359/head 2025-06-01T20:58:05.6185084Z * [new branch] gh/malfet/359/orig -> origin/gh/malfet/359/orig 2025-06-01T20:58:05.6185541Z * [new branch] gh/malfet/360/base -> origin/gh/malfet/360/base 2025-06-01T20:58:05.6186009Z * [new branch] gh/malfet/360/head -> origin/gh/malfet/360/head 2025-06-01T20:58:05.6186479Z * [new branch] gh/malfet/360/orig -> origin/gh/malfet/360/orig 2025-06-01T20:58:05.6186938Z * [new branch] gh/malfet/361/base -> origin/gh/malfet/361/base 2025-06-01T20:58:05.6187406Z * [new branch] gh/malfet/361/head -> origin/gh/malfet/361/head 2025-06-01T20:58:05.6187864Z * [new branch] gh/malfet/361/orig -> origin/gh/malfet/361/orig 2025-06-01T20:58:05.6188324Z * [new branch] gh/malfet/362/base -> origin/gh/malfet/362/base 2025-06-01T20:58:05.6188796Z * [new branch] gh/malfet/362/head -> origin/gh/malfet/362/head 2025-06-01T20:58:05.6189258Z * [new branch] gh/malfet/362/orig -> origin/gh/malfet/362/orig 2025-06-01T20:58:05.6189726Z * [new branch] gh/malfet/363/base -> origin/gh/malfet/363/base 2025-06-01T20:58:05.6190187Z * [new branch] gh/malfet/363/head -> origin/gh/malfet/363/head 2025-06-01T20:58:05.6190650Z * [new branch] gh/malfet/363/orig -> origin/gh/malfet/363/orig 2025-06-01T20:58:05.6191110Z * [new branch] gh/malfet/364/base -> origin/gh/malfet/364/base 2025-06-01T20:58:05.6667471Z * [new branch] gh/malfet/364/head -> origin/gh/malfet/364/head 2025-06-01T20:58:05.6668027Z * [new branch] gh/malfet/364/orig -> origin/gh/malfet/364/orig 2025-06-01T20:58:05.6668501Z * [new branch] gh/malfet/365/base -> origin/gh/malfet/365/base 2025-06-01T20:58:05.6669045Z * [new branch] gh/malfet/365/head -> origin/gh/malfet/365/head 2025-06-01T20:58:05.6669558Z * [new branch] gh/malfet/365/orig -> origin/gh/malfet/365/orig 2025-06-01T20:58:05.6670016Z * [new branch] gh/malfet/366/base -> origin/gh/malfet/366/base 2025-06-01T20:58:05.6670479Z * [new branch] gh/malfet/366/head -> origin/gh/malfet/366/head 2025-06-01T20:58:05.6670933Z * [new branch] gh/malfet/366/orig -> origin/gh/malfet/366/orig 2025-06-01T20:58:05.6671393Z * [new branch] gh/malfet/367/base -> origin/gh/malfet/367/base 2025-06-01T20:58:05.6671995Z * [new branch] gh/malfet/367/head -> origin/gh/malfet/367/head 2025-06-01T20:58:05.6672543Z * [new branch] gh/malfet/367/orig -> origin/gh/malfet/367/orig 2025-06-01T20:58:05.6673028Z * [new branch] gh/malfet/368/base -> origin/gh/malfet/368/base 2025-06-01T20:58:05.6673491Z * [new branch] gh/malfet/368/head -> origin/gh/malfet/368/head 2025-06-01T20:58:05.6673963Z * [new branch] gh/malfet/368/orig -> origin/gh/malfet/368/orig 2025-06-01T20:58:05.6674501Z * [new branch] gh/malfet/369/base -> origin/gh/malfet/369/base 2025-06-01T20:58:05.6674967Z * [new branch] gh/malfet/369/head -> origin/gh/malfet/369/head 2025-06-01T20:58:05.6675453Z * [new branch] gh/malfet/369/orig -> origin/gh/malfet/369/orig 2025-06-01T20:58:05.6675914Z * [new branch] gh/malfet/370/base -> origin/gh/malfet/370/base 2025-06-01T20:58:05.6676388Z * [new branch] gh/malfet/370/head -> origin/gh/malfet/370/head 2025-06-01T20:58:05.6676853Z * [new branch] gh/malfet/370/orig -> origin/gh/malfet/370/orig 2025-06-01T20:58:05.6677326Z * [new branch] gh/malfet/371/base -> origin/gh/malfet/371/base 2025-06-01T20:58:05.6677791Z * [new branch] gh/malfet/371/head -> origin/gh/malfet/371/head 2025-06-01T20:58:05.6678248Z * [new branch] gh/malfet/371/orig -> origin/gh/malfet/371/orig 2025-06-01T20:58:05.6678722Z * [new branch] gh/malfet/64/base -> origin/gh/malfet/64/base 2025-06-01T20:58:05.6679185Z * [new branch] gh/malfet/64/head -> origin/gh/malfet/64/head 2025-06-01T20:58:05.6679652Z * [new branch] gh/markkm/1/base -> origin/gh/markkm/1/base 2025-06-01T20:58:05.6680146Z * [new branch] gh/masnesral/195/base -> origin/gh/masnesral/195/base 2025-06-01T20:58:05.6680648Z * [new branch] gh/masnesral/195/head -> origin/gh/masnesral/195/head 2025-06-01T20:58:05.6681149Z * [new branch] gh/masnesral/195/orig -> origin/gh/masnesral/195/orig 2025-06-01T20:58:05.6681636Z * [new branch] gh/masnesral/196/base -> origin/gh/masnesral/196/base 2025-06-01T20:58:05.6682135Z * [new branch] gh/masnesral/196/head -> origin/gh/masnesral/196/head 2025-06-01T20:58:05.6682624Z * [new branch] gh/masnesral/196/orig -> origin/gh/masnesral/196/orig 2025-06-01T20:58:05.6683111Z * [new branch] gh/masnesral/197/base -> origin/gh/masnesral/197/base 2025-06-01T20:58:05.6683603Z * [new branch] gh/masnesral/197/head -> origin/gh/masnesral/197/head 2025-06-01T20:58:05.6684086Z * [new branch] gh/masnesral/197/orig -> origin/gh/masnesral/197/orig 2025-06-01T20:58:05.6684582Z * [new branch] gh/masnesral/198/base -> origin/gh/masnesral/198/base 2025-06-01T20:58:05.6685070Z * [new branch] gh/masnesral/198/head -> origin/gh/masnesral/198/head 2025-06-01T20:58:05.6685556Z * [new branch] gh/masnesral/198/orig -> origin/gh/masnesral/198/orig 2025-06-01T20:58:05.6686044Z * [new branch] gh/masnesral/199/base -> origin/gh/masnesral/199/base 2025-06-01T20:58:05.6686527Z * [new branch] gh/masnesral/199/head -> origin/gh/masnesral/199/head 2025-06-01T20:58:05.6687025Z * [new branch] gh/masnesral/199/orig -> origin/gh/masnesral/199/orig 2025-06-01T20:58:05.6687510Z * [new branch] gh/masnesral/200/base -> origin/gh/masnesral/200/base 2025-06-01T20:58:05.6688000Z * [new branch] gh/masnesral/200/head -> origin/gh/masnesral/200/head 2025-06-01T20:58:05.6688496Z * [new branch] gh/masnesral/200/orig -> origin/gh/masnesral/200/orig 2025-06-01T20:58:05.6689076Z * [new branch] gh/masnesral/201/base -> origin/gh/masnesral/201/base 2025-06-01T20:58:05.6689641Z * [new branch] gh/masnesral/201/head -> origin/gh/masnesral/201/head 2025-06-01T20:58:05.6690132Z * [new branch] gh/masnesral/201/orig -> origin/gh/masnesral/201/orig 2025-06-01T20:58:05.7111389Z * [new branch] gh/masnesral/202/base -> origin/gh/masnesral/202/base 2025-06-01T20:58:05.7111950Z * [new branch] gh/masnesral/202/head -> origin/gh/masnesral/202/head 2025-06-01T20:58:05.7112449Z * [new branch] gh/masnesral/202/orig -> origin/gh/masnesral/202/orig 2025-06-01T20:58:05.7112947Z * [new branch] gh/masnesral/203/base -> origin/gh/masnesral/203/base 2025-06-01T20:58:05.7113438Z * [new branch] gh/masnesral/203/head -> origin/gh/masnesral/203/head 2025-06-01T20:58:05.7113919Z * [new branch] gh/masnesral/203/orig -> origin/gh/masnesral/203/orig 2025-06-01T20:58:05.7114493Z * [new branch] gh/masnesral/204/base -> origin/gh/masnesral/204/base 2025-06-01T20:58:05.7114974Z * [new branch] gh/masnesral/204/head -> origin/gh/masnesral/204/head 2025-06-01T20:58:05.7115470Z * [new branch] gh/masnesral/204/orig -> origin/gh/masnesral/204/orig 2025-06-01T20:58:05.7115963Z * [new branch] gh/masnesral/205/base -> origin/gh/masnesral/205/base 2025-06-01T20:58:05.7116446Z * [new branch] gh/masnesral/205/head -> origin/gh/masnesral/205/head 2025-06-01T20:58:05.7116936Z * [new branch] gh/masnesral/205/orig -> origin/gh/masnesral/205/orig 2025-06-01T20:58:05.7117418Z * [new branch] gh/masnesral/206/base -> origin/gh/masnesral/206/base 2025-06-01T20:58:05.7117909Z * [new branch] gh/masnesral/206/head -> origin/gh/masnesral/206/head 2025-06-01T20:58:05.7118402Z * [new branch] gh/masnesral/206/orig -> origin/gh/masnesral/206/orig 2025-06-01T20:58:05.7118897Z * [new branch] gh/masnesral/207/base -> origin/gh/masnesral/207/base 2025-06-01T20:58:05.7119383Z * [new branch] gh/masnesral/207/head -> origin/gh/masnesral/207/head 2025-06-01T20:58:05.7119866Z * [new branch] gh/masnesral/207/orig -> origin/gh/masnesral/207/orig 2025-06-01T20:58:05.7120360Z * [new branch] gh/masnesral/34/base -> origin/gh/masnesral/34/base 2025-06-01T20:58:05.7120853Z * [new branch] gh/mhorowitz/0/base -> origin/gh/mhorowitz/0/base 2025-06-01T20:58:05.7121351Z * [new branch] gh/mhorowitz/0/head -> origin/gh/mhorowitz/0/head 2025-06-01T20:58:05.7121844Z * [new branch] gh/mhorowitz/1/base -> origin/gh/mhorowitz/1/base 2025-06-01T20:58:05.7122313Z * [new branch] gh/mhorowitz/1/head -> origin/gh/mhorowitz/1/head 2025-06-01T20:58:05.7122796Z * [new branch] gh/mhorowitz/2/base -> origin/gh/mhorowitz/2/base 2025-06-01T20:58:05.7123270Z * [new branch] gh/mhorowitz/2/head -> origin/gh/mhorowitz/2/head 2025-06-01T20:58:05.7123748Z * [new branch] gh/mhorowitz/3/base -> origin/gh/mhorowitz/3/base 2025-06-01T20:58:05.7124228Z * [new branch] gh/mhorowitz/3/head -> origin/gh/mhorowitz/3/head 2025-06-01T20:58:05.7124701Z * [new branch] gh/mhorowitz/4/base -> origin/gh/mhorowitz/4/base 2025-06-01T20:58:05.7125179Z * [new branch] gh/mhorowitz/4/head -> origin/gh/mhorowitz/4/head 2025-06-01T20:58:05.7125646Z * [new branch] gh/mhorowitz/5/base -> origin/gh/mhorowitz/5/base 2025-06-01T20:58:05.7126127Z * [new branch] gh/mhorowitz/5/head -> origin/gh/mhorowitz/5/head 2025-06-01T20:58:05.7126606Z * [new branch] gh/mhorowitz/6/base -> origin/gh/mhorowitz/6/base 2025-06-01T20:58:05.7127303Z * [new branch] gh/mhorowitz/6/head -> origin/gh/mhorowitz/6/head 2025-06-01T20:58:05.7127854Z * [new branch] gh/mikaylagawarecki/234/base -> origin/gh/mikaylagawarecki/234/base 2025-06-01T20:58:05.7128445Z * [new branch] gh/mikaylagawarecki/234/head -> origin/gh/mikaylagawarecki/234/head 2025-06-01T20:58:05.7129047Z * [new branch] gh/mikaylagawarecki/235/base -> origin/gh/mikaylagawarecki/235/base 2025-06-01T20:58:05.7129621Z * [new branch] gh/mikaylagawarecki/235/head -> origin/gh/mikaylagawarecki/235/head 2025-06-01T20:58:05.7130214Z * [new branch] gh/mikaylagawarecki/236/base -> origin/gh/mikaylagawarecki/236/base 2025-06-01T20:58:05.7130797Z * [new branch] gh/mikaylagawarecki/236/head -> origin/gh/mikaylagawarecki/236/head 2025-06-01T20:58:05.7131368Z * [new branch] gh/mikaylagawarecki/237/base -> origin/gh/mikaylagawarecki/237/base 2025-06-01T20:58:05.7131958Z * [new branch] gh/mikaylagawarecki/237/head -> origin/gh/mikaylagawarecki/237/head 2025-06-01T20:58:05.7132529Z * [new branch] gh/mikaylagawarecki/238/base -> origin/gh/mikaylagawarecki/238/base 2025-06-01T20:58:05.7133110Z * [new branch] gh/mikaylagawarecki/238/head -> origin/gh/mikaylagawarecki/238/head 2025-06-01T20:58:05.7133696Z * [new branch] gh/mikaylagawarecki/311/base -> origin/gh/mikaylagawarecki/311/base 2025-06-01T20:58:05.7134264Z * [new branch] gh/mikaylagawarecki/311/head -> origin/gh/mikaylagawarecki/311/head 2025-06-01T20:58:05.7587822Z * [new branch] gh/mikaylagawarecki/311/orig -> origin/gh/mikaylagawarecki/311/orig 2025-06-01T20:58:05.7588477Z * [new branch] gh/mikaylagawarecki/312/base -> origin/gh/mikaylagawarecki/312/base 2025-06-01T20:58:05.7589066Z * [new branch] gh/mikaylagawarecki/312/head -> origin/gh/mikaylagawarecki/312/head 2025-06-01T20:58:05.7589672Z * [new branch] gh/mikaylagawarecki/312/orig -> origin/gh/mikaylagawarecki/312/orig 2025-06-01T20:58:05.7590253Z * [new branch] gh/mikaylagawarecki/313/base -> origin/gh/mikaylagawarecki/313/base 2025-06-01T20:58:05.7590839Z * [new branch] gh/mikaylagawarecki/313/head -> origin/gh/mikaylagawarecki/313/head 2025-06-01T20:58:05.7591427Z * [new branch] gh/mikaylagawarecki/313/orig -> origin/gh/mikaylagawarecki/313/orig 2025-06-01T20:58:05.7591948Z * [new branch] gh/mlazos/22/base -> origin/gh/mlazos/22/base 2025-06-01T20:58:05.7592425Z * [new branch] gh/mlazos/22/head -> origin/gh/mlazos/22/head 2025-06-01T20:58:05.7592876Z * [new branch] gh/mlazos/22/orig -> origin/gh/mlazos/22/orig 2025-06-01T20:58:05.7593337Z * [new branch] gh/mlazos/23/base -> origin/gh/mlazos/23/base 2025-06-01T20:58:05.7593794Z * [new branch] gh/mlazos/23/head -> origin/gh/mlazos/23/head 2025-06-01T20:58:05.7594305Z * [new branch] gh/mlazos/23/orig -> origin/gh/mlazos/23/orig 2025-06-01T20:58:05.7594773Z * [new branch] gh/mlazos/24/base -> origin/gh/mlazos/24/base 2025-06-01T20:58:05.7595224Z * [new branch] gh/mlazos/24/head -> origin/gh/mlazos/24/head 2025-06-01T20:58:05.7595686Z * [new branch] gh/mlazos/24/orig -> origin/gh/mlazos/24/orig 2025-06-01T20:58:05.7596132Z * [new branch] gh/mlazos/25/base -> origin/gh/mlazos/25/base 2025-06-01T20:58:05.7596596Z * [new branch] gh/mlazos/25/head -> origin/gh/mlazos/25/head 2025-06-01T20:58:05.7597062Z * [new branch] gh/mlazos/25/orig -> origin/gh/mlazos/25/orig 2025-06-01T20:58:05.7597548Z * [new branch] gh/mlazos/26/base -> origin/gh/mlazos/26/base 2025-06-01T20:58:05.7598195Z * [new branch] gh/mlazos/26/head -> origin/gh/mlazos/26/head 2025-06-01T20:58:05.7598778Z * [new branch] gh/mlazos/26/orig -> origin/gh/mlazos/26/orig 2025-06-01T20:58:05.7599247Z * [new branch] gh/mlazos/27/base -> origin/gh/mlazos/27/base 2025-06-01T20:58:05.7599704Z * [new branch] gh/mlazos/27/head -> origin/gh/mlazos/27/head 2025-06-01T20:58:05.7600165Z * [new branch] gh/mlazos/27/orig -> origin/gh/mlazos/27/orig 2025-06-01T20:58:05.7600643Z * [new branch] gh/mlazos/28/base -> origin/gh/mlazos/28/base 2025-06-01T20:58:05.7601102Z * [new branch] gh/mlazos/28/head -> origin/gh/mlazos/28/head 2025-06-01T20:58:05.7601569Z * [new branch] gh/mlazos/28/orig -> origin/gh/mlazos/28/orig 2025-06-01T20:58:05.7602032Z * [new branch] gh/mlazos/32/base -> origin/gh/mlazos/32/base 2025-06-01T20:58:05.7602488Z * [new branch] gh/mlazos/32/head -> origin/gh/mlazos/32/head 2025-06-01T20:58:05.7602950Z * [new branch] gh/mlazos/32/orig -> origin/gh/mlazos/32/orig 2025-06-01T20:58:05.7603402Z * [new branch] gh/mlazos/33/base -> origin/gh/mlazos/33/base 2025-06-01T20:58:05.7603861Z * [new branch] gh/mlazos/33/head -> origin/gh/mlazos/33/head 2025-06-01T20:58:05.7604316Z * [new branch] gh/mlazos/33/orig -> origin/gh/mlazos/33/orig 2025-06-01T20:58:05.7604768Z * [new branch] gh/mlazos/34/base -> origin/gh/mlazos/34/base 2025-06-01T20:58:05.7605228Z * [new branch] gh/mlazos/34/head -> origin/gh/mlazos/34/head 2025-06-01T20:58:05.7605676Z * [new branch] gh/mlazos/34/orig -> origin/gh/mlazos/34/orig 2025-06-01T20:58:05.7606140Z * [new branch] gh/mlazos/35/base -> origin/gh/mlazos/35/base 2025-06-01T20:58:05.7606597Z * [new branch] gh/mlazos/35/head -> origin/gh/mlazos/35/head 2025-06-01T20:58:05.7607074Z * [new branch] gh/mlazos/35/orig -> origin/gh/mlazos/35/orig 2025-06-01T20:58:05.7607526Z * [new branch] gh/mlazos/36/base -> origin/gh/mlazos/36/base 2025-06-01T20:58:05.7607977Z * [new branch] gh/mlazos/36/head -> origin/gh/mlazos/36/head 2025-06-01T20:58:05.7608444Z * [new branch] gh/mlazos/36/orig -> origin/gh/mlazos/36/orig 2025-06-01T20:58:05.7608896Z * [new branch] gh/mlazos/37/base -> origin/gh/mlazos/37/base 2025-06-01T20:58:05.7609350Z * [new branch] gh/mlazos/37/head -> origin/gh/mlazos/37/head 2025-06-01T20:58:05.7609806Z * [new branch] gh/mlazos/37/orig -> origin/gh/mlazos/37/orig 2025-06-01T20:58:05.7610254Z * [new branch] gh/mlazos/38/base -> origin/gh/mlazos/38/base 2025-06-01T20:58:05.8021807Z * [new branch] gh/mlazos/38/head -> origin/gh/mlazos/38/head 2025-06-01T20:58:05.8022329Z * [new branch] gh/mlazos/38/orig -> origin/gh/mlazos/38/orig 2025-06-01T20:58:05.8022797Z * [new branch] gh/mlazos/39/base -> origin/gh/mlazos/39/base 2025-06-01T20:58:05.8023258Z * [new branch] gh/mlazos/39/head -> origin/gh/mlazos/39/head 2025-06-01T20:58:05.8023705Z * [new branch] gh/mlazos/39/orig -> origin/gh/mlazos/39/orig 2025-06-01T20:58:05.8024163Z * [new branch] gh/mlazos/40/base -> origin/gh/mlazos/40/base 2025-06-01T20:58:05.8024612Z * [new branch] gh/mlazos/40/head -> origin/gh/mlazos/40/head 2025-06-01T20:58:05.8025068Z * [new branch] gh/mlazos/40/orig -> origin/gh/mlazos/40/orig 2025-06-01T20:58:05.8025517Z * [new branch] gh/mlazos/41/base -> origin/gh/mlazos/41/base 2025-06-01T20:58:05.8026118Z * [new branch] gh/mlazos/41/head -> origin/gh/mlazos/41/head 2025-06-01T20:58:05.8026664Z * [new branch] gh/mlazos/41/orig -> origin/gh/mlazos/41/orig 2025-06-01T20:58:05.8027166Z * [new branch] gh/mlazos/42/base -> origin/gh/mlazos/42/base 2025-06-01T20:58:05.8027662Z * [new branch] gh/mlazos/42/head -> origin/gh/mlazos/42/head 2025-06-01T20:58:05.8028108Z * [new branch] gh/mlazos/42/orig -> origin/gh/mlazos/42/orig 2025-06-01T20:58:05.8028572Z * [new branch] gh/mlazos/43/base -> origin/gh/mlazos/43/base 2025-06-01T20:58:05.8029024Z * [new branch] gh/mlazos/43/head -> origin/gh/mlazos/43/head 2025-06-01T20:58:05.8029480Z * [new branch] gh/mlazos/43/orig -> origin/gh/mlazos/43/orig 2025-06-01T20:58:05.8029935Z * [new branch] gh/mlazos/44/base -> origin/gh/mlazos/44/base 2025-06-01T20:58:05.8030393Z * [new branch] gh/mlazos/44/head -> origin/gh/mlazos/44/head 2025-06-01T20:58:05.8030853Z * [new branch] gh/mlazos/44/orig -> origin/gh/mlazos/44/orig 2025-06-01T20:58:05.8031308Z * [new branch] gh/mlazos/45/base -> origin/gh/mlazos/45/base 2025-06-01T20:58:05.8031759Z * [new branch] gh/mlazos/45/head -> origin/gh/mlazos/45/head 2025-06-01T20:58:05.8032211Z * [new branch] gh/mlazos/45/orig -> origin/gh/mlazos/45/orig 2025-06-01T20:58:05.8032697Z * [new branch] gh/mlazos/46/base -> origin/gh/mlazos/46/base 2025-06-01T20:58:05.8033195Z * [new branch] gh/mlazos/46/head -> origin/gh/mlazos/46/head 2025-06-01T20:58:05.8033659Z * [new branch] gh/mlazos/46/orig -> origin/gh/mlazos/46/orig 2025-06-01T20:58:05.8034119Z * [new branch] gh/mlazos/47/base -> origin/gh/mlazos/47/base 2025-06-01T20:58:05.8034666Z * [new branch] gh/mlazos/47/head -> origin/gh/mlazos/47/head 2025-06-01T20:58:05.8035117Z * [new branch] gh/mlazos/47/orig -> origin/gh/mlazos/47/orig 2025-06-01T20:58:05.8035581Z * [new branch] gh/mlazos/48/base -> origin/gh/mlazos/48/base 2025-06-01T20:58:05.8036032Z * [new branch] gh/mlazos/48/head -> origin/gh/mlazos/48/head 2025-06-01T20:58:05.8036491Z * [new branch] gh/mlazos/48/orig -> origin/gh/mlazos/48/orig 2025-06-01T20:58:05.8036963Z * [new branch] gh/mlazos/49/base -> origin/gh/mlazos/49/base 2025-06-01T20:58:05.8037413Z * [new branch] gh/mlazos/49/head -> origin/gh/mlazos/49/head 2025-06-01T20:58:05.8037870Z * [new branch] gh/mlazos/49/orig -> origin/gh/mlazos/49/orig 2025-06-01T20:58:05.8038357Z * [new branch] gh/mlazos/50/base -> origin/gh/mlazos/50/base 2025-06-01T20:58:05.8038859Z * [new branch] gh/mlazos/50/head -> origin/gh/mlazos/50/head 2025-06-01T20:58:05.8039317Z * [new branch] gh/mlazos/50/orig -> origin/gh/mlazos/50/orig 2025-06-01T20:58:05.8039765Z * [new branch] gh/mlazos/51/base -> origin/gh/mlazos/51/base 2025-06-01T20:58:05.8040227Z * [new branch] gh/mlazos/51/head -> origin/gh/mlazos/51/head 2025-06-01T20:58:05.8040679Z * [new branch] gh/mlazos/51/orig -> origin/gh/mlazos/51/orig 2025-06-01T20:58:05.8041142Z * [new branch] gh/mlazos/52/base -> origin/gh/mlazos/52/base 2025-06-01T20:58:05.8041598Z * [new branch] gh/mlazos/52/head -> origin/gh/mlazos/52/head 2025-06-01T20:58:05.8042053Z * [new branch] gh/mlazos/52/orig -> origin/gh/mlazos/52/orig 2025-06-01T20:58:05.8042605Z * [new branch] gh/mlazos/53/base -> origin/gh/mlazos/53/base 2025-06-01T20:58:05.8043129Z * [new branch] gh/mlazos/53/head -> origin/gh/mlazos/53/head 2025-06-01T20:58:05.8043589Z * [new branch] gh/mlazos/53/orig -> origin/gh/mlazos/53/orig 2025-06-01T20:58:05.8044072Z * [new branch] gh/mlazos/54/base -> origin/gh/mlazos/54/base 2025-06-01T20:58:05.8476164Z * [new branch] gh/mlazos/54/head -> origin/gh/mlazos/54/head 2025-06-01T20:58:05.8476659Z * [new branch] gh/mlazos/54/orig -> origin/gh/mlazos/54/orig 2025-06-01T20:58:05.8477121Z * [new branch] gh/mrmiywj/1/base -> origin/gh/mrmiywj/1/base 2025-06-01T20:58:05.8477584Z * [new branch] gh/mrmiywj/1/head -> origin/gh/mrmiywj/1/head 2025-06-01T20:58:05.8478060Z * [new branch] gh/muchulee8/57/base -> origin/gh/muchulee8/57/base 2025-06-01T20:58:05.8478562Z * [new branch] gh/muchulee8/57/head -> origin/gh/muchulee8/57/head 2025-06-01T20:58:05.8479059Z * [new branch] gh/muchulee8/57/orig -> origin/gh/muchulee8/57/orig 2025-06-01T20:58:05.8479537Z * [new branch] gh/muchulee8/58/base -> origin/gh/muchulee8/58/base 2025-06-01T20:58:05.8480022Z * [new branch] gh/muchulee8/58/head -> origin/gh/muchulee8/58/head 2025-06-01T20:58:05.8480498Z * [new branch] gh/muchulee8/58/orig -> origin/gh/muchulee8/58/orig 2025-06-01T20:58:05.8480983Z * [new branch] gh/muchulee8/59/base -> origin/gh/muchulee8/59/base 2025-06-01T20:58:05.8481477Z * [new branch] gh/muchulee8/59/head -> origin/gh/muchulee8/59/head 2025-06-01T20:58:05.8481947Z * [new branch] gh/muchulee8/59/orig -> origin/gh/muchulee8/59/orig 2025-06-01T20:58:05.8482451Z * [new branch] gh/muchulee8/60/base -> origin/gh/muchulee8/60/base 2025-06-01T20:58:05.8482927Z * [new branch] gh/muchulee8/60/head -> origin/gh/muchulee8/60/head 2025-06-01T20:58:05.8483424Z * [new branch] gh/muchulee8/60/orig -> origin/gh/muchulee8/60/orig 2025-06-01T20:58:05.8483905Z * [new branch] gh/muchulee8/61/base -> origin/gh/muchulee8/61/base 2025-06-01T20:58:05.8484377Z * [new branch] gh/muchulee8/61/head -> origin/gh/muchulee8/61/head 2025-06-01T20:58:05.8484861Z * [new branch] gh/muchulee8/61/orig -> origin/gh/muchulee8/61/orig 2025-06-01T20:58:05.8485348Z * [new branch] gh/nmacchioni/12/base -> origin/gh/nmacchioni/12/base 2025-06-01T20:58:05.8485848Z * [new branch] gh/nmacchioni/12/head -> origin/gh/nmacchioni/12/head 2025-06-01T20:58:05.8486347Z * [new branch] gh/nmacchioni/12/orig -> origin/gh/nmacchioni/12/orig 2025-06-01T20:58:05.8486840Z * [new branch] gh/nmacchioni/31/base -> origin/gh/nmacchioni/31/base 2025-06-01T20:58:05.8487345Z * [new branch] gh/nmacchioni/31/head -> origin/gh/nmacchioni/31/head 2025-06-01T20:58:05.8487833Z * [new branch] gh/nmacchioni/31/orig -> origin/gh/nmacchioni/31/orig 2025-06-01T20:58:05.8488327Z * [new branch] gh/nmacchioni/32/base -> origin/gh/nmacchioni/32/base 2025-06-01T20:58:05.8488827Z * [new branch] gh/nmacchioni/32/head -> origin/gh/nmacchioni/32/head 2025-06-01T20:58:05.8489308Z * [new branch] gh/nmacchioni/32/orig -> origin/gh/nmacchioni/32/orig 2025-06-01T20:58:05.8489796Z * [new branch] gh/nmacchioni/33/base -> origin/gh/nmacchioni/33/base 2025-06-01T20:58:05.8490282Z * [new branch] gh/nmacchioni/33/head -> origin/gh/nmacchioni/33/head 2025-06-01T20:58:05.8490776Z * [new branch] gh/nmacchioni/33/orig -> origin/gh/nmacchioni/33/orig 2025-06-01T20:58:05.8491402Z * [new branch] gh/nmacchioni/35/base -> origin/gh/nmacchioni/35/base 2025-06-01T20:58:05.8491972Z * [new branch] gh/nmacchioni/35/head -> origin/gh/nmacchioni/35/head 2025-06-01T20:58:05.8492477Z * [new branch] gh/nmacchioni/35/orig -> origin/gh/nmacchioni/35/orig 2025-06-01T20:58:05.8492970Z * [new branch] gh/nmacchioni/36/base -> origin/gh/nmacchioni/36/base 2025-06-01T20:58:05.8493473Z * [new branch] gh/nmacchioni/36/head -> origin/gh/nmacchioni/36/head 2025-06-01T20:58:05.8493963Z * [new branch] gh/nmacchioni/36/orig -> origin/gh/nmacchioni/36/orig 2025-06-01T20:58:05.8494461Z * [new branch] gh/nmacchioni/37/base -> origin/gh/nmacchioni/37/base 2025-06-01T20:58:05.8494954Z * [new branch] gh/nmacchioni/37/head -> origin/gh/nmacchioni/37/head 2025-06-01T20:58:05.8495442Z * [new branch] gh/nmacchioni/37/orig -> origin/gh/nmacchioni/37/orig 2025-06-01T20:58:05.8495942Z * [new branch] gh/nmacchioni/39/base -> origin/gh/nmacchioni/39/base 2025-06-01T20:58:05.8496429Z * [new branch] gh/nmacchioni/39/head -> origin/gh/nmacchioni/39/head 2025-06-01T20:58:05.8496930Z * [new branch] gh/nmacchioni/39/orig -> origin/gh/nmacchioni/39/orig 2025-06-01T20:58:05.8497422Z * [new branch] gh/nmacchioni/40/base -> origin/gh/nmacchioni/40/base 2025-06-01T20:58:05.8497908Z * [new branch] gh/nmacchioni/40/head -> origin/gh/nmacchioni/40/head 2025-06-01T20:58:05.8498401Z * [new branch] gh/nmacchioni/40/orig -> origin/gh/nmacchioni/40/orig 2025-06-01T20:58:05.8498888Z * [new branch] gh/nmacchioni/8/base -> origin/gh/nmacchioni/8/base 2025-06-01T20:58:05.8939388Z * [new branch] gh/nmacchioni/8/head -> origin/gh/nmacchioni/8/head 2025-06-01T20:58:05.8939980Z * [new branch] gh/nmacchioni/8/orig -> origin/gh/nmacchioni/8/orig 2025-06-01T20:58:05.8940499Z * [new branch] gh/oulgen/25/base -> origin/gh/oulgen/25/base 2025-06-01T20:58:05.8940970Z * [new branch] gh/oulgen/25/head -> origin/gh/oulgen/25/head 2025-06-01T20:58:05.8941427Z * [new branch] gh/oulgen/25/orig -> origin/gh/oulgen/25/orig 2025-06-01T20:58:05.8941878Z * [new branch] gh/oulgen/32/base -> origin/gh/oulgen/32/base 2025-06-01T20:58:05.8942343Z * [new branch] gh/oulgen/32/head -> origin/gh/oulgen/32/head 2025-06-01T20:58:05.8942790Z * [new branch] gh/oulgen/32/orig -> origin/gh/oulgen/32/orig 2025-06-01T20:58:05.8943244Z * [new branch] gh/oulgen/33/base -> origin/gh/oulgen/33/base 2025-06-01T20:58:05.8943690Z * [new branch] gh/oulgen/33/head -> origin/gh/oulgen/33/head 2025-06-01T20:58:05.8944194Z * [new branch] gh/oulgen/33/orig -> origin/gh/oulgen/33/orig 2025-06-01T20:58:05.8944696Z * [new branch] gh/oulgen/34/base -> origin/gh/oulgen/34/base 2025-06-01T20:58:05.8945146Z * [new branch] gh/oulgen/34/head -> origin/gh/oulgen/34/head 2025-06-01T20:58:05.8945600Z * [new branch] gh/oulgen/34/orig -> origin/gh/oulgen/34/orig 2025-06-01T20:58:05.8946043Z * [new branch] gh/oulgen/35/base -> origin/gh/oulgen/35/base 2025-06-01T20:58:05.8946501Z * [new branch] gh/oulgen/35/head -> origin/gh/oulgen/35/head 2025-06-01T20:58:05.8946954Z * [new branch] gh/oulgen/35/orig -> origin/gh/oulgen/35/orig 2025-06-01T20:58:05.8947401Z * [new branch] gh/oulgen/36/base -> origin/gh/oulgen/36/base 2025-06-01T20:58:05.8947856Z * [new branch] gh/oulgen/36/head -> origin/gh/oulgen/36/head 2025-06-01T20:58:05.8948447Z * [new branch] gh/oulgen/36/orig -> origin/gh/oulgen/36/orig 2025-06-01T20:58:05.8948979Z * [new branch] gh/oulgen/37/base -> origin/gh/oulgen/37/base 2025-06-01T20:58:05.8949446Z * [new branch] gh/oulgen/37/head -> origin/gh/oulgen/37/head 2025-06-01T20:58:05.8949941Z * [new branch] gh/oulgen/37/orig -> origin/gh/oulgen/37/orig 2025-06-01T20:58:05.8950441Z * [new branch] gh/pearu/108/base -> origin/gh/pearu/108/base 2025-06-01T20:58:05.8950897Z * [new branch] gh/pearu/108/head -> origin/gh/pearu/108/head 2025-06-01T20:58:05.8951355Z * [new branch] gh/pearu/108/orig -> origin/gh/pearu/108/orig 2025-06-01T20:58:05.8951807Z * [new branch] gh/pearu/109/base -> origin/gh/pearu/109/base 2025-06-01T20:58:05.8952268Z * [new branch] gh/pearu/109/head -> origin/gh/pearu/109/head 2025-06-01T20:58:05.8952735Z * [new branch] gh/pearu/109/orig -> origin/gh/pearu/109/orig 2025-06-01T20:58:05.8953190Z * [new branch] gh/pearu/110/base -> origin/gh/pearu/110/base 2025-06-01T20:58:05.8953649Z * [new branch] gh/pearu/110/head -> origin/gh/pearu/110/head 2025-06-01T20:58:05.8954257Z * [new branch] gh/pearu/110/orig -> origin/gh/pearu/110/orig 2025-06-01T20:58:05.8954728Z * [new branch] gh/pearu/111/base -> origin/gh/pearu/111/base 2025-06-01T20:58:05.8955195Z * [new branch] gh/pearu/111/head -> origin/gh/pearu/111/head 2025-06-01T20:58:05.8955697Z * [new branch] gh/pearu/111/orig -> origin/gh/pearu/111/orig 2025-06-01T20:58:05.8956198Z * [new branch] gh/pearu/112/base -> origin/gh/pearu/112/base 2025-06-01T20:58:05.8956649Z * [new branch] gh/pearu/112/head -> origin/gh/pearu/112/head 2025-06-01T20:58:05.8957110Z * [new branch] gh/pearu/112/orig -> origin/gh/pearu/112/orig 2025-06-01T20:58:05.8957573Z * [new branch] gh/pearu/113/base -> origin/gh/pearu/113/base 2025-06-01T20:58:05.8958023Z * [new branch] gh/pearu/113/head -> origin/gh/pearu/113/head 2025-06-01T20:58:05.8958481Z * [new branch] gh/pearu/113/orig -> origin/gh/pearu/113/orig 2025-06-01T20:58:05.8958934Z * [new branch] gh/pearu/114/base -> origin/gh/pearu/114/base 2025-06-01T20:58:05.8959392Z * [new branch] gh/pearu/114/head -> origin/gh/pearu/114/head 2025-06-01T20:58:05.8959843Z * [new branch] gh/pearu/114/orig -> origin/gh/pearu/114/orig 2025-06-01T20:58:05.8960300Z * [new branch] gh/pearu/115/base -> origin/gh/pearu/115/base 2025-06-01T20:58:05.8960757Z * [new branch] gh/pearu/115/head -> origin/gh/pearu/115/head 2025-06-01T20:58:05.8961250Z * [new branch] gh/pearu/115/orig -> origin/gh/pearu/115/orig 2025-06-01T20:58:05.8961749Z * [new branch] gh/pearu/56/base -> origin/gh/pearu/56/base 2025-06-01T20:58:05.9408034Z * [new branch] gh/pearu/56/head -> origin/gh/pearu/56/head 2025-06-01T20:58:05.9408538Z * [new branch] gh/pearu/56/orig -> origin/gh/pearu/56/orig 2025-06-01T20:58:05.9408997Z * [new branch] gh/pearu/97/base -> origin/gh/pearu/97/base 2025-06-01T20:58:05.9409451Z * [new branch] gh/pearu/97/head -> origin/gh/pearu/97/head 2025-06-01T20:58:05.9409907Z * [new branch] gh/pearu/97/orig -> origin/gh/pearu/97/orig 2025-06-01T20:58:05.9410397Z * [new branch] gh/peterbell10/635/base -> origin/gh/peterbell10/635/base 2025-06-01T20:58:05.9410930Z * [new branch] gh/peterbell10/635/head -> origin/gh/peterbell10/635/head 2025-06-01T20:58:05.9411603Z * [new branch] gh/peterbell10/635/orig -> origin/gh/peterbell10/635/orig 2025-06-01T20:58:05.9412203Z * [new branch] gh/peterbell10/636/base -> origin/gh/peterbell10/636/base 2025-06-01T20:58:05.9412736Z * [new branch] gh/peterbell10/636/head -> origin/gh/peterbell10/636/head 2025-06-01T20:58:05.9413292Z * [new branch] gh/peterbell10/636/orig -> origin/gh/peterbell10/636/orig 2025-06-01T20:58:05.9413840Z * [new branch] gh/qqaatw/29/base -> origin/gh/qqaatw/29/base 2025-06-01T20:58:05.9414308Z * [new branch] gh/qqaatw/29/head -> origin/gh/qqaatw/29/head 2025-06-01T20:58:05.9414762Z * [new branch] gh/qqaatw/29/orig -> origin/gh/qqaatw/29/orig 2025-06-01T20:58:05.9415224Z * [new branch] gh/qqaatw/30/base -> origin/gh/qqaatw/30/base 2025-06-01T20:58:05.9415682Z * [new branch] gh/qqaatw/30/head -> origin/gh/qqaatw/30/head 2025-06-01T20:58:05.9416152Z * [new branch] gh/qqaatw/30/orig -> origin/gh/qqaatw/30/orig 2025-06-01T20:58:05.9416798Z * [new branch] gh/raymo/catch-unserialisable-nn-modules -> origin/gh/raymo/catch-unserialisable-nn-modules 2025-06-01T20:58:05.9417528Z * [new branch] gh/raymo/cleanup-dynamo-logging -> origin/gh/raymo/cleanup-dynamo-logging 2025-06-01T20:58:05.9418099Z * [new branch] gh/rec/133/base -> origin/gh/rec/133/base 2025-06-01T20:58:05.9418538Z * [new branch] gh/rec/133/head -> origin/gh/rec/133/head 2025-06-01T20:58:05.9419019Z * [new branch] gh/rec/133/orig -> origin/gh/rec/133/orig 2025-06-01T20:58:05.9419500Z * [new branch] gh/rec/134/base -> origin/gh/rec/134/base 2025-06-01T20:58:05.9419935Z * [new branch] gh/rec/134/head -> origin/gh/rec/134/head 2025-06-01T20:58:05.9420379Z * [new branch] gh/rec/134/orig -> origin/gh/rec/134/orig 2025-06-01T20:58:05.9420810Z * [new branch] gh/rec/137/base -> origin/gh/rec/137/base 2025-06-01T20:58:05.9421261Z * [new branch] gh/rec/137/head -> origin/gh/rec/137/head 2025-06-01T20:58:05.9421698Z * [new branch] gh/rec/137/orig -> origin/gh/rec/137/orig 2025-06-01T20:58:05.9422135Z * [new branch] gh/rec/141/base -> origin/gh/rec/141/base 2025-06-01T20:58:05.9422575Z * [new branch] gh/rec/141/head -> origin/gh/rec/141/head 2025-06-01T20:58:05.9423005Z * [new branch] gh/rec/142/base -> origin/gh/rec/142/base 2025-06-01T20:58:05.9423439Z * [new branch] gh/rec/142/head -> origin/gh/rec/142/head 2025-06-01T20:58:05.9423877Z * [new branch] gh/rec/142/orig -> origin/gh/rec/142/orig 2025-06-01T20:58:05.9424310Z * [new branch] gh/rec/143/base -> origin/gh/rec/143/base 2025-06-01T20:58:05.9424813Z * [new branch] gh/rec/143/head -> origin/gh/rec/143/head 2025-06-01T20:58:05.9425260Z * [new branch] gh/rec/143/orig -> origin/gh/rec/143/orig 2025-06-01T20:58:05.9425709Z * [new branch] gh/rec/144/base -> origin/gh/rec/144/base 2025-06-01T20:58:05.9426134Z * [new branch] gh/rec/144/head -> origin/gh/rec/144/head 2025-06-01T20:58:05.9426566Z * [new branch] gh/rec/144/orig -> origin/gh/rec/144/orig 2025-06-01T20:58:05.9426999Z * [new branch] gh/rec/145/base -> origin/gh/rec/145/base 2025-06-01T20:58:05.9427439Z * [new branch] gh/rec/145/head -> origin/gh/rec/145/head 2025-06-01T20:58:05.9427879Z * [new branch] gh/rec/145/orig -> origin/gh/rec/145/orig 2025-06-01T20:58:05.9428408Z * [new branch] gh/rec/146/base -> origin/gh/rec/146/base 2025-06-01T20:58:05.9428935Z * [new branch] gh/rec/146/head -> origin/gh/rec/146/head 2025-06-01T20:58:05.9429378Z * [new branch] gh/rec/146/orig -> origin/gh/rec/146/orig 2025-06-01T20:58:05.9429811Z * [new branch] gh/rec/147/base -> origin/gh/rec/147/base 2025-06-01T20:58:05.9430287Z * [new branch] gh/rec/147/head -> origin/gh/rec/147/head 2025-06-01T20:58:05.9430754Z * [new branch] gh/rec/147/orig -> origin/gh/rec/147/orig 2025-06-01T20:58:05.9867582Z * [new branch] gh/rec/148/base -> origin/gh/rec/148/base 2025-06-01T20:58:05.9868099Z * [new branch] gh/rec/148/head -> origin/gh/rec/148/head 2025-06-01T20:58:05.9868554Z * [new branch] gh/rec/148/orig -> origin/gh/rec/148/orig 2025-06-01T20:58:05.9869007Z * [new branch] gh/rec/149/base -> origin/gh/rec/149/base 2025-06-01T20:58:05.9869452Z * [new branch] gh/rec/149/head -> origin/gh/rec/149/head 2025-06-01T20:58:05.9869889Z * [new branch] gh/rec/149/orig -> origin/gh/rec/149/orig 2025-06-01T20:58:05.9870328Z * [new branch] gh/rec/150/base -> origin/gh/rec/150/base 2025-06-01T20:58:05.9870759Z * [new branch] gh/rec/150/head -> origin/gh/rec/150/head 2025-06-01T20:58:05.9871239Z * [new branch] gh/rec/150/orig -> origin/gh/rec/150/orig 2025-06-01T20:58:05.9871708Z * [new branch] gh/rec/151/base -> origin/gh/rec/151/base 2025-06-01T20:58:05.9872143Z * [new branch] gh/rec/151/head -> origin/gh/rec/151/head 2025-06-01T20:58:05.9872575Z * [new branch] gh/rec/152/base -> origin/gh/rec/152/base 2025-06-01T20:58:05.9873012Z * [new branch] gh/rec/152/head -> origin/gh/rec/152/head 2025-06-01T20:58:05.9873454Z * [new branch] gh/rec/152/orig -> origin/gh/rec/152/orig 2025-06-01T20:58:05.9873900Z * [new branch] gh/sarckk/1/base -> origin/gh/sarckk/1/base 2025-06-01T20:58:05.9874417Z * [new branch] gh/sarckk/1/head -> origin/gh/sarckk/1/head 2025-06-01T20:58:05.9874875Z * [new branch] gh/sarckk/1/orig -> origin/gh/sarckk/1/orig 2025-06-01T20:58:05.9875315Z * [new branch] gh/sarckk/2/base -> origin/gh/sarckk/2/base 2025-06-01T20:58:05.9875761Z * [new branch] gh/sarckk/2/head -> origin/gh/sarckk/2/head 2025-06-01T20:58:05.9876205Z * [new branch] gh/sarckk/2/orig -> origin/gh/sarckk/2/orig 2025-06-01T20:58:05.9876683Z * [new branch] gh/seemethere/14/base -> origin/gh/seemethere/14/base 2025-06-01T20:58:05.9877261Z * [new branch] gh/seemethere/14/head -> origin/gh/seemethere/14/head 2025-06-01T20:58:05.9877771Z * [new branch] gh/seemethere/14/orig -> origin/gh/seemethere/14/orig 2025-06-01T20:58:05.9878270Z * [new branch] gh/seemethere/23/base -> origin/gh/seemethere/23/base 2025-06-01T20:58:05.9878751Z * [new branch] gh/seemethere/23/head -> origin/gh/seemethere/23/head 2025-06-01T20:58:05.9879246Z * [new branch] gh/seemethere/23/orig -> origin/gh/seemethere/23/orig 2025-06-01T20:58:05.9879734Z * [new branch] gh/seemethere/24/base -> origin/gh/seemethere/24/base 2025-06-01T20:58:05.9880234Z * [new branch] gh/seemethere/24/head -> origin/gh/seemethere/24/head 2025-06-01T20:58:05.9880726Z * [new branch] gh/seemethere/24/orig -> origin/gh/seemethere/24/orig 2025-06-01T20:58:05.9881214Z * [new branch] gh/seemethere/30/base -> origin/gh/seemethere/30/base 2025-06-01T20:58:05.9881835Z * [new branch] gh/seemethere/30/head -> origin/gh/seemethere/30/head 2025-06-01T20:58:05.9882442Z * [new branch] gh/seemethere/30/orig -> origin/gh/seemethere/30/orig 2025-06-01T20:58:05.9882985Z * [new branch] gh/seemethere/32/base -> origin/gh/seemethere/32/base 2025-06-01T20:58:05.9883488Z * [new branch] gh/seemethere/32/head -> origin/gh/seemethere/32/head 2025-06-01T20:58:05.9883983Z * [new branch] gh/seemethere/32/orig -> origin/gh/seemethere/32/orig 2025-06-01T20:58:05.9884489Z * [new branch] gh/seemethere/33/base -> origin/gh/seemethere/33/base 2025-06-01T20:58:05.9884983Z * [new branch] gh/seemethere/33/head -> origin/gh/seemethere/33/head 2025-06-01T20:58:05.9885480Z * [new branch] gh/seemethere/33/orig -> origin/gh/seemethere/33/orig 2025-06-01T20:58:05.9885976Z * [new branch] gh/seemethere/34/base -> origin/gh/seemethere/34/base 2025-06-01T20:58:05.9886473Z * [new branch] gh/seemethere/34/head -> origin/gh/seemethere/34/head 2025-06-01T20:58:05.9886972Z * [new branch] gh/seemethere/34/orig -> origin/gh/seemethere/34/orig 2025-06-01T20:58:05.9887464Z * [new branch] gh/seemethere/7/base -> origin/gh/seemethere/7/base 2025-06-01T20:58:05.9887966Z * [new branch] gh/seemethere/7/head -> origin/gh/seemethere/7/head 2025-06-01T20:58:05.9888494Z * [new branch] gh/seemethere/7/orig -> origin/gh/seemethere/7/orig 2025-06-01T20:58:05.9889049Z * [new branch] gh/shunting314/145/base -> origin/gh/shunting314/145/base 2025-06-01T20:58:05.9889574Z * [new branch] gh/shunting314/145/head -> origin/gh/shunting314/145/head 2025-06-01T20:58:05.9890078Z * [new branch] gh/shunting314/145/orig -> origin/gh/shunting314/145/orig 2025-06-01T20:58:06.0326331Z * [new branch] gh/shunting314/176/base -> origin/gh/shunting314/176/base 2025-06-01T20:58:06.0326944Z * [new branch] gh/shunting314/176/head -> origin/gh/shunting314/176/head 2025-06-01T20:58:06.0327459Z * [new branch] gh/shunting314/176/orig -> origin/gh/shunting314/176/orig 2025-06-01T20:58:06.0327982Z * [new branch] gh/shunting314/207/base -> origin/gh/shunting314/207/base 2025-06-01T20:58:06.0328482Z * [new branch] gh/shunting314/207/head -> origin/gh/shunting314/207/head 2025-06-01T20:58:06.0328991Z * [new branch] gh/shunting314/207/orig -> origin/gh/shunting314/207/orig 2025-06-01T20:58:06.0329486Z * [new branch] gh/shunting314/208/base -> origin/gh/shunting314/208/base 2025-06-01T20:58:06.0329992Z * [new branch] gh/shunting314/208/head -> origin/gh/shunting314/208/head 2025-06-01T20:58:06.0330495Z * [new branch] gh/shunting314/208/orig -> origin/gh/shunting314/208/orig 2025-06-01T20:58:06.0331007Z * [new branch] gh/silverguo/1/base -> origin/gh/silverguo/1/base 2025-06-01T20:58:06.0331505Z * [new branch] gh/silverguo/1/head -> origin/gh/silverguo/1/head 2025-06-01T20:58:06.0331983Z * [new branch] gh/silverguo/2/base -> origin/gh/silverguo/2/base 2025-06-01T20:58:06.0332467Z * [new branch] gh/silverguo/2/head -> origin/gh/silverguo/2/head 2025-06-01T20:58:06.0332951Z * [new branch] gh/silverguo/3/base -> origin/gh/silverguo/3/base 2025-06-01T20:58:06.0333434Z * [new branch] gh/silverguo/3/head -> origin/gh/silverguo/3/head 2025-06-01T20:58:06.0333914Z * [new branch] gh/silverguo/4/base -> origin/gh/silverguo/4/base 2025-06-01T20:58:06.0334387Z * [new branch] gh/silverguo/4/head -> origin/gh/silverguo/4/head 2025-06-01T20:58:06.0335052Z * [new branch] gh/sinhaanhsul/1/base -> origin/gh/sinhaanhsul/1/base 2025-06-01T20:58:06.0335658Z * [new branch] gh/sinhaanhsul/1/head -> origin/gh/sinhaanhsul/1/head 2025-06-01T20:58:06.0336154Z * [new branch] gh/soulitzer/269/base -> origin/gh/soulitzer/269/base 2025-06-01T20:58:06.0336651Z * [new branch] gh/soulitzer/269/head -> origin/gh/soulitzer/269/head 2025-06-01T20:58:06.0337141Z * [new branch] gh/soulitzer/269/orig -> origin/gh/soulitzer/269/orig 2025-06-01T20:58:06.0337644Z * [new branch] gh/soulitzer/276/base -> origin/gh/soulitzer/276/base 2025-06-01T20:58:06.0338140Z * [new branch] gh/soulitzer/276/head -> origin/gh/soulitzer/276/head 2025-06-01T20:58:06.0338625Z * [new branch] gh/soulitzer/276/orig -> origin/gh/soulitzer/276/orig 2025-06-01T20:58:06.0339117Z * [new branch] gh/soulitzer/287/base -> origin/gh/soulitzer/287/base 2025-06-01T20:58:06.0339606Z * [new branch] gh/soulitzer/287/head -> origin/gh/soulitzer/287/head 2025-06-01T20:58:06.0340106Z * [new branch] gh/soulitzer/287/orig -> origin/gh/soulitzer/287/orig 2025-06-01T20:58:06.0340607Z * [new branch] gh/soulitzer/296/base -> origin/gh/soulitzer/296/base 2025-06-01T20:58:06.0341094Z * [new branch] gh/soulitzer/296/head -> origin/gh/soulitzer/296/head 2025-06-01T20:58:06.0341588Z * [new branch] gh/soulitzer/296/orig -> origin/gh/soulitzer/296/orig 2025-06-01T20:58:06.0342070Z * [new branch] gh/soulitzer/299/base -> origin/gh/soulitzer/299/base 2025-06-01T20:58:06.0342558Z * [new branch] gh/soulitzer/299/head -> origin/gh/soulitzer/299/head 2025-06-01T20:58:06.0343055Z * [new branch] gh/soulitzer/299/orig -> origin/gh/soulitzer/299/orig 2025-06-01T20:58:06.0343552Z * [new branch] gh/soulitzer/300/base -> origin/gh/soulitzer/300/base 2025-06-01T20:58:06.0344049Z * [new branch] gh/soulitzer/300/head -> origin/gh/soulitzer/300/head 2025-06-01T20:58:06.0344529Z * [new branch] gh/soulitzer/300/orig -> origin/gh/soulitzer/300/orig 2025-06-01T20:58:06.0345021Z * [new branch] gh/soulitzer/301/base -> origin/gh/soulitzer/301/base 2025-06-01T20:58:06.0345507Z * [new branch] gh/soulitzer/301/head -> origin/gh/soulitzer/301/head 2025-06-01T20:58:06.0346005Z * [new branch] gh/soulitzer/301/orig -> origin/gh/soulitzer/301/orig 2025-06-01T20:58:06.0346498Z * [new branch] gh/soulitzer/313/base -> origin/gh/soulitzer/313/base 2025-06-01T20:58:06.0346986Z * [new branch] gh/soulitzer/313/head -> origin/gh/soulitzer/313/head 2025-06-01T20:58:06.0347484Z * [new branch] gh/soulitzer/313/orig -> origin/gh/soulitzer/313/orig 2025-06-01T20:58:06.0347972Z * [new branch] gh/soulitzer/319/base -> origin/gh/soulitzer/319/base 2025-06-01T20:58:06.0348466Z * [new branch] gh/soulitzer/319/head -> origin/gh/soulitzer/319/head 2025-06-01T20:58:06.0348952Z * [new branch] gh/soulitzer/319/orig -> origin/gh/soulitzer/319/orig 2025-06-01T20:58:06.0757343Z * [new branch] gh/soulitzer/320/base -> origin/gh/soulitzer/320/base 2025-06-01T20:58:06.0757902Z * [new branch] gh/soulitzer/320/head -> origin/gh/soulitzer/320/head 2025-06-01T20:58:06.0758416Z * [new branch] gh/soulitzer/320/orig -> origin/gh/soulitzer/320/orig 2025-06-01T20:58:06.0758911Z * [new branch] gh/soulitzer/335/base -> origin/gh/soulitzer/335/base 2025-06-01T20:58:06.0759405Z * [new branch] gh/soulitzer/335/head -> origin/gh/soulitzer/335/head 2025-06-01T20:58:06.0759892Z * [new branch] gh/soulitzer/335/orig -> origin/gh/soulitzer/335/orig 2025-06-01T20:58:06.0760665Z * [new branch] gh/soulitzer/336/base -> origin/gh/soulitzer/336/base 2025-06-01T20:58:06.0761165Z * [new branch] gh/soulitzer/336/head -> origin/gh/soulitzer/336/head 2025-06-01T20:58:06.0761652Z * [new branch] gh/soulitzer/336/orig -> origin/gh/soulitzer/336/orig 2025-06-01T20:58:06.0762149Z * [new branch] gh/soulitzer/347/base -> origin/gh/soulitzer/347/base 2025-06-01T20:58:06.0762643Z * [new branch] gh/soulitzer/347/head -> origin/gh/soulitzer/347/head 2025-06-01T20:58:06.0763140Z * [new branch] gh/soulitzer/347/orig -> origin/gh/soulitzer/347/orig 2025-06-01T20:58:06.0763637Z * [new branch] gh/soulitzer/349/base -> origin/gh/soulitzer/349/base 2025-06-01T20:58:06.0764131Z * [new branch] gh/soulitzer/349/head -> origin/gh/soulitzer/349/head 2025-06-01T20:58:06.0764636Z * [new branch] gh/soulitzer/349/orig -> origin/gh/soulitzer/349/orig 2025-06-01T20:58:06.0765131Z * [new branch] gh/soulitzer/350/base -> origin/gh/soulitzer/350/base 2025-06-01T20:58:06.0765626Z * [new branch] gh/soulitzer/350/head -> origin/gh/soulitzer/350/head 2025-06-01T20:58:06.0766113Z * [new branch] gh/soulitzer/350/orig -> origin/gh/soulitzer/350/orig 2025-06-01T20:58:06.0766609Z * [new branch] gh/soulitzer/351/base -> origin/gh/soulitzer/351/base 2025-06-01T20:58:06.0767104Z * [new branch] gh/soulitzer/351/head -> origin/gh/soulitzer/351/head 2025-06-01T20:58:06.0767588Z * [new branch] gh/soulitzer/351/orig -> origin/gh/soulitzer/351/orig 2025-06-01T20:58:06.0768090Z * [new branch] gh/soulitzer/353/base -> origin/gh/soulitzer/353/base 2025-06-01T20:58:06.0768587Z * [new branch] gh/soulitzer/353/head -> origin/gh/soulitzer/353/head 2025-06-01T20:58:06.0769089Z * [new branch] gh/soulitzer/353/orig -> origin/gh/soulitzer/353/orig 2025-06-01T20:58:06.0769586Z * [new branch] gh/soulitzer/357/base -> origin/gh/soulitzer/357/base 2025-06-01T20:58:06.0770067Z * [new branch] gh/soulitzer/357/head -> origin/gh/soulitzer/357/head 2025-06-01T20:58:06.0770568Z * [new branch] gh/soulitzer/357/orig -> origin/gh/soulitzer/357/orig 2025-06-01T20:58:06.0771064Z * [new branch] gh/soulitzer/358/base -> origin/gh/soulitzer/358/base 2025-06-01T20:58:06.0771561Z * [new branch] gh/soulitzer/358/head -> origin/gh/soulitzer/358/head 2025-06-01T20:58:06.0772059Z * [new branch] gh/soulitzer/358/orig -> origin/gh/soulitzer/358/orig 2025-06-01T20:58:06.0772550Z * [new branch] gh/soulitzer/359/base -> origin/gh/soulitzer/359/base 2025-06-01T20:58:06.0773049Z * [new branch] gh/soulitzer/359/head -> origin/gh/soulitzer/359/head 2025-06-01T20:58:06.0773540Z * [new branch] gh/soulitzer/359/orig -> origin/gh/soulitzer/359/orig 2025-06-01T20:58:06.0774033Z * [new branch] gh/soulitzer/360/base -> origin/gh/soulitzer/360/base 2025-06-01T20:58:06.0774523Z * [new branch] gh/soulitzer/360/head -> origin/gh/soulitzer/360/head 2025-06-01T20:58:06.0775016Z * [new branch] gh/soulitzer/360/orig -> origin/gh/soulitzer/360/orig 2025-06-01T20:58:06.0775505Z * [new branch] gh/soulitzer/361/base -> origin/gh/soulitzer/361/base 2025-06-01T20:58:06.0776001Z * [new branch] gh/soulitzer/361/head -> origin/gh/soulitzer/361/head 2025-06-01T20:58:06.0776495Z * [new branch] gh/soulitzer/361/orig -> origin/gh/soulitzer/361/orig 2025-06-01T20:58:06.0776979Z * [new branch] gh/soulitzer/362/base -> origin/gh/soulitzer/362/base 2025-06-01T20:58:06.0777572Z * [new branch] gh/soulitzer/362/head -> origin/gh/soulitzer/362/head 2025-06-01T20:58:06.0778149Z * [new branch] gh/soulitzer/362/orig -> origin/gh/soulitzer/362/orig 2025-06-01T20:58:06.0778644Z * [new branch] gh/soulitzer/363/base -> origin/gh/soulitzer/363/base 2025-06-01T20:58:06.0779143Z * [new branch] gh/soulitzer/363/head -> origin/gh/soulitzer/363/head 2025-06-01T20:58:06.0779638Z * [new branch] gh/soulitzer/363/orig -> origin/gh/soulitzer/363/orig 2025-06-01T20:58:06.0780139Z * [new branch] gh/soulitzer/364/base -> origin/gh/soulitzer/364/base 2025-06-01T20:58:06.2748876Z * [new branch] gh/soulitzer/364/head -> origin/gh/soulitzer/364/head 2025-06-01T20:58:06.2749419Z * [new branch] gh/soulitzer/364/orig -> origin/gh/soulitzer/364/orig 2025-06-01T20:58:06.2749944Z * [new branch] gh/soulitzer/365/base -> origin/gh/soulitzer/365/base 2025-06-01T20:58:06.2750472Z * [new branch] gh/soulitzer/365/head -> origin/gh/soulitzer/365/head 2025-06-01T20:58:06.2750958Z * [new branch] gh/soulitzer/365/orig -> origin/gh/soulitzer/365/orig 2025-06-01T20:58:06.2751449Z * [new branch] gh/soulitzer/366/base -> origin/gh/soulitzer/366/base 2025-06-01T20:58:06.2751930Z * [new branch] gh/soulitzer/366/head -> origin/gh/soulitzer/366/head 2025-06-01T20:58:06.2752421Z * [new branch] gh/soulitzer/366/orig -> origin/gh/soulitzer/366/orig 2025-06-01T20:58:06.2752915Z * [new branch] gh/soulitzer/367/base -> origin/gh/soulitzer/367/base 2025-06-01T20:58:06.2753397Z * [new branch] gh/soulitzer/367/head -> origin/gh/soulitzer/367/head 2025-06-01T20:58:06.2753892Z * [new branch] gh/soulitzer/367/orig -> origin/gh/soulitzer/367/orig 2025-06-01T20:58:06.2754432Z * [new branch] gh/suo/619/base -> origin/gh/suo/619/base 2025-06-01T20:58:06.2754910Z * [new branch] gh/swolchok/728/next -> origin/gh/swolchok/728/next 2025-06-01T20:58:06.2755400Z * [new branch] gh/swolchok/732/base -> origin/gh/swolchok/732/base 2025-06-01T20:58:06.2755897Z * [new branch] gh/swolchok/732/head -> origin/gh/swolchok/732/head 2025-06-01T20:58:06.2756388Z * [new branch] gh/swolchok/732/orig -> origin/gh/swolchok/732/orig 2025-06-01T20:58:06.2756864Z * [new branch] gh/swolchok/738/base -> origin/gh/swolchok/738/base 2025-06-01T20:58:06.2757350Z * [new branch] gh/swolchok/738/head -> origin/gh/swolchok/738/head 2025-06-01T20:58:06.2757826Z * [new branch] gh/swolchok/738/orig -> origin/gh/swolchok/738/orig 2025-06-01T20:58:06.2758307Z * [new branch] gh/swolchok/739/base -> origin/gh/swolchok/739/base 2025-06-01T20:58:06.2758797Z * [new branch] gh/swolchok/739/head -> origin/gh/swolchok/739/head 2025-06-01T20:58:06.2759273Z * [new branch] gh/swolchok/739/orig -> origin/gh/swolchok/739/orig 2025-06-01T20:58:06.2759752Z * [new branch] gh/swolchok/740/base -> origin/gh/swolchok/740/base 2025-06-01T20:58:06.2760228Z * [new branch] gh/swolchok/740/head -> origin/gh/swolchok/740/head 2025-06-01T20:58:06.2760719Z * [new branch] gh/swolchok/740/orig -> origin/gh/swolchok/740/orig 2025-06-01T20:58:06.2761207Z * [new branch] gh/swolchok/741/base -> origin/gh/swolchok/741/base 2025-06-01T20:58:06.2761680Z * [new branch] gh/swolchok/741/head -> origin/gh/swolchok/741/head 2025-06-01T20:58:06.2762164Z * [new branch] gh/swolchok/741/orig -> origin/gh/swolchok/741/orig 2025-06-01T20:58:06.2762639Z * [new branch] gh/swolchok/742/base -> origin/gh/swolchok/742/base 2025-06-01T20:58:06.2763386Z * [new branch] gh/swolchok/742/head -> origin/gh/swolchok/742/head 2025-06-01T20:58:06.2763868Z * [new branch] gh/swolchok/742/orig -> origin/gh/swolchok/742/orig 2025-06-01T20:58:06.2764353Z * [new branch] gh/swolchok/743/base -> origin/gh/swolchok/743/base 2025-06-01T20:58:06.2764852Z * [new branch] gh/swolchok/743/head -> origin/gh/swolchok/743/head 2025-06-01T20:58:06.2765347Z * [new branch] gh/swolchok/743/orig -> origin/gh/swolchok/743/orig 2025-06-01T20:58:06.2765841Z * [new branch] gh/swolchok/744/base -> origin/gh/swolchok/744/base 2025-06-01T20:58:06.2766312Z * [new branch] gh/swolchok/744/head -> origin/gh/swolchok/744/head 2025-06-01T20:58:06.2766792Z * [new branch] gh/swolchok/744/orig -> origin/gh/swolchok/744/orig 2025-06-01T20:58:06.2767278Z * [new branch] gh/swolchok/745/base -> origin/gh/swolchok/745/base 2025-06-01T20:58:06.2767758Z * [new branch] gh/swolchok/745/head -> origin/gh/swolchok/745/head 2025-06-01T20:58:06.2768242Z * [new branch] gh/swolchok/745/orig -> origin/gh/swolchok/745/orig 2025-06-01T20:58:06.2768716Z * [new branch] gh/swolchok/746/base -> origin/gh/swolchok/746/base 2025-06-01T20:58:06.2769201Z * [new branch] gh/swolchok/746/head -> origin/gh/swolchok/746/head 2025-06-01T20:58:06.2769692Z * [new branch] gh/swolchok/746/orig -> origin/gh/swolchok/746/orig 2025-06-01T20:58:06.2770164Z * [new branch] gh/swolchok/747/base -> origin/gh/swolchok/747/base 2025-06-01T20:58:06.2770641Z * [new branch] gh/swolchok/747/head -> origin/gh/swolchok/747/head 2025-06-01T20:58:06.2771117Z * [new branch] gh/swolchok/747/orig -> origin/gh/swolchok/747/orig 2025-06-01T20:58:06.3194109Z * [new branch] gh/swolchok/748/base -> origin/gh/swolchok/748/base 2025-06-01T20:58:06.3194715Z * [new branch] gh/swolchok/748/head -> origin/gh/swolchok/748/head 2025-06-01T20:58:06.3195191Z * [new branch] gh/swolchok/748/orig -> origin/gh/swolchok/748/orig 2025-06-01T20:58:06.3195683Z * [new branch] gh/swolchok/749/base -> origin/gh/swolchok/749/base 2025-06-01T20:58:06.3196165Z * [new branch] gh/swolchok/749/head -> origin/gh/swolchok/749/head 2025-06-01T20:58:06.3196640Z * [new branch] gh/swolchok/749/orig -> origin/gh/swolchok/749/orig 2025-06-01T20:58:06.3197118Z * [new branch] gh/swolchok/750/base -> origin/gh/swolchok/750/base 2025-06-01T20:58:06.3197594Z * [new branch] gh/swolchok/750/head -> origin/gh/swolchok/750/head 2025-06-01T20:58:06.3198072Z * [new branch] gh/swolchok/750/orig -> origin/gh/swolchok/750/orig 2025-06-01T20:58:06.3198559Z * [new branch] gh/swolchok/751/base -> origin/gh/swolchok/751/base 2025-06-01T20:58:06.3199036Z * [new branch] gh/swolchok/751/head -> origin/gh/swolchok/751/head 2025-06-01T20:58:06.3199516Z * [new branch] gh/swolchok/751/orig -> origin/gh/swolchok/751/orig 2025-06-01T20:58:06.3199994Z * [new branch] gh/swolchok/752/base -> origin/gh/swolchok/752/base 2025-06-01T20:58:06.3200473Z * [new branch] gh/swolchok/752/head -> origin/gh/swolchok/752/head 2025-06-01T20:58:06.3200945Z * [new branch] gh/swolchok/752/orig -> origin/gh/swolchok/752/orig 2025-06-01T20:58:06.3201424Z * [new branch] gh/swolchok/753/base -> origin/gh/swolchok/753/base 2025-06-01T20:58:06.3201916Z * [new branch] gh/swolchok/753/head -> origin/gh/swolchok/753/head 2025-06-01T20:58:06.3203100Z * [new branch] gh/swolchok/753/orig -> origin/gh/swolchok/753/orig 2025-06-01T20:58:06.3203982Z * [new branch] gh/swolchok/754/base -> origin/gh/swolchok/754/base 2025-06-01T20:58:06.3204469Z * [new branch] gh/swolchok/754/head -> origin/gh/swolchok/754/head 2025-06-01T20:58:06.3204952Z * [new branch] gh/swolchok/754/orig -> origin/gh/swolchok/754/orig 2025-06-01T20:58:06.3205438Z * [new branch] gh/swolchok/755/base -> origin/gh/swolchok/755/base 2025-06-01T20:58:06.3205920Z * [new branch] gh/swolchok/755/head -> origin/gh/swolchok/755/head 2025-06-01T20:58:06.3206405Z * [new branch] gh/swolchok/755/orig -> origin/gh/swolchok/755/orig 2025-06-01T20:58:06.3206875Z * [new branch] gh/swolchok/756/base -> origin/gh/swolchok/756/base 2025-06-01T20:58:06.3207358Z * [new branch] gh/swolchok/756/head -> origin/gh/swolchok/756/head 2025-06-01T20:58:06.3207832Z * [new branch] gh/swolchok/756/orig -> origin/gh/swolchok/756/orig 2025-06-01T20:58:06.3208329Z * [new branch] gh/swolchok/757/base -> origin/gh/swolchok/757/base 2025-06-01T20:58:06.3208810Z * [new branch] gh/swolchok/757/head -> origin/gh/swolchok/757/head 2025-06-01T20:58:06.3209288Z * [new branch] gh/swolchok/757/orig -> origin/gh/swolchok/757/orig 2025-06-01T20:58:06.3209770Z * [new branch] gh/swolchok/758/base -> origin/gh/swolchok/758/base 2025-06-01T20:58:06.3210242Z * [new branch] gh/swolchok/758/head -> origin/gh/swolchok/758/head 2025-06-01T20:58:06.3210727Z * [new branch] gh/swolchok/758/orig -> origin/gh/swolchok/758/orig 2025-06-01T20:58:06.3211208Z * [new branch] gh/swolchok/759/base -> origin/gh/swolchok/759/base 2025-06-01T20:58:06.3211681Z * [new branch] gh/swolchok/759/head -> origin/gh/swolchok/759/head 2025-06-01T20:58:06.3212165Z * [new branch] gh/swolchok/759/orig -> origin/gh/swolchok/759/orig 2025-06-01T20:58:06.3212640Z * [new branch] gh/swolchok/760/base -> origin/gh/swolchok/760/base 2025-06-01T20:58:06.3213117Z * [new branch] gh/swolchok/760/head -> origin/gh/swolchok/760/head 2025-06-01T20:58:06.3213594Z * [new branch] gh/swolchok/760/orig -> origin/gh/swolchok/760/orig 2025-06-01T20:58:06.3214064Z * [new branch] gh/swolchok/761/base -> origin/gh/swolchok/761/base 2025-06-01T20:58:06.3214544Z * [new branch] gh/swolchok/761/head -> origin/gh/swolchok/761/head 2025-06-01T20:58:06.3215015Z * [new branch] gh/swolchok/761/orig -> origin/gh/swolchok/761/orig 2025-06-01T20:58:06.3215494Z * [new branch] gh/swolchok/762/base -> origin/gh/swolchok/762/base 2025-06-01T20:58:06.3215985Z * [new branch] gh/swolchok/762/head -> origin/gh/swolchok/762/head 2025-06-01T20:58:06.3216464Z * [new branch] gh/swolchok/762/orig -> origin/gh/swolchok/762/orig 2025-06-01T20:58:06.3216947Z * [new branch] gh/swolchok/763/base -> origin/gh/swolchok/763/base 2025-06-01T20:58:06.3217417Z * [new branch] gh/swolchok/763/head -> origin/gh/swolchok/763/head 2025-06-01T20:58:06.3640382Z * [new branch] gh/swolchok/764/base -> origin/gh/swolchok/764/base 2025-06-01T20:58:06.3640909Z * [new branch] gh/swolchok/764/head -> origin/gh/swolchok/764/head 2025-06-01T20:58:06.3641405Z * [new branch] gh/swolchok/764/orig -> origin/gh/swolchok/764/orig 2025-06-01T20:58:06.3641897Z * [new branch] gh/swolchok/765/base -> origin/gh/swolchok/765/base 2025-06-01T20:58:06.3642375Z * [new branch] gh/swolchok/765/head -> origin/gh/swolchok/765/head 2025-06-01T20:58:06.3643005Z * [new branch] gh/swolchok/765/orig -> origin/gh/swolchok/765/orig 2025-06-01T20:58:06.3643598Z * [new branch] gh/swolchok/766/base -> origin/gh/swolchok/766/base 2025-06-01T20:58:06.3644082Z * [new branch] gh/swolchok/766/head -> origin/gh/swolchok/766/head 2025-06-01T20:58:06.3644578Z * [new branch] gh/swolchok/766/orig -> origin/gh/swolchok/766/orig 2025-06-01T20:58:06.3645060Z * [new branch] gh/swolchok/767/base -> origin/gh/swolchok/767/base 2025-06-01T20:58:06.3645546Z * [new branch] gh/swolchok/767/head -> origin/gh/swolchok/767/head 2025-06-01T20:58:06.3646035Z * [new branch] gh/swolchok/767/orig -> origin/gh/swolchok/767/orig 2025-06-01T20:58:06.3646532Z * [new branch] gh/swolchok/768/base -> origin/gh/swolchok/768/base 2025-06-01T20:58:06.3647015Z * [new branch] gh/swolchok/768/head -> origin/gh/swolchok/768/head 2025-06-01T20:58:06.3647506Z * [new branch] gh/swolchok/768/orig -> origin/gh/swolchok/768/orig 2025-06-01T20:58:06.3647986Z * [new branch] gh/swolchok/769/base -> origin/gh/swolchok/769/base 2025-06-01T20:58:06.3648476Z * [new branch] gh/swolchok/769/head -> origin/gh/swolchok/769/head 2025-06-01T20:58:06.3648951Z * [new branch] gh/swolchok/769/orig -> origin/gh/swolchok/769/orig 2025-06-01T20:58:06.3649452Z * [new branch] gh/syed-ahmed/1/base -> origin/gh/syed-ahmed/1/base 2025-06-01T20:58:06.3649940Z * [new branch] gh/syed-ahmed/1/head -> origin/gh/syed-ahmed/1/head 2025-06-01T20:58:06.3650414Z * [new branch] gh/syed-ahmed/1/orig -> origin/gh/syed-ahmed/1/orig 2025-06-01T20:58:06.3650905Z * [new branch] gh/tianyu-l/2/base -> origin/gh/tianyu-l/2/base 2025-06-01T20:58:06.3651383Z * [new branch] gh/tianyu-l/2/head -> origin/gh/tianyu-l/2/head 2025-06-01T20:58:06.3651921Z * [new branch] gh/tianyu-l/2/orig -> origin/gh/tianyu-l/2/orig 2025-06-01T20:58:06.3652520Z * [new branch] gh/tugsbayasgalan/290/base -> origin/gh/tugsbayasgalan/290/base 2025-06-01T20:58:06.3653085Z * [new branch] gh/tugsbayasgalan/290/head -> origin/gh/tugsbayasgalan/290/head 2025-06-01T20:58:06.3653645Z * [new branch] gh/tugsbayasgalan/290/orig -> origin/gh/tugsbayasgalan/290/orig 2025-06-01T20:58:06.3661199Z * [new branch] gh/tugsbayasgalan/298/base -> origin/gh/tugsbayasgalan/298/base 2025-06-01T20:58:06.3661787Z * [new branch] gh/tugsbayasgalan/298/head -> origin/gh/tugsbayasgalan/298/head 2025-06-01T20:58:06.3662353Z * [new branch] gh/tugsbayasgalan/298/orig -> origin/gh/tugsbayasgalan/298/orig 2025-06-01T20:58:06.3662916Z * [new branch] gh/tugsbayasgalan/299/base -> origin/gh/tugsbayasgalan/299/base 2025-06-01T20:58:06.3663476Z * [new branch] gh/tugsbayasgalan/299/head -> origin/gh/tugsbayasgalan/299/head 2025-06-01T20:58:06.3664042Z * [new branch] gh/tugsbayasgalan/299/orig -> origin/gh/tugsbayasgalan/299/orig 2025-06-01T20:58:06.3664585Z * [new branch] gh/tugsbayasgalan/300/base -> origin/gh/tugsbayasgalan/300/base 2025-06-01T20:58:06.3665138Z * [new branch] gh/tugsbayasgalan/300/head -> origin/gh/tugsbayasgalan/300/head 2025-06-01T20:58:06.3665698Z * [new branch] gh/tugsbayasgalan/300/orig -> origin/gh/tugsbayasgalan/300/orig 2025-06-01T20:58:06.3666252Z * [new branch] gh/tugsbayasgalan/301/base -> origin/gh/tugsbayasgalan/301/base 2025-06-01T20:58:06.3666817Z * [new branch] gh/tugsbayasgalan/301/head -> origin/gh/tugsbayasgalan/301/head 2025-06-01T20:58:06.3667370Z * [new branch] gh/tugsbayasgalan/301/orig -> origin/gh/tugsbayasgalan/301/orig 2025-06-01T20:58:06.3668030Z * [new branch] gh/vkuzo/1/next -> origin/gh/vkuzo/1/next 2025-06-01T20:58:06.3668584Z * [new branch] gh/vkuzo/10/base -> origin/gh/vkuzo/10/base 2025-06-01T20:58:06.3669038Z * [new branch] gh/vkuzo/10/head -> origin/gh/vkuzo/10/head 2025-06-01T20:58:06.3669512Z * [new branch] gh/vkuzo/10/orig -> origin/gh/vkuzo/10/orig 2025-06-01T20:58:06.3669968Z * [new branch] gh/vkuzo/2/next -> origin/gh/vkuzo/2/next 2025-06-01T20:58:06.3670420Z * [new branch] gh/vkuzo/3/next -> origin/gh/vkuzo/3/next 2025-06-01T20:58:06.3670965Z * [new branch] gh/vkuzo/6/base -> origin/gh/vkuzo/6/base 2025-06-01T20:58:06.4151247Z * [new branch] gh/vkuzo/6/head -> origin/gh/vkuzo/6/head 2025-06-01T20:58:06.4151776Z * [new branch] gh/vkuzo/6/orig -> origin/gh/vkuzo/6/orig 2025-06-01T20:58:06.4152245Z * [new branch] gh/vkuzo/9/base -> origin/gh/vkuzo/9/base 2025-06-01T20:58:06.4152699Z * [new branch] gh/vkuzo/9/head -> origin/gh/vkuzo/9/head 2025-06-01T20:58:06.4153140Z * [new branch] gh/vkuzo/9/orig -> origin/gh/vkuzo/9/orig 2025-06-01T20:58:06.4153592Z * [new branch] gh/vmoens/15/base -> origin/gh/vmoens/15/base 2025-06-01T20:58:06.4154055Z * [new branch] gh/vmoens/15/head -> origin/gh/vmoens/15/head 2025-06-01T20:58:06.4154584Z * [new branch] gh/vmoens/15/orig -> origin/gh/vmoens/15/orig 2025-06-01T20:58:06.4155090Z * [new branch] gh/vmoens/16/base -> origin/gh/vmoens/16/base 2025-06-01T20:58:06.4155586Z * [new branch] gh/vmoens/16/head -> origin/gh/vmoens/16/head 2025-06-01T20:58:06.4156085Z * [new branch] gh/vmoens/16/orig -> origin/gh/vmoens/16/orig 2025-06-01T20:58:06.4156543Z * [new branch] gh/vmoens/17/base -> origin/gh/vmoens/17/base 2025-06-01T20:58:06.4157000Z * [new branch] gh/vmoens/17/head -> origin/gh/vmoens/17/head 2025-06-01T20:58:06.4157456Z * [new branch] gh/vmoens/17/orig -> origin/gh/vmoens/17/orig 2025-06-01T20:58:06.4157902Z * [new branch] gh/vmoens/18/base -> origin/gh/vmoens/18/base 2025-06-01T20:58:06.4158361Z * [new branch] gh/vmoens/18/head -> origin/gh/vmoens/18/head 2025-06-01T20:58:06.4158814Z * [new branch] gh/vmoens/18/orig -> origin/gh/vmoens/18/orig 2025-06-01T20:58:06.4159292Z * [new branch] gh/wanchaol/370/base -> origin/gh/wanchaol/370/base 2025-06-01T20:58:06.4159781Z * [new branch] gh/wanchaol/370/head -> origin/gh/wanchaol/370/head 2025-06-01T20:58:06.4160256Z * [new branch] gh/wanchaol/370/orig -> origin/gh/wanchaol/370/orig 2025-06-01T20:58:06.4160751Z * [new branch] gh/wanchaol/371/base -> origin/gh/wanchaol/371/base 2025-06-01T20:58:06.4161228Z * [new branch] gh/wanchaol/371/head -> origin/gh/wanchaol/371/head 2025-06-01T20:58:06.4161794Z * [new branch] gh/wanchaol/371/orig -> origin/gh/wanchaol/371/orig 2025-06-01T20:58:06.4162325Z * [new branch] gh/wanchaol/372/base -> origin/gh/wanchaol/372/base 2025-06-01T20:58:06.4162803Z * [new branch] gh/wanchaol/372/head -> origin/gh/wanchaol/372/head 2025-06-01T20:58:06.4163283Z * [new branch] gh/wanchaol/372/orig -> origin/gh/wanchaol/372/orig 2025-06-01T20:58:06.4163760Z * [new branch] gh/wconstab/380/base -> origin/gh/wconstab/380/base 2025-06-01T20:58:06.4164243Z * [new branch] gh/wconstab/380/head -> origin/gh/wconstab/380/head 2025-06-01T20:58:06.4164727Z * [new branch] gh/wconstab/380/orig -> origin/gh/wconstab/380/orig 2025-06-01T20:58:06.4165435Z * [new branch] gh/wconstab/392/base -> origin/gh/wconstab/392/base 2025-06-01T20:58:06.4165930Z * [new branch] gh/wconstab/392/head -> origin/gh/wconstab/392/head 2025-06-01T20:58:06.4166403Z * [new branch] gh/wconstab/392/orig -> origin/gh/wconstab/392/orig 2025-06-01T20:58:06.4166896Z * [new branch] gh/wconstab/395/base -> origin/gh/wconstab/395/base 2025-06-01T20:58:06.4167385Z * [new branch] gh/wconstab/395/head -> origin/gh/wconstab/395/head 2025-06-01T20:58:06.4167914Z * [new branch] gh/wconstab/395/orig -> origin/gh/wconstab/395/orig 2025-06-01T20:58:06.4168487Z * [new branch] gh/wconstab/396/base -> origin/gh/wconstab/396/base 2025-06-01T20:58:06.4168964Z * [new branch] gh/wconstab/396/head -> origin/gh/wconstab/396/head 2025-06-01T20:58:06.4169458Z * [new branch] gh/wconstab/396/orig -> origin/gh/wconstab/396/orig 2025-06-01T20:58:06.4169946Z * [new branch] gh/wconstab/399/base -> origin/gh/wconstab/399/base 2025-06-01T20:58:06.4170428Z * [new branch] gh/wconstab/399/head -> origin/gh/wconstab/399/head 2025-06-01T20:58:06.4170916Z * [new branch] gh/wconstab/399/orig -> origin/gh/wconstab/399/orig 2025-06-01T20:58:06.4171390Z * [new branch] gh/wconstab/410/base -> origin/gh/wconstab/410/base 2025-06-01T20:58:06.4171877Z * [new branch] gh/wconstab/410/head -> origin/gh/wconstab/410/head 2025-06-01T20:58:06.4172350Z * [new branch] gh/wconstab/410/orig -> origin/gh/wconstab/410/orig 2025-06-01T20:58:06.4172839Z * [new branch] gh/wconstab/412/base -> origin/gh/wconstab/412/base 2025-06-01T20:58:06.4173327Z * [new branch] gh/wconstab/412/head -> origin/gh/wconstab/412/head 2025-06-01T20:58:06.4173844Z * [new branch] gh/wconstab/412/orig -> origin/gh/wconstab/412/orig 2025-06-01T20:58:06.4631594Z * [new branch] gh/wconstab/413/base -> origin/gh/wconstab/413/base 2025-06-01T20:58:06.4632197Z * [new branch] gh/wconstab/413/head -> origin/gh/wconstab/413/head 2025-06-01T20:58:06.4632684Z * [new branch] gh/wconstab/413/orig -> origin/gh/wconstab/413/orig 2025-06-01T20:58:06.4633176Z * [new branch] gh/wconstab/414/base -> origin/gh/wconstab/414/base 2025-06-01T20:58:06.4633655Z * [new branch] gh/wconstab/414/head -> origin/gh/wconstab/414/head 2025-06-01T20:58:06.4634206Z * [new branch] gh/wconstab/414/orig -> origin/gh/wconstab/414/orig 2025-06-01T20:58:06.4634693Z * [new branch] gh/wconstab/415/base -> origin/gh/wconstab/415/base 2025-06-01T20:58:06.4635167Z * [new branch] gh/wconstab/415/head -> origin/gh/wconstab/415/head 2025-06-01T20:58:06.4635668Z * [new branch] gh/wconstab/415/orig -> origin/gh/wconstab/415/orig 2025-06-01T20:58:06.4636152Z * [new branch] gh/wconstab/416/base -> origin/gh/wconstab/416/base 2025-06-01T20:58:06.4636645Z * [new branch] gh/wconstab/416/head -> origin/gh/wconstab/416/head 2025-06-01T20:58:06.4637163Z * [new branch] gh/wconstab/416/orig -> origin/gh/wconstab/416/orig 2025-06-01T20:58:06.4637695Z * [new branch] gh/wconstab/417/base -> origin/gh/wconstab/417/base 2025-06-01T20:58:06.4638225Z * [new branch] gh/wconstab/417/head -> origin/gh/wconstab/417/head 2025-06-01T20:58:06.4638702Z * [new branch] gh/wconstab/417/orig -> origin/gh/wconstab/417/orig 2025-06-01T20:58:06.4639208Z * [new branch] gh/weifengpy/21/base -> origin/gh/weifengpy/21/base 2025-06-01T20:58:06.4639847Z * [new branch] gh/weifengpy/21/head -> origin/gh/weifengpy/21/head 2025-06-01T20:58:06.4640419Z * [new branch] gh/weifengpy/21/orig -> origin/gh/weifengpy/21/orig 2025-06-01T20:58:06.4640918Z * [new branch] gh/weifengpy/25/base -> origin/gh/weifengpy/25/base 2025-06-01T20:58:06.4641403Z * [new branch] gh/weifengpy/25/head -> origin/gh/weifengpy/25/head 2025-06-01T20:58:06.4641890Z * [new branch] gh/weifengpy/25/orig -> origin/gh/weifengpy/25/orig 2025-06-01T20:58:06.4642374Z * [new branch] gh/weifengpy/26/base -> origin/gh/weifengpy/26/base 2025-06-01T20:58:06.4642871Z * [new branch] gh/weifengpy/26/head -> origin/gh/weifengpy/26/head 2025-06-01T20:58:06.4643367Z * [new branch] gh/weifengpy/26/orig -> origin/gh/weifengpy/26/orig 2025-06-01T20:58:06.4643879Z * [new branch] gh/williamwen42/196/base -> origin/gh/williamwen42/196/base 2025-06-01T20:58:06.4644413Z * [new branch] gh/williamwen42/196/head -> origin/gh/williamwen42/196/head 2025-06-01T20:58:06.4644931Z * [new branch] gh/williamwen42/196/orig -> origin/gh/williamwen42/196/orig 2025-06-01T20:58:06.4645453Z * [new branch] gh/williamwen42/209/base -> origin/gh/williamwen42/209/base 2025-06-01T20:58:06.4645974Z * [new branch] gh/williamwen42/209/head -> origin/gh/williamwen42/209/head 2025-06-01T20:58:06.4646492Z * [new branch] gh/williamwen42/209/orig -> origin/gh/williamwen42/209/orig 2025-06-01T20:58:06.4647007Z * [new branch] gh/williamwen42/210/base -> origin/gh/williamwen42/210/base 2025-06-01T20:58:06.4647522Z * [new branch] gh/williamwen42/210/head -> origin/gh/williamwen42/210/head 2025-06-01T20:58:06.4648091Z * [new branch] gh/williamwen42/210/orig -> origin/gh/williamwen42/210/orig 2025-06-01T20:58:06.4648658Z * [new branch] gh/williamwen42/220/base -> origin/gh/williamwen42/220/base 2025-06-01T20:58:06.4649236Z * [new branch] gh/williamwen42/220/head -> origin/gh/williamwen42/220/head 2025-06-01T20:58:06.4649759Z * [new branch] gh/williamwen42/220/orig -> origin/gh/williamwen42/220/orig 2025-06-01T20:58:06.4650274Z * [new branch] gh/williamwen42/227/base -> origin/gh/williamwen42/227/base 2025-06-01T20:58:06.4650794Z * [new branch] gh/williamwen42/227/head -> origin/gh/williamwen42/227/head 2025-06-01T20:58:06.4651314Z * [new branch] gh/williamwen42/227/orig -> origin/gh/williamwen42/227/orig 2025-06-01T20:58:06.4651836Z * [new branch] gh/williamwen42/232/base -> origin/gh/williamwen42/232/base 2025-06-01T20:58:06.4652360Z * [new branch] gh/williamwen42/232/head -> origin/gh/williamwen42/232/head 2025-06-01T20:58:06.4652879Z * [new branch] gh/williamwen42/232/orig -> origin/gh/williamwen42/232/orig 2025-06-01T20:58:06.4653407Z * [new branch] gh/williamwen42/235/base -> origin/gh/williamwen42/235/base 2025-06-01T20:58:06.4653925Z * [new branch] gh/williamwen42/235/head -> origin/gh/williamwen42/235/head 2025-06-01T20:58:06.4654443Z * [new branch] gh/williamwen42/235/orig -> origin/gh/williamwen42/235/orig 2025-06-01T20:58:06.4654961Z * [new branch] gh/williamwen42/236/base -> origin/gh/williamwen42/236/base 2025-06-01T20:58:06.5065131Z * [new branch] gh/williamwen42/236/head -> origin/gh/williamwen42/236/head 2025-06-01T20:58:06.5065728Z * [new branch] gh/williamwen42/236/orig -> origin/gh/williamwen42/236/orig 2025-06-01T20:58:06.5066270Z * [new branch] gh/williamwen42/237/base -> origin/gh/williamwen42/237/base 2025-06-01T20:58:06.5066793Z * [new branch] gh/williamwen42/237/head -> origin/gh/williamwen42/237/head 2025-06-01T20:58:06.5067454Z * [new branch] gh/williamwen42/237/orig -> origin/gh/williamwen42/237/orig 2025-06-01T20:58:06.5068053Z * [new branch] gh/williamwen42/238/base -> origin/gh/williamwen42/238/base 2025-06-01T20:58:06.5068584Z * [new branch] gh/williamwen42/238/head -> origin/gh/williamwen42/238/head 2025-06-01T20:58:06.5069110Z * [new branch] gh/williamwen42/238/orig -> origin/gh/williamwen42/238/orig 2025-06-01T20:58:06.5069620Z * [new branch] gh/williamwen42/239/base -> origin/gh/williamwen42/239/base 2025-06-01T20:58:06.5070139Z * [new branch] gh/williamwen42/239/head -> origin/gh/williamwen42/239/head 2025-06-01T20:58:06.5070655Z * [new branch] gh/williamwen42/239/orig -> origin/gh/williamwen42/239/orig 2025-06-01T20:58:06.5071186Z * [new branch] gh/williamwen42/240/base -> origin/gh/williamwen42/240/base 2025-06-01T20:58:06.5071709Z * [new branch] gh/williamwen42/240/head -> origin/gh/williamwen42/240/head 2025-06-01T20:58:06.5072234Z * [new branch] gh/williamwen42/240/orig -> origin/gh/williamwen42/240/orig 2025-06-01T20:58:06.5072755Z * [new branch] gh/williamwen42/241/base -> origin/gh/williamwen42/241/base 2025-06-01T20:58:06.5073267Z * [new branch] gh/williamwen42/241/head -> origin/gh/williamwen42/241/head 2025-06-01T20:58:06.5073798Z * [new branch] gh/williamwen42/241/orig -> origin/gh/williamwen42/241/orig 2025-06-01T20:58:06.5074395Z * [new branch] gh/williamwen42/242/base -> origin/gh/williamwen42/242/base 2025-06-01T20:58:06.5074919Z * [new branch] gh/williamwen42/242/head -> origin/gh/williamwen42/242/head 2025-06-01T20:58:06.5075439Z * [new branch] gh/williamwen42/242/orig -> origin/gh/williamwen42/242/orig 2025-06-01T20:58:06.5075956Z * [new branch] gh/williamwen42/243/base -> origin/gh/williamwen42/243/base 2025-06-01T20:58:06.5076488Z * [new branch] gh/williamwen42/243/head -> origin/gh/williamwen42/243/head 2025-06-01T20:58:06.5077007Z * [new branch] gh/williamwen42/243/orig -> origin/gh/williamwen42/243/orig 2025-06-01T20:58:06.5077536Z * [new branch] gh/williamwen42/244/base -> origin/gh/williamwen42/244/base 2025-06-01T20:58:06.5078055Z * [new branch] gh/williamwen42/244/head -> origin/gh/williamwen42/244/head 2025-06-01T20:58:06.5078562Z * [new branch] gh/williamwen42/244/orig -> origin/gh/williamwen42/244/orig 2025-06-01T20:58:06.5079090Z * [new branch] gh/williamwen42/245/base -> origin/gh/williamwen42/245/base 2025-06-01T20:58:06.5079601Z * [new branch] gh/williamwen42/245/head -> origin/gh/williamwen42/245/head 2025-06-01T20:58:06.5080123Z * [new branch] gh/williamwen42/245/orig -> origin/gh/williamwen42/245/orig 2025-06-01T20:58:06.5080623Z * [new branch] gh/xmfan/166/base -> origin/gh/xmfan/166/base 2025-06-01T20:58:06.5081082Z * [new branch] gh/xmfan/166/head -> origin/gh/xmfan/166/head 2025-06-01T20:58:06.5081543Z * [new branch] gh/xmfan/166/orig -> origin/gh/xmfan/166/orig 2025-06-01T20:58:06.5081991Z * [new branch] gh/xmfan/169/base -> origin/gh/xmfan/169/base 2025-06-01T20:58:06.5082447Z * [new branch] gh/xmfan/169/head -> origin/gh/xmfan/169/head 2025-06-01T20:58:06.5082900Z * [new branch] gh/xmfan/170/base -> origin/gh/xmfan/170/base 2025-06-01T20:58:06.5083343Z * [new branch] gh/xmfan/170/head -> origin/gh/xmfan/170/head 2025-06-01T20:58:06.5083793Z * [new branch] gh/xmfan/173/base -> origin/gh/xmfan/173/base 2025-06-01T20:58:06.5084239Z * [new branch] gh/xmfan/173/head -> origin/gh/xmfan/173/head 2025-06-01T20:58:06.5084787Z * [new branch] gh/xmfan/173/orig -> origin/gh/xmfan/173/orig 2025-06-01T20:58:06.5085311Z * [new branch] gh/xmfan/174/base -> origin/gh/xmfan/174/base 2025-06-01T20:58:06.5085774Z * [new branch] gh/xmfan/174/head -> origin/gh/xmfan/174/head 2025-06-01T20:58:06.5086243Z * [new branch] gh/xmfan/174/orig -> origin/gh/xmfan/174/orig 2025-06-01T20:58:06.5086695Z * [new branch] gh/xmfan/178/base -> origin/gh/xmfan/178/base 2025-06-01T20:58:06.5087160Z * [new branch] gh/xmfan/178/head -> origin/gh/xmfan/178/head 2025-06-01T20:58:06.5087618Z * [new branch] gh/xmfan/178/orig -> origin/gh/xmfan/178/orig 2025-06-01T20:58:06.5088080Z * [new branch] gh/xmfan/18/base -> origin/gh/xmfan/18/base 2025-06-01T20:58:06.5539048Z * [new branch] gh/xmfan/18/head -> origin/gh/xmfan/18/head 2025-06-01T20:58:06.5539526Z * [new branch] gh/xmfan/180/base -> origin/gh/xmfan/180/base 2025-06-01T20:58:06.5540000Z * [new branch] gh/xmfan/180/head -> origin/gh/xmfan/180/head 2025-06-01T20:58:06.5540452Z * [new branch] gh/xmfan/180/orig -> origin/gh/xmfan/180/orig 2025-06-01T20:58:06.5540918Z * [new branch] gh/xmfan/187/base -> origin/gh/xmfan/187/base 2025-06-01T20:58:06.5541378Z * [new branch] gh/xmfan/187/head -> origin/gh/xmfan/187/head 2025-06-01T20:58:06.5541827Z * [new branch] gh/xmfan/187/orig -> origin/gh/xmfan/187/orig 2025-06-01T20:58:06.5542286Z * [new branch] gh/xmfan/193/base -> origin/gh/xmfan/193/base 2025-06-01T20:58:06.5542736Z * [new branch] gh/xmfan/193/head -> origin/gh/xmfan/193/head 2025-06-01T20:58:06.5543241Z * [new branch] gh/xmfan/193/orig -> origin/gh/xmfan/193/orig 2025-06-01T20:58:06.5543768Z * [new branch] gh/xmfan/194/base -> origin/gh/xmfan/194/base 2025-06-01T20:58:06.5544223Z * [new branch] gh/xmfan/194/head -> origin/gh/xmfan/194/head 2025-06-01T20:58:06.5544685Z * [new branch] gh/xmfan/194/orig -> origin/gh/xmfan/194/orig 2025-06-01T20:58:06.5545140Z * [new branch] gh/xmfan/200/base -> origin/gh/xmfan/200/base 2025-06-01T20:58:06.5545599Z * [new branch] gh/xmfan/200/head -> origin/gh/xmfan/200/head 2025-06-01T20:58:06.5546056Z * [new branch] gh/xmfan/200/orig -> origin/gh/xmfan/200/orig 2025-06-01T20:58:06.5546509Z * [new branch] gh/xmfan/201/base -> origin/gh/xmfan/201/base 2025-06-01T20:58:06.5546961Z * [new branch] gh/xmfan/201/head -> origin/gh/xmfan/201/head 2025-06-01T20:58:06.5547413Z * [new branch] gh/xmfan/201/orig -> origin/gh/xmfan/201/orig 2025-06-01T20:58:06.5547877Z * [new branch] gh/xmfan/202/base -> origin/gh/xmfan/202/base 2025-06-01T20:58:06.5548337Z * [new branch] gh/xmfan/202/head -> origin/gh/xmfan/202/head 2025-06-01T20:58:06.5548790Z * [new branch] gh/xmfan/202/orig -> origin/gh/xmfan/202/orig 2025-06-01T20:58:06.5549328Z * [new branch] gh/xmfan/206/base -> origin/gh/xmfan/206/base 2025-06-01T20:58:06.5549780Z * [new branch] gh/xmfan/206/head -> origin/gh/xmfan/206/head 2025-06-01T20:58:06.5550239Z * [new branch] gh/xmfan/206/orig -> origin/gh/xmfan/206/orig 2025-06-01T20:58:06.5550701Z * [new branch] gh/xmfan/213/base -> origin/gh/xmfan/213/base 2025-06-01T20:58:06.5551155Z * [new branch] gh/xmfan/213/head -> origin/gh/xmfan/213/head 2025-06-01T20:58:06.5551617Z * [new branch] gh/xmfan/213/orig -> origin/gh/xmfan/213/orig 2025-06-01T20:58:06.5552201Z * [new branch] gh/xmfan/214/base -> origin/gh/xmfan/214/base 2025-06-01T20:58:06.5552739Z * [new branch] gh/xmfan/214/head -> origin/gh/xmfan/214/head 2025-06-01T20:58:06.5553212Z * [new branch] gh/xmfan/214/orig -> origin/gh/xmfan/214/orig 2025-06-01T20:58:06.5553673Z * [new branch] gh/xmfan/216/base -> origin/gh/xmfan/216/base 2025-06-01T20:58:06.5554199Z * [new branch] gh/xmfan/216/head -> origin/gh/xmfan/216/head 2025-06-01T20:58:06.5554696Z * [new branch] gh/xmfan/216/orig -> origin/gh/xmfan/216/orig 2025-06-01T20:58:06.5555195Z * [new branch] gh/xmfan/217/base -> origin/gh/xmfan/217/base 2025-06-01T20:58:06.5555656Z * [new branch] gh/xmfan/217/head -> origin/gh/xmfan/217/head 2025-06-01T20:58:06.5556104Z * [new branch] gh/xmfan/217/orig -> origin/gh/xmfan/217/orig 2025-06-01T20:58:06.5556566Z * [new branch] gh/xmfan/220/base -> origin/gh/xmfan/220/base 2025-06-01T20:58:06.5557018Z * [new branch] gh/xmfan/220/head -> origin/gh/xmfan/220/head 2025-06-01T20:58:06.5557474Z * [new branch] gh/xmfan/220/orig -> origin/gh/xmfan/220/orig 2025-06-01T20:58:06.5557916Z * [new branch] gh/xmfan/223/base -> origin/gh/xmfan/223/base 2025-06-01T20:58:06.5558376Z * [new branch] gh/xmfan/223/head -> origin/gh/xmfan/223/head 2025-06-01T20:58:06.5558829Z * [new branch] gh/xmfan/223/orig -> origin/gh/xmfan/223/orig 2025-06-01T20:58:06.5559275Z * [new branch] gh/xmfan/224/base -> origin/gh/xmfan/224/base 2025-06-01T20:58:06.5559730Z * [new branch] gh/xmfan/224/head -> origin/gh/xmfan/224/head 2025-06-01T20:58:06.5560174Z * [new branch] gh/xmfan/224/orig -> origin/gh/xmfan/224/orig 2025-06-01T20:58:06.5560714Z * [new branch] gh/xmfan/225/base -> origin/gh/xmfan/225/base 2025-06-01T20:58:06.5561181Z * [new branch] gh/xmfan/225/head -> origin/gh/xmfan/225/head 2025-06-01T20:58:06.5994273Z * [new branch] gh/xmfan/225/orig -> origin/gh/xmfan/225/orig 2025-06-01T20:58:06.5994810Z * [new branch] gh/xmfan/226/base -> origin/gh/xmfan/226/base 2025-06-01T20:58:06.5995275Z * [new branch] gh/xmfan/226/head -> origin/gh/xmfan/226/head 2025-06-01T20:58:06.5995730Z * [new branch] gh/xmfan/226/orig -> origin/gh/xmfan/226/orig 2025-06-01T20:58:06.5996187Z * [new branch] gh/xmfan/227/base -> origin/gh/xmfan/227/base 2025-06-01T20:58:06.5996635Z * [new branch] gh/xmfan/227/head -> origin/gh/xmfan/227/head 2025-06-01T20:58:06.5997090Z * [new branch] gh/xmfan/227/orig -> origin/gh/xmfan/227/orig 2025-06-01T20:58:06.5997544Z * [new branch] gh/xmfan/228/base -> origin/gh/xmfan/228/base 2025-06-01T20:58:06.5997995Z * [new branch] gh/xmfan/228/head -> origin/gh/xmfan/228/head 2025-06-01T20:58:06.5998453Z * [new branch] gh/xmfan/228/orig -> origin/gh/xmfan/228/orig 2025-06-01T20:58:06.5998904Z * [new branch] gh/xmfan/229/base -> origin/gh/xmfan/229/base 2025-06-01T20:58:06.5999376Z * [new branch] gh/xmfan/229/head -> origin/gh/xmfan/229/head 2025-06-01T20:58:06.5999825Z * [new branch] gh/xmfan/229/orig -> origin/gh/xmfan/229/orig 2025-06-01T20:58:06.6000280Z * [new branch] gh/xmfan/230/base -> origin/gh/xmfan/230/base 2025-06-01T20:58:06.6000744Z * [new branch] gh/xmfan/230/head -> origin/gh/xmfan/230/head 2025-06-01T20:58:06.6001190Z * [new branch] gh/xmfan/230/orig -> origin/gh/xmfan/230/orig 2025-06-01T20:58:06.6001850Z * [new branch] gh/xmfan/231/base -> origin/gh/xmfan/231/base 2025-06-01T20:58:06.6002299Z * [new branch] gh/xmfan/231/head -> origin/gh/xmfan/231/head 2025-06-01T20:58:06.6002758Z * [new branch] gh/xmfan/231/orig -> origin/gh/xmfan/231/orig 2025-06-01T20:58:06.6003212Z * [new branch] gh/xmfan/232/base -> origin/gh/xmfan/232/base 2025-06-01T20:58:06.6003684Z * [new branch] gh/xmfan/232/head -> origin/gh/xmfan/232/head 2025-06-01T20:58:06.6004141Z * [new branch] gh/xmfan/232/orig -> origin/gh/xmfan/232/orig 2025-06-01T20:58:06.6004587Z * [new branch] gh/xmfan/233/base -> origin/gh/xmfan/233/base 2025-06-01T20:58:06.6005047Z * [new branch] gh/xmfan/233/head -> origin/gh/xmfan/233/head 2025-06-01T20:58:06.6005500Z * [new branch] gh/xmfan/233/orig -> origin/gh/xmfan/233/orig 2025-06-01T20:58:06.6005959Z * [new branch] gh/xmfan/234/base -> origin/gh/xmfan/234/base 2025-06-01T20:58:06.6006417Z * [new branch] gh/xmfan/234/head -> origin/gh/xmfan/234/head 2025-06-01T20:58:06.6006865Z * [new branch] gh/xmfan/234/orig -> origin/gh/xmfan/234/orig 2025-06-01T20:58:06.6007318Z * [new branch] gh/xmfan/235/base -> origin/gh/xmfan/235/base 2025-06-01T20:58:06.6007761Z * [new branch] gh/xmfan/235/head -> origin/gh/xmfan/235/head 2025-06-01T20:58:06.6008222Z * [new branch] gh/xmfan/235/orig -> origin/gh/xmfan/235/orig 2025-06-01T20:58:06.6008683Z * [new branch] gh/xmfan/236/base -> origin/gh/xmfan/236/base 2025-06-01T20:58:06.6009135Z * [new branch] gh/xmfan/236/head -> origin/gh/xmfan/236/head 2025-06-01T20:58:06.6009596Z * [new branch] gh/xmfan/236/orig -> origin/gh/xmfan/236/orig 2025-06-01T20:58:06.6010052Z * [new branch] gh/xmfan/237/base -> origin/gh/xmfan/237/base 2025-06-01T20:58:06.6010509Z * [new branch] gh/xmfan/237/head -> origin/gh/xmfan/237/head 2025-06-01T20:58:06.6010963Z * [new branch] gh/xmfan/237/orig -> origin/gh/xmfan/237/orig 2025-06-01T20:58:06.6011406Z * [new branch] gh/xmfan/238/base -> origin/gh/xmfan/238/base 2025-06-01T20:58:06.6011862Z * [new branch] gh/xmfan/238/head -> origin/gh/xmfan/238/head 2025-06-01T20:58:06.6012308Z * [new branch] gh/xmfan/238/orig -> origin/gh/xmfan/238/orig 2025-06-01T20:58:06.6012764Z * [new branch] gh/xmfan/239/base -> origin/gh/xmfan/239/base 2025-06-01T20:58:06.6013212Z * [new branch] gh/xmfan/239/head -> origin/gh/xmfan/239/head 2025-06-01T20:58:06.6013671Z * [new branch] gh/xmfan/239/orig -> origin/gh/xmfan/239/orig 2025-06-01T20:58:06.6014136Z * [new branch] gh/xmfan/240/base -> origin/gh/xmfan/240/base 2025-06-01T20:58:06.6014588Z * [new branch] gh/xmfan/240/head -> origin/gh/xmfan/240/head 2025-06-01T20:58:06.6015038Z * [new branch] gh/xmfan/240/orig -> origin/gh/xmfan/240/orig 2025-06-01T20:58:06.6015488Z * [new branch] gh/xmfan/241/base -> origin/gh/xmfan/241/base 2025-06-01T20:58:06.6015947Z * [new branch] gh/xmfan/241/head -> origin/gh/xmfan/241/head 2025-06-01T20:58:06.6494805Z * [new branch] gh/xmfan/241/orig -> origin/gh/xmfan/241/orig 2025-06-01T20:58:06.6495314Z * [new branch] gh/xmfan/242/base -> origin/gh/xmfan/242/base 2025-06-01T20:58:06.6495823Z * [new branch] gh/xmfan/242/head -> origin/gh/xmfan/242/head 2025-06-01T20:58:06.6496401Z * [new branch] gh/xmfan/242/orig -> origin/gh/xmfan/242/orig 2025-06-01T20:58:06.6496951Z * [new branch] gh/xmfan/243/base -> origin/gh/xmfan/243/base 2025-06-01T20:58:06.6497414Z * [new branch] gh/xmfan/243/head -> origin/gh/xmfan/243/head 2025-06-01T20:58:06.6497881Z * [new branch] gh/xmfan/243/orig -> origin/gh/xmfan/243/orig 2025-06-01T20:58:06.6498376Z * [new branch] gh/xuanzhang816/12/base -> origin/gh/xuanzhang816/12/base 2025-06-01T20:58:06.6498911Z * [new branch] gh/xuanzhang816/12/head -> origin/gh/xuanzhang816/12/head 2025-06-01T20:58:06.6499414Z * [new branch] gh/xuanzhang816/12/orig -> origin/gh/xuanzhang816/12/orig 2025-06-01T20:58:06.6499923Z * [new branch] gh/xuanzhang816/13/base -> origin/gh/xuanzhang816/13/base 2025-06-01T20:58:06.6500422Z * [new branch] gh/xuanzhang816/13/head -> origin/gh/xuanzhang816/13/head 2025-06-01T20:58:06.6500940Z * [new branch] gh/xuanzhang816/13/orig -> origin/gh/xuanzhang816/13/orig 2025-06-01T20:58:06.6501468Z * [new branch] gh/xuhancn/1/base -> origin/gh/xuhancn/1/base 2025-06-01T20:58:06.6501980Z * [new branch] gh/xuhancn/1/head -> origin/gh/xuhancn/1/head 2025-06-01T20:58:06.6502449Z * [new branch] gh/xuhancn/2/base -> origin/gh/xuhancn/2/base 2025-06-01T20:58:06.6502904Z * [new branch] gh/xuhancn/2/head -> origin/gh/xuhancn/2/head 2025-06-01T20:58:06.6503362Z * [new branch] gh/xuhancn/3/base -> origin/gh/xuhancn/3/base 2025-06-01T20:58:06.6503811Z * [new branch] gh/xuhancn/3/head -> origin/gh/xuhancn/3/head 2025-06-01T20:58:06.6504267Z * [new branch] gh/xuhancn/4/base -> origin/gh/xuhancn/4/base 2025-06-01T20:58:06.6504730Z * [new branch] gh/xuhancn/4/head -> origin/gh/xuhancn/4/head 2025-06-01T20:58:06.6505192Z * [new branch] gh/xuhancn/5/base -> origin/gh/xuhancn/5/base 2025-06-01T20:58:06.6505649Z * [new branch] gh/xuhancn/5/head -> origin/gh/xuhancn/5/head 2025-06-01T20:58:06.6506100Z * [new branch] gh/xuhancn/6/base -> origin/gh/xuhancn/6/base 2025-06-01T20:58:06.6506563Z * [new branch] gh/xuhancn/6/head -> origin/gh/xuhancn/6/head 2025-06-01T20:58:06.6507066Z * [new branch] gh/xuhancn/7/base -> origin/gh/xuhancn/7/base 2025-06-01T20:58:06.6507566Z * [new branch] gh/xuhancn/7/head -> origin/gh/xuhancn/7/head 2025-06-01T20:58:06.6508044Z * [new branch] gh/yanbing-j/11/base -> origin/gh/yanbing-j/11/base 2025-06-01T20:58:06.6508529Z * [new branch] gh/yanbing-j/11/head -> origin/gh/yanbing-j/11/head 2025-06-01T20:58:06.6509016Z * [new branch] gh/yanbing-j/11/orig -> origin/gh/yanbing-j/11/orig 2025-06-01T20:58:06.6509489Z * [new branch] gh/yanbing-j/12/base -> origin/gh/yanbing-j/12/base 2025-06-01T20:58:06.6509964Z * [new branch] gh/yanbing-j/12/head -> origin/gh/yanbing-j/12/head 2025-06-01T20:58:06.6510446Z * [new branch] gh/yanbing-j/12/orig -> origin/gh/yanbing-j/12/orig 2025-06-01T20:58:06.6510918Z * [new branch] gh/yanbing-j/13/base -> origin/gh/yanbing-j/13/base 2025-06-01T20:58:06.6511403Z * [new branch] gh/yanbing-j/13/head -> origin/gh/yanbing-j/13/head 2025-06-01T20:58:06.6511868Z * [new branch] gh/yanbing-j/13/orig -> origin/gh/yanbing-j/13/orig 2025-06-01T20:58:06.6512345Z * [new branch] gh/yanbing-j/14/base -> origin/gh/yanbing-j/14/base 2025-06-01T20:58:06.6512866Z * [new branch] gh/yanbing-j/14/head -> origin/gh/yanbing-j/14/head 2025-06-01T20:58:06.6513465Z * [new branch] gh/yanbing-j/14/orig -> origin/gh/yanbing-j/14/orig 2025-06-01T20:58:06.6514013Z * [new branch] gh/yanbing-j/15/base -> origin/gh/yanbing-j/15/base 2025-06-01T20:58:06.6514562Z * [new branch] gh/yanbing-j/15/head -> origin/gh/yanbing-j/15/head 2025-06-01T20:58:06.6515043Z * [new branch] gh/yanbing-j/15/orig -> origin/gh/yanbing-j/15/orig 2025-06-01T20:58:06.6515525Z * [new branch] gh/yanbing-j/18/base -> origin/gh/yanbing-j/18/base 2025-06-01T20:58:06.6516002Z * [new branch] gh/yanbing-j/18/head -> origin/gh/yanbing-j/18/head 2025-06-01T20:58:06.6516478Z * [new branch] gh/yanbing-j/18/orig -> origin/gh/yanbing-j/18/orig 2025-06-01T20:58:06.6516950Z * [new branch] gh/yanbing-j/19/base -> origin/gh/yanbing-j/19/base 2025-06-01T20:58:06.6517434Z * [new branch] gh/yanbing-j/19/head -> origin/gh/yanbing-j/19/head 2025-06-01T20:58:06.6958935Z * [new branch] gh/yanbing-j/19/orig -> origin/gh/yanbing-j/19/orig 2025-06-01T20:58:06.6959519Z * [new branch] gh/yanbing-j/20/base -> origin/gh/yanbing-j/20/base 2025-06-01T20:58:06.6960016Z * [new branch] gh/yanbing-j/20/head -> origin/gh/yanbing-j/20/head 2025-06-01T20:58:06.6960493Z * [new branch] gh/yanbing-j/20/orig -> origin/gh/yanbing-j/20/orig 2025-06-01T20:58:06.6960978Z * [new branch] gh/yanbing-j/21/base -> origin/gh/yanbing-j/21/base 2025-06-01T20:58:06.6961456Z * [new branch] gh/yanbing-j/21/head -> origin/gh/yanbing-j/21/head 2025-06-01T20:58:06.6961930Z * [new branch] gh/yanbing-j/22/base -> origin/gh/yanbing-j/22/base 2025-06-01T20:58:06.6962409Z * [new branch] gh/yanbing-j/22/head -> origin/gh/yanbing-j/22/head 2025-06-01T20:58:06.6962883Z * [new branch] gh/yanbing-j/22/orig -> origin/gh/yanbing-j/22/orig 2025-06-01T20:58:06.6963376Z * [new branch] gh/yanbing-j/23/base -> origin/gh/yanbing-j/23/base 2025-06-01T20:58:06.6963849Z * [new branch] gh/yanbing-j/23/head -> origin/gh/yanbing-j/23/head 2025-06-01T20:58:06.6964314Z * [new branch] gh/yanbing-j/23/orig -> origin/gh/yanbing-j/23/orig 2025-06-01T20:58:06.6964795Z * [new branch] gh/yanbing-j/24/base -> origin/gh/yanbing-j/24/base 2025-06-01T20:58:06.6965277Z * [new branch] gh/yanbing-j/24/head -> origin/gh/yanbing-j/24/head 2025-06-01T20:58:06.6965758Z * [new branch] gh/yanbing-j/24/orig -> origin/gh/yanbing-j/24/orig 2025-06-01T20:58:06.6966224Z * [new branch] gh/yanbing-j/25/base -> origin/gh/yanbing-j/25/base 2025-06-01T20:58:06.6966701Z * [new branch] gh/yanbing-j/25/head -> origin/gh/yanbing-j/25/head 2025-06-01T20:58:06.6967180Z * [new branch] gh/yanbing-j/25/orig -> origin/gh/yanbing-j/25/orig 2025-06-01T20:58:06.6967659Z * [new branch] gh/yanbing-j/26/base -> origin/gh/yanbing-j/26/base 2025-06-01T20:58:06.6968155Z * [new branch] gh/yanbing-j/26/head -> origin/gh/yanbing-j/26/head 2025-06-01T20:58:06.6968638Z * [new branch] gh/yanbing-j/26/orig -> origin/gh/yanbing-j/26/orig 2025-06-01T20:58:06.6969113Z * [new branch] gh/yanbing-j/34/base -> origin/gh/yanbing-j/34/base 2025-06-01T20:58:06.6969598Z * [new branch] gh/yanbing-j/34/head -> origin/gh/yanbing-j/34/head 2025-06-01T20:58:06.6970071Z * [new branch] gh/yanbing-j/34/orig -> origin/gh/yanbing-j/34/orig 2025-06-01T20:58:06.6970550Z * [new branch] gh/yanbing-j/36/base -> origin/gh/yanbing-j/36/base 2025-06-01T20:58:06.6971028Z * [new branch] gh/yanbing-j/36/head -> origin/gh/yanbing-j/36/head 2025-06-01T20:58:06.6971680Z * [new branch] gh/yanbing-j/36/orig -> origin/gh/yanbing-j/36/orig 2025-06-01T20:58:06.6972248Z * [new branch] gh/yanbing-j/37/base -> origin/gh/yanbing-j/37/base 2025-06-01T20:58:06.6972722Z * [new branch] gh/yanbing-j/37/head -> origin/gh/yanbing-j/37/head 2025-06-01T20:58:06.6973205Z * [new branch] gh/yanbing-j/37/orig -> origin/gh/yanbing-j/37/orig 2025-06-01T20:58:06.6973691Z * [new branch] gh/yanboliang/62/base -> origin/gh/yanboliang/62/base 2025-06-01T20:58:06.6974197Z * [new branch] gh/yanboliang/62/head -> origin/gh/yanboliang/62/head 2025-06-01T20:58:06.6974701Z * [new branch] gh/yanboliang/62/orig -> origin/gh/yanboliang/62/orig 2025-06-01T20:58:06.6975176Z * [new branch] gh/ydwu4/194/base -> origin/gh/ydwu4/194/base 2025-06-01T20:58:06.6975641Z * [new branch] gh/ydwu4/194/head -> origin/gh/ydwu4/194/head 2025-06-01T20:58:06.6976095Z * [new branch] gh/ydwu4/194/orig -> origin/gh/ydwu4/194/orig 2025-06-01T20:58:06.6976551Z * [new branch] gh/ydwu4/201/base -> origin/gh/ydwu4/201/base 2025-06-01T20:58:06.6977003Z * [new branch] gh/ydwu4/201/head -> origin/gh/ydwu4/201/head 2025-06-01T20:58:06.6977456Z * [new branch] gh/ydwu4/201/orig -> origin/gh/ydwu4/201/orig 2025-06-01T20:58:06.6977905Z * [new branch] gh/ydwu4/208/base -> origin/gh/ydwu4/208/base 2025-06-01T20:58:06.6978357Z * [new branch] gh/ydwu4/208/head -> origin/gh/ydwu4/208/head 2025-06-01T20:58:06.6978812Z * [new branch] gh/ydwu4/208/orig -> origin/gh/ydwu4/208/orig 2025-06-01T20:58:06.6979254Z * [new branch] gh/ydwu4/219/base -> origin/gh/ydwu4/219/base 2025-06-01T20:58:06.6979716Z * [new branch] gh/ydwu4/219/head -> origin/gh/ydwu4/219/head 2025-06-01T20:58:06.6980172Z * [new branch] gh/ydwu4/219/orig -> origin/gh/ydwu4/219/orig 2025-06-01T20:58:06.6980621Z * [new branch] gh/ydwu4/223/base -> origin/gh/ydwu4/223/base 2025-06-01T20:58:06.6981072Z * [new branch] gh/ydwu4/223/head -> origin/gh/ydwu4/223/head 2025-06-01T20:58:06.7446863Z * [new branch] gh/ydwu4/223/orig -> origin/gh/ydwu4/223/orig 2025-06-01T20:58:06.7448329Z * [new branch] gh/ydwu4/224/base -> origin/gh/ydwu4/224/base 2025-06-01T20:58:06.7448818Z * [new branch] gh/ydwu4/224/head -> origin/gh/ydwu4/224/head 2025-06-01T20:58:06.7449268Z * [new branch] gh/ydwu4/224/orig -> origin/gh/ydwu4/224/orig 2025-06-01T20:58:06.7449726Z * [new branch] gh/ydwu4/225/base -> origin/gh/ydwu4/225/base 2025-06-01T20:58:06.7450203Z * [new branch] gh/ydwu4/225/head -> origin/gh/ydwu4/225/head 2025-06-01T20:58:06.7450652Z * [new branch] gh/ydwu4/225/orig -> origin/gh/ydwu4/225/orig 2025-06-01T20:58:06.7451110Z * [new branch] gh/ydwu4/229/base -> origin/gh/ydwu4/229/base 2025-06-01T20:58:06.7451555Z * [new branch] gh/ydwu4/229/head -> origin/gh/ydwu4/229/head 2025-06-01T20:58:06.7452014Z * [new branch] gh/ydwu4/229/orig -> origin/gh/ydwu4/229/orig 2025-06-01T20:58:06.7452472Z * [new branch] gh/ydwu4/230/base -> origin/gh/ydwu4/230/base 2025-06-01T20:58:06.7453869Z * [new branch] gh/ydwu4/230/head -> origin/gh/ydwu4/230/head 2025-06-01T20:58:06.7454335Z * [new branch] gh/ydwu4/230/orig -> origin/gh/ydwu4/230/orig 2025-06-01T20:58:06.7454783Z * [new branch] gh/ydwu4/231/base -> origin/gh/ydwu4/231/base 2025-06-01T20:58:06.7455392Z * [new branch] gh/ydwu4/231/head -> origin/gh/ydwu4/231/head 2025-06-01T20:58:06.7455929Z * [new branch] gh/ydwu4/231/orig -> origin/gh/ydwu4/231/orig 2025-06-01T20:58:06.7456398Z * [new branch] gh/ydwu4/232/base -> origin/gh/ydwu4/232/base 2025-06-01T20:58:06.7456865Z * [new branch] gh/ydwu4/232/head -> origin/gh/ydwu4/232/head 2025-06-01T20:58:06.7457315Z * [new branch] gh/ydwu4/232/orig -> origin/gh/ydwu4/232/orig 2025-06-01T20:58:06.7457777Z * [new branch] gh/ydwu4/233/base -> origin/gh/ydwu4/233/base 2025-06-01T20:58:06.7458232Z * [new branch] gh/ydwu4/233/head -> origin/gh/ydwu4/233/head 2025-06-01T20:58:06.7459697Z * [new branch] gh/ydwu4/233/orig -> origin/gh/ydwu4/233/orig 2025-06-01T20:58:06.7460160Z * [new branch] gh/ydwu4/234/base -> origin/gh/ydwu4/234/base 2025-06-01T20:58:06.7460610Z * [new branch] gh/ydwu4/234/head -> origin/gh/ydwu4/234/head 2025-06-01T20:58:06.7461078Z * [new branch] gh/ydwu4/234/orig -> origin/gh/ydwu4/234/orig 2025-06-01T20:58:06.7461528Z * [new branch] gh/ydwu4/235/base -> origin/gh/ydwu4/235/base 2025-06-01T20:58:06.7461983Z * [new branch] gh/ydwu4/235/head -> origin/gh/ydwu4/235/head 2025-06-01T20:58:06.7462441Z * [new branch] gh/ydwu4/235/orig -> origin/gh/ydwu4/235/orig 2025-06-01T20:58:06.7462888Z * [new branch] gh/ydwu4/236/base -> origin/gh/ydwu4/236/base 2025-06-01T20:58:06.7463344Z * [new branch] gh/ydwu4/236/head -> origin/gh/ydwu4/236/head 2025-06-01T20:58:06.7463795Z * [new branch] gh/ydwu4/236/orig -> origin/gh/ydwu4/236/orig 2025-06-01T20:58:06.7465191Z * [new branch] gh/ydwu4/237/base -> origin/gh/ydwu4/237/base 2025-06-01T20:58:06.7465662Z * [new branch] gh/ydwu4/237/head -> origin/gh/ydwu4/237/head 2025-06-01T20:58:06.7466148Z * [new branch] gh/ydwu4/237/orig -> origin/gh/ydwu4/237/orig 2025-06-01T20:58:06.7466608Z * [new branch] gh/ydwu4/238/base -> origin/gh/ydwu4/238/base 2025-06-01T20:58:06.7467053Z * [new branch] gh/ydwu4/238/head -> origin/gh/ydwu4/238/head 2025-06-01T20:58:06.7467506Z * [new branch] gh/ydwu4/238/orig -> origin/gh/ydwu4/238/orig 2025-06-01T20:58:06.7467953Z * [new branch] gh/ydwu4/239/base -> origin/gh/ydwu4/239/base 2025-06-01T20:58:06.7468418Z * [new branch] gh/ydwu4/239/head -> origin/gh/ydwu4/239/head 2025-06-01T20:58:06.7468872Z * [new branch] gh/ydwu4/239/orig -> origin/gh/ydwu4/239/orig 2025-06-01T20:58:06.7469318Z * [new branch] gh/ydwu4/240/base -> origin/gh/ydwu4/240/base 2025-06-01T20:58:06.7469778Z * [new branch] gh/ydwu4/240/head -> origin/gh/ydwu4/240/head 2025-06-01T20:58:06.7471187Z * [new branch] gh/ydwu4/240/orig -> origin/gh/ydwu4/240/orig 2025-06-01T20:58:06.7471651Z * [new branch] gh/ydwu4/241/base -> origin/gh/ydwu4/241/base 2025-06-01T20:58:06.7472092Z * [new branch] gh/ydwu4/241/head -> origin/gh/ydwu4/241/head 2025-06-01T20:58:06.7472545Z * [new branch] gh/ydwu4/241/orig -> origin/gh/ydwu4/241/orig 2025-06-01T20:58:06.7473004Z * [new branch] gh/ydwu4/242/base -> origin/gh/ydwu4/242/base 2025-06-01T20:58:06.7473448Z * [new branch] gh/ydwu4/242/head -> origin/gh/ydwu4/242/head 2025-06-01T20:58:06.8255420Z * [new branch] gh/ydwu4/242/orig -> origin/gh/ydwu4/242/orig 2025-06-01T20:58:06.8255947Z * [new branch] gh/ydwu4/243/base -> origin/gh/ydwu4/243/base 2025-06-01T20:58:06.8256575Z * [new branch] gh/ydwu4/243/head -> origin/gh/ydwu4/243/head 2025-06-01T20:58:06.8257127Z * [new branch] gh/ydwu4/243/orig -> origin/gh/ydwu4/243/orig 2025-06-01T20:58:06.8257577Z * [new branch] gh/ydwu4/244/base -> origin/gh/ydwu4/244/base 2025-06-01T20:58:06.8258039Z * [new branch] gh/ydwu4/244/head -> origin/gh/ydwu4/244/head 2025-06-01T20:58:06.8258489Z * [new branch] gh/ydwu4/244/orig -> origin/gh/ydwu4/244/orig 2025-06-01T20:58:06.8258947Z * [new branch] gh/ydwu4/245/base -> origin/gh/ydwu4/245/base 2025-06-01T20:58:06.8259403Z * [new branch] gh/ydwu4/245/head -> origin/gh/ydwu4/245/head 2025-06-01T20:58:06.8259852Z * [new branch] gh/ydwu4/245/orig -> origin/gh/ydwu4/245/orig 2025-06-01T20:58:06.8260305Z * [new branch] gh/ydwu4/246/base -> origin/gh/ydwu4/246/base 2025-06-01T20:58:06.8260754Z * [new branch] gh/ydwu4/246/head -> origin/gh/ydwu4/246/head 2025-06-01T20:58:06.8261211Z * [new branch] gh/ydwu4/246/orig -> origin/gh/ydwu4/246/orig 2025-06-01T20:58:06.8261662Z * [new branch] gh/ydwu4/247/base -> origin/gh/ydwu4/247/base 2025-06-01T20:58:06.8262105Z * [new branch] gh/ydwu4/247/head -> origin/gh/ydwu4/247/head 2025-06-01T20:58:06.8262555Z * [new branch] gh/ydwu4/247/orig -> origin/gh/ydwu4/247/orig 2025-06-01T20:58:06.8263016Z * [new branch] gh/ydwu4/248/base -> origin/gh/ydwu4/248/base 2025-06-01T20:58:06.8263467Z * [new branch] gh/ydwu4/248/head -> origin/gh/ydwu4/248/head 2025-06-01T20:58:06.8264128Z * [new branch] gh/ydwu4/248/orig -> origin/gh/ydwu4/248/orig 2025-06-01T20:58:06.8264585Z * [new branch] gh/ydwu4/249/base -> origin/gh/ydwu4/249/base 2025-06-01T20:58:06.8265057Z * [new branch] gh/ydwu4/249/head -> origin/gh/ydwu4/249/head 2025-06-01T20:58:06.8265503Z * [new branch] gh/ydwu4/249/orig -> origin/gh/ydwu4/249/orig 2025-06-01T20:58:06.8265961Z * [new branch] gh/ydwu4/250/base -> origin/gh/ydwu4/250/base 2025-06-01T20:58:06.8266420Z * [new branch] gh/ydwu4/250/head -> origin/gh/ydwu4/250/head 2025-06-01T20:58:06.8266869Z * [new branch] gh/ydwu4/250/orig -> origin/gh/ydwu4/250/orig 2025-06-01T20:58:06.8267333Z * [new branch] gh/ydwu4/251/base -> origin/gh/ydwu4/251/base 2025-06-01T20:58:06.8267775Z * [new branch] gh/ydwu4/251/head -> origin/gh/ydwu4/251/head 2025-06-01T20:58:06.8268231Z * [new branch] gh/ydwu4/251/orig -> origin/gh/ydwu4/251/orig 2025-06-01T20:58:06.8268674Z * [new branch] gh/ydwu4/252/base -> origin/gh/ydwu4/252/base 2025-06-01T20:58:06.8269139Z * [new branch] gh/ydwu4/252/head -> origin/gh/ydwu4/252/head 2025-06-01T20:58:06.8269592Z * [new branch] gh/ydwu4/252/orig -> origin/gh/ydwu4/252/orig 2025-06-01T20:58:06.8270038Z * [new branch] gh/ydwu4/253/base -> origin/gh/ydwu4/253/base 2025-06-01T20:58:06.8270489Z * [new branch] gh/ydwu4/253/head -> origin/gh/ydwu4/253/head 2025-06-01T20:58:06.8270933Z * [new branch] gh/ydwu4/253/orig -> origin/gh/ydwu4/253/orig 2025-06-01T20:58:06.8271386Z * [new branch] gh/ydwu4/254/base -> origin/gh/ydwu4/254/base 2025-06-01T20:58:06.8271841Z * [new branch] gh/ydwu4/254/head -> origin/gh/ydwu4/254/head 2025-06-01T20:58:06.8272285Z * [new branch] gh/ydwu4/254/orig -> origin/gh/ydwu4/254/orig 2025-06-01T20:58:06.8272854Z * [new branch] gh/ydwu4/255/base -> origin/gh/ydwu4/255/base 2025-06-01T20:58:06.8273371Z * [new branch] gh/ydwu4/255/head -> origin/gh/ydwu4/255/head 2025-06-01T20:58:06.8273823Z * [new branch] gh/ydwu4/255/orig -> origin/gh/ydwu4/255/orig 2025-06-01T20:58:06.8274472Z * [new branch] gh/ydwu4/256/base -> origin/gh/ydwu4/256/base 2025-06-01T20:58:06.8274926Z * [new branch] gh/ydwu4/256/head -> origin/gh/ydwu4/256/head 2025-06-01T20:58:06.8275375Z * [new branch] gh/ydwu4/256/orig -> origin/gh/ydwu4/256/orig 2025-06-01T20:58:06.8275817Z * [new branch] gh/yf225/133/base -> origin/gh/yf225/133/base 2025-06-01T20:58:06.8276264Z * [new branch] gh/yf225/133/head -> origin/gh/yf225/133/head 2025-06-01T20:58:06.8276702Z * [new branch] gh/yf225/164/base -> origin/gh/yf225/164/base 2025-06-01T20:58:06.8277173Z * [new branch] gh/yf225/164/head -> origin/gh/yf225/164/head 2025-06-01T20:58:06.8277623Z * [new branch] gh/yf225/164/orig -> origin/gh/yf225/164/orig 2025-06-01T20:58:06.8822523Z * [new branch] gh/yf225/167/base -> origin/gh/yf225/167/base 2025-06-01T20:58:06.8823034Z * [new branch] gh/yf225/167/head -> origin/gh/yf225/167/head 2025-06-01T20:58:06.8823490Z * [new branch] gh/yf225/167/orig -> origin/gh/yf225/167/orig 2025-06-01T20:58:06.8823943Z * [new branch] gh/yf225/169/base -> origin/gh/yf225/169/base 2025-06-01T20:58:06.8824392Z * [new branch] gh/yf225/169/head -> origin/gh/yf225/169/head 2025-06-01T20:58:06.8824844Z * [new branch] gh/yf225/169/orig -> origin/gh/yf225/169/orig 2025-06-01T20:58:06.8825296Z * [new branch] gh/yf225/170/base -> origin/gh/yf225/170/base 2025-06-01T20:58:06.8825765Z * [new branch] gh/yf225/170/head -> origin/gh/yf225/170/head 2025-06-01T20:58:06.8826217Z * [new branch] gh/yf225/170/orig -> origin/gh/yf225/170/orig 2025-06-01T20:58:06.8826656Z * [new branch] gh/yf225/171/base -> origin/gh/yf225/171/base 2025-06-01T20:58:06.8827104Z * [new branch] gh/yf225/171/head -> origin/gh/yf225/171/head 2025-06-01T20:58:06.8827546Z * [new branch] gh/yf225/171/orig -> origin/gh/yf225/171/orig 2025-06-01T20:58:06.8827999Z * [new branch] gh/yf225/172/base -> origin/gh/yf225/172/base 2025-06-01T20:58:06.8828445Z * [new branch] gh/yf225/172/head -> origin/gh/yf225/172/head 2025-06-01T20:58:06.8828885Z * [new branch] gh/yf225/172/orig -> origin/gh/yf225/172/orig 2025-06-01T20:58:06.8829335Z * [new branch] gh/yf225/173/base -> origin/gh/yf225/173/base 2025-06-01T20:58:06.8829778Z * [new branch] gh/yf225/173/head -> origin/gh/yf225/173/head 2025-06-01T20:58:06.8830227Z * [new branch] gh/yf225/173/orig -> origin/gh/yf225/173/orig 2025-06-01T20:58:06.8830675Z * [new branch] gh/yf225/174/base -> origin/gh/yf225/174/base 2025-06-01T20:58:06.8831121Z * [new branch] gh/yf225/174/head -> origin/gh/yf225/174/head 2025-06-01T20:58:06.8831570Z * [new branch] gh/yf225/174/orig -> origin/gh/yf225/174/orig 2025-06-01T20:58:06.8832012Z * [new branch] gh/yf225/175/base -> origin/gh/yf225/175/base 2025-06-01T20:58:06.8832459Z * [new branch] gh/yf225/175/head -> origin/gh/yf225/175/head 2025-06-01T20:58:06.8832901Z * [new branch] gh/yf225/176/base -> origin/gh/yf225/176/base 2025-06-01T20:58:06.8833350Z * [new branch] gh/yf225/176/head -> origin/gh/yf225/176/head 2025-06-01T20:58:06.8833950Z * [new branch] gh/yf225/176/orig -> origin/gh/yf225/176/orig 2025-06-01T20:58:06.8834538Z * [new branch] gh/yf225/177/base -> origin/gh/yf225/177/base 2025-06-01T20:58:06.8834999Z * [new branch] gh/yf225/177/head -> origin/gh/yf225/177/head 2025-06-01T20:58:06.8835441Z * [new branch] gh/yf225/177/orig -> origin/gh/yf225/177/orig 2025-06-01T20:58:06.8835893Z * [new branch] gh/yf225/178/base -> origin/gh/yf225/178/base 2025-06-01T20:58:06.8836348Z * [new branch] gh/yf225/178/head -> origin/gh/yf225/178/head 2025-06-01T20:58:06.8836792Z * [new branch] gh/yf225/178/orig -> origin/gh/yf225/178/orig 2025-06-01T20:58:06.8837236Z * [new branch] gh/yf225/93/base -> origin/gh/yf225/93/base 2025-06-01T20:58:06.8837675Z * [new branch] gh/yf225/93/head -> origin/gh/yf225/93/head 2025-06-01T20:58:06.8838158Z * [new branch] gh/yifuwang/152/base -> origin/gh/yifuwang/152/base 2025-06-01T20:58:06.8838643Z * [new branch] gh/yifuwang/152/head -> origin/gh/yifuwang/152/head 2025-06-01T20:58:06.8839132Z * [new branch] gh/yifuwang/152/orig -> origin/gh/yifuwang/152/orig 2025-06-01T20:58:06.8839622Z * [new branch] gh/yifuwang/185/base -> origin/gh/yifuwang/185/base 2025-06-01T20:58:06.8840095Z * [new branch] gh/yifuwang/185/head -> origin/gh/yifuwang/185/head 2025-06-01T20:58:06.8840592Z * [new branch] gh/yifuwang/185/orig -> origin/gh/yifuwang/185/orig 2025-06-01T20:58:06.8841077Z * [new branch] gh/yifuwang/186/base -> origin/gh/yifuwang/186/base 2025-06-01T20:58:06.8841553Z * [new branch] gh/yifuwang/186/head -> origin/gh/yifuwang/186/head 2025-06-01T20:58:06.8842036Z * [new branch] gh/yifuwang/186/orig -> origin/gh/yifuwang/186/orig 2025-06-01T20:58:06.8842524Z * [new branch] gh/yifuwang/187/base -> origin/gh/yifuwang/187/base 2025-06-01T20:58:06.8843013Z * [new branch] gh/yifuwang/187/head -> origin/gh/yifuwang/187/head 2025-06-01T20:58:06.8843491Z * [new branch] gh/yifuwang/187/orig -> origin/gh/yifuwang/187/orig 2025-06-01T20:58:06.8843972Z * [new branch] gh/yifuwang/188/base -> origin/gh/yifuwang/188/base 2025-06-01T20:58:06.8844463Z * [new branch] gh/yifuwang/188/head -> origin/gh/yifuwang/188/head 2025-06-01T20:58:06.9341510Z * [new branch] gh/yifuwang/188/orig -> origin/gh/yifuwang/188/orig 2025-06-01T20:58:06.9342117Z * [new branch] gh/yifuwang/189/base -> origin/gh/yifuwang/189/base 2025-06-01T20:58:06.9342617Z * [new branch] gh/yifuwang/189/head -> origin/gh/yifuwang/189/head 2025-06-01T20:58:06.9343110Z * [new branch] gh/yifuwang/189/orig -> origin/gh/yifuwang/189/orig 2025-06-01T20:58:06.9343600Z * [new branch] gh/yifuwang/190/base -> origin/gh/yifuwang/190/base 2025-06-01T20:58:06.9344075Z * [new branch] gh/yifuwang/190/head -> origin/gh/yifuwang/190/head 2025-06-01T20:58:06.9344557Z * [new branch] gh/yifuwang/190/orig -> origin/gh/yifuwang/190/orig 2025-06-01T20:58:06.9345042Z * [new branch] gh/yifuwang/191/base -> origin/gh/yifuwang/191/base 2025-06-01T20:58:06.9345516Z * [new branch] gh/yifuwang/191/head -> origin/gh/yifuwang/191/head 2025-06-01T20:58:06.9346001Z * [new branch] gh/yifuwang/191/orig -> origin/gh/yifuwang/191/orig 2025-06-01T20:58:06.9346481Z * [new branch] gh/yifuwang/192/base -> origin/gh/yifuwang/192/base 2025-06-01T20:58:06.9346967Z * [new branch] gh/yifuwang/192/head -> origin/gh/yifuwang/192/head 2025-06-01T20:58:06.9348088Z * [new branch] gh/yifuwang/192/orig -> origin/gh/yifuwang/192/orig 2025-06-01T20:58:06.9348983Z * [new branch] gh/yifuwang/194/base -> origin/gh/yifuwang/194/base 2025-06-01T20:58:06.9349487Z * [new branch] gh/yifuwang/194/head -> origin/gh/yifuwang/194/head 2025-06-01T20:58:06.9349963Z * [new branch] gh/yifuwang/194/orig -> origin/gh/yifuwang/194/orig 2025-06-01T20:58:06.9350452Z * [new branch] gh/yifuwang/195/base -> origin/gh/yifuwang/195/base 2025-06-01T20:58:06.9350949Z * [new branch] gh/yifuwang/195/head -> origin/gh/yifuwang/195/head 2025-06-01T20:58:06.9351424Z * [new branch] gh/yifuwang/195/orig -> origin/gh/yifuwang/195/orig 2025-06-01T20:58:06.9351906Z * [new branch] gh/yifuwang/196/base -> origin/gh/yifuwang/196/base 2025-06-01T20:58:06.9352384Z * [new branch] gh/yifuwang/196/head -> origin/gh/yifuwang/196/head 2025-06-01T20:58:06.9352877Z * [new branch] gh/yifuwang/196/orig -> origin/gh/yifuwang/196/orig 2025-06-01T20:58:06.9353356Z * [new branch] gh/yiming0416/1/base -> origin/gh/yiming0416/1/base 2025-06-01T20:58:06.9353836Z * [new branch] gh/yiming0416/1/head -> origin/gh/yiming0416/1/head 2025-06-01T20:58:06.9354422Z * [new branch] gh/yiming0416/2/base -> origin/gh/yiming0416/2/base 2025-06-01T20:58:06.9354908Z * [new branch] gh/yiming0416/2/head -> origin/gh/yiming0416/2/head 2025-06-01T20:58:06.9355394Z * [new branch] gh/yiming0416/3/base -> origin/gh/yiming0416/3/base 2025-06-01T20:58:06.9355867Z * [new branch] gh/yiming0416/3/head -> origin/gh/yiming0416/3/head 2025-06-01T20:58:06.9356355Z * [new branch] gh/yiming0416/4/base -> origin/gh/yiming0416/4/base 2025-06-01T20:58:06.9356841Z * [new branch] gh/yiming0416/4/head -> origin/gh/yiming0416/4/head 2025-06-01T20:58:06.9357325Z * [new branch] gh/yiming0416/5/base -> origin/gh/yiming0416/5/base 2025-06-01T20:58:06.9357805Z * [new branch] gh/yiming0416/5/head -> origin/gh/yiming0416/5/head 2025-06-01T20:58:06.9358282Z * [new branch] gh/yiming0416/5/orig -> origin/gh/yiming0416/5/orig 2025-06-01T20:58:06.9358765Z * [new branch] gh/yiming0416/6/base -> origin/gh/yiming0416/6/base 2025-06-01T20:58:06.9359245Z * [new branch] gh/yiming0416/6/head -> origin/gh/yiming0416/6/head 2025-06-01T20:58:06.9359718Z * [new branch] gh/yiming0416/6/orig -> origin/gh/yiming0416/6/orig 2025-06-01T20:58:06.9360207Z * [new branch] gh/yiming0416/7/base -> origin/gh/yiming0416/7/base 2025-06-01T20:58:06.9360684Z * [new branch] gh/yiming0416/7/head -> origin/gh/yiming0416/7/head 2025-06-01T20:58:06.9361178Z * [new branch] gh/yiming0416/7/orig -> origin/gh/yiming0416/7/orig 2025-06-01T20:58:06.9361656Z * [new branch] gh/ysiraichi/79/base -> origin/gh/ysiraichi/79/base 2025-06-01T20:58:06.9362139Z * [new branch] gh/ysiraichi/79/head -> origin/gh/ysiraichi/79/head 2025-06-01T20:58:06.9362624Z * [new branch] gh/ysiraichi/79/orig -> origin/gh/ysiraichi/79/orig 2025-06-01T20:58:06.9363102Z * [new branch] gh/ysiraichi/80/base -> origin/gh/ysiraichi/80/base 2025-06-01T20:58:06.9363586Z * [new branch] gh/ysiraichi/80/head -> origin/gh/ysiraichi/80/head 2025-06-01T20:58:06.9364068Z * [new branch] gh/ysiraichi/80/orig -> origin/gh/ysiraichi/80/orig 2025-06-01T20:58:06.9364552Z * [new branch] gh/ysiraichi/81/base -> origin/gh/ysiraichi/81/base 2025-06-01T20:58:06.9365038Z * [new branch] gh/ysiraichi/81/head -> origin/gh/ysiraichi/81/head 2025-06-01T20:58:06.9820861Z * [new branch] gh/ysiraichi/81/orig -> origin/gh/ysiraichi/81/orig 2025-06-01T20:58:06.9821510Z * [new branch] gh/ysiraichi/82/base -> origin/gh/ysiraichi/82/base 2025-06-01T20:58:06.9822009Z * [new branch] gh/ysiraichi/82/head -> origin/gh/ysiraichi/82/head 2025-06-01T20:58:06.9822496Z * [new branch] gh/ysiraichi/82/orig -> origin/gh/ysiraichi/82/orig 2025-06-01T20:58:06.9822988Z * [new branch] gh/ysiraichi/84/base -> origin/gh/ysiraichi/84/base 2025-06-01T20:58:06.9823470Z * [new branch] gh/ysiraichi/84/head -> origin/gh/ysiraichi/84/head 2025-06-01T20:58:06.9823960Z * [new branch] gh/ysiraichi/84/orig -> origin/gh/ysiraichi/84/orig 2025-06-01T20:58:06.9824448Z * [new branch] gh/ysiraichi/85/base -> origin/gh/ysiraichi/85/base 2025-06-01T20:58:06.9824932Z * [new branch] gh/ysiraichi/85/head -> origin/gh/ysiraichi/85/head 2025-06-01T20:58:06.9825424Z * [new branch] gh/ysiraichi/85/orig -> origin/gh/ysiraichi/85/orig 2025-06-01T20:58:06.9825899Z * [new branch] gh/ysiraichi/86/base -> origin/gh/ysiraichi/86/base 2025-06-01T20:58:06.9826394Z * [new branch] gh/ysiraichi/86/head -> origin/gh/ysiraichi/86/head 2025-06-01T20:58:06.9826878Z * [new branch] gh/ysiraichi/86/orig -> origin/gh/ysiraichi/86/orig 2025-06-01T20:58:06.9827374Z * [new branch] gh/ysiraichi/87/base -> origin/gh/ysiraichi/87/base 2025-06-01T20:58:06.9827867Z * [new branch] gh/ysiraichi/87/head -> origin/gh/ysiraichi/87/head 2025-06-01T20:58:06.9828352Z * [new branch] gh/ysiraichi/87/orig -> origin/gh/ysiraichi/87/orig 2025-06-01T20:58:06.9828843Z * [new branch] gh/ysiraichi/88/base -> origin/gh/ysiraichi/88/base 2025-06-01T20:58:06.9829324Z * [new branch] gh/ysiraichi/88/head -> origin/gh/ysiraichi/88/head 2025-06-01T20:58:06.9829821Z * [new branch] gh/ysiraichi/88/orig -> origin/gh/ysiraichi/88/orig 2025-06-01T20:58:06.9830305Z * [new branch] gh/yuguo68/1/base -> origin/gh/yuguo68/1/base 2025-06-01T20:58:06.9830771Z * [new branch] gh/yuguo68/1/head -> origin/gh/yuguo68/1/head 2025-06-01T20:58:06.9831231Z * [new branch] gh/yuguo68/1/orig -> origin/gh/yuguo68/1/orig 2025-06-01T20:58:06.9831681Z * [new branch] gh/yuguo68/2/base -> origin/gh/yuguo68/2/base 2025-06-01T20:58:06.9832142Z * [new branch] gh/yuguo68/2/head -> origin/gh/yuguo68/2/head 2025-06-01T20:58:06.9832591Z * [new branch] gh/yuguo68/2/orig -> origin/gh/yuguo68/2/orig 2025-06-01T20:58:06.9833057Z * [new branch] gh/zhuhaozhe/28/base -> origin/gh/zhuhaozhe/28/base 2025-06-01T20:58:06.9833553Z * [new branch] gh/zhuhaozhe/28/head -> origin/gh/zhuhaozhe/28/head 2025-06-01T20:58:06.9834099Z * [new branch] gh/zhuhaozhe/28/orig -> origin/gh/zhuhaozhe/28/orig 2025-06-01T20:58:06.9834591Z * [new branch] gh/zhuhaozhe/29/base -> origin/gh/zhuhaozhe/29/base 2025-06-01T20:58:06.9835072Z * [new branch] gh/zhuhaozhe/29/head -> origin/gh/zhuhaozhe/29/head 2025-06-01T20:58:06.9835553Z * [new branch] gh/zhuhaozhe/29/orig -> origin/gh/zhuhaozhe/29/orig 2025-06-01T20:58:06.9836038Z * [new branch] gh/zhuhaozhe/31/base -> origin/gh/zhuhaozhe/31/base 2025-06-01T20:58:06.9836519Z * [new branch] gh/zhuhaozhe/31/head -> origin/gh/zhuhaozhe/31/head 2025-06-01T20:58:06.9837009Z * [new branch] gh/zhuhaozhe/31/orig -> origin/gh/zhuhaozhe/31/orig 2025-06-01T20:58:06.9837496Z * [new branch] gh/zhuhaozhe/32/base -> origin/gh/zhuhaozhe/32/base 2025-06-01T20:58:06.9838147Z * [new branch] gh/zhuhaozhe/32/head -> origin/gh/zhuhaozhe/32/head 2025-06-01T20:58:06.9838644Z * [new branch] gh/zhuhaozhe/32/orig -> origin/gh/zhuhaozhe/32/orig 2025-06-01T20:58:06.9839121Z * [new branch] gh/zhuhaozhe/33/base -> origin/gh/zhuhaozhe/33/base 2025-06-01T20:58:06.9839619Z * [new branch] gh/zhuhaozhe/33/head -> origin/gh/zhuhaozhe/33/head 2025-06-01T20:58:06.9840108Z * [new branch] gh/zhuhaozhe/33/orig -> origin/gh/zhuhaozhe/33/orig 2025-06-01T20:58:06.9840587Z * [new branch] gh/zhxchen17/1/base -> origin/gh/zhxchen17/1/base 2025-06-01T20:58:06.9841067Z * [new branch] gh/zhxchen17/1/head -> origin/gh/zhxchen17/1/head 2025-06-01T20:58:06.9841638Z * [new branch] gh/zhxchen17/1/orig -> origin/gh/zhxchen17/1/orig 2025-06-01T20:58:06.9842137Z * [new branch] gh/zhxchen17/10/base -> origin/gh/zhxchen17/10/base 2025-06-01T20:58:06.9842617Z * [new branch] gh/zhxchen17/10/head -> origin/gh/zhxchen17/10/head 2025-06-01T20:58:06.9843105Z * [new branch] gh/zhxchen17/10/orig -> origin/gh/zhxchen17/10/orig 2025-06-01T20:58:07.0305763Z * [new branch] gh/zhxchen17/11/base -> origin/gh/zhxchen17/11/base 2025-06-01T20:58:07.0306305Z * [new branch] gh/zhxchen17/11/head -> origin/gh/zhxchen17/11/head 2025-06-01T20:58:07.0306801Z * [new branch] gh/zhxchen17/11/orig -> origin/gh/zhxchen17/11/orig 2025-06-01T20:58:07.0307283Z * [new branch] gh/zhxchen17/12/base -> origin/gh/zhxchen17/12/base 2025-06-01T20:58:07.0307763Z * [new branch] gh/zhxchen17/12/head -> origin/gh/zhxchen17/12/head 2025-06-01T20:58:07.0308253Z * [new branch] gh/zhxchen17/12/orig -> origin/gh/zhxchen17/12/orig 2025-06-01T20:58:07.0308792Z * [new branch] gh/zhxchen17/13/base -> origin/gh/zhxchen17/13/base 2025-06-01T20:58:07.0309327Z * [new branch] gh/zhxchen17/13/head -> origin/gh/zhxchen17/13/head 2025-06-01T20:58:07.0309811Z * [new branch] gh/zhxchen17/13/orig -> origin/gh/zhxchen17/13/orig 2025-06-01T20:58:07.0310282Z * [new branch] gh/zhxchen17/14/base -> origin/gh/zhxchen17/14/base 2025-06-01T20:58:07.0310761Z * [new branch] gh/zhxchen17/14/head -> origin/gh/zhxchen17/14/head 2025-06-01T20:58:07.0311231Z * [new branch] gh/zhxchen17/14/orig -> origin/gh/zhxchen17/14/orig 2025-06-01T20:58:07.0311711Z * [new branch] gh/zhxchen17/15/base -> origin/gh/zhxchen17/15/base 2025-06-01T20:58:07.0312198Z * [new branch] gh/zhxchen17/15/head -> origin/gh/zhxchen17/15/head 2025-06-01T20:58:07.0312668Z * [new branch] gh/zhxchen17/15/orig -> origin/gh/zhxchen17/15/orig 2025-06-01T20:58:07.0313154Z * [new branch] gh/zhxchen17/16/base -> origin/gh/zhxchen17/16/base 2025-06-01T20:58:07.0313631Z * [new branch] gh/zhxchen17/16/head -> origin/gh/zhxchen17/16/head 2025-06-01T20:58:07.0314158Z * [new branch] gh/zhxchen17/16/orig -> origin/gh/zhxchen17/16/orig 2025-06-01T20:58:07.0314631Z * [new branch] gh/zhxchen17/17/base -> origin/gh/zhxchen17/17/base 2025-06-01T20:58:07.0315110Z * [new branch] gh/zhxchen17/17/head -> origin/gh/zhxchen17/17/head 2025-06-01T20:58:07.0315587Z * [new branch] gh/zhxchen17/17/orig -> origin/gh/zhxchen17/17/orig 2025-06-01T20:58:07.0316058Z * [new branch] gh/zhxchen17/18/base -> origin/gh/zhxchen17/18/base 2025-06-01T20:58:07.0316537Z * [new branch] gh/zhxchen17/18/head -> origin/gh/zhxchen17/18/head 2025-06-01T20:58:07.0317155Z * [new branch] gh/zhxchen17/18/orig -> origin/gh/zhxchen17/18/orig 2025-06-01T20:58:07.0317715Z * [new branch] gh/zhxchen17/19/base -> origin/gh/zhxchen17/19/base 2025-06-01T20:58:07.0318207Z * [new branch] gh/zhxchen17/19/head -> origin/gh/zhxchen17/19/head 2025-06-01T20:58:07.0318679Z * [new branch] gh/zhxchen17/19/orig -> origin/gh/zhxchen17/19/orig 2025-06-01T20:58:07.0319173Z * [new branch] gh/zhxchen17/2/base -> origin/gh/zhxchen17/2/base 2025-06-01T20:58:07.0319654Z * [new branch] gh/zhxchen17/2/head -> origin/gh/zhxchen17/2/head 2025-06-01T20:58:07.0320131Z * [new branch] gh/zhxchen17/2/orig -> origin/gh/zhxchen17/2/orig 2025-06-01T20:58:07.0320614Z * [new branch] gh/zhxchen17/20/base -> origin/gh/zhxchen17/20/base 2025-06-01T20:58:07.0321087Z * [new branch] gh/zhxchen17/20/head -> origin/gh/zhxchen17/20/head 2025-06-01T20:58:07.0321575Z * [new branch] gh/zhxchen17/20/orig -> origin/gh/zhxchen17/20/orig 2025-06-01T20:58:07.0322055Z * [new branch] gh/zhxchen17/21/base -> origin/gh/zhxchen17/21/base 2025-06-01T20:58:07.0322541Z * [new branch] gh/zhxchen17/21/head -> origin/gh/zhxchen17/21/head 2025-06-01T20:58:07.0323025Z * [new branch] gh/zhxchen17/21/orig -> origin/gh/zhxchen17/21/orig 2025-06-01T20:58:07.0323498Z * [new branch] gh/zhxchen17/3/base -> origin/gh/zhxchen17/3/base 2025-06-01T20:58:07.0323977Z * [new branch] gh/zhxchen17/3/head -> origin/gh/zhxchen17/3/head 2025-06-01T20:58:07.0324449Z * [new branch] gh/zhxchen17/3/orig -> origin/gh/zhxchen17/3/orig 2025-06-01T20:58:07.0324929Z * [new branch] gh/zhxchen17/4/base -> origin/gh/zhxchen17/4/base 2025-06-01T20:58:07.0325398Z * [new branch] gh/zhxchen17/4/head -> origin/gh/zhxchen17/4/head 2025-06-01T20:58:07.0325883Z * [new branch] gh/zhxchen17/4/orig -> origin/gh/zhxchen17/4/orig 2025-06-01T20:58:07.0326366Z * [new branch] gh/zhxchen17/5/base -> origin/gh/zhxchen17/5/base 2025-06-01T20:58:07.0326839Z * [new branch] gh/zhxchen17/5/head -> origin/gh/zhxchen17/5/head 2025-06-01T20:58:07.0327318Z * [new branch] gh/zhxchen17/5/orig -> origin/gh/zhxchen17/5/orig 2025-06-01T20:58:07.0327788Z * [new branch] gh/zhxchen17/6/base -> origin/gh/zhxchen17/6/base 2025-06-01T20:58:07.0328262Z * [new branch] gh/zhxchen17/6/head -> origin/gh/zhxchen17/6/head 2025-06-01T20:58:07.0787831Z * [new branch] gh/zhxchen17/6/orig -> origin/gh/zhxchen17/6/orig 2025-06-01T20:58:07.0788376Z * [new branch] gh/zhxchen17/7/base -> origin/gh/zhxchen17/7/base 2025-06-01T20:58:07.0788865Z * [new branch] gh/zhxchen17/7/head -> origin/gh/zhxchen17/7/head 2025-06-01T20:58:07.0789385Z * [new branch] gh/zhxchen17/7/orig -> origin/gh/zhxchen17/7/orig 2025-06-01T20:58:07.0789861Z * [new branch] gh/zhxchen17/8/base -> origin/gh/zhxchen17/8/base 2025-06-01T20:58:07.0790332Z * [new branch] gh/zhxchen17/8/head -> origin/gh/zhxchen17/8/head 2025-06-01T20:58:07.0790809Z * [new branch] gh/zhxchen17/8/orig -> origin/gh/zhxchen17/8/orig 2025-06-01T20:58:07.0791356Z * [new branch] gh/zhxchen17/9/base -> origin/gh/zhxchen17/9/base 2025-06-01T20:58:07.0791950Z * [new branch] gh/zhxchen17/9/head -> origin/gh/zhxchen17/9/head 2025-06-01T20:58:07.0792421Z * [new branch] gh/zhxchen17/9/orig -> origin/gh/zhxchen17/9/orig 2025-06-01T20:58:07.0792893Z * [new branch] gh/zklaus/1/base -> origin/gh/zklaus/1/base 2025-06-01T20:58:07.0793488Z * [new branch] gh/zklaus/1/head -> origin/gh/zklaus/1/head 2025-06-01T20:58:07.0794094Z * [new branch] gh/zklaus/1/orig -> origin/gh/zklaus/1/orig 2025-06-01T20:58:07.0794554Z * [new branch] gh/zklaus/2/base -> origin/gh/zklaus/2/base 2025-06-01T20:58:07.0795014Z * [new branch] gh/zklaus/2/head -> origin/gh/zklaus/2/head 2025-06-01T20:58:07.0795473Z * [new branch] gh/zklaus/2/orig -> origin/gh/zklaus/2/orig 2025-06-01T20:58:07.0795918Z * [new branch] gh/zklaus/3/base -> origin/gh/zklaus/3/base 2025-06-01T20:58:07.0796369Z * [new branch] gh/zklaus/3/head -> origin/gh/zklaus/3/head 2025-06-01T20:58:07.0796825Z * [new branch] gh/zklaus/3/orig -> origin/gh/zklaus/3/orig 2025-06-01T20:58:07.0797278Z * [new branch] gh/zklaus/4/base -> origin/gh/zklaus/4/base 2025-06-01T20:58:07.0797736Z * [new branch] gh/zklaus/4/head -> origin/gh/zklaus/4/head 2025-06-01T20:58:07.0798179Z * [new branch] gh/zklaus/4/orig -> origin/gh/zklaus/4/orig 2025-06-01T20:58:07.0798646Z * [new branch] gh/zou3519/1141/base -> origin/gh/zou3519/1141/base 2025-06-01T20:58:07.0799121Z * [new branch] gh/zou3519/1141/head -> origin/gh/zou3519/1141/head 2025-06-01T20:58:07.0799601Z * [new branch] gh/zou3519/1141/orig -> origin/gh/zou3519/1141/orig 2025-06-01T20:58:07.0800074Z * [new branch] gh/zou3519/1145/base -> origin/gh/zou3519/1145/base 2025-06-01T20:58:07.0800536Z * [new branch] gh/zou3519/1145/head -> origin/gh/zou3519/1145/head 2025-06-01T20:58:07.0801007Z * [new branch] gh/zou3519/1145/orig -> origin/gh/zou3519/1145/orig 2025-06-01T20:58:07.0801471Z * [new branch] gh/zou3519/1149/base -> origin/gh/zou3519/1149/base 2025-06-01T20:58:07.0801940Z * [new branch] gh/zou3519/1149/head -> origin/gh/zou3519/1149/head 2025-06-01T20:58:07.0802403Z * [new branch] gh/zou3519/1149/orig -> origin/gh/zou3519/1149/orig 2025-06-01T20:58:07.0802873Z * [new branch] gh/zou3519/1152/base -> origin/gh/zou3519/1152/base 2025-06-01T20:58:07.0803336Z * [new branch] gh/zou3519/1152/head -> origin/gh/zou3519/1152/head 2025-06-01T20:58:07.0803793Z * [new branch] gh/zou3519/1152/orig -> origin/gh/zou3519/1152/orig 2025-06-01T20:58:07.0804260Z * [new branch] gh/zou3519/1156/base -> origin/gh/zou3519/1156/base 2025-06-01T20:58:07.0804722Z * [new branch] gh/zou3519/1156/head -> origin/gh/zou3519/1156/head 2025-06-01T20:58:07.0805193Z * [new branch] gh/zou3519/1156/orig -> origin/gh/zou3519/1156/orig 2025-06-01T20:58:07.0805671Z * [new branch] gh/zou3519/1161/base -> origin/gh/zou3519/1161/base 2025-06-01T20:58:07.0806139Z * [new branch] gh/zou3519/1161/head -> origin/gh/zou3519/1161/head 2025-06-01T20:58:07.0806617Z * [new branch] gh/zou3519/1161/orig -> origin/gh/zou3519/1161/orig 2025-06-01T20:58:07.0807072Z * [new branch] gh/zou3519/1162/base -> origin/gh/zou3519/1162/base 2025-06-01T20:58:07.0807537Z * [new branch] gh/zou3519/1162/head -> origin/gh/zou3519/1162/head 2025-06-01T20:58:07.0808009Z * [new branch] gh/zou3519/1162/orig -> origin/gh/zou3519/1162/orig 2025-06-01T20:58:07.0808469Z * [new branch] gh/zou3519/1163/base -> origin/gh/zou3519/1163/base 2025-06-01T20:58:07.0808936Z * [new branch] gh/zou3519/1163/head -> origin/gh/zou3519/1163/head 2025-06-01T20:58:07.0809395Z * [new branch] gh/zou3519/1163/orig -> origin/gh/zou3519/1163/orig 2025-06-01T20:58:07.0809950Z * [new branch] gh/zou3519/1164/base -> origin/gh/zou3519/1164/base 2025-06-01T20:58:07.1255285Z * [new branch] gh/zou3519/1164/head -> origin/gh/zou3519/1164/head 2025-06-01T20:58:07.1255803Z * [new branch] gh/zou3519/1164/orig -> origin/gh/zou3519/1164/orig 2025-06-01T20:58:07.1256286Z * [new branch] gh/zou3519/1165/base -> origin/gh/zou3519/1165/base 2025-06-01T20:58:07.1256754Z * [new branch] gh/zou3519/1165/head -> origin/gh/zou3519/1165/head 2025-06-01T20:58:07.1257242Z * [new branch] gh/zou3519/1165/orig -> origin/gh/zou3519/1165/orig 2025-06-01T20:58:07.1257713Z * [new branch] gh/zou3519/1166/base -> origin/gh/zou3519/1166/base 2025-06-01T20:58:07.1258168Z * [new branch] gh/zou3519/1166/head -> origin/gh/zou3519/1166/head 2025-06-01T20:58:07.1258636Z * [new branch] gh/zou3519/1166/orig -> origin/gh/zou3519/1166/orig 2025-06-01T20:58:07.1259104Z * [new branch] gh/zou3519/1167/base -> origin/gh/zou3519/1167/base 2025-06-01T20:58:07.1259581Z * [new branch] gh/zou3519/1167/head -> origin/gh/zou3519/1167/head 2025-06-01T20:58:07.1260045Z * [new branch] gh/zou3519/1167/orig -> origin/gh/zou3519/1167/orig 2025-06-01T20:58:07.1260507Z * [new branch] gh/zou3519/1168/base -> origin/gh/zou3519/1168/base 2025-06-01T20:58:07.1260978Z * [new branch] gh/zou3519/1168/head -> origin/gh/zou3519/1168/head 2025-06-01T20:58:07.1261437Z * [new branch] gh/zou3519/1168/orig -> origin/gh/zou3519/1168/orig 2025-06-01T20:58:07.1261907Z * [new branch] gh/zou3519/1169/base -> origin/gh/zou3519/1169/base 2025-06-01T20:58:07.1262374Z * [new branch] gh/zou3519/1169/head -> origin/gh/zou3519/1169/head 2025-06-01T20:58:07.1262831Z * [new branch] gh/zou3519/1169/orig -> origin/gh/zou3519/1169/orig 2025-06-01T20:58:07.1263307Z * [new branch] gh/zou3519/1170/base -> origin/gh/zou3519/1170/base 2025-06-01T20:58:07.1263774Z * [new branch] gh/zou3519/1170/head -> origin/gh/zou3519/1170/head 2025-06-01T20:58:07.1264239Z * [new branch] gh/zou3519/1170/orig -> origin/gh/zou3519/1170/orig 2025-06-01T20:58:07.1264709Z * [new branch] gh/zou3519/1171/base -> origin/gh/zou3519/1171/base 2025-06-01T20:58:07.1265173Z * [new branch] gh/zou3519/1171/head -> origin/gh/zou3519/1171/head 2025-06-01T20:58:07.1265650Z * [new branch] gh/zou3519/1171/orig -> origin/gh/zou3519/1171/orig 2025-06-01T20:58:07.1266109Z * [new branch] gh/zou3519/1172/base -> origin/gh/zou3519/1172/base 2025-06-01T20:58:07.1266575Z * [new branch] gh/zou3519/1172/head -> origin/gh/zou3519/1172/head 2025-06-01T20:58:07.1267046Z * [new branch] gh/zou3519/1172/orig -> origin/gh/zou3519/1172/orig 2025-06-01T20:58:07.1267520Z * [new branch] gh/zou3519/916/base -> origin/gh/zou3519/916/base 2025-06-01T20:58:07.1267989Z * [new branch] gh/zou3519/916/head -> origin/gh/zou3519/916/head 2025-06-01T20:58:07.1268430Z * [new branch] google-main -> origin/google-main 2025-06-01T20:58:07.1268916Z * [new branch] guangyey/external_stream -> origin/guangyey/external_stream 2025-06-01T20:58:07.1269414Z * [new branch] guangyey/host_alloc -> origin/guangyey/host_alloc 2025-06-01T20:58:07.1269901Z * [new branch] guangyey/test_2025 -> origin/guangyey/test_2025 2025-06-01T20:58:07.1270345Z * [new branch] guard_system -> origin/guard_system 2025-06-01T20:58:07.1270942Z * [new branch] guilhermeleobas/cherry-pick-55d87d9dfd9 -> origin/guilhermeleobas/cherry-pick-55d87d9dfd9 2025-06-01T20:58:07.1271710Z * [new branch] haozhe/bf16-dynamic-shape -> origin/haozhe/bf16-dynamic-shape 2025-06-01T20:58:07.1272277Z * [new branch] hc_baseline -> origin/hc_baseline 2025-06-01T20:58:07.1272688Z * [new branch] hhh_rand -> origin/hhh_rand 2025-06-01T20:58:07.1273150Z * [new branch] hoy/autotune/numwarps -> origin/hoy/autotune/numwarps 2025-06-01T20:58:07.1273620Z * [new branch] hoy/mmsplitk -> origin/hoy/mmsplitk 2025-06-01T20:58:07.1274166Z * [new branch] hoy/triton-PR3973 -> origin/hoy/triton-PR3973 2025-06-01T20:58:07.1274730Z * [new branch] hoy/triton-coalescing-baseline -> origin/hoy/triton-coalescing-baseline 2025-06-01T20:58:07.1275339Z * [new branch] hoy/triton-coalescing-min -> origin/hoy/triton-coalescing-min 2025-06-01T20:58:07.1275900Z * [new branch] hoy/triton-coalescing-new -> origin/hoy/triton-coalescing-new 2025-06-01T20:58:07.1276464Z * [new branch] hoy/triton-coalescing-vec -> origin/hoy/triton-coalescing-vec 2025-06-01T20:58:07.1277159Z * [new branch] increase-phlippe_resnet-tolerance-float16 -> origin/increase-phlippe_resnet-tolerance-float16 2025-06-01T20:58:07.1277762Z * [new branch] inline -> origin/inline 2025-06-01T20:58:07.1278175Z * [new branch] inlining -> origin/inlining 2025-06-01T20:58:07.1742726Z * [new branch] inlining-ezyang -> origin/inlining-ezyang 2025-06-01T20:58:07.1743209Z * [new branch] int8_sdpa -> origin/int8_sdpa 2025-06-01T20:58:07.1743676Z * [new branch] invoke-subgraph -> origin/invoke-subgraph 2025-06-01T20:58:07.1744108Z * [new branch] issue#58739 -> origin/issue#58739 2025-06-01T20:58:07.1744546Z * [new branch] issue_150765_fix -> origin/issue_150765_fix 2025-06-01T20:58:07.1745107Z * [new branch] ivanov/cherry-pick-ckpt-fixes -> origin/ivanov/cherry-pick-ckpt-fixes 2025-06-01T20:58:07.1745782Z * [new branch] jcaip/test-cusparselt-version-0.6.2 -> origin/jcaip/test-cusparselt-version-0.6.2 2025-06-01T20:58:07.1746460Z * [new branch] jcaip/update-cusparselt-0.6.2 -> origin/jcaip/update-cusparselt-0.6.2 2025-06-01T20:58:07.1747029Z * [new branch] jeanschmidt/issue_148342 -> origin/jeanschmidt/issue_148342 2025-06-01T20:58:07.1747637Z * [new branch] jeanschmidt/remove_perf_test_scripts -> origin/jeanschmidt/remove_perf_test_scripts 2025-06-01T20:58:07.1748264Z * [new branch] jeanschmidt/test_infra_250314 -> origin/jeanschmidt/test_infra_250314 2025-06-01T20:58:07.1748797Z * [new branch] justinchu/onnx-deps -> origin/justinchu/onnx-deps 2025-06-01T20:58:07.1749256Z * [new branch] jz/istft -> origin/jz/istft 2025-06-01T20:58:07.1749783Z * [new branch] leslie/enable_poc_reduction_fusion -> origin/leslie/enable_poc_reduction_fusion 2025-06-01T20:58:07.1750428Z * [new branch] leslie/test_group_gemm_epilogues -> origin/leslie/test_group_gemm_epilogues 2025-06-01T20:58:07.1751001Z * [new branch] liaoxuan/shm_all_reduce -> origin/liaoxuan/shm_all_reduce 2025-06-01T20:58:07.1751508Z * [new branch] liaoxuan/test_int8_sdpa -> origin/liaoxuan/test_int8_sdpa 2025-06-01T20:58:07.1752070Z * [new branch] lts/release/1.8 -> origin/lts/release/1.8 2025-06-01T20:58:07.1752678Z * [new branch] lucaskabela/dynamo_nested_const_fix -> origin/lucaskabela/dynamo_nested_const_fix 2025-06-01T20:58:07.1753400Z * [new branch] lucaskabela/install_params_as_graph_attr -> origin/lucaskabela/install_params_as_graph_attr 2025-06-01T20:58:07.1754202Z * [new branch] lucaskabela/parameters_as_graph_attr -> origin/lucaskabela/parameters_as_graph_attr 2025-06-01T20:58:07.1755166Z * [new branch] lucaskabela/remove_aot_dispatcher_metadata -> origin/lucaskabela/remove_aot_dispatcher_metadata 2025-06-01T20:58:07.1755783Z * [new branch] macos_test -> origin/macos_test 2025-06-01T20:58:07.1756186Z * [new branch] main -> origin/main 2025-06-01T20:58:07.1756620Z * [new branch] malfet-patch-1 -> origin/malfet-patch-1 2025-06-01T20:58:07.1757096Z * [new branch] malfet-patch-10 -> origin/malfet-patch-10 2025-06-01T20:58:07.1757559Z * [new branch] malfet-patch-11 -> origin/malfet-patch-11 2025-06-01T20:58:07.1758039Z * [new branch] malfet-patch-12 -> origin/malfet-patch-12 2025-06-01T20:58:07.1758494Z * [new branch] malfet-patch-13 -> origin/malfet-patch-13 2025-06-01T20:58:07.1758955Z * [new branch] malfet-patch-14 -> origin/malfet-patch-14 2025-06-01T20:58:07.1759417Z * [new branch] malfet-patch-2 -> origin/malfet-patch-2 2025-06-01T20:58:07.1759867Z * [new branch] malfet-patch-20 -> origin/malfet-patch-20 2025-06-01T20:58:07.1760322Z * [new branch] malfet-patch-21 -> origin/malfet-patch-21 2025-06-01T20:58:07.1760776Z * [new branch] malfet-patch-23 -> origin/malfet-patch-23 2025-06-01T20:58:07.1761231Z * [new branch] malfet-patch-3 -> origin/malfet-patch-3 2025-06-01T20:58:07.1761671Z * [new branch] malfet-patch-4 -> origin/malfet-patch-4 2025-06-01T20:58:07.1762118Z * [new branch] malfet-patch-5 -> origin/malfet-patch-5 2025-06-01T20:58:07.1762564Z * [new branch] malfet-patch-6 -> origin/malfet-patch-6 2025-06-01T20:58:07.1763011Z * [new branch] malfet-patch-7 -> origin/malfet-patch-7 2025-06-01T20:58:07.1763471Z * [new branch] malfet-patch-8 -> origin/malfet-patch-8 2025-06-01T20:58:07.1763909Z * [new branch] malfet-patch-9 -> origin/malfet-patch-9 2025-06-01T20:58:07.1764398Z * [new branch] malfet/add-ciflow-pull -> origin/malfet/add-ciflow-pull 2025-06-01T20:58:07.1764923Z * [new branch] malfet/add-h100-opt-in -> origin/malfet/add-h100-opt-in 2025-06-01T20:58:07.1765403Z * [new branch] malfet/cp-150427 -> origin/malfet/cp-150427 2025-06-01T20:58:07.1765859Z * [new branch] malfet/cp-152510 -> origin/malfet/cp-152510 2025-06-01T20:58:07.2205796Z * [new branch] malfet/cuda-do-not-vec128-on-12.6 -> origin/malfet/cuda-do-not-vec128-on-12.6 2025-06-01T20:58:07.2206488Z * [new branch] malfet/delete-upsteam-cuda -> origin/malfet/delete-upsteam-cuda 2025-06-01T20:58:07.2207076Z * [new branch] malfet/lets-revert-145746 -> origin/malfet/lets-revert-145746 2025-06-01T20:58:07.2207663Z * [new branch] malfet/move-dtype_abbr-to-utils -> origin/malfet/move-dtype_abbr-to-utils 2025-06-01T20:58:07.2208273Z * [new branch] malfet/mps-implement-col2im -> origin/malfet/mps-implement-col2im 2025-06-01T20:58:07.2208840Z * [new branch] missing_gloo_causes_deadlock -> origin/missing_gloo_causes_deadlock 2025-06-01T20:58:07.2209359Z * [new branch] mlazos/S429861-debug -> origin/mlazos/S429861-debug 2025-06-01T20:58:07.2209811Z * [new branch] mlazos/aa -> origin/mlazos/aa 2025-06-01T20:58:07.2210391Z * [new branch] mlazos/backup-test-branch -> origin/mlazos/backup-test-branch 2025-06-01T20:58:07.2210973Z * [new branch] mlazos/bad-cudagraphs -> origin/mlazos/bad-cudagraphs 2025-06-01T20:58:07.2211600Z * [new branch] mlazos/baseline -> origin/mlazos/baseline 2025-06-01T20:58:07.2212220Z * [new branch] mlazos/baseline-graph-breaks -> origin/mlazos/baseline-graph-breaks 2025-06-01T20:58:07.2212767Z * [new branch] mlazos/beta-tensor -> origin/mlazos/beta-tensor 2025-06-01T20:58:07.2213238Z * [new branch] mlazos/buff-opt2 -> origin/mlazos/buff-opt2 2025-06-01T20:58:07.2213701Z * [new branch] mlazos/buffers -> origin/mlazos/buffers 2025-06-01T20:58:07.2214153Z * [new branch] mlazos/buffers2 -> origin/mlazos/buffers2 2025-06-01T20:58:07.2214610Z * [new branch] mlazos/buffers3 -> origin/mlazos/buffers3 2025-06-01T20:58:07.2215041Z * [new branch] mlazos/ck2 -> origin/mlazos/ck2 2025-06-01T20:58:07.2215488Z * [new branch] mlazos/combokernels -> origin/mlazos/combokernels 2025-06-01T20:58:07.2215987Z * [new branch] mlazos/ctx-cleanup -> origin/mlazos/ctx-cleanup 2025-06-01T20:58:07.2216491Z * [new branch] mlazos/cudagraph-tests -> origin/mlazos/cudagraph-tests 2025-06-01T20:58:07.2217075Z * [new branch] mlazos/cudagraphs-measurement -> origin/mlazos/cudagraphs-measurement 2025-06-01T20:58:07.2217632Z * [new branch] mlazos/cutlass-test -> origin/mlazos/cutlass-test 2025-06-01T20:58:07.2218133Z * [new branch] mlazos/cutlass-topo-bug -> origin/mlazos/cutlass-topo-bug 2025-06-01T20:58:07.2218648Z * [new branch] mlazos/data-gather -> origin/mlazos/data-gather 2025-06-01T20:58:07.2219123Z * [new branch] mlazos/data-ptrs2 -> origin/mlazos/data-ptrs2 2025-06-01T20:58:07.2219595Z * [new branch] mlazos/data-ptrs3 -> origin/mlazos/data-ptrs3 2025-06-01T20:58:07.2220090Z * [new branch] mlazos/dataclass-proxy -> origin/mlazos/dataclass-proxy 2025-06-01T20:58:07.2220615Z * [new branch] mlazos/disable-closures -> origin/mlazos/disable-closures 2025-06-01T20:58:07.2221122Z * [new branch] mlazos/disable-tf -> origin/mlazos/disable-tf 2025-06-01T20:58:07.2221599Z * [new branch] mlazos/disabled-opt -> origin/mlazos/disabled-opt 2025-06-01T20:58:07.2222081Z * [new branch] mlazos/dyn-batch -> origin/mlazos/dyn-batch 2025-06-01T20:58:07.2222543Z * [new branch] mlazos/einops-fix -> origin/mlazos/einops-fix 2025-06-01T20:58:07.2222989Z * [new branch] mlazos/evt -> origin/mlazos/evt 2025-06-01T20:58:07.2223450Z * [new branch] mlazos/evt-killswitch -> origin/mlazos/evt-killswitch 2025-06-01T20:58:07.2223941Z * [new branch] mlazos/exp_disable -> origin/mlazos/exp_disable 2025-06-01T20:58:07.2224417Z * [new branch] mlazos/foreach-op -> origin/mlazos/foreach-op 2025-06-01T20:58:07.2224906Z * [new branch] mlazos/foreach-reds -> origin/mlazos/foreach-reds 2025-06-01T20:58:07.2225362Z * [new branch] mlazos/fp8 -> origin/mlazos/fp8 2025-06-01T20:58:07.2225802Z * [new branch] mlazos/fp8-bias -> origin/mlazos/fp8-bias 2025-06-01T20:58:07.2226281Z * [new branch] mlazos/fp8-bias-fusion -> origin/mlazos/fp8-bias-fusion 2025-06-01T20:58:07.2226770Z * [new branch] mlazos/freezing -> origin/mlazos/freezing 2025-06-01T20:58:07.2227240Z * [new branch] mlazos/fuse-window -> origin/mlazos/fuse-window 2025-06-01T20:58:07.2227719Z * [new branch] mlazos/gen-foreach -> origin/mlazos/gen-foreach 2025-06-01T20:58:07.2228178Z * [new branch] mlazos/h-comp -> origin/mlazos/h-comp 2025-06-01T20:58:07.2228604Z * [new branch] mlazos/h-comp2 -> origin/mlazos/h-comp2 2025-06-01T20:58:07.2229200Z * [new branch] mlazos/hc -> origin/mlazos/hc 2025-06-01T20:58:07.2744312Z * [new branch] mlazos/hc-cycles -> origin/mlazos/hc-cycles 2025-06-01T20:58:07.2744826Z * [new branch] mlazos/hc-fixes -> origin/mlazos/hc-fixes 2025-06-01T20:58:07.2745284Z * [new branch] mlazos/hc-fixes3 -> origin/mlazos/hc-fixes3 2025-06-01T20:58:07.2745791Z * [new branch] mlazos/hc-fixes4 -> origin/mlazos/hc-fixes4 2025-06-01T20:58:07.2746282Z * [new branch] mlazos/hc-hf -> origin/mlazos/hc-hf 2025-06-01T20:58:07.2746758Z * [new branch] mlazos/hc-mut -> origin/mlazos/hc-mut 2025-06-01T20:58:07.2747174Z * [new branch] mlazos/hc10 -> origin/mlazos/hc10 2025-06-01T20:58:07.2747592Z * [new branch] mlazos/hc11 -> origin/mlazos/hc11 2025-06-01T20:58:07.2748013Z * [new branch] mlazos/hc2 -> origin/mlazos/hc2 2025-06-01T20:58:07.2748434Z * [new branch] mlazos/hc4 -> origin/mlazos/hc4 2025-06-01T20:58:07.2748842Z * [new branch] mlazos/hc5 -> origin/mlazos/hc5 2025-06-01T20:58:07.2749244Z * [new branch] mlazos/hc6 -> origin/mlazos/hc6 2025-06-01T20:58:07.2749652Z * [new branch] mlazos/hc7 -> origin/mlazos/hc7 2025-06-01T20:58:07.2750051Z * [new branch] mlazos/hc8 -> origin/mlazos/hc8 2025-06-01T20:58:07.2750463Z * [new branch] mlazos/hc9 -> origin/mlazos/hc9 2025-06-01T20:58:07.2750904Z * [new branch] mlazos/hc_baseline2 -> origin/mlazos/hc_baseline2 2025-06-01T20:58:07.2751414Z * [new branch] mlazos/init-per-param -> origin/mlazos/init-per-param 2025-06-01T20:58:07.2751932Z * [new branch] mlazos/init_per_param -> origin/mlazos/init_per_param 2025-06-01T20:58:07.2752404Z * [new branch] mlazos/int-fix2 -> origin/mlazos/int-fix2 2025-06-01T20:58:07.2752875Z * [new branch] mlazos/less-guards -> origin/mlazos/less-guards 2025-06-01T20:58:07.2753368Z * [new branch] mlazos/lr-composibility -> origin/mlazos/lr-composibility 2025-06-01T20:58:07.2753850Z * [new branch] mlazos/main -> origin/mlazos/main 2025-06-01T20:58:07.2754428Z * [new branch] mlazos/main-test-enablement -> origin/mlazos/main-test-enablement 2025-06-01T20:58:07.2754926Z * [new branch] mlazos/main2 -> origin/mlazos/main2 2025-06-01T20:58:07.2755384Z * [new branch] mlazos/main_test -> origin/mlazos/main_test 2025-06-01T20:58:07.2755814Z * [new branch] mlazos/mcg -> origin/mlazos/mcg 2025-06-01T20:58:07.2756245Z * [new branch] mlazos/mcg2 -> origin/mlazos/mcg2 2025-06-01T20:58:07.2756709Z * [new branch] mlazos/meta-guards -> origin/mlazos/meta-guards 2025-06-01T20:58:07.2757184Z * [new branch] mlazos/mlazos/ck2 -> origin/mlazos/mlazos/ck2 2025-06-01T20:58:07.2757735Z * [new branch] mlazos/mlazos/foreach-map-adam -> origin/mlazos/mlazos/foreach-map-adam 2025-06-01T20:58:07.2758336Z * [new branch] mlazos/mlazos/subclass-test -> origin/mlazos/mlazos/subclass-test 2025-06-01T20:58:07.2768356Z * [new branch] mlazos/mlazos/tf-mode-backup -> origin/mlazos/mlazos/tf-mode-backup 2025-06-01T20:58:07.2768908Z * [new branch] mlazos/mod-fix -> origin/mlazos/mod-fix 2025-06-01T20:58:07.2769393Z * [new branch] mlazos/more-tests -> origin/mlazos/more-tests 2025-06-01T20:58:07.2769901Z * [new branch] mlazos/mutable-backup -> origin/mlazos/mutable-backup 2025-06-01T20:58:07.2770633Z * [new branch] mlazos/no-cpp -> origin/mlazos/no-cpp 2025-06-01T20:58:07.2771173Z * [new branch] mlazos/no-init-group-handling -> origin/mlazos/no-init-group-handling 2025-06-01T20:58:07.2771741Z * [new branch] mlazos/op-investigation -> origin/mlazos/op-investigation 2025-06-01T20:58:07.2772262Z * [new branch] mlazos/opt-bench-exp2 -> origin/mlazos/opt-bench-exp2 2025-06-01T20:58:07.2772764Z * [new branch] mlazos/opt-bench3 -> origin/mlazos/opt-bench3 2025-06-01T20:58:07.2773225Z * [new branch] mlazos/opt-incr -> origin/mlazos/opt-incr 2025-06-01T20:58:07.2773698Z * [new branch] mlazos/opt-recipe -> origin/mlazos/opt-recipe 2025-06-01T20:58:07.2774172Z * [new branch] mlazos/opt-slowdown -> origin/mlazos/opt-slowdown 2025-06-01T20:58:07.2774672Z * [new branch] mlazos/proxy-ctors -> origin/mlazos/proxy-ctors 2025-06-01T20:58:07.2775162Z * [new branch] mlazos/proxy-opt -> origin/mlazos/proxy-opt 2025-06-01T20:58:07.2775620Z * [new branch] mlazos/rm-spam -> origin/mlazos/rm-spam 2025-06-01T20:58:07.2776052Z * [new branch] mlazos/rtp -> origin/mlazos/rtp 2025-06-01T20:58:07.2776498Z * [new branch] mlazos/sdpa-driss -> origin/mlazos/sdpa-driss 2025-06-01T20:58:07.2777006Z * [new branch] mlazos/static-inputs-log -> origin/mlazos/static-inputs-log 2025-06-01T20:58:07.3229628Z * [new branch] mlazos/subclass-test -> origin/mlazos/subclass-test 2025-06-01T20:58:07.3230175Z * [new branch] mlazos/td-fix2 -> origin/mlazos/td-fix2 2025-06-01T20:58:07.3230668Z * [new branch] mlazos/tensor-hasattr2 -> origin/mlazos/tensor-hasattr2 2025-06-01T20:58:07.3231189Z * [new branch] mlazos/tensor-lr2 -> origin/mlazos/tensor-lr2 2025-06-01T20:58:07.3231654Z * [new branch] mlazos/test-fix -> origin/mlazos/test-fix 2025-06-01T20:58:07.3232104Z * [new branch] mlazos/tf-mode -> origin/mlazos/tf-mode 2025-06-01T20:58:07.3232594Z * [new branch] mlazos/tf-mode-backup2 -> origin/mlazos/tf-mode-backup2 2025-06-01T20:58:07.3233100Z * [new branch] mlazos/tf-mode-reland -> origin/mlazos/tf-mode-reland 2025-06-01T20:58:07.3233604Z * [new branch] mlazos/tf-mode-reland2 -> origin/mlazos/tf-mode-reland2 2025-06-01T20:58:07.3234162Z * [new branch] mlazos/tf-mode-reland3 -> origin/mlazos/tf-mode-reland3 2025-06-01T20:58:07.3234648Z * [new branch] mlazos/trace-ao -> origin/mlazos/trace-ao 2025-06-01T20:58:07.3235126Z * [new branch] mlazos/triton-no-epi -> origin/mlazos/triton-no-epi 2025-06-01T20:58:07.3235622Z * [new branch] mlazos/tune-proto -> origin/mlazos/tune-proto 2025-06-01T20:58:07.3236115Z * [new branch] mlazos/vary-beta -> origin/mlazos/vary-beta 2025-06-01T20:58:07.3236571Z * [new branch] mlazos/vary-beta2 -> origin/mlazos/vary-beta2 2025-06-01T20:58:07.3237047Z * [new branch] mlazos/weird-perf1 -> origin/mlazos/weird-perf1 2025-06-01T20:58:07.3237501Z * [new branch] move_unstash -> origin/move_unstash 2025-06-01T20:58:07.3237928Z * [new branch] mps-linear-1d -> origin/mps-linear-1d 2025-06-01T20:58:07.3238394Z * [new branch] msaroufim-patch-1 -> origin/msaroufim-patch-1 2025-06-01T20:58:07.3238871Z * [new branch] msaroufim-patch-2 -> origin/msaroufim-patch-2 2025-06-01T20:58:07.3239382Z * [new branch] msaroufim/compile_kernel -> origin/msaroufim/compile_kernel 2025-06-01T20:58:07.3240086Z * [new branch] msaroufim/dtensorfusedadam -> origin/msaroufim/dtensorfusedadam 2025-06-01T20:58:07.3240694Z * [new branch] msaroufim/nospew -> origin/msaroufim/nospew 2025-06-01T20:58:07.3241154Z * [new branch] myst_nb_trial -> origin/myst_nb_trial 2025-06-01T20:58:07.3241590Z * [new branch] nWEIdia-patch-1 -> origin/nWEIdia-patch-1 2025-06-01T20:58:07.3242053Z * [new branch] new-batch-norm -> origin/new-batch-norm 2025-06-01T20:58:07.3242511Z * [new branch] ngimel-h100_tests -> origin/ngimel-h100_tests 2025-06-01T20:58:07.3242972Z * [new branch] ngimel/alloc_rdma -> origin/ngimel/alloc_rdma 2025-06-01T20:58:07.3243433Z * [new branch] ngimel/cat_perf -> origin/ngimel/cat_perf 2025-06-01T20:58:07.3243917Z * [new branch] ngimel/cutlass_ptr_array -> origin/ngimel/cutlass_ptr_array 2025-06-01T20:58:07.3244441Z * [new branch] ngimel/elems_per_thread -> origin/ngimel/elems_per_thread 2025-06-01T20:58:07.3244927Z * [new branch] ngimel/fix_index -> origin/ngimel/fix_index 2025-06-01T20:58:07.3245377Z * [new branch] ngimel/gg_new -> origin/ngimel/gg_new 2025-06-01T20:58:07.3245827Z * [new branch] ngimel/h100_tests -> origin/ngimel/h100_tests 2025-06-01T20:58:07.3246288Z * [new branch] ngimel/index_2dlist -> origin/ngimel/index_2dlist 2025-06-01T20:58:07.3246815Z * [new branch] ngimel/mem_pool_thread_local -> origin/ngimel/mem_pool_thread_local 2025-06-01T20:58:07.3247333Z * [new branch] ngimel/mempool_test -> origin/ngimel/mempool_test 2025-06-01T20:58:07.3247826Z * [new branch] ngimel/mempool_thread -> origin/ngimel/mempool_thread 2025-06-01T20:58:07.3248319Z * [new branch] ngimel/reland_gather -> origin/ngimel/reland_gather 2025-06-01T20:58:07.3248824Z * [new branch] ngimel/removememctx -> origin/ngimel/removememctx 2025-06-01T20:58:07.3249319Z * [new branch] ngimel/unroll_kernel -> origin/ngimel/unroll_kernel 2025-06-01T20:58:07.3249812Z * [new branch] ngimel/use_host_register -> origin/ngimel/use_host_register 2025-06-01T20:58:07.3250343Z * [new branch] ngimel/zero_k_grouped_gemm -> origin/ngimel/zero_k_grouped_gemm 2025-06-01T20:58:07.3250818Z * [new branch] nightly -> origin/nightly 2025-06-01T20:58:07.3251271Z * [new branch] nikitaved/tensordot -> origin/nikitaved/tensordot 2025-06-01T20:58:07.3251794Z * [new branch] offline -> origin/offline 2025-06-01T20:58:07.3252258Z * [new branch] openblas_gemv -> origin/openblas_gemv 2025-06-01T20:58:07.3686462Z * [new branch] orig/release/1.10 -> origin/orig/release/1.10 2025-06-01T20:58:07.3687001Z * [new branch] orig/release/1.11 -> origin/orig/release/1.11 2025-06-01T20:58:07.3687466Z * [new branch] orig/release/1.12 -> origin/orig/release/1.12 2025-06-01T20:58:07.3687928Z * [new branch] orig/release/1.13 -> origin/orig/release/1.13 2025-06-01T20:58:07.3688395Z * [new branch] orig/release/1.6 -> origin/orig/release/1.6 2025-06-01T20:58:07.3688844Z * [new branch] orig/release/1.7 -> origin/orig/release/1.7 2025-06-01T20:58:07.3689352Z * [new branch] orig/release/1.8 -> origin/orig/release/1.8 2025-06-01T20:58:07.3689868Z * [new branch] orig/release/1.9 -> origin/orig/release/1.9 2025-06-01T20:58:07.3690342Z * [new branch] orig/release/2.0 -> origin/orig/release/2.0 2025-06-01T20:58:07.3690920Z * [new branch] orig/release/2.1 -> origin/orig/release/2.1 2025-06-01T20:58:07.3691452Z * [new branch] orig/release/2.2 -> origin/orig/release/2.2 2025-06-01T20:58:07.3691909Z * [new branch] orig/release/2.3 -> origin/orig/release/2.3 2025-06-01T20:58:07.3692352Z * [new branch] orig/release/2.4 -> origin/orig/release/2.4 2025-06-01T20:58:07.3692814Z * [new branch] orig/release/2.5 -> origin/orig/release/2.5 2025-06-01T20:58:07.3693262Z * [new branch] orig/release/2.6 -> origin/orig/release/2.6 2025-06-01T20:58:07.3693710Z * [new branch] orig/release/2.7 -> origin/orig/release/2.7 2025-06-01T20:58:07.3694156Z * [new branch] origin/voz/serde -> origin/origin/voz/serde 2025-06-01T20:58:07.3694601Z * [new branch] oulgen/fx_graph -> origin/oulgen/fx_graph 2025-06-01T20:58:07.3695059Z * [new branch] pack_hook_docs -> origin/pack_hook_docs 2025-06-01T20:58:07.3695593Z * [new branch] padded-tensor -> origin/padded-tensor 2025-06-01T20:58:07.3696083Z * [new branch] parallel_cat -> origin/parallel_cat 2025-06-01T20:58:07.3696525Z * [new branch] parallel_reduce -> origin/parallel_reduce 2025-06-01T20:58:07.3696945Z * [new branch] pca2 -> origin/pca2 2025-06-01T20:58:07.3697383Z * [new branch] pianpwk-patch-1 -> origin/pianpwk-patch-1 2025-06-01T20:58:07.3697871Z * [new branch] pianpwk/01_auto_warning -> origin/pianpwk/01_auto_warning 2025-06-01T20:58:07.3698472Z * [new branch] pianpwk/backed_size_oblivious_global -> origin/pianpwk/backed_size_oblivious_global 2025-06-01T20:58:07.3699139Z * [new branch] pianpwk/backed_symint_endofbounds -> origin/pianpwk/backed_symint_endofbounds 2025-06-01T20:58:07.3699735Z * [new branch] pianpwk/bincount_symint -> origin/pianpwk/bincount_symint 2025-06-01T20:58:07.3700269Z * [new branch] pianpwk/cse_bound_expr -> origin/pianpwk/cse_bound_expr 2025-06-01T20:58:07.3700769Z * [new branch] pianpwk/dde_repeat_cat -> origin/pianpwk/dde_repeat_cat 2025-06-01T20:58:07.3701340Z * [new branch] pianpwk/draft_cuda_oom_nonstrict -> origin/pianpwk/draft_cuda_oom_nonstrict 2025-06-01T20:58:07.3701944Z * [new branch] pianpwk/draft_export_normalize -> origin/pianpwk/draft_export_normalize 2025-06-01T20:58:07.3702524Z * [new branch] pianpwk/draft_strict_stack -> origin/pianpwk/draft_strict_stack 2025-06-01T20:58:07.3703074Z * [new branch] pianpwk/dynamic_source_dim -> origin/pianpwk/dynamic_source_dim 2025-06-01T20:58:07.3703607Z * [new branch] pianpwk/dynamo_export_ctx -> origin/pianpwk/dynamo_export_ctx 2025-06-01T20:58:07.3704155Z * [new branch] pianpwk/export_partial_fwd -> origin/pianpwk/export_partial_fwd 2025-06-01T20:58:07.3704693Z * [new branch] pianpwk/false_infer_size -> origin/pianpwk/false_infer_size 2025-06-01T20:58:07.3705282Z * [new branch] pianpwk/inductor_cat_dtype_promote -> origin/pianpwk/inductor_cat_dtype_promote 2025-06-01T20:58:07.3705922Z * [new branch] pianpwk/inductor_unbacked_symint -> origin/pianpwk/inductor_unbacked_symint 2025-06-01T20:58:07.3706591Z * [new branch] pianpwk/kth_value_symint -> origin/pianpwk/kth_value_symint 2025-06-01T20:58:07.3707191Z * [new branch] pianpwk/lru_cache_bound_sympy -> origin/pianpwk/lru_cache_bound_sympy 2025-06-01T20:58:07.3707724Z * [new branch] pianpwk/max_1_strides -> origin/pianpwk/max_1_strides 2025-06-01T20:58:07.3708258Z * [new branch] pianpwk/no_benchmark_aten_to -> origin/pianpwk/no_benchmark_aten_to 2025-06-01T20:58:07.3708910Z * [new branch] pianpwk/no_loc_frame_locals -> origin/pianpwk/no_loc_frame_locals 2025-06-01T20:58:07.3709562Z * [new branch] pianpwk/obl_scatter_gather_index -> origin/pianpwk/obl_scatter_gather_index 2025-06-01T20:58:07.3710159Z * [new branch] pianpwk/oblivious_expand -> origin/pianpwk/oblivious_expand 2025-06-01T20:58:07.4130697Z * [new branch] pianpwk/oblivious_infer_size -> origin/pianpwk/oblivious_infer_size 2025-06-01T20:58:07.4131316Z * [new branch] pianpwk/oblivious_meta_select -> origin/pianpwk/oblivious_meta_select 2025-06-01T20:58:07.4131927Z * [new branch] pianpwk/oblivious_reshape_view -> origin/pianpwk/oblivious_reshape_view 2025-06-01T20:58:07.4132565Z * [new branch] pianpwk/oblivious_reshape_view_bad -> origin/pianpwk/oblivious_reshape_view_bad 2025-06-01T20:58:07.4133243Z * [new branch] pianpwk/oblivious_reshape_view_better -> origin/pianpwk/oblivious_reshape_view_better 2025-06-01T20:58:07.4133904Z * [new branch] pianpwk/oblivious_should_swap -> origin/pianpwk/oblivious_should_swap 2025-06-01T20:58:07.4134540Z * [new branch] pianpwk/oblivious_slice_forward -> origin/pianpwk/oblivious_slice_forward 2025-06-01T20:58:07.4135165Z * [new branch] pianpwk/oblivious_storagenbytes -> origin/pianpwk/oblivious_storagenbytes 2025-06-01T20:58:07.4136291Z * [new branch] pianpwk/oblivious_where -> origin/pianpwk/oblivious_where 2025-06-01T20:58:07.4136883Z * [new branch] pianpwk/pad_nd_meta -> origin/pianpwk/pad_nd_meta 2025-06-01T20:58:07.4137391Z * [new branch] pianpwk/pad_nd_oblivious -> origin/pianpwk/pad_nd_oblivious 2025-06-01T20:58:07.4137959Z * [new branch] pianpwk/pgo_dynamic_whitelist -> origin/pianpwk/pgo_dynamic_whitelist 2025-06-01T20:58:07.4138512Z * [new branch] pianpwk/pre_forward_hook -> origin/pianpwk/pre_forward_hook 2025-06-01T20:58:07.4139083Z * [new branch] pianpwk/remove_guard_fail_break -> origin/pianpwk/remove_guard_fail_break 2025-06-01T20:58:07.4139639Z * [new branch] pianpwk/skt_user_code -> origin/pianpwk/skt_user_code 2025-06-01T20:58:07.4140159Z * [new branch] pianpwk/suggest_for_bool -> origin/pianpwk/suggest_for_bool 2025-06-01T20:58:07.4140671Z * [new branch] pianpwk/sym_and_terms -> origin/pianpwk/sym_and_terms 2025-06-01T20:58:07.4141445Z * [new branch] pianpwk/test_slice_fake_impl -> origin/pianpwk/test_slice_fake_impl 2025-06-01T20:58:07.4142467Z * [new branch] pianpwk/treat_sizes_as_size_like -> origin/pianpwk/treat_sizes_as_size_like 2025-06-01T20:58:07.4143062Z * [new branch] pianpwk/unbacked_safe_conv1d -> origin/pianpwk/unbacked_safe_conv1d 2025-06-01T20:58:07.4143655Z * [new branch] pianpwk/unbacked_safe_unsqueeze -> origin/pianpwk/unbacked_safe_unsqueeze 2025-06-01T20:58:07.4144279Z * [new branch] pianpwk/unbacked_scalar_tensor -> origin/pianpwk/unbacked_scalar_tensor 2025-06-01T20:58:07.4144860Z * [new branch] pianpwk/unbacked_sdpa_flash -> origin/pianpwk/unbacked_sdpa_flash 2025-06-01T20:58:07.4145434Z * [new branch] pianpwk/unbacked_should_swap -> origin/pianpwk/unbacked_should_swap 2025-06-01T20:58:07.4146021Z * [new branch] pianpwk/unbacked_slice_forward -> origin/pianpwk/unbacked_slice_forward 2025-06-01T20:58:07.4146625Z * [new branch] pianpwk/verbose_tensor_guards -> origin/pianpwk/verbose_tensor_guards 2025-06-01T20:58:07.4147504Z * [new branch] pianpwk/verbose_tensor_guards_v2 -> origin/pianpwk/verbose_tensor_guards_v2 2025-06-01T20:58:07.4148457Z * [new branch] pianpwk/verbose_tensor_guards_v3 -> origin/pianpwk/verbose_tensor_guards_v3 2025-06-01T20:58:07.4149007Z * [new branch] pin-new-theme -> origin/pin-new-theme 2025-06-01T20:58:07.4149613Z * [new branch] pin-torchao -> origin/pin-torchao 2025-06-01T20:58:07.4150156Z * [new branch] pool-separate -> origin/pool-separate 2025-06-01T20:58:07.4150590Z * [new branch] pr/131860 -> origin/pr/131860 2025-06-01T20:58:07.4151004Z * [new branch] pr150241 -> origin/pr150241 2025-06-01T20:58:07.4151417Z * [new branch] pr153742 -> origin/pr153742 2025-06-01T20:58:07.4151848Z * [new branch] provenance_doc -> origin/provenance_doc 2025-06-01T20:58:07.4152306Z * [new branch] pt-opt-cuda3 -> origin/pt-opt-cuda3 2025-06-01T20:58:07.4152780Z * [new branch] python_compiled_autograd -> origin/python_compiled_autograd 2025-06-01T20:58:07.4153712Z * [new branch] qchip/export-D54134695 -> origin/qchip/export-D54134695 2025-06-01T20:58:07.4154557Z * [new branch] refactor-adamw -> origin/refactor-adamw 2025-06-01T20:58:07.4155008Z * [new branch] release/1.10 -> origin/release/1.10 2025-06-01T20:58:07.4155439Z * [new branch] release/1.11 -> origin/release/1.11 2025-06-01T20:58:07.4155855Z * [new branch] release/1.12 -> origin/release/1.12 2025-06-01T20:58:07.4156289Z * [new branch] release/1.13 -> origin/release/1.13 2025-06-01T20:58:07.4156712Z * [new branch] release/1.4 -> origin/release/1.4 2025-06-01T20:58:07.4620001Z * [new branch] release/1.4.1 -> origin/release/1.4.1 2025-06-01T20:58:07.4620490Z * [new branch] release/1.5 -> origin/release/1.5 2025-06-01T20:58:07.4620924Z * [new branch] release/1.6 -> origin/release/1.6 2025-06-01T20:58:07.4621345Z * [new branch] release/1.7 -> origin/release/1.7 2025-06-01T20:58:07.4621845Z * [new branch] release/1.8 -> origin/release/1.8 2025-06-01T20:58:07.4622633Z * [new branch] release/1.9 -> origin/release/1.9 2025-06-01T20:58:07.4623240Z * [new branch] release/2.0 -> origin/release/2.0 2025-06-01T20:58:07.4623644Z * [new branch] release/2.1 -> origin/release/2.1 2025-06-01T20:58:07.4624056Z * [new branch] release/2.2 -> origin/release/2.2 2025-06-01T20:58:07.4624471Z * [new branch] release/2.3 -> origin/release/2.3 2025-06-01T20:58:07.4624888Z * [new branch] release/2.4 -> origin/release/2.4 2025-06-01T20:58:07.4625304Z * [new branch] release/2.5 -> origin/release/2.5 2025-06-01T20:58:07.4625710Z * [new branch] release/2.6 -> origin/release/2.6 2025-06-01T20:58:07.4626125Z * [new branch] release/2.7 -> origin/release/2.7 2025-06-01T20:58:07.4626586Z * [new branch] release_auto_func_cache -> origin/release_auto_func_cache 2025-06-01T20:58:07.4627057Z * [new branch] release_notes -> origin/release_notes 2025-06-01T20:58:07.4627685Z * [new branch] revert-131069-gh/krzysztofjordan/1/head -> origin/revert-131069-gh/krzysztofjordan/1/head 2025-06-01T20:58:07.4628995Z * [new branch] revert-131469-gh/andrewor14/51/head -> origin/revert-131469-gh/andrewor14/51/head 2025-06-01T20:58:07.4629657Z * [new branch] revert-154600-gh/pearu/110/head -> origin/revert-154600-gh/pearu/110/head 2025-06-01T20:58:07.4630261Z * [new branch] revert-154617-gh/pearu/112/head -> origin/revert-154617-gh/pearu/112/head 2025-06-01T20:58:07.4630805Z * [new branch] rithesh/fsdp_cpu -> origin/rithesh/fsdp_cpu 2025-06-01T20:58:07.4631434Z * [new branch] rocm-monitoring -> origin/rocm-monitoring 2025-06-01T20:58:07.4631989Z * [new branch] rprop-playground -> origin/rprop-playground 2025-06-01T20:58:07.4632671Z * [new branch] ryanguo99/cleanup-dynamo-expected-failures -> origin/ryanguo99/cleanup-dynamo-expected-failures 2025-06-01T20:58:07.4633371Z * [new branch] ryanguo99/fix-closure-var -> origin/ryanguo99/fix-closure-var 2025-06-01T20:58:07.4634311Z * [new branch] rzou/faketensor_bench -> origin/rzou/faketensor_bench 2025-06-01T20:58:07.4635054Z * [new branch] rzou/fix -> origin/rzou/fix 2025-06-01T20:58:07.4635462Z * [new branch] rzou/fix2 -> origin/rzou/fix2 2025-06-01T20:58:07.4635868Z * [new branch] rzou/njt -> origin/rzou/njt 2025-06-01T20:58:07.4636278Z * [new branch] rzou/operator -> origin/rzou/operator 2025-06-01T20:58:07.4636711Z * [new branch] rzou/pca -> origin/rzou/pca 2025-06-01T20:58:07.4637142Z * [new branch] rzou/pipe_split -> origin/rzou/pipe_split 2025-06-01T20:58:07.4637591Z * [new branch] rzou/realprop -> origin/rzou/realprop 2025-06-01T20:58:07.4638047Z * [new branch] rzou/setup_context -> origin/rzou/setup_context 2025-06-01T20:58:07.4638783Z * [new branch] sanchitintel/gemm_template_avoid_malloc_lock_contention -> origin/sanchitintel/gemm_template_avoid_malloc_lock_contention 2025-06-01T20:58:07.4639687Z * [new branch] sanchitintel/modify_fp32_micro_gemm -> origin/sanchitintel/modify_fp32_micro_gemm 2025-06-01T20:58:07.4640930Z * [new branch] sanchitintel/refactor_aten_int8_woq_gemm -> origin/sanchitintel/refactor_aten_int8_woq_gemm 2025-06-01T20:58:07.4641778Z * [new branch] sanchitintel/weird_thing_with_test_cpu_select_algorithm -> origin/sanchitintel/weird_thing_with_test_cpu_select_algorithm 2025-06-01T20:58:07.4642567Z * [new branch] sapling-pr-archive-SS-JIA -> origin/sapling-pr-archive-SS-JIA 2025-06-01T20:58:07.4643043Z * [new branch] save -> origin/save 2025-06-01T20:58:07.4643445Z * [new branch] sdym/2.5.1 -> origin/sdym/2.5.1 2025-06-01T20:58:07.4643902Z * [new branch] seemethere-patch-1 -> origin/seemethere-patch-1 2025-06-01T20:58:07.4644386Z * [new branch] share_and_pin_fork -> origin/share_and_pin_fork 2025-06-01T20:58:07.4644882Z * [new branch] shengf/fx-xform-perf -> origin/shengf/fx-xform-perf 2025-06-01T20:58:07.4645381Z * [new branch] shikaili_fp8_allgather -> origin/shikaili_fp8_allgather 2025-06-01T20:58:07.4646322Z * [new branch] shoumikhin-patch-1 -> origin/shoumikhin-patch-1 2025-06-01T20:58:07.5067788Z * [new branch] shoumikhin-patch-10 -> origin/shoumikhin-patch-10 2025-06-01T20:58:07.5068343Z * [new branch] shoumikhin-patch-11 -> origin/shoumikhin-patch-11 2025-06-01T20:58:07.5068861Z * [new branch] shoumikhin-patch-12 -> origin/shoumikhin-patch-12 2025-06-01T20:58:07.5069362Z * [new branch] shoumikhin-patch-2 -> origin/shoumikhin-patch-2 2025-06-01T20:58:07.5069862Z * [new branch] shoumikhin-patch-3 -> origin/shoumikhin-patch-3 2025-06-01T20:58:07.5070349Z * [new branch] shoumikhin-patch-4 -> origin/shoumikhin-patch-4 2025-06-01T20:58:07.5070836Z * [new branch] shoumikhin-patch-5 -> origin/shoumikhin-patch-5 2025-06-01T20:58:07.5071369Z * [new branch] shoumikhin-patch-6 -> origin/shoumikhin-patch-6 2025-06-01T20:58:07.5071888Z * [new branch] shoumikhin-patch-7 -> origin/shoumikhin-patch-7 2025-06-01T20:58:07.5073029Z * [new branch] shoumikhin-patch-8 -> origin/shoumikhin-patch-8 2025-06-01T20:58:07.5073912Z * [new branch] shoumikhin-patch-9 -> origin/shoumikhin-patch-9 2025-06-01T20:58:07.5074533Z * [new branch] shunting-multi-kernel-2 -> origin/shunting-multi-kernel-2 2025-06-01T20:58:07.5075090Z * [new branch] shunting-multi-kernel-3 -> origin/shunting-multi-kernel-3 2025-06-01T20:58:07.5075668Z * [new branch] shunting-triton-pin-update-5 -> origin/shunting-triton-pin-update-5 2025-06-01T20:58:07.5076256Z * [new branch] simplify-fq-per-channel -> origin/simplify-fq-per-channel 2025-06-01T20:58:07.5076776Z * [new branch] solve-accuracy-fix -> origin/solve-accuracy-fix 2025-06-01T20:58:07.5077326Z * [new branch] split-backend-plugin -> origin/split-backend-plugin 2025-06-01T20:58:07.5077869Z * [new branch] sqzhang/flight4 -> origin/sqzhang/flight4 2025-06-01T20:58:07.5078352Z * [new branch] sqzhang/flight4plus -> origin/sqzhang/flight4plus 2025-06-01T20:58:07.5078874Z * [new branch] sraikund/record_funct_test -> origin/sraikund/record_funct_test 2025-06-01T20:58:07.5079370Z * [new branch] sraikund16/test -> origin/sraikund16/test 2025-06-01T20:58:07.5079888Z * [new branch] stablize-compilation-time -> origin/stablize-compilation-time 2025-06-01T20:58:07.5080425Z * [new branch] starterTaskUpdate -> origin/starterTaskUpdate 2025-06-01T20:58:07.5080874Z * [new branch] stash_v -> origin/stash_v 2025-06-01T20:58:07.5081295Z * [new branch] subgraph_fuse -> origin/subgraph_fuse 2025-06-01T20:58:07.5081790Z * [new branch] support-uv-in-collect_env -> origin/support-uv-in-collect_env 2025-06-01T20:58:07.5082301Z * [new branch] svekars-patch-1 -> origin/svekars-patch-1 2025-06-01T20:58:07.5082814Z * [new branch] svekars-patch-2 -> origin/svekars-patch-2 2025-06-01T20:58:07.5083253Z * [new branch] switch-bn -> origin/switch-bn 2025-06-01T20:58:07.5083775Z * [new branch] sympy-bottleneck-repro -> origin/sympy-bottleneck-repro 2025-06-01T20:58:07.5084256Z * [new branch] teja/add_logs -> origin/teja/add_logs 2025-06-01T20:58:07.5084686Z * [new branch] teja/dcp_poc -> origin/teja/dcp_poc 2025-06-01T20:58:07.5085103Z * [new branch] tensor_shelf -> origin/tensor_shelf 2025-06-01T20:58:07.5085573Z * [new branch] tensordict_integration -> origin/tensordict_integration 2025-06-01T20:58:07.5086108Z * [new branch] test-move-conda-builds -> origin/test-move-conda-builds 2025-06-01T20:58:07.5086576Z * [new branch] test/bmm_heur -> origin/test/bmm_heur 2025-06-01T20:58:07.5087019Z * [new branch] test/inductor -> origin/test/inductor 2025-06-01T20:58:07.5087479Z * [new branch] tidy_performance_cyy -> origin/tidy_performance_cyy 2025-06-01T20:58:07.5087994Z * [new branch] trace_fsdp_torchtune_lora -> origin/trace_fsdp_torchtune_lora 2025-06-01T20:58:07.5088562Z * [new branch] traceable_fsdp_unit_tests -> origin/traceable_fsdp_unit_tests 2025-06-01T20:58:07.5089089Z * [new branch] tree_loop_vec_base -> origin/tree_loop_vec_base 2025-06-01T20:58:07.5089534Z * [new branch] tree_vec_base -> origin/tree_vec_base 2025-06-01T20:58:07.5090016Z * [new branch] triton-cpu-arm-expriment -> origin/triton-cpu-arm-expriment 2025-06-01T20:58:07.5090518Z * [new branch] triton-update -> origin/triton-update 2025-06-01T20:58:07.5091063Z * [new branch] triton_kernel -> origin/triton_kernel 2025-06-01T20:58:07.5091588Z * [new branch] triton_kernel_perf -> origin/triton_kernel_perf 2025-06-01T20:58:07.5092053Z * [new branch] try-runllm -> origin/try-runllm 2025-06-01T20:58:07.5092464Z * [new branch] type_dec -> origin/type_dec 2025-06-01T20:58:07.5458851Z * [new branch] update-audio-commit-hash/14543755404-1550-1 -> origin/update-audio-commit-hash/14543755404-1550-1 2025-06-01T20:58:07.5459721Z * [new branch] update-audio-commit-hash/14654232188-1560-1 -> origin/update-audio-commit-hash/14654232188-1560-1 2025-06-01T20:58:07.5460508Z * [new branch] update-audio-commit-hash/14849006741-1577-1 -> origin/update-audio-commit-hash/14849006741-1577-1 2025-06-01T20:58:07.5461298Z * [new branch] update-audio-commit-hash/14939917980-1582-1 -> origin/update-audio-commit-hash/14939917980-1582-1 2025-06-01T20:58:07.5462102Z * [new branch] update-audio-commit-hash/15009422285-1586-1 -> origin/update-audio-commit-hash/15009422285-1586-1 2025-06-01T20:58:07.5462894Z * [new branch] update-audio-commit-hash/15150628051-1595-1 -> origin/update-audio-commit-hash/15150628051-1595-1 2025-06-01T20:58:07.5463681Z * [new branch] update-audio-commit-hash/15358121390-1608-1 -> origin/update-audio-commit-hash/15358121390-1608-1 2025-06-01T20:58:07.5464362Z * [new branch] update-benchmark-cuda-12.8 -> origin/update-benchmark-cuda-12.8 2025-06-01T20:58:07.5464982Z * [new branch] update-doc-dependencies-local -> origin/update-doc-dependencies-local 2025-06-01T20:58:07.5465565Z * [new branch] update-doca-actions -> origin/update-doca-actions 2025-06-01T20:58:07.5466261Z * [new branch] update-executorch-commit-hash/14543755404-1550-1 -> origin/update-executorch-commit-hash/14543755404-1550-1 2025-06-01T20:58:07.5467166Z * [new branch] update-executorch-commit-hash/14675703089-1561-1 -> origin/update-executorch-commit-hash/14675703089-1561-1 2025-06-01T20:58:07.5468039Z * [new branch] update-executorch-commit-hash/14985369033-1585-1 -> origin/update-executorch-commit-hash/14985369033-1585-1 2025-06-01T20:58:07.5468888Z * [new branch] update-triton-commit-hash/13663274526-1487-2 -> origin/update-triton-commit-hash/13663274526-1487-2 2025-06-01T20:58:07.5469598Z * [new branch] update-triton-wheel-install -> origin/update-triton-wheel-install 2025-06-01T20:58:07.5470290Z * [new branch] update-vision-commit-hash/15336342773-1607-1 -> origin/update-vision-commit-hash/15336342773-1607-1 2025-06-01T20:58:07.5471083Z * [new branch] update-vision-commit-hash/9010274985-1089-1 -> origin/update-vision-commit-hash/9010274985-1089-1 2025-06-01T20:58:07.5471840Z * [new branch] update-xla-commit-hash/14440116118-180-1 -> origin/update-xla-commit-hash/14440116118-180-1 2025-06-01T20:58:07.5472578Z * [new branch] update-xla-commit-hash/14831479729-183-1 -> origin/update-xla-commit-hash/14831479729-183-1 2025-06-01T20:58:07.5473308Z * [new branch] update-xla-commit-hash/14966557941-184-1 -> origin/update-xla-commit-hash/14966557941-184-1 2025-06-01T20:58:07.5474091Z * [new branch] update-xla-commit-hash/15107157326-185-1 -> origin/update-xla-commit-hash/15107157326-185-1 2025-06-01T20:58:07.5474816Z * [new branch] update-xla-commit-hash/15249005916-186-1 -> origin/update-xla-commit-hash/15249005916-186-1 2025-06-01T20:58:07.5475545Z * [new branch] update_docs_torch_multinomial_issue#125388 -> origin/update_docs_torch_multinomial_issue#125388 2025-06-01T20:58:07.5476195Z * [new branch] update_slow_tests_1722488736 -> origin/update_slow_tests_1722488736 2025-06-01T20:58:07.5476740Z * [new branch] update_slow_tests_1722879173 -> origin/update_slow_tests_1722879173 2025-06-01T20:58:07.5477508Z * [new branch] update_slow_tests_1744616441 -> origin/update_slow_tests_1744616441 2025-06-01T20:58:07.5478055Z * [new branch] update_slow_tests_1747640463 -> origin/update_slow_tests_1747640463 2025-06-01T20:58:07.5478583Z * [new branch] update_slow_tests_1748245625 -> origin/update_slow_tests_1748245625 2025-06-01T20:58:07.5479139Z * [new branch] update_submodule_FBGEMM -> origin/update_submodule_FBGEMM 2025-06-01T20:58:07.5479662Z * [new branch] update_submodule_kineto -> origin/update_submodule_kineto 2025-06-01T20:58:07.5480112Z * [new branch] v0.1.2 -> origin/v0.1.2 2025-06-01T20:58:07.5480515Z * [new branch] v1.0.1 -> origin/v1.0.1 2025-06-01T20:58:07.5480913Z * [new branch] v1.0.3 -> origin/v1.0.3 2025-06-01T20:58:07.5481307Z * [new branch] v1.1.0 -> origin/v1.1.0 2025-06-01T20:58:07.5481703Z * [new branch] v1.2.0 -> origin/v1.2.0 2025-06-01T20:58:07.5482206Z * [new branch] v1.3.0 -> origin/v1.3.0 2025-06-01T20:58:07.5482606Z * [new branch] v1.3.1 -> origin/v1.3.1 2025-06-01T20:58:07.5483018Z * [new branch] validate-flex -> origin/validate-flex 2025-06-01T20:58:07.5948136Z * [new branch] validate_fn -> origin/validate_fn 2025-06-01T20:58:07.5948722Z * [new branch] validations_2.6 -> origin/validations_2.6 2025-06-01T20:58:07.5949178Z * [new branch] viable/strict -> origin/viable/strict 2025-06-01T20:58:07.5949664Z * [new branch] wdvr/conda_devcontainer -> origin/wdvr/conda_devcontainer 2025-06-01T20:58:07.5950231Z * [new branch] wdvr/devcontainer_apt_cleanup -> origin/wdvr/devcontainer_apt_cleanup 2025-06-01T20:58:07.5950869Z * [new branch] wdvr/devcontainer_conda_removal -> origin/wdvr/devcontainer_conda_removal 2025-06-01T20:58:07.5951523Z * [new branch] wdvr/devcontainer_context_fix -> origin/wdvr/devcontainer_context_fix 2025-06-01T20:58:07.5952105Z * [new branch] wdvr/fix_logging_test -> origin/wdvr/fix_logging_test 2025-06-01T20:58:07.5952585Z * [new branch] wdvr/iss145259_alt -> origin/wdvr/iss145259_alt 2025-06-01T20:58:07.5953030Z * [new branch] wdvr/iss_145259 -> origin/wdvr/iss_145259 2025-06-01T20:58:07.5953488Z * [new branch] wdvr/logging2fix -> origin/wdvr/logging2fix 2025-06-01T20:58:07.5953931Z * [new branch] whc/flight -> origin/whc/flight 2025-06-01T20:58:07.5954440Z * [new branch] whc/flight4 -> origin/whc/flight4 2025-06-01T20:58:07.5954867Z * [new branch] whc/flight51 -> origin/whc/flight51 2025-06-01T20:58:07.5955291Z * [new branch] whc/flight53 -> origin/whc/flight53 2025-06-01T20:58:07.5955723Z * [new branch] whc/flight_full -> origin/whc/flight_full 2025-06-01T20:58:07.5956169Z * [new branch] whc/flightbase -> origin/whc/flightbase 2025-06-01T20:58:07.5956604Z * [new branch] whc/p2phang -> origin/whc/p2phang 2025-06-01T20:58:07.5957068Z * [new branch] whc/stage2 -> origin/whc/stage2 2025-06-01T20:58:07.5957519Z * [new branch] whc/uneven -> origin/whc/uneven 2025-06-01T20:58:07.5957963Z * [new branch] whc/uneven-merge -> origin/whc/uneven-merge 2025-06-01T20:58:07.5958429Z * [new branch] windowsMonitoring -> origin/windowsMonitoring 2025-06-01T20:58:07.5958881Z * [new branch] xmfan/ca_0516 -> origin/xmfan/ca_0516 2025-06-01T20:58:07.5959761Z * [new branch] xmfan/ca_1a722f62c248391fc4a542e8851a5559aa356ae8 -> origin/xmfan/ca_1a722f62c248391fc4a542e8851a5559aa356ae8 2025-06-01T20:58:07.5960422Z * [new branch] xmfan/ca_5a2be192d1 -> origin/xmfan/ca_5a2be192d1 2025-06-01T20:58:07.5960879Z * [new branch] xmfan/ca_api -> origin/xmfan/ca_api 2025-06-01T20:58:07.5961310Z * [new branch] xmfan/ca_apr8 -> origin/xmfan/ca_apr8 2025-06-01T20:58:07.5961736Z * [new branch] xmfan/ca_base -> origin/xmfan/ca_base 2025-06-01T20:58:07.5962197Z * [new branch] xmfan/ca_cudagraphs -> origin/xmfan/ca_cudagraphs 2025-06-01T20:58:07.5962700Z * [new branch] xmfan/ca_dynamic -> origin/xmfan/ca_dynamic 2025-06-01T20:58:07.5963193Z * [new branch] xmfan/ca_fix_dyn -> origin/xmfan/ca_fix_dyn 2025-06-01T20:58:07.5963653Z * [new branch] xmfan/ca_fix_lowering -> origin/xmfan/ca_fix_lowering 2025-06-01T20:58:07.5964154Z * [new branch] xmfan/ca_fix_polyfills -> origin/xmfan/ca_fix_polyfills 2025-06-01T20:58:07.5964616Z * [new branch] xmfan/ca_jan3 -> origin/xmfan/ca_jan3 2025-06-01T20:58:07.5965037Z * [new branch] xmfan/ca_jun18 -> origin/xmfan/ca_jun18 2025-06-01T20:58:07.5965479Z * [new branch] xmfan/ca_jun24 -> origin/xmfan/ca_jun24 2025-06-01T20:58:07.5965911Z * [new branch] xmfan/ca_mem_base -> origin/xmfan/ca_mem_base 2025-06-01T20:58:07.5966358Z * [new branch] xmfan/ca_mem_fix -> origin/xmfan/ca_mem_fix 2025-06-01T20:58:07.5966826Z * [new branch] xmfan/ca_memory_fix -> origin/xmfan/ca_memory_fix 2025-06-01T20:58:07.5967326Z * [new branch] xmfan/ca_memory_fix_rebased -> origin/xmfan/ca_memory_fix_rebased 2025-06-01T20:58:07.5967872Z * [new branch] xmfan/ca_memory_fix_rebased2 -> origin/xmfan/ca_memory_fix_rebased2 2025-06-01T20:58:07.5968423Z * [new branch] xmfan/ca_move_to_cuda -> origin/xmfan/ca_move_to_cuda 2025-06-01T20:58:07.5968931Z * [new branch] xmfan/ca_nested -> origin/xmfan/ca_nested 2025-06-01T20:58:07.5969371Z * [new branch] xmfan/ca_overhead -> origin/xmfan/ca_overhead 2025-06-01T20:58:07.5969882Z * [new branch] xmfan/ca_overhead_0eba7e5451 -> origin/xmfan/ca_overhead_0eba7e5451 2025-06-01T20:58:07.5970393Z * [new branch] xmfan/ca_scalar -> origin/xmfan/ca_scalar 2025-06-01T20:58:07.5970870Z * [new branch] xmfan/ca_subclass_mem_fix -> origin/xmfan/ca_subclass_mem_fix 2025-06-01T20:58:07.5971362Z * [new branch] xmfan/ca_warm_mem -> origin/xmfan/ca_warm_mem 2025-06-01T20:58:07.6400007Z * [new branch] xmfan/ca_warm_mem_base -> origin/xmfan/ca_warm_mem_base 2025-06-01T20:58:07.6400521Z * [new branch] xmfan/cacu_jun18 -> origin/xmfan/cacu_jun18 2025-06-01T20:58:07.6400980Z * [new branch] xmfan/cacu_jun19 -> origin/xmfan/cacu_jun19 2025-06-01T20:58:07.6401419Z * [new branch] xmfan/cacu_jun4 -> origin/xmfan/cacu_jun4 2025-06-01T20:58:07.6401877Z * [new branch] xmfan/cacu_may27 -> origin/xmfan/cacu_may27 2025-06-01T20:58:07.6402342Z * [new branch] xmfan/circular_dep -> origin/xmfan/circular_dep 2025-06-01T20:58:07.6402872Z * [new branch] xmfan/compiled_autograd_bench -> origin/xmfan/compiled_autograd_bench 2025-06-01T20:58:07.6403500Z * [new branch] xmfan/compiled_autograd_bench_base -> origin/xmfan/compiled_autograd_bench_base 2025-06-01T20:58:07.6404149Z * [new branch] xmfan/compiled_autograd_benchmark -> origin/xmfan/compiled_autograd_benchmark 2025-06-01T20:58:07.6404886Z * [new branch] xmfan/compiled_autograd_ddp -> origin/xmfan/compiled_autograd_ddp 2025-06-01T20:58:07.6405552Z * [new branch] xmfan/compiled_autograd_feb_29 -> origin/xmfan/compiled_autograd_feb_29 2025-06-01T20:58:07.6406194Z * [new branch] xmfan/compiled_autograd_graph_breaks -> origin/xmfan/compiled_autograd_graph_breaks 2025-06-01T20:58:07.6406825Z * [new branch] xmfan/compiled_autograd_hud -> origin/xmfan/compiled_autograd_hud 2025-06-01T20:58:07.6407488Z * [new branch] xmfan/compiled_autograd_hypothetical_perf -> origin/xmfan/compiled_autograd_hypothetical_perf 2025-06-01T20:58:07.6408239Z * [new branch] xmfan/compiled_autograd_perf_no_reuse -> origin/xmfan/compiled_autograd_perf_no_reuse 2025-06-01T20:58:07.6408856Z * [new branch] xmfan/disable_duck_shape -> origin/xmfan/disable_duck_shape 2025-06-01T20:58:07.6409417Z * [new branch] xmfan/fca_cpp_node_passthrough -> origin/xmfan/fca_cpp_node_passthrough 2025-06-01T20:58:07.6410015Z * [new branch] xmfan/feb_10_compiled_autograd -> origin/xmfan/feb_10_compiled_autograd 2025-06-01T20:58:07.6410662Z * [new branch] xmfan/feb_10_compiled_autograd_cudagraph -> origin/xmfan/feb_10_compiled_autograd_cudagraph 2025-06-01T20:58:07.6411263Z * [new branch] xmfan/issue_123374 -> origin/xmfan/issue_123374 2025-06-01T20:58:07.6411950Z * [new branch] xmfan/post_3945954741e2d37023c5d6954f9483008e0892f9 -> origin/xmfan/post_3945954741e2d37023c5d6954f9483008e0892f9 2025-06-01T20:58:07.6412817Z * [new branch] xmfan/pre_3945954741e2d37023c5d6954f9483008e0892f9 -> origin/xmfan/pre_3945954741e2d37023c5d6954f9483008e0892f9 2025-06-01T20:58:07.6413495Z * [new branch] xmfan/segfault_test -> origin/xmfan/segfault_test 2025-06-01T20:58:07.6413983Z * [new branch] xmfan/single_step -> origin/xmfan/single_step 2025-06-01T20:58:07.6414451Z * [new branch] xmfan/sth_0829 -> origin/xmfan/sth_0829 2025-06-01T20:58:07.6414880Z * [new branch] xmfan/test -> origin/xmfan/test 2025-06-01T20:58:07.6415358Z * [new branch] yguo/debug-0226-constexpr -> origin/yguo/debug-0226-constexpr 2025-06-01T20:58:07.6415885Z * [new branch] yguo/new_latest_changes -> origin/yguo/new_latest_changes 2025-06-01T20:58:07.6416419Z * [new branch] yguo/patch_constexpr_changes -> origin/yguo/patch_constexpr_changes 2025-06-01T20:58:07.6417162Z * [new branch] yguo/repro-segfault-triton-aoti-cpp-wrapper -> origin/yguo/repro-segfault-triton-aoti-cpp-wrapper 2025-06-01T20:58:07.6417851Z * [new branch] yihan_quantization -> origin/yihan_quantization 2025-06-01T20:58:07.6418318Z * [new branch] yiming/bootcamp -> origin/yiming/bootcamp 2025-06-01T20:58:07.6418789Z * [new branch] zainr/canary-test -> origin/zainr/canary-test 2025-06-01T20:58:07.6419270Z * [new branch] zainr/mypy15-claude -> origin/zainr/mypy15-claude 2025-06-01T20:58:07.6419749Z * [new branch] zainr/no-win-pull -> origin/zainr/no-win-pull 2025-06-01T20:58:07.6420255Z * [new branch] zainr/pull-migration-c -> origin/zainr/pull-migration-c 2025-06-01T20:58:07.6420770Z * [new branch] zainr/require-easycla -> origin/zainr/require-easycla 2025-06-01T20:58:07.6421246Z * [new branch] zainr/unstable -> origin/zainr/unstable 2025-06-01T20:58:07.6421804Z * [new branch] zasdfgbnm-patch-3 -> origin/zasdfgbnm-patch-3 2025-06-01T20:58:07.6422291Z * [new branch] zb2p -> origin/zb2p 2025-06-01T20:58:07.6422710Z * [new branch] zdevito-patch-1 -> origin/zdevito-patch-1 2025-06-01T20:58:07.6423318Z * [new branch] zeros-and-scatter-part2 -> origin/zeros-and-scatter-part2 2025-06-01T20:58:07.6827242Z * [new branch] zhxchen17/moodycamel -> origin/zhxchen17/moodycamel 2025-06-01T20:58:07.6827778Z * [new branch] zhxchen17/nativert/0 -> origin/zhxchen17/nativert/0 2025-06-01T20:58:07.6828278Z * [new branch] zhxchen17/scratch/0 -> origin/zhxchen17/scratch/0 2025-06-01T20:58:07.6828788Z * [new branch] zhxchen17/sticky_cache/0 -> origin/zhxchen17/sticky_cache/0 2025-06-01T20:58:07.6829301Z * [new branch] zhxhcen17/moodycamel -> origin/zhxhcen17/moodycamel 2025-06-01T20:58:07.6829772Z * [new branch] zxiiro/bazel -> origin/zxiiro/bazel 2025-06-01T20:58:07.6830193Z * [new branch] zxiiro/docs -> origin/zxiiro/docs 2025-06-01T20:58:07.6830648Z * [new branch] zxiiro/linux-build -> origin/zxiiro/linux-build 2025-06-01T20:58:07.6831135Z * [new branch] zxiiro/linux-test -> origin/zxiiro/linux-test 2025-06-01T20:58:07.6831582Z * [new branch] zxiiro/main -> origin/zxiiro/main 2025-06-01T20:58:07.6832004Z * [new branch] zxiiro/test -> origin/zxiiro/test 2025-06-01T20:58:07.6832440Z * [new branch] zxiiro/test-bazel -> origin/zxiiro/test-bazel 2025-06-01T20:58:07.6832938Z * [new branch] zxiiro/windows -> origin/zxiiro/windows 2025-06-01T20:58:07.6833412Z * [new branch] zxiiro/xpu -> origin/zxiiro/xpu 2025-06-01T20:58:07.6834204Z * [new tag] bc2caa7fdf006894eff7af936babde69ab5a40f8-huydhn-debug -> bc2caa7fdf006894eff7af936babde69ab5a40f8-huydhn-debug 2025-06-01T20:58:07.6834887Z * [new tag] ci/binaries/77164 -> ci/binaries/77164 2025-06-01T20:58:07.6835277Z * [new tag] ciflow/all/70978 -> ciflow/all/70978 2025-06-01T20:58:07.6835663Z * [new tag] ciflow/all/70979 -> ciflow/all/70979 2025-06-01T20:58:07.6836043Z * [new tag] ciflow/all/70989 -> ciflow/all/70989 2025-06-01T20:58:07.6836467Z * [new tag] ciflow/autoformat/149003 -> ciflow/autoformat/149003 2025-06-01T20:58:07.6836915Z * [new tag] ciflow/binaries/120076 -> ciflow/binaries/120076 2025-06-01T20:58:07.6837338Z * [new tag] ciflow/binaries/138996 -> ciflow/binaries/138996 2025-06-01T20:58:07.6837762Z * [new tag] ciflow/binaries/148173 -> ciflow/binaries/148173 2025-06-01T20:58:07.6838203Z * [new tag] ciflow/binaries/149192 -> ciflow/binaries/149192 2025-06-01T20:58:07.6838618Z * [new tag] ciflow/binaries/150688 -> ciflow/binaries/150688 2025-06-01T20:58:07.6839045Z * [new tag] ciflow/binaries/151581 -> ciflow/binaries/151581 2025-06-01T20:58:07.6839468Z * [new tag] ciflow/binaries/152782 -> ciflow/binaries/152782 2025-06-01T20:58:07.6839899Z * [new tag] ciflow/binaries/153322 -> ciflow/binaries/153322 2025-06-01T20:58:07.6840327Z * [new tag] ciflow/binaries/153538 -> ciflow/binaries/153538 2025-06-01T20:58:07.6840757Z * [new tag] ciflow/binaries/153792 -> ciflow/binaries/153792 2025-06-01T20:58:07.6841182Z * [new tag] ciflow/binaries/154783 -> ciflow/binaries/154783 2025-06-01T20:58:07.6841596Z * [new tag] ciflow/binaries/154809 -> ciflow/binaries/154809 2025-06-01T20:58:07.6842020Z * [new tag] ciflow/binaries/154811 -> ciflow/binaries/154811 2025-06-01T20:58:07.6842435Z * [new tag] ciflow/binaries/154819 -> ciflow/binaries/154819 2025-06-01T20:58:07.6842911Z * [new tag] ciflow/binaries_libtorch/152184 -> ciflow/binaries_libtorch/152184 2025-06-01T20:58:07.6843528Z * [new tag] ciflow/binaries_wheel/146055 -> ciflow/binaries_wheel/146055 2025-06-01T20:58:07.6844079Z * [new tag] ciflow/binaries_wheel/149192 -> ciflow/binaries_wheel/149192 2025-06-01T20:58:07.6844564Z * [new tag] ciflow/binaries_wheel/151429 -> ciflow/binaries_wheel/151429 2025-06-01T20:58:07.6845036Z * [new tag] ciflow/binaries_wheel/152184 -> ciflow/binaries_wheel/152184 2025-06-01T20:58:07.6845525Z * [new tag] ciflow/binaries_wheel/152820 -> ciflow/binaries_wheel/152820 2025-06-01T20:58:07.6846005Z * [new tag] ciflow/binaries_wheel/153228 -> ciflow/binaries_wheel/153228 2025-06-01T20:58:07.6846480Z * [new tag] ciflow/binaries_wheel/153538 -> ciflow/binaries_wheel/153538 2025-06-01T20:58:07.6846965Z * [new tag] ciflow/binaries_wheel/154107 -> ciflow/binaries_wheel/154107 2025-06-01T20:58:07.6847438Z * [new tag] ciflow/binaries_wheel/154346 -> ciflow/binaries_wheel/154346 2025-06-01T20:58:07.6847928Z * [new tag] ciflow/binaries_wheel/154729 -> ciflow/binaries_wheel/154729 2025-06-01T20:58:07.6848360Z * [new tag] ciflow/cuda/70978 -> ciflow/cuda/70978 2025-06-01T20:58:07.6848758Z * [new tag] ciflow/cuda/70979 -> ciflow/cuda/70979 2025-06-01T20:58:07.6849157Z * [new tag] ciflow/cuda/70989 -> ciflow/cuda/70989 2025-06-01T20:58:07.7128631Z * [new tag] ciflow/h100/db26aeaec2ce9d47e52ec21ae30d15054bcd2a71 -> ciflow/h100/db26aeaec2ce9d47e52ec21ae30d15054bcd2a71 2025-06-01T20:58:07.7129397Z * [new tag] ciflow/inductor-cu124/153541 -> ciflow/inductor-cu124/153541 2025-06-01T20:58:07.7129893Z * [new tag] ciflow/inductor-cu126/152782 -> ciflow/inductor-cu126/152782 2025-06-01T20:58:07.7130371Z * [new tag] ciflow/inductor-cu126/153541 -> ciflow/inductor-cu126/153541 2025-06-01T20:58:07.7131071Z * [new tag] ciflow/inductor-micro-benchmark-cpu-x86/151581 -> ciflow/inductor-micro-benchmark-cpu-x86/151581 2025-06-01T20:58:07.7131885Z * [new tag] ciflow/inductor-micro-benchmark-cpu-x86/151585 -> ciflow/inductor-micro-benchmark-cpu-x86/151585 2025-06-01T20:58:07.7132682Z * [new tag] ciflow/inductor-micro-benchmark/151581 -> ciflow/inductor-micro-benchmark/151581 2025-06-01T20:58:07.7133396Z * [new tag] ciflow/inductor-micro-benchmark/151585 -> ciflow/inductor-micro-benchmark/151585 2025-06-01T20:58:07.7134112Z * [new tag] ciflow/inductor-perf-compare/151581 -> ciflow/inductor-perf-compare/151581 2025-06-01T20:58:07.7134780Z * [new tag] ciflow/inductor-perf-compare/151585 -> ciflow/inductor-perf-compare/151585 2025-06-01T20:58:07.7135570Z * [new tag] ciflow/inductor-perf-test-nightly-rocm/148672 -> ciflow/inductor-perf-test-nightly-rocm/148672 2025-06-01T20:58:07.7136417Z * [new tag] ciflow/inductor-perf-test-nightly-rocm/149039 -> ciflow/inductor-perf-test-nightly-rocm/149039 2025-06-01T20:58:07.7137299Z * [new tag] ciflow/inductor-perf-test-nightly-rocm/149506 -> ciflow/inductor-perf-test-nightly-rocm/149506 2025-06-01T20:58:07.7138173Z * [new tag] ciflow/inductor-perf-test-nightly-rocm/151581 -> ciflow/inductor-perf-test-nightly-rocm/151581 2025-06-01T20:58:07.7139053Z * [new tag] ciflow/inductor-perf-test-nightly-rocm/151845 -> ciflow/inductor-perf-test-nightly-rocm/151845 2025-06-01T20:58:07.7139920Z * [new tag] ciflow/inductor-perf-test-nightly-rocm/154511 -> ciflow/inductor-perf-test-nightly-rocm/154511 2025-06-01T20:58:07.7140703Z * [new tag] ciflow/inductor-perf-test-nightly/151581 -> ciflow/inductor-perf-test-nightly/151581 2025-06-01T20:58:07.7141491Z * [new tag] ciflow/inductor-perf-test-nightly/154511 -> ciflow/inductor-perf-test-nightly/154511 2025-06-01T20:58:07.7142701Z * [new tag] ciflow/inductor-periodic/053ca7439a0ec3c09a257bbcb31896a62d889f33 -> ciflow/inductor-periodic/053ca7439a0ec3c09a257bbcb31896a62d889f33 2025-06-01T20:58:07.7143628Z * [new tag] ciflow/inductor-periodic/149949 -> ciflow/inductor-periodic/149949 2025-06-01T20:58:07.7144264Z * [new tag] ciflow/inductor-periodic/150411 -> ciflow/inductor-periodic/150411 2025-06-01T20:58:07.7144849Z * [new tag] ciflow/inductor-periodic/151581 -> ciflow/inductor-periodic/151581 2025-06-01T20:58:07.7145443Z * [new tag] ciflow/inductor-periodic/153290 -> ciflow/inductor-periodic/153290 2025-06-01T20:58:07.7146022Z * [new tag] ciflow/inductor-periodic/154497 -> ciflow/inductor-periodic/154497 2025-06-01T20:58:07.7146958Z * [new tag] ciflow/inductor-periodic/c13eeaa718c985782bd72bf47886430f6203a768 -> ciflow/inductor-periodic/c13eeaa718c985782bd72bf47886430f6203a768 2025-06-01T20:58:07.7148222Z * [new tag] ciflow/inductor-periodic/fe082c5ffe0c9b1bb70727f2ee7996987bf7c5cd -> ciflow/inductor-periodic/fe082c5ffe0c9b1bb70727f2ee7996987bf7c5cd 2025-06-01T20:58:07.7149105Z * [new tag] ciflow/inductor-rocm/141309 -> ciflow/inductor-rocm/141309 2025-06-01T20:58:07.7149631Z * [new tag] ciflow/inductor-rocm/147583 -> ciflow/inductor-rocm/147583 2025-06-01T20:58:07.7150153Z * [new tag] ciflow/inductor-rocm/151581 -> ciflow/inductor-rocm/151581 2025-06-01T20:58:07.7150662Z * [new tag] ciflow/inductor-rocm/151845 -> ciflow/inductor-rocm/151845 2025-06-01T20:58:07.7151183Z * [new tag] ciflow/inductor-rocm/153545 -> ciflow/inductor-rocm/153545 2025-06-01T20:58:07.7151689Z * [new tag] ciflow/inductor-rocm/153548 -> ciflow/inductor-rocm/153548 2025-06-01T20:58:07.7152208Z * [new tag] ciflow/inductor-rocm/154525 -> ciflow/inductor-rocm/154525 2025-06-01T20:58:07.7152706Z * [new tag] ciflow/inductor/110155 -> ciflow/inductor/110155 2025-06-01T20:58:07.7153193Z * [new tag] ciflow/inductor/119496 -> ciflow/inductor/119496 2025-06-01T20:58:07.7153667Z * [new tag] ciflow/inductor/119977 -> ciflow/inductor/119977 2025-06-01T20:58:07.7154208Z * [new tag] ciflow/inductor/120076 -> ciflow/inductor/120076 2025-06-01T20:58:07.7154676Z * [new tag] ciflow/inductor/121445 -> ciflow/inductor/121445 2025-06-01T20:58:07.7155130Z * [new tag] ciflow/inductor/124490 -> ciflow/inductor/124490 2025-06-01T20:58:07.7454912Z * [new tag] ciflow/inductor/125270 -> ciflow/inductor/125270 2025-06-01T20:58:07.7455414Z * [new tag] ciflow/inductor/125326 -> ciflow/inductor/125326 2025-06-01T20:58:07.7455877Z * [new tag] ciflow/inductor/125428 -> ciflow/inductor/125428 2025-06-01T20:58:07.7456307Z * [new tag] ciflow/inductor/125888 -> ciflow/inductor/125888 2025-06-01T20:58:07.7456734Z * [new tag] ciflow/inductor/125995 -> ciflow/inductor/125995 2025-06-01T20:58:07.7457149Z * [new tag] ciflow/inductor/126348 -> ciflow/inductor/126348 2025-06-01T20:58:07.7457572Z * [new tag] ciflow/inductor/127293 -> ciflow/inductor/127293 2025-06-01T20:58:07.7457992Z * [new tag] ciflow/inductor/127294 -> ciflow/inductor/127294 2025-06-01T20:58:07.7458422Z * [new tag] ciflow/inductor/129352 -> ciflow/inductor/129352 2025-06-01T20:58:07.7458836Z * [new tag] ciflow/inductor/130887 -> ciflow/inductor/130887 2025-06-01T20:58:07.7459271Z * [new tag] ciflow/inductor/132414 -> ciflow/inductor/132414 2025-06-01T20:58:07.7459698Z * [new tag] ciflow/inductor/133044 -> ciflow/inductor/133044 2025-06-01T20:58:07.7460239Z * [new tag] ciflow/inductor/133289 -> ciflow/inductor/133289 2025-06-01T20:58:07.7460751Z * [new tag] ciflow/inductor/133296 -> ciflow/inductor/133296 2025-06-01T20:58:07.7461172Z * [new tag] ciflow/inductor/133297 -> ciflow/inductor/133297 2025-06-01T20:58:07.7461637Z * [new tag] ciflow/inductor/133315 -> ciflow/inductor/133315 2025-06-01T20:58:07.7462106Z * [new tag] ciflow/inductor/133392 -> ciflow/inductor/133392 2025-06-01T20:58:07.7462526Z * [new tag] ciflow/inductor/133419 -> ciflow/inductor/133419 2025-06-01T20:58:07.7462953Z * [new tag] ciflow/inductor/133423 -> ciflow/inductor/133423 2025-06-01T20:58:07.7463368Z * [new tag] ciflow/inductor/133667 -> ciflow/inductor/133667 2025-06-01T20:58:07.7463794Z * [new tag] ciflow/inductor/133753 -> ciflow/inductor/133753 2025-06-01T20:58:07.7464217Z * [new tag] ciflow/inductor/135792 -> ciflow/inductor/135792 2025-06-01T20:58:07.7464648Z * [new tag] ciflow/inductor/136355 -> ciflow/inductor/136355 2025-06-01T20:58:07.7465072Z * [new tag] ciflow/inductor/136702 -> ciflow/inductor/136702 2025-06-01T20:58:07.7465488Z * [new tag] ciflow/inductor/137400 -> ciflow/inductor/137400 2025-06-01T20:58:07.7465916Z * [new tag] ciflow/inductor/137568 -> ciflow/inductor/137568 2025-06-01T20:58:07.7466332Z * [new tag] ciflow/inductor/137583 -> ciflow/inductor/137583 2025-06-01T20:58:07.7466756Z * [new tag] ciflow/inductor/137846 -> ciflow/inductor/137846 2025-06-01T20:58:07.7467213Z * [new tag] ciflow/inductor/138214 -> ciflow/inductor/138214 2025-06-01T20:58:07.7467642Z * [new tag] ciflow/inductor/138388 -> ciflow/inductor/138388 2025-06-01T20:58:07.7468112Z * [new tag] ciflow/inductor/138513 -> ciflow/inductor/138513 2025-06-01T20:58:07.7468531Z * [new tag] ciflow/inductor/138519 -> ciflow/inductor/138519 2025-06-01T20:58:07.7468960Z * [new tag] ciflow/inductor/138626 -> ciflow/inductor/138626 2025-06-01T20:58:07.7469383Z * [new tag] ciflow/inductor/139561 -> ciflow/inductor/139561 2025-06-01T20:58:07.7469804Z * [new tag] ciflow/inductor/139975 -> ciflow/inductor/139975 2025-06-01T20:58:07.7470222Z * [new tag] ciflow/inductor/140756 -> ciflow/inductor/140756 2025-06-01T20:58:07.7470637Z * [new tag] ciflow/inductor/140979 -> ciflow/inductor/140979 2025-06-01T20:58:07.7471064Z * [new tag] ciflow/inductor/141309 -> ciflow/inductor/141309 2025-06-01T20:58:07.7471486Z * [new tag] ciflow/inductor/141842 -> ciflow/inductor/141842 2025-06-01T20:58:07.7471906Z * [new tag] ciflow/inductor/141961 -> ciflow/inductor/141961 2025-06-01T20:58:07.7472338Z * [new tag] ciflow/inductor/142295 -> ciflow/inductor/142295 2025-06-01T20:58:07.7472752Z * [new tag] ciflow/inductor/143712 -> ciflow/inductor/143712 2025-06-01T20:58:07.7473169Z * [new tag] ciflow/inductor/143812 -> ciflow/inductor/143812 2025-06-01T20:58:07.7473630Z * [new tag] ciflow/inductor/143833 -> ciflow/inductor/143833 2025-06-01T20:58:07.7474167Z * [new tag] ciflow/inductor/143987 -> ciflow/inductor/143987 2025-06-01T20:58:07.7474602Z * [new tag] ciflow/inductor/144366 -> ciflow/inductor/144366 2025-06-01T20:58:07.7475019Z * [new tag] ciflow/inductor/144438 -> ciflow/inductor/144438 2025-06-01T20:58:07.7475445Z * [new tag] ciflow/inductor/144516 -> ciflow/inductor/144516 2025-06-01T20:58:07.7475964Z * [new tag] ciflow/inductor/144542 -> ciflow/inductor/144542 2025-06-01T20:58:07.7810847Z * [new tag] ciflow/inductor/144548 -> ciflow/inductor/144548 2025-06-01T20:58:07.7811289Z * [new tag] ciflow/inductor/144553 -> ciflow/inductor/144553 2025-06-01T20:58:07.7811709Z * [new tag] ciflow/inductor/144555 -> ciflow/inductor/144555 2025-06-01T20:58:07.7812139Z * [new tag] ciflow/inductor/144556 -> ciflow/inductor/144556 2025-06-01T20:58:07.7812553Z * [new tag] ciflow/inductor/144765 -> ciflow/inductor/144765 2025-06-01T20:58:07.7812989Z * [new tag] ciflow/inductor/144905 -> ciflow/inductor/144905 2025-06-01T20:58:07.7813417Z * [new tag] ciflow/inductor/144925 -> ciflow/inductor/144925 2025-06-01T20:58:07.7813830Z * [new tag] ciflow/inductor/144992 -> ciflow/inductor/144992 2025-06-01T20:58:07.7814263Z * [new tag] ciflow/inductor/145153 -> ciflow/inductor/145153 2025-06-01T20:58:07.7814683Z * [new tag] ciflow/inductor/145353 -> ciflow/inductor/145353 2025-06-01T20:58:07.7815112Z * [new tag] ciflow/inductor/145594 -> ciflow/inductor/145594 2025-06-01T20:58:07.7815540Z * [new tag] ciflow/inductor/145595 -> ciflow/inductor/145595 2025-06-01T20:58:07.7815956Z * [new tag] ciflow/inductor/145681 -> ciflow/inductor/145681 2025-06-01T20:58:07.7816381Z * [new tag] ciflow/inductor/145911 -> ciflow/inductor/145911 2025-06-01T20:58:07.7816815Z * [new tag] ciflow/inductor/145922 -> ciflow/inductor/145922 2025-06-01T20:58:07.7817245Z * [new tag] ciflow/inductor/145992 -> ciflow/inductor/145992 2025-06-01T20:58:07.7817666Z * [new tag] ciflow/inductor/146101 -> ciflow/inductor/146101 2025-06-01T20:58:07.7818087Z * [new tag] ciflow/inductor/146172 -> ciflow/inductor/146172 2025-06-01T20:58:07.7818513Z * [new tag] ciflow/inductor/146267 -> ciflow/inductor/146267 2025-06-01T20:58:07.7818929Z * [new tag] ciflow/inductor/146288 -> ciflow/inductor/146288 2025-06-01T20:58:07.7819354Z * [new tag] ciflow/inductor/146335 -> ciflow/inductor/146335 2025-06-01T20:58:07.7819775Z * [new tag] ciflow/inductor/146436 -> ciflow/inductor/146436 2025-06-01T20:58:07.7820188Z * [new tag] ciflow/inductor/146506 -> ciflow/inductor/146506 2025-06-01T20:58:07.7820617Z * [new tag] ciflow/inductor/146558 -> ciflow/inductor/146558 2025-06-01T20:58:07.7821032Z * [new tag] ciflow/inductor/146845 -> ciflow/inductor/146845 2025-06-01T20:58:07.7821466Z * [new tag] ciflow/inductor/146874 -> ciflow/inductor/146874 2025-06-01T20:58:07.7821890Z * [new tag] ciflow/inductor/146983 -> ciflow/inductor/146983 2025-06-01T20:58:07.7822332Z * [new tag] ciflow/inductor/147049 -> ciflow/inductor/147049 2025-06-01T20:58:07.7822755Z * [new tag] ciflow/inductor/147146 -> ciflow/inductor/147146 2025-06-01T20:58:07.7823173Z * [new tag] ciflow/inductor/147360 -> ciflow/inductor/147360 2025-06-01T20:58:07.7823597Z * [new tag] ciflow/inductor/147368 -> ciflow/inductor/147368 2025-06-01T20:58:07.7824022Z * [new tag] ciflow/inductor/147410 -> ciflow/inductor/147410 2025-06-01T20:58:07.7824452Z * [new tag] ciflow/inductor/147514 -> ciflow/inductor/147514 2025-06-01T20:58:07.7824885Z * [new tag] ciflow/inductor/147528 -> ciflow/inductor/147528 2025-06-01T20:58:07.7825303Z * [new tag] ciflow/inductor/147562 -> ciflow/inductor/147562 2025-06-01T20:58:07.7825835Z * [new tag] ciflow/inductor/147583 -> ciflow/inductor/147583 2025-06-01T20:58:07.7826386Z * [new tag] ciflow/inductor/147603 -> ciflow/inductor/147603 2025-06-01T20:58:07.7826867Z * [new tag] ciflow/inductor/147745 -> ciflow/inductor/147745 2025-06-01T20:58:07.7827344Z * [new tag] ciflow/inductor/147881 -> ciflow/inductor/147881 2025-06-01T20:58:07.7827780Z * [new tag] ciflow/inductor/147927 -> ciflow/inductor/147927 2025-06-01T20:58:07.7828203Z * [new tag] ciflow/inductor/147990 -> ciflow/inductor/147990 2025-06-01T20:58:07.7828620Z * [new tag] ciflow/inductor/148173 -> ciflow/inductor/148173 2025-06-01T20:58:07.7829038Z * [new tag] ciflow/inductor/148186 -> ciflow/inductor/148186 2025-06-01T20:58:07.7829453Z * [new tag] ciflow/inductor/148202 -> ciflow/inductor/148202 2025-06-01T20:58:07.7829878Z * [new tag] ciflow/inductor/148235 -> ciflow/inductor/148235 2025-06-01T20:58:07.7830315Z * [new tag] ciflow/inductor/148294 -> ciflow/inductor/148294 2025-06-01T20:58:07.7830728Z * [new tag] ciflow/inductor/148328 -> ciflow/inductor/148328 2025-06-01T20:58:07.7831158Z * [new tag] ciflow/inductor/148357 -> ciflow/inductor/148357 2025-06-01T20:58:07.7831572Z * [new tag] ciflow/inductor/148408 -> ciflow/inductor/148408 2025-06-01T20:58:07.7832007Z * [new tag] ciflow/inductor/148413 -> ciflow/inductor/148413 2025-06-01T20:58:07.8157941Z * [new tag] ciflow/inductor/148414 -> ciflow/inductor/148414 2025-06-01T20:58:07.8158376Z * [new tag] ciflow/inductor/148415 -> ciflow/inductor/148415 2025-06-01T20:58:07.8158805Z * [new tag] ciflow/inductor/148418 -> ciflow/inductor/148418 2025-06-01T20:58:07.8159220Z * [new tag] ciflow/inductor/148424 -> ciflow/inductor/148424 2025-06-01T20:58:07.8159659Z * [new tag] ciflow/inductor/148484 -> ciflow/inductor/148484 2025-06-01T20:58:07.8160133Z * [new tag] ciflow/inductor/148485 -> ciflow/inductor/148485 2025-06-01T20:58:07.8160595Z * [new tag] ciflow/inductor/148488 -> ciflow/inductor/148488 2025-06-01T20:58:07.8161021Z * [new tag] ciflow/inductor/148492 -> ciflow/inductor/148492 2025-06-01T20:58:07.8161433Z * [new tag] ciflow/inductor/148529 -> ciflow/inductor/148529 2025-06-01T20:58:07.8161854Z * [new tag] ciflow/inductor/148569 -> ciflow/inductor/148569 2025-06-01T20:58:07.8162285Z * [new tag] ciflow/inductor/148618 -> ciflow/inductor/148618 2025-06-01T20:58:07.8162712Z * [new tag] ciflow/inductor/148694 -> ciflow/inductor/148694 2025-06-01T20:58:07.8163134Z * [new tag] ciflow/inductor/148710 -> ciflow/inductor/148710 2025-06-01T20:58:07.8163561Z * [new tag] ciflow/inductor/148731 -> ciflow/inductor/148731 2025-06-01T20:58:07.8163977Z * [new tag] ciflow/inductor/148780 -> ciflow/inductor/148780 2025-06-01T20:58:07.8164400Z * [new tag] ciflow/inductor/148898 -> ciflow/inductor/148898 2025-06-01T20:58:07.8164817Z * [new tag] ciflow/inductor/148932 -> ciflow/inductor/148932 2025-06-01T20:58:07.8165236Z * [new tag] ciflow/inductor/148947 -> ciflow/inductor/148947 2025-06-01T20:58:07.8165694Z * [new tag] ciflow/inductor/149039 -> ciflow/inductor/149039 2025-06-01T20:58:07.8166160Z * [new tag] ciflow/inductor/149055 -> ciflow/inductor/149055 2025-06-01T20:58:07.8166581Z * [new tag] ciflow/inductor/149066 -> ciflow/inductor/149066 2025-06-01T20:58:07.8167004Z * [new tag] ciflow/inductor/149067 -> ciflow/inductor/149067 2025-06-01T20:58:07.8167547Z * [new tag] ciflow/inductor/149068 -> ciflow/inductor/149068 2025-06-01T20:58:07.8168047Z * [new tag] ciflow/inductor/149069 -> ciflow/inductor/149069 2025-06-01T20:58:07.8168487Z * [new tag] ciflow/inductor/149140 -> ciflow/inductor/149140 2025-06-01T20:58:07.8168912Z * [new tag] ciflow/inductor/149150 -> ciflow/inductor/149150 2025-06-01T20:58:07.8169340Z * [new tag] ciflow/inductor/149173 -> ciflow/inductor/149173 2025-06-01T20:58:07.8169771Z * [new tag] ciflow/inductor/149192 -> ciflow/inductor/149192 2025-06-01T20:58:07.8170190Z * [new tag] ciflow/inductor/149282 -> ciflow/inductor/149282 2025-06-01T20:58:07.8170632Z * [new tag] ciflow/inductor/149288 -> ciflow/inductor/149288 2025-06-01T20:58:07.8171047Z * [new tag] ciflow/inductor/149348 -> ciflow/inductor/149348 2025-06-01T20:58:07.8171513Z * [new tag] ciflow/inductor/149362 -> ciflow/inductor/149362 2025-06-01T20:58:07.8171975Z * [new tag] ciflow/inductor/149420 -> ciflow/inductor/149420 2025-06-01T20:58:07.8172388Z * [new tag] ciflow/inductor/149426 -> ciflow/inductor/149426 2025-06-01T20:58:07.8172814Z * [new tag] ciflow/inductor/149427 -> ciflow/inductor/149427 2025-06-01T20:58:07.8173233Z * [new tag] ciflow/inductor/149486 -> ciflow/inductor/149486 2025-06-01T20:58:07.8173660Z * [new tag] ciflow/inductor/149506 -> ciflow/inductor/149506 2025-06-01T20:58:07.8174091Z * [new tag] ciflow/inductor/149518 -> ciflow/inductor/149518 2025-06-01T20:58:07.8174504Z * [new tag] ciflow/inductor/149560 -> ciflow/inductor/149560 2025-06-01T20:58:07.8174929Z * [new tag] ciflow/inductor/149561 -> ciflow/inductor/149561 2025-06-01T20:58:07.8175349Z * [new tag] ciflow/inductor/149562 -> ciflow/inductor/149562 2025-06-01T20:58:07.8175775Z * [new tag] ciflow/inductor/149580 -> ciflow/inductor/149580 2025-06-01T20:58:07.8176188Z * [new tag] ciflow/inductor/149697 -> ciflow/inductor/149697 2025-06-01T20:58:07.8176610Z * [new tag] ciflow/inductor/149701 -> ciflow/inductor/149701 2025-06-01T20:58:07.8177072Z * [new tag] ciflow/inductor/149706 -> ciflow/inductor/149706 2025-06-01T20:58:07.8177528Z * [new tag] ciflow/inductor/149733 -> ciflow/inductor/149733 2025-06-01T20:58:07.8177951Z * [new tag] ciflow/inductor/149763 -> ciflow/inductor/149763 2025-06-01T20:58:07.8178369Z * [new tag] ciflow/inductor/149769 -> ciflow/inductor/149769 2025-06-01T20:58:07.8178794Z * [new tag] ciflow/inductor/149913 -> ciflow/inductor/149913 2025-06-01T20:58:07.8495040Z * [new tag] ciflow/inductor/149949 -> ciflow/inductor/149949 2025-06-01T20:58:07.8495512Z * [new tag] ciflow/inductor/149958 -> ciflow/inductor/149958 2025-06-01T20:58:07.8495986Z * [new tag] ciflow/inductor/149961 -> ciflow/inductor/149961 2025-06-01T20:58:07.8496445Z * [new tag] ciflow/inductor/149967 -> ciflow/inductor/149967 2025-06-01T20:58:07.8496885Z * [new tag] ciflow/inductor/149998 -> ciflow/inductor/149998 2025-06-01T20:58:07.8497325Z * [new tag] ciflow/inductor/150003 -> ciflow/inductor/150003 2025-06-01T20:58:07.8497745Z * [new tag] ciflow/inductor/150044 -> ciflow/inductor/150044 2025-06-01T20:58:07.8498182Z * [new tag] ciflow/inductor/150080 -> ciflow/inductor/150080 2025-06-01T20:58:07.8498599Z * [new tag] ciflow/inductor/150116 -> ciflow/inductor/150116 2025-06-01T20:58:07.8499143Z * [new tag] ciflow/inductor/150241 -> ciflow/inductor/150241 2025-06-01T20:58:07.8499664Z * [new tag] ciflow/inductor/150287 -> ciflow/inductor/150287 2025-06-01T20:58:07.8500100Z * [new tag] ciflow/inductor/150302 -> ciflow/inductor/150302 2025-06-01T20:58:07.8500555Z * [new tag] ciflow/inductor/150331 -> ciflow/inductor/150331 2025-06-01T20:58:07.8500979Z * [new tag] ciflow/inductor/150349 -> ciflow/inductor/150349 2025-06-01T20:58:07.8501417Z * [new tag] ciflow/inductor/150355 -> ciflow/inductor/150355 2025-06-01T20:58:07.8501887Z * [new tag] ciflow/inductor/150365 -> ciflow/inductor/150365 2025-06-01T20:58:07.8502314Z * [new tag] ciflow/inductor/150411 -> ciflow/inductor/150411 2025-06-01T20:58:07.8502787Z * [new tag] ciflow/inductor/150415 -> ciflow/inductor/150415 2025-06-01T20:58:07.8503219Z * [new tag] ciflow/inductor/150429 -> ciflow/inductor/150429 2025-06-01T20:58:07.8503739Z * [new tag] ciflow/inductor/150455 -> ciflow/inductor/150455 2025-06-01T20:58:07.8504164Z * [new tag] ciflow/inductor/150474 -> ciflow/inductor/150474 2025-06-01T20:58:07.8504593Z * [new tag] ciflow/inductor/150481 -> ciflow/inductor/150481 2025-06-01T20:58:07.8505027Z * [new tag] ciflow/inductor/150546 -> ciflow/inductor/150546 2025-06-01T20:58:07.8505451Z * [new tag] ciflow/inductor/150564 -> ciflow/inductor/150564 2025-06-01T20:58:07.8505879Z * [new tag] ciflow/inductor/150567 -> ciflow/inductor/150567 2025-06-01T20:58:07.8506299Z * [new tag] ciflow/inductor/150569 -> ciflow/inductor/150569 2025-06-01T20:58:07.8506726Z * [new tag] ciflow/inductor/150582 -> ciflow/inductor/150582 2025-06-01T20:58:07.8507149Z * [new tag] ciflow/inductor/150583 -> ciflow/inductor/150583 2025-06-01T20:58:07.8507593Z * [new tag] ciflow/inductor/150669 -> ciflow/inductor/150669 2025-06-01T20:58:07.8508049Z * [new tag] ciflow/inductor/150673 -> ciflow/inductor/150673 2025-06-01T20:58:07.8508504Z * [new tag] ciflow/inductor/150717 -> ciflow/inductor/150717 2025-06-01T20:58:07.8508934Z * [new tag] ciflow/inductor/150719 -> ciflow/inductor/150719 2025-06-01T20:58:07.8509351Z * [new tag] ciflow/inductor/150720 -> ciflow/inductor/150720 2025-06-01T20:58:07.8509774Z * [new tag] ciflow/inductor/150762 -> ciflow/inductor/150762 2025-06-01T20:58:07.8510188Z * [new tag] ciflow/inductor/150789 -> ciflow/inductor/150789 2025-06-01T20:58:07.8510611Z * [new tag] ciflow/inductor/150793 -> ciflow/inductor/150793 2025-06-01T20:58:07.8511047Z * [new tag] ciflow/inductor/150794 -> ciflow/inductor/150794 2025-06-01T20:58:07.8511467Z * [new tag] ciflow/inductor/150795 -> ciflow/inductor/150795 2025-06-01T20:58:07.8511893Z * [new tag] ciflow/inductor/150796 -> ciflow/inductor/150796 2025-06-01T20:58:07.8512310Z * [new tag] ciflow/inductor/150875 -> ciflow/inductor/150875 2025-06-01T20:58:07.8512740Z * [new tag] ciflow/inductor/150899 -> ciflow/inductor/150899 2025-06-01T20:58:07.8513162Z * [new tag] ciflow/inductor/150937 -> ciflow/inductor/150937 2025-06-01T20:58:07.8513582Z * [new tag] ciflow/inductor/150944 -> ciflow/inductor/150944 2025-06-01T20:58:07.8514124Z * [new tag] ciflow/inductor/150954 -> ciflow/inductor/150954 2025-06-01T20:58:07.8514573Z * [new tag] ciflow/inductor/150968 -> ciflow/inductor/150968 2025-06-01T20:58:07.8515104Z * [new tag] ciflow/inductor/151009 -> ciflow/inductor/151009 2025-06-01T20:58:07.8515607Z * [new tag] ciflow/inductor/151115 -> ciflow/inductor/151115 2025-06-01T20:58:07.8516040Z * [new tag] ciflow/inductor/151120 -> ciflow/inductor/151120 2025-06-01T20:58:07.8516477Z * [new tag] ciflow/inductor/151217 -> ciflow/inductor/151217 2025-06-01T20:58:07.8845152Z * [new tag] ciflow/inductor/151265 -> ciflow/inductor/151265 2025-06-01T20:58:07.8845634Z * [new tag] ciflow/inductor/151271 -> ciflow/inductor/151271 2025-06-01T20:58:07.8846056Z * [new tag] ciflow/inductor/151315 -> ciflow/inductor/151315 2025-06-01T20:58:07.8846489Z * [new tag] ciflow/inductor/151481 -> ciflow/inductor/151481 2025-06-01T20:58:07.8846918Z * [new tag] ciflow/inductor/151495 -> ciflow/inductor/151495 2025-06-01T20:58:07.8847346Z * [new tag] ciflow/inductor/151497 -> ciflow/inductor/151497 2025-06-01T20:58:07.8847800Z * [new tag] ciflow/inductor/151568 -> ciflow/inductor/151568 2025-06-01T20:58:07.8848227Z * [new tag] ciflow/inductor/151581 -> ciflow/inductor/151581 2025-06-01T20:58:07.8848658Z * [new tag] ciflow/inductor/151585 -> ciflow/inductor/151585 2025-06-01T20:58:07.8849078Z * [new tag] ciflow/inductor/151604 -> ciflow/inductor/151604 2025-06-01T20:58:07.8849493Z * [new tag] ciflow/inductor/151679 -> ciflow/inductor/151679 2025-06-01T20:58:07.8849921Z * [new tag] ciflow/inductor/151711 -> ciflow/inductor/151711 2025-06-01T20:58:07.8850346Z * [new tag] ciflow/inductor/151718 -> ciflow/inductor/151718 2025-06-01T20:58:07.8850763Z * [new tag] ciflow/inductor/151719 -> ciflow/inductor/151719 2025-06-01T20:58:07.8851192Z * [new tag] ciflow/inductor/151774 -> ciflow/inductor/151774 2025-06-01T20:58:07.8851612Z * [new tag] ciflow/inductor/151775 -> ciflow/inductor/151775 2025-06-01T20:58:07.8852084Z * [new tag] ciflow/inductor/151777 -> ciflow/inductor/151777 2025-06-01T20:58:07.8852505Z * [new tag] ciflow/inductor/151778 -> ciflow/inductor/151778 2025-06-01T20:58:07.8852923Z * [new tag] ciflow/inductor/151845 -> ciflow/inductor/151845 2025-06-01T20:58:07.8853351Z * [new tag] ciflow/inductor/151854 -> ciflow/inductor/151854 2025-06-01T20:58:07.8853775Z * [new tag] ciflow/inductor/151860 -> ciflow/inductor/151860 2025-06-01T20:58:07.8854198Z * [new tag] ciflow/inductor/151900 -> ciflow/inductor/151900 2025-06-01T20:58:07.8854618Z * [new tag] ciflow/inductor/151919 -> ciflow/inductor/151919 2025-06-01T20:58:07.8855049Z * [new tag] ciflow/inductor/151924 -> ciflow/inductor/151924 2025-06-01T20:58:07.8855481Z * [new tag] ciflow/inductor/151935 -> ciflow/inductor/151935 2025-06-01T20:58:07.8855901Z * [new tag] ciflow/inductor/151941 -> ciflow/inductor/151941 2025-06-01T20:58:07.8856333Z * [new tag] ciflow/inductor/151948 -> ciflow/inductor/151948 2025-06-01T20:58:07.8856757Z * [new tag] ciflow/inductor/151956 -> ciflow/inductor/151956 2025-06-01T20:58:07.8857186Z * [new tag] ciflow/inductor/151958 -> ciflow/inductor/151958 2025-06-01T20:58:07.8857609Z * [new tag] ciflow/inductor/151971 -> ciflow/inductor/151971 2025-06-01T20:58:07.8858041Z * [new tag] ciflow/inductor/152011 -> ciflow/inductor/152011 2025-06-01T20:58:07.8858462Z * [new tag] ciflow/inductor/152137 -> ciflow/inductor/152137 2025-06-01T20:58:07.8859010Z * [new tag] ciflow/inductor/152159 -> ciflow/inductor/152159 2025-06-01T20:58:07.8859512Z * [new tag] ciflow/inductor/152166 -> ciflow/inductor/152166 2025-06-01T20:58:07.8859937Z * [new tag] ciflow/inductor/152193 -> ciflow/inductor/152193 2025-06-01T20:58:07.8860375Z * [new tag] ciflow/inductor/152194 -> ciflow/inductor/152194 2025-06-01T20:58:07.8860807Z * [new tag] ciflow/inductor/152197 -> ciflow/inductor/152197 2025-06-01T20:58:07.8861230Z * [new tag] ciflow/inductor/152198 -> ciflow/inductor/152198 2025-06-01T20:58:07.8861667Z * [new tag] ciflow/inductor/152217 -> ciflow/inductor/152217 2025-06-01T20:58:07.8862091Z * [new tag] ciflow/inductor/152289 -> ciflow/inductor/152289 2025-06-01T20:58:07.8862517Z * [new tag] ciflow/inductor/152311 -> ciflow/inductor/152311 2025-06-01T20:58:07.8862944Z * [new tag] ciflow/inductor/152353 -> ciflow/inductor/152353 2025-06-01T20:58:07.8863374Z * [new tag] ciflow/inductor/152361 -> ciflow/inductor/152361 2025-06-01T20:58:07.8863805Z * [new tag] ciflow/inductor/152392 -> ciflow/inductor/152392 2025-06-01T20:58:07.8864224Z * [new tag] ciflow/inductor/152405 -> ciflow/inductor/152405 2025-06-01T20:58:07.8864651Z * [new tag] ciflow/inductor/152449 -> ciflow/inductor/152449 2025-06-01T20:58:07.8865073Z * [new tag] ciflow/inductor/152450 -> ciflow/inductor/152450 2025-06-01T20:58:07.8865507Z * [new tag] ciflow/inductor/152453 -> ciflow/inductor/152453 2025-06-01T20:58:07.8865941Z * [new tag] ciflow/inductor/152493 -> ciflow/inductor/152493 2025-06-01T20:58:07.8866363Z * [new tag] ciflow/inductor/152495 -> ciflow/inductor/152495 2025-06-01T20:58:07.9177585Z * [new tag] ciflow/inductor/152509 -> ciflow/inductor/152509 2025-06-01T20:58:07.9178088Z * [new tag] ciflow/inductor/152543 -> ciflow/inductor/152543 2025-06-01T20:58:07.9178526Z * [new tag] ciflow/inductor/152586 -> ciflow/inductor/152586 2025-06-01T20:58:07.9178952Z * [new tag] ciflow/inductor/152622 -> ciflow/inductor/152622 2025-06-01T20:58:07.9179370Z * [new tag] ciflow/inductor/152624 -> ciflow/inductor/152624 2025-06-01T20:58:07.9179799Z * [new tag] ciflow/inductor/152633 -> ciflow/inductor/152633 2025-06-01T20:58:07.9180216Z * [new tag] ciflow/inductor/152646 -> ciflow/inductor/152646 2025-06-01T20:58:07.9180636Z * [new tag] ciflow/inductor/152729 -> ciflow/inductor/152729 2025-06-01T20:58:07.9181056Z * [new tag] ciflow/inductor/152738 -> ciflow/inductor/152738 2025-06-01T20:58:07.9181474Z * [new tag] ciflow/inductor/152739 -> ciflow/inductor/152739 2025-06-01T20:58:07.9181910Z * [new tag] ciflow/inductor/152771 -> ciflow/inductor/152771 2025-06-01T20:58:07.9182329Z * [new tag] ciflow/inductor/152775 -> ciflow/inductor/152775 2025-06-01T20:58:07.9182799Z * [new tag] ciflow/inductor/152776 -> ciflow/inductor/152776 2025-06-01T20:58:07.9183263Z * [new tag] ciflow/inductor/152782 -> ciflow/inductor/152782 2025-06-01T20:58:07.9183688Z * [new tag] ciflow/inductor/152806 -> ciflow/inductor/152806 2025-06-01T20:58:07.9184112Z * [new tag] ciflow/inductor/152894 -> ciflow/inductor/152894 2025-06-01T20:58:07.9184535Z * [new tag] ciflow/inductor/152975 -> ciflow/inductor/152975 2025-06-01T20:58:07.9184967Z * [new tag] ciflow/inductor/152991 -> ciflow/inductor/152991 2025-06-01T20:58:07.9185394Z * [new tag] ciflow/inductor/153004 -> ciflow/inductor/153004 2025-06-01T20:58:07.9186046Z * [new tag] ciflow/inductor/153011 -> ciflow/inductor/153011 2025-06-01T20:58:07.9186472Z * [new tag] ciflow/inductor/153117 -> ciflow/inductor/153117 2025-06-01T20:58:07.9186898Z * [new tag] ciflow/inductor/153131 -> ciflow/inductor/153131 2025-06-01T20:58:07.9187318Z * [new tag] ciflow/inductor/153150 -> ciflow/inductor/153150 2025-06-01T20:58:07.9187745Z * [new tag] ciflow/inductor/153165 -> ciflow/inductor/153165 2025-06-01T20:58:07.9188158Z * [new tag] ciflow/inductor/153173 -> ciflow/inductor/153173 2025-06-01T20:58:07.9188626Z * [new tag] ciflow/inductor/153201 -> ciflow/inductor/153201 2025-06-01T20:58:07.9189086Z * [new tag] ciflow/inductor/153271 -> ciflow/inductor/153271 2025-06-01T20:58:07.9189508Z * [new tag] ciflow/inductor/153272 -> ciflow/inductor/153272 2025-06-01T20:58:07.9189933Z * [new tag] ciflow/inductor/153278 -> ciflow/inductor/153278 2025-06-01T20:58:07.9190353Z * [new tag] ciflow/inductor/153290 -> ciflow/inductor/153290 2025-06-01T20:58:07.9190778Z * [new tag] ciflow/inductor/153317 -> ciflow/inductor/153317 2025-06-01T20:58:07.9191194Z * [new tag] ciflow/inductor/153384 -> ciflow/inductor/153384 2025-06-01T20:58:07.9191611Z * [new tag] ciflow/inductor/153419 -> ciflow/inductor/153419 2025-06-01T20:58:07.9192028Z * [new tag] ciflow/inductor/153430 -> ciflow/inductor/153430 2025-06-01T20:58:07.9192442Z * [new tag] ciflow/inductor/153434 -> ciflow/inductor/153434 2025-06-01T20:58:07.9192866Z * [new tag] ciflow/inductor/153436 -> ciflow/inductor/153436 2025-06-01T20:58:07.9193283Z * [new tag] ciflow/inductor/153473 -> ciflow/inductor/153473 2025-06-01T20:58:07.9193710Z * [new tag] ciflow/inductor/153481 -> ciflow/inductor/153481 2025-06-01T20:58:07.9194272Z * [new tag] ciflow/inductor/153499 -> ciflow/inductor/153499 2025-06-01T20:58:07.9194730Z * [new tag] ciflow/inductor/153501 -> ciflow/inductor/153501 2025-06-01T20:58:07.9195160Z * [new tag] ciflow/inductor/153548 -> ciflow/inductor/153548 2025-06-01T20:58:07.9195582Z * [new tag] ciflow/inductor/153553 -> ciflow/inductor/153553 2025-06-01T20:58:07.9196013Z * [new tag] ciflow/inductor/153569 -> ciflow/inductor/153569 2025-06-01T20:58:07.9196440Z * [new tag] ciflow/inductor/153596 -> ciflow/inductor/153596 2025-06-01T20:58:07.9196857Z * [new tag] ciflow/inductor/153623 -> ciflow/inductor/153623 2025-06-01T20:58:07.9197282Z * [new tag] ciflow/inductor/153628 -> ciflow/inductor/153628 2025-06-01T20:58:07.9197702Z * [new tag] ciflow/inductor/153654 -> ciflow/inductor/153654 2025-06-01T20:58:07.9198130Z * [new tag] ciflow/inductor/153662 -> ciflow/inductor/153662 2025-06-01T20:58:07.9198549Z * [new tag] ciflow/inductor/153663 -> ciflow/inductor/153663 2025-06-01T20:58:07.9516081Z * [new tag] ciflow/inductor/153672 -> ciflow/inductor/153672 2025-06-01T20:58:07.9516590Z * [new tag] ciflow/inductor/153682 -> ciflow/inductor/153682 2025-06-01T20:58:07.9517021Z * [new tag] ciflow/inductor/153723 -> ciflow/inductor/153723 2025-06-01T20:58:07.9517471Z * [new tag] ciflow/inductor/153730 -> ciflow/inductor/153730 2025-06-01T20:58:07.9517900Z * [new tag] ciflow/inductor/153734 -> ciflow/inductor/153734 2025-06-01T20:58:07.9518319Z * [new tag] ciflow/inductor/153739 -> ciflow/inductor/153739 2025-06-01T20:58:07.9519489Z * [new tag] ciflow/inductor/153743 -> ciflow/inductor/153743 2025-06-01T20:58:07.9520317Z * [new tag] ciflow/inductor/153748 -> ciflow/inductor/153748 2025-06-01T20:58:07.9520757Z * [new tag] ciflow/inductor/153751 -> ciflow/inductor/153751 2025-06-01T20:58:07.9521180Z * [new tag] ciflow/inductor/153752 -> ciflow/inductor/153752 2025-06-01T20:58:07.9521602Z * [new tag] ciflow/inductor/153766 -> ciflow/inductor/153766 2025-06-01T20:58:07.9522033Z * [new tag] ciflow/inductor/153774 -> ciflow/inductor/153774 2025-06-01T20:58:07.9522456Z * [new tag] ciflow/inductor/153780 -> ciflow/inductor/153780 2025-06-01T20:58:07.9522888Z * [new tag] ciflow/inductor/153802 -> ciflow/inductor/153802 2025-06-01T20:58:07.9523307Z * [new tag] ciflow/inductor/153834 -> ciflow/inductor/153834 2025-06-01T20:58:07.9523735Z * [new tag] ciflow/inductor/153841 -> ciflow/inductor/153841 2025-06-01T20:58:07.9524162Z * [new tag] ciflow/inductor/153846 -> ciflow/inductor/153846 2025-06-01T20:58:07.9524578Z * [new tag] ciflow/inductor/153886 -> ciflow/inductor/153886 2025-06-01T20:58:07.9525001Z * [new tag] ciflow/inductor/153953 -> ciflow/inductor/153953 2025-06-01T20:58:07.9525416Z * [new tag] ciflow/inductor/153966 -> ciflow/inductor/153966 2025-06-01T20:58:07.9525836Z * [new tag] ciflow/inductor/153969 -> ciflow/inductor/153969 2025-06-01T20:58:07.9526258Z * [new tag] ciflow/inductor/154000 -> ciflow/inductor/154000 2025-06-01T20:58:07.9526673Z * [new tag] ciflow/inductor/154003 -> ciflow/inductor/154003 2025-06-01T20:58:07.9527093Z * [new tag] ciflow/inductor/154007 -> ciflow/inductor/154007 2025-06-01T20:58:07.9527512Z * [new tag] ciflow/inductor/154013 -> ciflow/inductor/154013 2025-06-01T20:58:07.9527942Z * [new tag] ciflow/inductor/154032 -> ciflow/inductor/154032 2025-06-01T20:58:07.9528371Z * [new tag] ciflow/inductor/154047 -> ciflow/inductor/154047 2025-06-01T20:58:07.9528782Z * [new tag] ciflow/inductor/154056 -> ciflow/inductor/154056 2025-06-01T20:58:07.9529209Z * [new tag] ciflow/inductor/154058 -> ciflow/inductor/154058 2025-06-01T20:58:07.9529631Z * [new tag] ciflow/inductor/154063 -> ciflow/inductor/154063 2025-06-01T20:58:07.9530056Z * [new tag] ciflow/inductor/154064 -> ciflow/inductor/154064 2025-06-01T20:58:07.9530479Z * [new tag] ciflow/inductor/154065 -> ciflow/inductor/154065 2025-06-01T20:58:07.9530904Z * [new tag] ciflow/inductor/154066 -> ciflow/inductor/154066 2025-06-01T20:58:07.9531334Z * [new tag] ciflow/inductor/154072 -> ciflow/inductor/154072 2025-06-01T20:58:07.9531757Z * [new tag] ciflow/inductor/154078 -> ciflow/inductor/154078 2025-06-01T20:58:07.9532180Z * [new tag] ciflow/inductor/154081 -> ciflow/inductor/154081 2025-06-01T20:58:07.9532597Z * [new tag] ciflow/inductor/154100 -> ciflow/inductor/154100 2025-06-01T20:58:07.9533023Z * [new tag] ciflow/inductor/154129 -> ciflow/inductor/154129 2025-06-01T20:58:07.9533451Z * [new tag] ciflow/inductor/154134 -> ciflow/inductor/154134 2025-06-01T20:58:07.9533863Z * [new tag] ciflow/inductor/154142 -> ciflow/inductor/154142 2025-06-01T20:58:07.9534290Z * [new tag] ciflow/inductor/154149 -> ciflow/inductor/154149 2025-06-01T20:58:07.9534711Z * [new tag] ciflow/inductor/154165 -> ciflow/inductor/154165 2025-06-01T20:58:07.9535240Z * [new tag] ciflow/inductor/154193 -> ciflow/inductor/154193 2025-06-01T20:58:07.9535746Z * [new tag] ciflow/inductor/154194 -> ciflow/inductor/154194 2025-06-01T20:58:07.9536167Z * [new tag] ciflow/inductor/154199 -> ciflow/inductor/154199 2025-06-01T20:58:07.9536591Z * [new tag] ciflow/inductor/154263 -> ciflow/inductor/154263 2025-06-01T20:58:07.9537018Z * [new tag] ciflow/inductor/154273 -> ciflow/inductor/154273 2025-06-01T20:58:07.9537455Z * [new tag] ciflow/inductor/154283 -> ciflow/inductor/154283 2025-06-01T20:58:07.9537873Z * [new tag] ciflow/inductor/154287 -> ciflow/inductor/154287 2025-06-01T20:58:07.9849203Z * [new tag] ciflow/inductor/154289 -> ciflow/inductor/154289 2025-06-01T20:58:07.9849670Z * [new tag] ciflow/inductor/154343 -> ciflow/inductor/154343 2025-06-01T20:58:07.9850098Z * [new tag] ciflow/inductor/154348 -> ciflow/inductor/154348 2025-06-01T20:58:07.9850529Z * [new tag] ciflow/inductor/154350 -> ciflow/inductor/154350 2025-06-01T20:58:07.9850949Z * [new tag] ciflow/inductor/154366 -> ciflow/inductor/154366 2025-06-01T20:58:07.9851377Z * [new tag] ciflow/inductor/154388 -> ciflow/inductor/154388 2025-06-01T20:58:07.9851806Z * [new tag] ciflow/inductor/154389 -> ciflow/inductor/154389 2025-06-01T20:58:07.9852228Z * [new tag] ciflow/inductor/154390 -> ciflow/inductor/154390 2025-06-01T20:58:07.9852660Z * [new tag] ciflow/inductor/154415 -> ciflow/inductor/154415 2025-06-01T20:58:07.9853078Z * [new tag] ciflow/inductor/154434 -> ciflow/inductor/154434 2025-06-01T20:58:07.9853510Z * [new tag] ciflow/inductor/154464 -> ciflow/inductor/154464 2025-06-01T20:58:07.9853954Z * [new tag] ciflow/inductor/154472 -> ciflow/inductor/154472 2025-06-01T20:58:07.9854375Z * [new tag] ciflow/inductor/154475 -> ciflow/inductor/154475 2025-06-01T20:58:07.9854802Z * [new tag] ciflow/inductor/154482 -> ciflow/inductor/154482 2025-06-01T20:58:07.9855226Z * [new tag] ciflow/inductor/154492 -> ciflow/inductor/154492 2025-06-01T20:58:07.9855684Z * [new tag] ciflow/inductor/154497 -> ciflow/inductor/154497 2025-06-01T20:58:07.9856147Z * [new tag] ciflow/inductor/154510 -> ciflow/inductor/154510 2025-06-01T20:58:07.9856566Z * [new tag] ciflow/inductor/154514 -> ciflow/inductor/154514 2025-06-01T20:58:07.9867119Z * [new tag] ciflow/inductor/154523 -> ciflow/inductor/154523 2025-06-01T20:58:07.9867591Z * [new tag] ciflow/inductor/154535 -> ciflow/inductor/154535 2025-06-01T20:58:07.9868028Z * [new tag] ciflow/inductor/154539 -> ciflow/inductor/154539 2025-06-01T20:58:07.9868477Z * [new tag] ciflow/inductor/154543 -> ciflow/inductor/154543 2025-06-01T20:58:07.9868902Z * [new tag] ciflow/inductor/154544 -> ciflow/inductor/154544 2025-06-01T20:58:07.9869330Z * [new tag] ciflow/inductor/154551 -> ciflow/inductor/154551 2025-06-01T20:58:07.9869763Z * [new tag] ciflow/inductor/154555 -> ciflow/inductor/154555 2025-06-01T20:58:07.9870181Z * [new tag] ciflow/inductor/154564 -> ciflow/inductor/154564 2025-06-01T20:58:07.9870609Z * [new tag] ciflow/inductor/154570 -> ciflow/inductor/154570 2025-06-01T20:58:07.9871026Z * [new tag] ciflow/inductor/154575 -> ciflow/inductor/154575 2025-06-01T20:58:07.9871519Z * [new tag] ciflow/inductor/154586 -> ciflow/inductor/154586 2025-06-01T20:58:07.9872150Z * [new tag] ciflow/inductor/154630 -> ciflow/inductor/154630 2025-06-01T20:58:07.9872665Z * [new tag] ciflow/inductor/154640 -> ciflow/inductor/154640 2025-06-01T20:58:07.9873102Z * [new tag] ciflow/inductor/154650 -> ciflow/inductor/154650 2025-06-01T20:58:07.9873521Z * [new tag] ciflow/inductor/154654 -> ciflow/inductor/154654 2025-06-01T20:58:07.9874030Z * [new tag] ciflow/inductor/154656 -> ciflow/inductor/154656 2025-06-01T20:58:07.9874463Z * [new tag] ciflow/inductor/154667 -> ciflow/inductor/154667 2025-06-01T20:58:07.9874879Z * [new tag] ciflow/inductor/154673 -> ciflow/inductor/154673 2025-06-01T20:58:07.9875319Z * [new tag] ciflow/inductor/154679 -> ciflow/inductor/154679 2025-06-01T20:58:07.9875748Z * [new tag] ciflow/inductor/154688 -> ciflow/inductor/154688 2025-06-01T20:58:07.9876179Z * [new tag] ciflow/inductor/154694 -> ciflow/inductor/154694 2025-06-01T20:58:07.9876603Z * [new tag] ciflow/inductor/154695 -> ciflow/inductor/154695 2025-06-01T20:58:07.9877034Z * [new tag] ciflow/inductor/154698 -> ciflow/inductor/154698 2025-06-01T20:58:07.9877460Z * [new tag] ciflow/inductor/154699 -> ciflow/inductor/154699 2025-06-01T20:58:07.9877878Z * [new tag] ciflow/inductor/154704 -> ciflow/inductor/154704 2025-06-01T20:58:07.9878304Z * [new tag] ciflow/inductor/154737 -> ciflow/inductor/154737 2025-06-01T20:58:07.9878718Z * [new tag] ciflow/inductor/154740 -> ciflow/inductor/154740 2025-06-01T20:58:07.9879145Z * [new tag] ciflow/inductor/154752 -> ciflow/inductor/154752 2025-06-01T20:58:07.9879570Z * [new tag] ciflow/inductor/154753 -> ciflow/inductor/154753 2025-06-01T20:58:07.9879988Z * [new tag] ciflow/inductor/154754 -> ciflow/inductor/154754 2025-06-01T20:58:07.9880428Z * [new tag] ciflow/inductor/154757 -> ciflow/inductor/154757 2025-06-01T20:58:07.9880848Z * [new tag] ciflow/inductor/154761 -> ciflow/inductor/154761 2025-06-01T20:58:08.0177194Z * [new tag] ciflow/inductor/154764 -> ciflow/inductor/154764 2025-06-01T20:58:08.0177679Z * [new tag] ciflow/inductor/154766 -> ciflow/inductor/154766 2025-06-01T20:58:08.0178102Z * [new tag] ciflow/inductor/154768 -> ciflow/inductor/154768 2025-06-01T20:58:08.0178524Z * [new tag] ciflow/inductor/154769 -> ciflow/inductor/154769 2025-06-01T20:58:08.0178938Z * [new tag] ciflow/inductor/154771 -> ciflow/inductor/154771 2025-06-01T20:58:08.0179367Z * [new tag] ciflow/inductor/154772 -> ciflow/inductor/154772 2025-06-01T20:58:08.0179799Z * [new tag] ciflow/inductor/154774 -> ciflow/inductor/154774 2025-06-01T20:58:08.0180223Z * [new tag] ciflow/inductor/154775 -> ciflow/inductor/154775 2025-06-01T20:58:08.0180652Z * [new tag] ciflow/inductor/154776 -> ciflow/inductor/154776 2025-06-01T20:58:08.0181063Z * [new tag] ciflow/inductor/154780 -> ciflow/inductor/154780 2025-06-01T20:58:08.0181488Z * [new tag] ciflow/inductor/154782 -> ciflow/inductor/154782 2025-06-01T20:58:08.0181909Z * [new tag] ciflow/inductor/154783 -> ciflow/inductor/154783 2025-06-01T20:58:08.0182332Z * [new tag] ciflow/inductor/154793 -> ciflow/inductor/154793 2025-06-01T20:58:08.0182757Z * [new tag] ciflow/inductor/154794 -> ciflow/inductor/154794 2025-06-01T20:58:08.0183174Z * [new tag] ciflow/inductor/154804 -> ciflow/inductor/154804 2025-06-01T20:58:08.0183595Z * [new tag] ciflow/inductor/154805 -> ciflow/inductor/154805 2025-06-01T20:58:08.0184225Z * [new tag] ciflow/inductor/3b9a386 -> ciflow/inductor/3b9a386 2025-06-01T20:58:08.0184680Z * [new tag] ciflow/inductor/3d4b92b -> ciflow/inductor/3d4b92b 2025-06-01T20:58:08.0185121Z * [new tag] ciflow/inductor/88106 -> ciflow/inductor/88106 2025-06-01T20:58:08.0185558Z * [new tag] ciflow/inductor/88196 -> ciflow/inductor/88196 2025-06-01T20:58:08.0185990Z * [new tag] ciflow/inductor/88998 -> ciflow/inductor/88998 2025-06-01T20:58:08.0186416Z * [new tag] ciflow/inductor/d224ac7 -> ciflow/inductor/d224ac7 2025-06-01T20:58:08.0186881Z * [new tag] ciflow/linux-aarch64/125888 -> ciflow/linux-aarch64/125888 2025-06-01T20:58:08.0187360Z * [new tag] ciflow/linux-aarch64/126050 -> ciflow/linux-aarch64/126050 2025-06-01T20:58:08.0187819Z * [new tag] ciflow/linux-aarch64/126054 -> ciflow/linux-aarch64/126054 2025-06-01T20:58:08.0188297Z * [new tag] ciflow/linux-aarch64/133297 -> ciflow/linux-aarch64/133297 2025-06-01T20:58:08.0188754Z * [new tag] ciflow/linux-aarch64/133315 -> ciflow/linux-aarch64/133315 2025-06-01T20:58:08.0189225Z * [new tag] ciflow/linux-aarch64/133392 -> ciflow/linux-aarch64/133392 2025-06-01T20:58:08.0189694Z * [new tag] ciflow/linux-aarch64/133419 -> ciflow/linux-aarch64/133419 2025-06-01T20:58:08.0190152Z * [new tag] ciflow/linux-aarch64/133423 -> ciflow/linux-aarch64/133423 2025-06-01T20:58:08.0190627Z * [new tag] ciflow/linux-aarch64/133667 -> ciflow/linux-aarch64/133667 2025-06-01T20:58:08.0191085Z * [new tag] ciflow/linux-aarch64/133753 -> ciflow/linux-aarch64/133753 2025-06-01T20:58:08.0191553Z * [new tag] ciflow/linux-aarch64/135792 -> ciflow/linux-aarch64/135792 2025-06-01T20:58:08.0192021Z * [new tag] ciflow/linux-aarch64/136355 -> ciflow/linux-aarch64/136355 2025-06-01T20:58:08.0192483Z * [new tag] ciflow/linux-aarch64/137568 -> ciflow/linux-aarch64/137568 2025-06-01T20:58:08.0192952Z * [new tag] ciflow/linux-aarch64/138388 -> ciflow/linux-aarch64/138388 2025-06-01T20:58:08.0193407Z * [new tag] ciflow/linux-aarch64/144774 -> ciflow/linux-aarch64/144774 2025-06-01T20:58:08.0193867Z * [new tag] ciflow/linux-aarch64/145260 -> ciflow/linux-aarch64/145260 2025-06-01T20:58:08.0194405Z * [new tag] ciflow/linux-aarch64/147073 -> ciflow/linux-aarch64/147073 2025-06-01T20:58:08.0194888Z * [new tag] ciflow/linux-aarch64/147359 -> ciflow/linux-aarch64/147359 2025-06-01T20:58:08.0195363Z * [new tag] ciflow/linux-aarch64/147763 -> ciflow/linux-aarch64/147763 2025-06-01T20:58:08.0195826Z * [new tag] ciflow/linux-aarch64/147855 -> ciflow/linux-aarch64/147855 2025-06-01T20:58:08.0196299Z * [new tag] ciflow/linux-aarch64/148173 -> ciflow/linux-aarch64/148173 2025-06-01T20:58:08.0196766Z * [new tag] ciflow/linux-aarch64/148424 -> ciflow/linux-aarch64/148424 2025-06-01T20:58:08.0197233Z * [new tag] ciflow/linux-aarch64/150095 -> ciflow/linux-aarch64/150095 2025-06-01T20:58:08.0197700Z * [new tag] ciflow/linux-aarch64/151896 -> ciflow/linux-aarch64/151896 2025-06-01T20:58:08.0198158Z * [new tag] ciflow/linux-aarch64/152001 -> ciflow/linux-aarch64/152001 2025-06-01T20:58:08.0512474Z * [new tag] ciflow/linux-aarch64/152361 -> ciflow/linux-aarch64/152361 2025-06-01T20:58:08.0512992Z * [new tag] ciflow/linux-aarch64/153940 -> ciflow/linux-aarch64/153940 2025-06-01T20:58:08.0513428Z * [new tag] ciflow/mps/102148 -> ciflow/mps/102148 2025-06-01T20:58:08.0513843Z * [new tag] ciflow/mps/119496 -> ciflow/mps/119496 2025-06-01T20:58:08.0514430Z * [new tag] ciflow/mps/120076 -> ciflow/mps/120076 2025-06-01T20:58:08.0514920Z * [new tag] ciflow/mps/133423 -> ciflow/mps/133423 2025-06-01T20:58:08.0515320Z * [new tag] ciflow/mps/133667 -> ciflow/mps/133667 2025-06-01T20:58:08.0515704Z * [new tag] ciflow/mps/145955 -> ciflow/mps/145955 2025-06-01T20:58:08.0516097Z * [new tag] ciflow/mps/146436 -> ciflow/mps/146436 2025-06-01T20:58:08.0516516Z * [new tag] ciflow/mps/147583 -> ciflow/mps/147583 2025-06-01T20:58:08.0516904Z * [new tag] ciflow/mps/148408 -> ciflow/mps/148408 2025-06-01T20:58:08.0517322Z * [new tag] ciflow/mps/148415 -> ciflow/mps/148415 2025-06-01T20:58:08.0517712Z * [new tag] ciflow/mps/149173 -> ciflow/mps/149173 2025-06-01T20:58:08.0518103Z * [new tag] ciflow/mps/149958 -> ciflow/mps/149958 2025-06-01T20:58:08.0518480Z * [new tag] ciflow/mps/150569 -> ciflow/mps/150569 2025-06-01T20:58:08.0518860Z * [new tag] ciflow/mps/150721 -> ciflow/mps/150721 2025-06-01T20:58:08.0519236Z * [new tag] ciflow/mps/150964 -> ciflow/mps/150964 2025-06-01T20:58:08.0519627Z * [new tag] ciflow/mps/151177 -> ciflow/mps/151177 2025-06-01T20:58:08.0520012Z * [new tag] ciflow/mps/151292 -> ciflow/mps/151292 2025-06-01T20:58:08.0520389Z * [new tag] ciflow/mps/151439 -> ciflow/mps/151439 2025-06-01T20:58:08.0520779Z * [new tag] ciflow/mps/151916 -> ciflow/mps/151916 2025-06-01T20:58:08.0521155Z * [new tag] ciflow/mps/152094 -> ciflow/mps/152094 2025-06-01T20:58:08.0521544Z * [new tag] ciflow/mps/152742 -> ciflow/mps/152742 2025-06-01T20:58:08.0521930Z * [new tag] ciflow/mps/152843 -> ciflow/mps/152843 2025-06-01T20:58:08.0522365Z * [new tag] ciflow/mps/153583 -> ciflow/mps/153583 2025-06-01T20:58:08.0522797Z * [new tag] ciflow/mps/153954 -> ciflow/mps/153954 2025-06-01T20:58:08.0523174Z * [new tag] ciflow/mps/153995 -> ciflow/mps/153995 2025-06-01T20:58:08.0523566Z * [new tag] ciflow/mps/154145 -> ciflow/mps/154145 2025-06-01T20:58:08.0523944Z * [new tag] ciflow/mps/154287 -> ciflow/mps/154287 2025-06-01T20:58:08.0524329Z * [new tag] ciflow/mps/154465 -> ciflow/mps/154465 2025-06-01T20:58:08.0524715Z * [new tag] ciflow/mps/154696 -> ciflow/mps/154696 2025-06-01T20:58:08.0525121Z * [new tag] ciflow/nightly/149192 -> ciflow/nightly/149192 2025-06-01T20:58:08.0525554Z * [new tag] ciflow/nightly/151567 -> ciflow/nightly/151567 2025-06-01T20:58:08.0525970Z * [new tag] ciflow/nightly/151581 -> ciflow/nightly/151581 2025-06-01T20:58:08.0526414Z * [new tag] ciflow/op-benchmark/151581 -> ciflow/op-benchmark/151581 2025-06-01T20:58:08.0526878Z * [new tag] ciflow/op-benchmark/151585 -> ciflow/op-benchmark/151585 2025-06-01T20:58:08.0527337Z * [new tag] ciflow/op-benchmark/154410 -> ciflow/op-benchmark/154410 2025-06-01T20:58:08.0527901Z * [new tag] ciflow/periodic-rocm-mi300/150694 -> ciflow/periodic-rocm-mi300/150694 2025-06-01T20:58:08.0528527Z * [new tag] ciflow/periodic-rocm-mi300/151581 -> ciflow/periodic-rocm-mi300/151581 2025-06-01T20:58:08.0529104Z * [new tag] ciflow/periodic-rocm-mi300/153545 -> ciflow/periodic-rocm-mi300/153545 2025-06-01T20:58:08.0529884Z * [new tag] ciflow/periodic/0203f89cc1937e6e97f4533b1a45bdc6c233b3fc -> ciflow/periodic/0203f89cc1937e6e97f4533b1a45bdc6c233b3fc 2025-06-01T20:58:08.0531047Z * [new tag] ciflow/periodic/02cecd101871cdeabc84c031c0d6c465fdd26bf1 -> ciflow/periodic/02cecd101871cdeabc84c031c0d6c465fdd26bf1 2025-06-01T20:58:08.0532043Z * [new tag] ciflow/periodic/053ca7439a0ec3c09a257bbcb31896a62d889f33 -> ciflow/periodic/053ca7439a0ec3c09a257bbcb31896a62d889f33 2025-06-01T20:58:08.0532759Z * [new tag] ciflow/periodic/054a2fd -> ciflow/periodic/054a2fd 2025-06-01T20:58:08.0533212Z * [new tag] ciflow/periodic/123020 -> ciflow/periodic/123020 2025-06-01T20:58:08.0533695Z * [new tag] ciflow/periodic/141309 -> ciflow/periodic/141309 2025-06-01T20:58:08.0534161Z * [new tag] ciflow/periodic/143959 -> ciflow/periodic/143959 2025-06-01T20:58:08.0534590Z * [new tag] ciflow/periodic/148760 -> ciflow/periodic/148760 2025-06-01T20:58:08.0828418Z * [new tag] ciflow/periodic/149192 -> ciflow/periodic/149192 2025-06-01T20:58:08.0829054Z * [new tag] ciflow/periodic/150411 -> ciflow/periodic/150411 2025-06-01T20:58:08.0829526Z * [new tag] ciflow/periodic/150422 -> ciflow/periodic/150422 2025-06-01T20:58:08.0829985Z * [new tag] ciflow/periodic/150434 -> ciflow/periodic/150434 2025-06-01T20:58:08.0830452Z * [new tag] ciflow/periodic/151292 -> ciflow/periodic/151292 2025-06-01T20:58:08.0830874Z * [new tag] ciflow/periodic/151581 -> ciflow/periodic/151581 2025-06-01T20:58:08.0831304Z * [new tag] ciflow/periodic/151585 -> ciflow/periodic/151585 2025-06-01T20:58:08.0831725Z * [new tag] ciflow/periodic/152281 -> ciflow/periodic/152281 2025-06-01T20:58:08.0832157Z * [new tag] ciflow/periodic/154169 -> ciflow/periodic/154169 2025-06-01T20:58:08.0832594Z * [new tag] ciflow/periodic/154293 -> ciflow/periodic/154293 2025-06-01T20:58:08.0833016Z * [new tag] ciflow/periodic/154469 -> ciflow/periodic/154469 2025-06-01T20:58:08.0833452Z * [new tag] ciflow/periodic/154585 -> ciflow/periodic/154585 2025-06-01T20:58:08.0834250Z * [new tag] ciflow/periodic/1f0d764b65d71ff9dd8fb9093063ebfe00ac2d7e -> ciflow/periodic/1f0d764b65d71ff9dd8fb9093063ebfe00ac2d7e 2025-06-01T20:58:08.0834972Z * [new tag] ciflow/periodic/2a6d37d -> ciflow/periodic/2a6d37d 2025-06-01T20:58:08.0835462Z * [new tag] ciflow/periodic/317eeb8 -> ciflow/periodic/317eeb8 2025-06-01T20:58:08.0835929Z * [new tag] ciflow/periodic/3c32 -> ciflow/periodic/3c32 2025-06-01T20:58:08.0836398Z * [new tag] ciflow/periodic/3e98831 -> ciflow/periodic/3e98831 2025-06-01T20:58:08.0837183Z * [new tag] ciflow/periodic/41663739085c57edc4a352c55ed6b23b8e9eb91d -> ciflow/periodic/41663739085c57edc4a352c55ed6b23b8e9eb91d 2025-06-01T20:58:08.0838281Z * [new tag] ciflow/periodic/5dd746b4b58d2e4760f46837b3ecae0090904456 -> ciflow/periodic/5dd746b4b58d2e4760f46837b3ecae0090904456 2025-06-01T20:58:08.0839376Z * [new tag] ciflow/periodic/5f4c8e4c896f9a1d89e1bf9b3bd92b3e7db5c3b9 -> ciflow/periodic/5f4c8e4c896f9a1d89e1bf9b3bd92b3e7db5c3b9 2025-06-01T20:58:08.0840347Z * [new tag] ciflow/periodic/7c63ddd817870bed34d74f921fb384105dfe6677 -> ciflow/periodic/7c63ddd817870bed34d74f921fb384105dfe6677 2025-06-01T20:58:08.0841082Z * [new tag] ciflow/periodic/94512-point -> ciflow/periodic/94512-point 2025-06-01T20:58:08.0841817Z * [new tag] ciflow/periodic/c13eeaa718c985782bd72bf47886430f6203a768 -> ciflow/periodic/c13eeaa718c985782bd72bf47886430f6203a768 2025-06-01T20:58:08.0842569Z * [new tag] ciflow/periodic/csl/test87519 -> ciflow/periodic/csl/test87519 2025-06-01T20:58:08.0843205Z * [new tag] ciflow/periodic/csltest88275 -> ciflow/periodic/csltest88275 2025-06-01T20:58:08.0843782Z * [new tag] ciflow/periodic/csltest88761 -> ciflow/periodic/csltest88761 2025-06-01T20:58:08.0844579Z * [new tag] ciflow/periodic/e2b1c063194b66b40b52d0a9db59b55a5b7dfabd -> ciflow/periodic/e2b1c063194b66b40b52d0a9db59b55a5b7dfabd 2025-06-01T20:58:08.0845650Z * [new tag] ciflow/periodic/ed0dea3e24a2ba4d01043c4cfd27e90655692adc -> ciflow/periodic/ed0dea3e24a2ba4d01043c4cfd27e90655692adc 2025-06-01T20:58:08.0846395Z * [new tag] ciflow/periodic/release_1.12 -> ciflow/periodic/release_1.12 2025-06-01T20:58:08.0846926Z * [new tag] ciflow/periodic/release_1.12.0 -> ciflow/periodic/release_1.12.0 2025-06-01T20:58:08.0847434Z * [new tag] ciflow/periodic/sha-ec5b83 -> ciflow/periodic/sha-ec5b83 2025-06-01T20:58:08.0847887Z * [new tag] ciflow/pull/152484 -> ciflow/pull/152484 2025-06-01T20:58:08.0848314Z * [new tag] ciflow/rocm-mi300/125888 -> ciflow/rocm-mi300/125888 2025-06-01T20:58:08.0848742Z * [new tag] ciflow/rocm-mi300/139975 -> ciflow/rocm-mi300/139975 2025-06-01T20:58:08.0849173Z * [new tag] ciflow/rocm-mi300/151465 -> ciflow/rocm-mi300/151465 2025-06-01T20:58:08.0849598Z * [new tag] ciflow/rocm-mi300/151581 -> ciflow/rocm-mi300/151581 2025-06-01T20:58:08.0850036Z * [new tag] ciflow/rocm-mi300/153545 -> ciflow/rocm-mi300/153545 2025-06-01T20:58:08.0850504Z * [new tag] ciflow/rocm-mi300/154525 -> ciflow/rocm-mi300/154525 2025-06-01T20:58:08.0850971Z * [new tag] ciflow/rocm-mi300/154680 -> ciflow/rocm-mi300/154680 2025-06-01T20:58:08.0851390Z * [new tag] ciflow/rocm/124424 -> ciflow/rocm/124424 2025-06-01T20:58:08.0851783Z * [new tag] ciflow/rocm/125888 -> ciflow/rocm/125888 2025-06-01T20:58:08.0852187Z * [new tag] ciflow/rocm/139975 -> ciflow/rocm/139975 2025-06-01T20:58:08.0852570Z * [new tag] ciflow/rocm/141309 -> ciflow/rocm/141309 2025-06-01T20:58:08.1171241Z * [new tag] ciflow/rocm/145685 -> ciflow/rocm/145685 2025-06-01T20:58:08.1171651Z * [new tag] ciflow/rocm/146903 -> ciflow/rocm/146903 2025-06-01T20:58:08.1172040Z * [new tag] ciflow/rocm/148492 -> ciflow/rocm/148492 2025-06-01T20:58:08.1172490Z * [new tag] ciflow/rocm/148672 -> ciflow/rocm/148672 2025-06-01T20:58:08.1172925Z * [new tag] ciflow/rocm/149039 -> ciflow/rocm/149039 2025-06-01T20:58:08.1173316Z * [new tag] ciflow/rocm/149466 -> ciflow/rocm/149466 2025-06-01T20:58:08.1173705Z * [new tag] ciflow/rocm/149506 -> ciflow/rocm/149506 2025-06-01T20:58:08.1174107Z * [new tag] ciflow/rocm/151305 -> ciflow/rocm/151305 2025-06-01T20:58:08.1174507Z * [new tag] ciflow/rocm/151439 -> ciflow/rocm/151439 2025-06-01T20:58:08.1174892Z * [new tag] ciflow/rocm/151465 -> ciflow/rocm/151465 2025-06-01T20:58:08.1175305Z * [new tag] ciflow/rocm/151581 -> ciflow/rocm/151581 2025-06-01T20:58:08.1175699Z * [new tag] ciflow/rocm/151845 -> ciflow/rocm/151845 2025-06-01T20:58:08.1176090Z * [new tag] ciflow/rocm/153117 -> ciflow/rocm/153117 2025-06-01T20:58:08.1176487Z * [new tag] ciflow/rocm/153287 -> ciflow/rocm/153287 2025-06-01T20:58:08.1176869Z * [new tag] ciflow/rocm/153455 -> ciflow/rocm/153455 2025-06-01T20:58:08.1177250Z * [new tag] ciflow/rocm/153545 -> ciflow/rocm/153545 2025-06-01T20:58:08.1177748Z * [new tag] ciflow/rocm/153548 -> ciflow/rocm/153548 2025-06-01T20:58:08.1178293Z * [new tag] ciflow/rocm/153596 -> ciflow/rocm/153596 2025-06-01T20:58:08.1178690Z * [new tag] ciflow/rocm/153666 -> ciflow/rocm/153666 2025-06-01T20:58:08.1179085Z * [new tag] ciflow/rocm/154525 -> ciflow/rocm/154525 2025-06-01T20:58:08.1179466Z * [new tag] ciflow/s390/142346 -> ciflow/s390/142346 2025-06-01T20:58:08.1179848Z * [new tag] ciflow/s390/143959 -> ciflow/s390/143959 2025-06-01T20:58:08.1180223Z * [new tag] ciflow/s390/150116 -> ciflow/s390/150116 2025-06-01T20:58:08.1180606Z * [new tag] ciflow/s390/151581 -> ciflow/s390/151581 2025-06-01T20:58:08.1180981Z * [new tag] ciflow/s390/151585 -> ciflow/s390/151585 2025-06-01T20:58:08.1181357Z * [new tag] ciflow/s390/152372 -> ciflow/s390/152372 2025-06-01T20:58:08.1181748Z * [new tag] ciflow/slow/01c7106 -> ciflow/slow/01c7106 2025-06-01T20:58:08.1182149Z * [new tag] ciflow/slow/0577043 -> ciflow/slow/0577043 2025-06-01T20:58:08.1182872Z * [new tag] ciflow/slow/0d5b74da0cab798fbfdb9caa53fad816999c8386-sdym -> ciflow/slow/0d5b74da0cab798fbfdb9caa53fad816999c8386-sdym 2025-06-01T20:58:08.1183621Z * [new tag] ciflow/slow/0e81104 -> ciflow/slow/0e81104 2025-06-01T20:58:08.1184066Z * [new tag] ciflow/slow/139975 -> ciflow/slow/139975 2025-06-01T20:58:08.1184458Z * [new tag] ciflow/slow/149192 -> ciflow/slow/149192 2025-06-01T20:58:08.1184841Z * [new tag] ciflow/slow/151581 -> ciflow/slow/151581 2025-06-01T20:58:08.1185231Z * [new tag] ciflow/slow/151585 -> ciflow/slow/151585 2025-06-01T20:58:08.1185614Z * [new tag] ciflow/slow/154347 -> ciflow/slow/154347 2025-06-01T20:58:08.1186011Z * [new tag] ciflow/slow/154469 -> ciflow/slow/154469 2025-06-01T20:58:08.1186401Z * [new tag] ciflow/slow/154783 -> ciflow/slow/154783 2025-06-01T20:58:08.1186785Z * [new tag] ciflow/slow/154809 -> ciflow/slow/154809 2025-06-01T20:58:08.1187170Z * [new tag] ciflow/slow/1732077 -> ciflow/slow/1732077 2025-06-01T20:58:08.1187562Z * [new tag] ciflow/slow/187eb7c -> ciflow/slow/187eb7c 2025-06-01T20:58:08.1187968Z * [new tag] ciflow/slow/1faef89 -> ciflow/slow/1faef89 2025-06-01T20:58:08.1188365Z * [new tag] ciflow/slow/3920ec1 -> ciflow/slow/3920ec1 2025-06-01T20:58:08.1188771Z * [new tag] ciflow/slow/3b7c6b2 -> ciflow/slow/3b7c6b2 2025-06-01T20:58:08.1189468Z * [new tag] ciflow/slow/4863e5c843722eb2a34fb0ca1d518a33431a38c0 -> ciflow/slow/4863e5c843722eb2a34fb0ca1d518a33431a38c0 2025-06-01T20:58:08.1190163Z * [new tag] ciflow/slow/59a3759 -> ciflow/slow/59a3759 2025-06-01T20:58:08.1190570Z * [new tag] ciflow/slow/70ef0bb -> ciflow/slow/70ef0bb 2025-06-01T20:58:08.1190966Z * [new tag] ciflow/slow/788ff06 -> ciflow/slow/788ff06 2025-06-01T20:58:08.1191658Z * [new tag] ciflow/slow/8751002215790a3a88750faa8f4366933e296693-sdym -> ciflow/slow/8751002215790a3a88750faa8f4366933e296693-sdym 2025-06-01T20:58:08.1192342Z * [new tag] ciflow/slow/9d85864 -> ciflow/slow/9d85864 2025-06-01T20:58:08.1522109Z * [new tag] ciflow/slow/9ffad5b -> ciflow/slow/9ffad5b 2025-06-01T20:58:08.1522572Z * [new tag] ciflow/slow/a206e8b -> ciflow/slow/a206e8b 2025-06-01T20:58:08.1522975Z * [new tag] ciflow/slow/a837609 -> ciflow/slow/a837609 2025-06-01T20:58:08.1523523Z * [new tag] ciflow/slow/af841f3 -> ciflow/slow/af841f3 2025-06-01T20:58:08.1524326Z * [new tag] ciflow/slow/da3aba1e46157c4df504b067477cdf2b3c96b194-sdym -> ciflow/slow/da3aba1e46157c4df504b067477cdf2b3c96b194-sdym 2025-06-01T20:58:08.1525063Z * [new tag] ciflow/torchao/149192 -> ciflow/torchao/149192 2025-06-01T20:58:08.1525507Z * [new tag] ciflow/torchbench/151581 -> ciflow/torchbench/151581 2025-06-01T20:58:08.1525959Z * [new tag] ciflow/torchbench/151585 -> ciflow/torchbench/151585 2025-06-01T20:58:08.1526410Z * [new tag] ciflow/torchbench/154665 -> ciflow/torchbench/154665 2025-06-01T20:58:08.1526833Z * [new tag] ciflow/trunk/101814 -> ciflow/trunk/101814 2025-06-01T20:58:08.1527228Z * [new tag] ciflow/trunk/108303 -> ciflow/trunk/108303 2025-06-01T20:58:08.1527673Z * [new tag] ciflow/trunk/113258 -> ciflow/trunk/113258 2025-06-01T20:58:08.1528099Z * [new tag] ciflow/trunk/120076 -> ciflow/trunk/120076 2025-06-01T20:58:08.1528497Z * [new tag] ciflow/trunk/121445 -> ciflow/trunk/121445 2025-06-01T20:58:08.1528907Z * [new tag] ciflow/trunk/123020 -> ciflow/trunk/123020 2025-06-01T20:58:08.1529292Z * [new tag] ciflow/trunk/124424 -> ciflow/trunk/124424 2025-06-01T20:58:08.1529686Z * [new tag] ciflow/trunk/124490 -> ciflow/trunk/124490 2025-06-01T20:58:08.1530074Z * [new tag] ciflow/trunk/125888 -> ciflow/trunk/125888 2025-06-01T20:58:08.1530467Z * [new tag] ciflow/trunk/125995 -> ciflow/trunk/125995 2025-06-01T20:58:08.1530859Z * [new tag] ciflow/trunk/126050 -> ciflow/trunk/126050 2025-06-01T20:58:08.1531245Z * [new tag] ciflow/trunk/126054 -> ciflow/trunk/126054 2025-06-01T20:58:08.1531650Z * [new tag] ciflow/trunk/127171 -> ciflow/trunk/127171 2025-06-01T20:58:08.1532042Z * [new tag] ciflow/trunk/127919 -> ciflow/trunk/127919 2025-06-01T20:58:08.1532437Z * [new tag] ciflow/trunk/129352 -> ciflow/trunk/129352 2025-06-01T20:58:08.1532834Z * [new tag] ciflow/trunk/130752 -> ciflow/trunk/130752 2025-06-01T20:58:08.1533255Z * [new tag] ciflow/trunk/133044 -> ciflow/trunk/133044 2025-06-01T20:58:08.1533695Z * [new tag] ciflow/trunk/133289 -> ciflow/trunk/133289 2025-06-01T20:58:08.1534083Z * [new tag] ciflow/trunk/133296 -> ciflow/trunk/133296 2025-06-01T20:58:08.1534480Z * [new tag] ciflow/trunk/133297 -> ciflow/trunk/133297 2025-06-01T20:58:08.1534869Z * [new tag] ciflow/trunk/133315 -> ciflow/trunk/133315 2025-06-01T20:58:08.1535265Z * [new tag] ciflow/trunk/133392 -> ciflow/trunk/133392 2025-06-01T20:58:08.1535667Z * [new tag] ciflow/trunk/133419 -> ciflow/trunk/133419 2025-06-01T20:58:08.1536059Z * [new tag] ciflow/trunk/133423 -> ciflow/trunk/133423 2025-06-01T20:58:08.1536459Z * [new tag] ciflow/trunk/133667 -> ciflow/trunk/133667 2025-06-01T20:58:08.1536843Z * [new tag] ciflow/trunk/133753 -> ciflow/trunk/133753 2025-06-01T20:58:08.1537237Z * [new tag] ciflow/trunk/135631 -> ciflow/trunk/135631 2025-06-01T20:58:08.1537627Z * [new tag] ciflow/trunk/136824 -> ciflow/trunk/136824 2025-06-01T20:58:08.1538011Z * [new tag] ciflow/trunk/137400 -> ciflow/trunk/137400 2025-06-01T20:58:08.1538404Z * [new tag] ciflow/trunk/138436 -> ciflow/trunk/138436 2025-06-01T20:58:08.1538933Z * [new tag] ciflow/trunk/138626 -> ciflow/trunk/138626 2025-06-01T20:58:08.1539445Z * [new tag] ciflow/trunk/138684 -> ciflow/trunk/138684 2025-06-01T20:58:08.1539851Z * [new tag] ciflow/trunk/138834 -> ciflow/trunk/138834 2025-06-01T20:58:08.1540243Z * [new tag] ciflow/trunk/138996 -> ciflow/trunk/138996 2025-06-01T20:58:08.1540643Z * [new tag] ciflow/trunk/139171 -> ciflow/trunk/139171 2025-06-01T20:58:08.1541042Z * [new tag] ciflow/trunk/139971 -> ciflow/trunk/139971 2025-06-01T20:58:08.1541448Z * [new tag] ciflow/trunk/139975 -> ciflow/trunk/139975 2025-06-01T20:58:08.1541842Z * [new tag] ciflow/trunk/140756 -> ciflow/trunk/140756 2025-06-01T20:58:08.1542239Z * [new tag] ciflow/trunk/140979 -> ciflow/trunk/140979 2025-06-01T20:58:08.1542642Z * [new tag] ciflow/trunk/141309 -> ciflow/trunk/141309 2025-06-01T20:58:08.1543041Z * [new tag] ciflow/trunk/141842 -> ciflow/trunk/141842 2025-06-01T20:58:08.1543448Z * [new tag] ciflow/trunk/141961 -> ciflow/trunk/141961 2025-06-01T20:58:08.1898079Z * [new tag] ciflow/trunk/142346 -> ciflow/trunk/142346 2025-06-01T20:58:08.1898537Z * [new tag] ciflow/trunk/143712 -> ciflow/trunk/143712 2025-06-01T20:58:08.1898948Z * [new tag] ciflow/trunk/143896 -> ciflow/trunk/143896 2025-06-01T20:58:08.1899361Z * [new tag] ciflow/trunk/144468 -> ciflow/trunk/144468 2025-06-01T20:58:08.1899757Z * [new tag] ciflow/trunk/144557 -> ciflow/trunk/144557 2025-06-01T20:58:08.1900147Z * [new tag] ciflow/trunk/144756 -> ciflow/trunk/144756 2025-06-01T20:58:08.1900550Z * [new tag] ciflow/trunk/144925 -> ciflow/trunk/144925 2025-06-01T20:58:08.1900964Z * [new tag] ciflow/trunk/144992 -> ciflow/trunk/144992 2025-06-01T20:58:08.1901363Z * [new tag] ciflow/trunk/145136 -> ciflow/trunk/145136 2025-06-01T20:58:08.1901755Z * [new tag] ciflow/trunk/145153 -> ciflow/trunk/145153 2025-06-01T20:58:08.1902145Z * [new tag] ciflow/trunk/145719 -> ciflow/trunk/145719 2025-06-01T20:58:08.1902540Z * [new tag] ciflow/trunk/146055 -> ciflow/trunk/146055 2025-06-01T20:58:08.1902939Z * [new tag] ciflow/trunk/146289 -> ciflow/trunk/146289 2025-06-01T20:58:08.1903334Z * [new tag] ciflow/trunk/146335 -> ciflow/trunk/146335 2025-06-01T20:58:08.1903724Z * [new tag] ciflow/trunk/146622 -> ciflow/trunk/146622 2025-06-01T20:58:08.1904108Z * [new tag] ciflow/trunk/146777 -> ciflow/trunk/146777 2025-06-01T20:58:08.1904502Z * [new tag] ciflow/trunk/146845 -> ciflow/trunk/146845 2025-06-01T20:58:08.1904890Z * [new tag] ciflow/trunk/146874 -> ciflow/trunk/146874 2025-06-01T20:58:08.1905289Z * [new tag] ciflow/trunk/146903 -> ciflow/trunk/146903 2025-06-01T20:58:08.1905678Z * [new tag] ciflow/trunk/147053 -> ciflow/trunk/147053 2025-06-01T20:58:08.1906062Z * [new tag] ciflow/trunk/147095 -> ciflow/trunk/147095 2025-06-01T20:58:08.1906460Z * [new tag] ciflow/trunk/147368 -> ciflow/trunk/147368 2025-06-01T20:58:08.1906847Z * [new tag] ciflow/trunk/147433 -> ciflow/trunk/147433 2025-06-01T20:58:08.1907238Z * [new tag] ciflow/trunk/147583 -> ciflow/trunk/147583 2025-06-01T20:58:08.1907640Z * [new tag] ciflow/trunk/147670 -> ciflow/trunk/147670 2025-06-01T20:58:08.1908024Z * [new tag] ciflow/trunk/147758 -> ciflow/trunk/147758 2025-06-01T20:58:08.1908640Z * [new tag] ciflow/trunk/147881 -> ciflow/trunk/147881 2025-06-01T20:58:08.1909032Z * [new tag] ciflow/trunk/148140 -> ciflow/trunk/148140 2025-06-01T20:58:08.1909426Z * [new tag] ciflow/trunk/148173 -> ciflow/trunk/148173 2025-06-01T20:58:08.1909827Z * [new tag] ciflow/trunk/148180 -> ciflow/trunk/148180 2025-06-01T20:58:08.1910212Z * [new tag] ciflow/trunk/148328 -> ciflow/trunk/148328 2025-06-01T20:58:08.1910604Z * [new tag] ciflow/trunk/148419 -> ciflow/trunk/148419 2025-06-01T20:58:08.1910985Z * [new tag] ciflow/trunk/148424 -> ciflow/trunk/148424 2025-06-01T20:58:08.1911379Z * [new tag] ciflow/trunk/148492 -> ciflow/trunk/148492 2025-06-01T20:58:08.1911765Z * [new tag] ciflow/trunk/148605 -> ciflow/trunk/148605 2025-06-01T20:58:08.1912166Z * [new tag] ciflow/trunk/148628 -> ciflow/trunk/148628 2025-06-01T20:58:08.1912568Z * [new tag] ciflow/trunk/148753 -> ciflow/trunk/148753 2025-06-01T20:58:08.1912954Z * [new tag] ciflow/trunk/148900 -> ciflow/trunk/148900 2025-06-01T20:58:08.1913350Z * [new tag] ciflow/trunk/148903 -> ciflow/trunk/148903 2025-06-01T20:58:08.1913733Z * [new tag] ciflow/trunk/148919 -> ciflow/trunk/148919 2025-06-01T20:58:08.1914233Z * [new tag] ciflow/trunk/149069 -> ciflow/trunk/149069 2025-06-01T20:58:08.1914636Z * [new tag] ciflow/trunk/149114 -> ciflow/trunk/149114 2025-06-01T20:58:08.1915027Z * [new tag] ciflow/trunk/149122 -> ciflow/trunk/149122 2025-06-01T20:58:08.1915430Z * [new tag] ciflow/trunk/149150 -> ciflow/trunk/149150 2025-06-01T20:58:08.1915827Z * [new tag] ciflow/trunk/149192 -> ciflow/trunk/149192 2025-06-01T20:58:08.1916226Z * [new tag] ciflow/trunk/149282 -> ciflow/trunk/149282 2025-06-01T20:58:08.1916615Z * [new tag] ciflow/trunk/149330 -> ciflow/trunk/149330 2025-06-01T20:58:08.1917010Z * [new tag] ciflow/trunk/149338 -> ciflow/trunk/149338 2025-06-01T20:58:08.1917410Z * [new tag] ciflow/trunk/149348 -> ciflow/trunk/149348 2025-06-01T20:58:08.1917799Z * [new tag] ciflow/trunk/149362 -> ciflow/trunk/149362 2025-06-01T20:58:08.1918204Z * [new tag] ciflow/trunk/149427 -> ciflow/trunk/149427 2025-06-01T20:58:08.2246647Z * [new tag] ciflow/trunk/149486 -> ciflow/trunk/149486 2025-06-01T20:58:08.2247099Z * [new tag] ciflow/trunk/149602 -> ciflow/trunk/149602 2025-06-01T20:58:08.2247489Z * [new tag] ciflow/trunk/149744 -> ciflow/trunk/149744 2025-06-01T20:58:08.2247895Z * [new tag] ciflow/trunk/149769 -> ciflow/trunk/149769 2025-06-01T20:58:08.2248301Z * [new tag] ciflow/trunk/149814 -> ciflow/trunk/149814 2025-06-01T20:58:08.2248683Z * [new tag] ciflow/trunk/149949 -> ciflow/trunk/149949 2025-06-01T20:58:08.2249085Z * [new tag] ciflow/trunk/149958 -> ciflow/trunk/149958 2025-06-01T20:58:08.2249477Z * [new tag] ciflow/trunk/149961 -> ciflow/trunk/149961 2025-06-01T20:58:08.2249860Z * [new tag] ciflow/trunk/149967 -> ciflow/trunk/149967 2025-06-01T20:58:08.2250253Z * [new tag] ciflow/trunk/150095 -> ciflow/trunk/150095 2025-06-01T20:58:08.2250640Z * [new tag] ciflow/trunk/150105 -> ciflow/trunk/150105 2025-06-01T20:58:08.2251029Z * [new tag] ciflow/trunk/150116 -> ciflow/trunk/150116 2025-06-01T20:58:08.2251530Z * [new tag] ciflow/trunk/150227 -> ciflow/trunk/150227 2025-06-01T20:58:08.2252003Z * [new tag] ciflow/trunk/150338 -> ciflow/trunk/150338 2025-06-01T20:58:08.2252398Z * [new tag] ciflow/trunk/150365 -> ciflow/trunk/150365 2025-06-01T20:58:08.2252786Z * [new tag] ciflow/trunk/150383 -> ciflow/trunk/150383 2025-06-01T20:58:08.2253200Z * [new tag] ciflow/trunk/150415 -> ciflow/trunk/150415 2025-06-01T20:58:08.2253598Z * [new tag] ciflow/trunk/150429 -> ciflow/trunk/150429 2025-06-01T20:58:08.2253988Z * [new tag] ciflow/trunk/150474 -> ciflow/trunk/150474 2025-06-01T20:58:08.2254385Z * [new tag] ciflow/trunk/150546 -> ciflow/trunk/150546 2025-06-01T20:58:08.2254779Z * [new tag] ciflow/trunk/150552 -> ciflow/trunk/150552 2025-06-01T20:58:08.2255182Z * [new tag] ciflow/trunk/150583 -> ciflow/trunk/150583 2025-06-01T20:58:08.2255577Z * [new tag] ciflow/trunk/150669 -> ciflow/trunk/150669 2025-06-01T20:58:08.2255975Z * [new tag] ciflow/trunk/150678 -> ciflow/trunk/150678 2025-06-01T20:58:08.2256370Z * [new tag] ciflow/trunk/150717 -> ciflow/trunk/150717 2025-06-01T20:58:08.2256759Z * [new tag] ciflow/trunk/150719 -> ciflow/trunk/150719 2025-06-01T20:58:08.2257155Z * [new tag] ciflow/trunk/150937 -> ciflow/trunk/150937 2025-06-01T20:58:08.2257541Z * [new tag] ciflow/trunk/150954 -> ciflow/trunk/150954 2025-06-01T20:58:08.2257935Z * [new tag] ciflow/trunk/150979 -> ciflow/trunk/150979 2025-06-01T20:58:08.2258329Z * [new tag] ciflow/trunk/151125 -> ciflow/trunk/151125 2025-06-01T20:58:08.2258722Z * [new tag] ciflow/trunk/151146 -> ciflow/trunk/151146 2025-06-01T20:58:08.2259125Z * [new tag] ciflow/trunk/151150 -> ciflow/trunk/151150 2025-06-01T20:58:08.2259513Z * [new tag] ciflow/trunk/151177 -> ciflow/trunk/151177 2025-06-01T20:58:08.2259904Z * [new tag] ciflow/trunk/151292 -> ciflow/trunk/151292 2025-06-01T20:58:08.2260295Z * [new tag] ciflow/trunk/151305 -> ciflow/trunk/151305 2025-06-01T20:58:08.2260698Z * [new tag] ciflow/trunk/151315 -> ciflow/trunk/151315 2025-06-01T20:58:08.2261093Z * [new tag] ciflow/trunk/151439 -> ciflow/trunk/151439 2025-06-01T20:58:08.2261478Z * [new tag] ciflow/trunk/151456 -> ciflow/trunk/151456 2025-06-01T20:58:08.2261870Z * [new tag] ciflow/trunk/151473 -> ciflow/trunk/151473 2025-06-01T20:58:08.2262253Z * [new tag] ciflow/trunk/151481 -> ciflow/trunk/151481 2025-06-01T20:58:08.2262652Z * [new tag] ciflow/trunk/151497 -> ciflow/trunk/151497 2025-06-01T20:58:08.2263055Z * [new tag] ciflow/trunk/151527 -> ciflow/trunk/151527 2025-06-01T20:58:08.2263442Z * [new tag] ciflow/trunk/151547 -> ciflow/trunk/151547 2025-06-01T20:58:08.2263838Z * [new tag] ciflow/trunk/151557 -> ciflow/trunk/151557 2025-06-01T20:58:08.2264221Z * [new tag] ciflow/trunk/151567 -> ciflow/trunk/151567 2025-06-01T20:58:08.2264617Z * [new tag] ciflow/trunk/151581 -> ciflow/trunk/151581 2025-06-01T20:58:08.2265018Z * [new tag] ciflow/trunk/151585 -> ciflow/trunk/151585 2025-06-01T20:58:08.2265409Z * [new tag] ciflow/trunk/151596 -> ciflow/trunk/151596 2025-06-01T20:58:08.2265805Z * [new tag] ciflow/trunk/151647 -> ciflow/trunk/151647 2025-06-01T20:58:08.2266282Z * [new tag] ciflow/trunk/151676 -> ciflow/trunk/151676 2025-06-01T20:58:08.2266766Z * [new tag] ciflow/trunk/151752 -> ciflow/trunk/151752 2025-06-01T20:58:08.2615767Z * [new tag] ciflow/trunk/151774 -> ciflow/trunk/151774 2025-06-01T20:58:08.2616231Z * [new tag] ciflow/trunk/151777 -> ciflow/trunk/151777 2025-06-01T20:58:08.2616645Z * [new tag] ciflow/trunk/151795 -> ciflow/trunk/151795 2025-06-01T20:58:08.2617042Z * [new tag] ciflow/trunk/151845 -> ciflow/trunk/151845 2025-06-01T20:58:08.2617456Z * [new tag] ciflow/trunk/151860 -> ciflow/trunk/151860 2025-06-01T20:58:08.2617839Z * [new tag] ciflow/trunk/151896 -> ciflow/trunk/151896 2025-06-01T20:58:08.2618234Z * [new tag] ciflow/trunk/151924 -> ciflow/trunk/151924 2025-06-01T20:58:08.2618632Z * [new tag] ciflow/trunk/152023 -> ciflow/trunk/152023 2025-06-01T20:58:08.2619021Z * [new tag] ciflow/trunk/152026 -> ciflow/trunk/152026 2025-06-01T20:58:08.2619415Z * [new tag] ciflow/trunk/152091 -> ciflow/trunk/152091 2025-06-01T20:58:08.2619842Z * [new tag] ciflow/trunk/152197 -> ciflow/trunk/152197 2025-06-01T20:58:08.2620287Z * [new tag] ciflow/trunk/152348 -> ciflow/trunk/152348 2025-06-01T20:58:08.2620676Z * [new tag] ciflow/trunk/152353 -> ciflow/trunk/152353 2025-06-01T20:58:08.2621058Z * [new tag] ciflow/trunk/152372 -> ciflow/trunk/152372 2025-06-01T20:58:08.2621446Z * [new tag] ciflow/trunk/152373 -> ciflow/trunk/152373 2025-06-01T20:58:08.2621825Z * [new tag] ciflow/trunk/152394 -> ciflow/trunk/152394 2025-06-01T20:58:08.2622220Z * [new tag] ciflow/trunk/152424 -> ciflow/trunk/152424 2025-06-01T20:58:08.2622614Z * [new tag] ciflow/trunk/152450 -> ciflow/trunk/152450 2025-06-01T20:58:08.2623021Z * [new tag] ciflow/trunk/152453 -> ciflow/trunk/152453 2025-06-01T20:58:08.2623407Z * [new tag] ciflow/trunk/152477 -> ciflow/trunk/152477 2025-06-01T20:58:08.2623801Z * [new tag] ciflow/trunk/152484 -> ciflow/trunk/152484 2025-06-01T20:58:08.2624198Z * [new tag] ciflow/trunk/152493 -> ciflow/trunk/152493 2025-06-01T20:58:08.2624594Z * [new tag] ciflow/trunk/152495 -> ciflow/trunk/152495 2025-06-01T20:58:08.2624985Z * [new tag] ciflow/trunk/152509 -> ciflow/trunk/152509 2025-06-01T20:58:08.2625423Z * [new tag] ciflow/trunk/152539 -> ciflow/trunk/152539 2025-06-01T20:58:08.2625810Z * [new tag] ciflow/trunk/152557 -> ciflow/trunk/152557 2025-06-01T20:58:08.2626252Z * [new tag] ciflow/trunk/152624 -> ciflow/trunk/152624 2025-06-01T20:58:08.2626644Z * [new tag] ciflow/trunk/152630 -> ciflow/trunk/152630 2025-06-01T20:58:08.2627034Z * [new tag] ciflow/trunk/152729 -> ciflow/trunk/152729 2025-06-01T20:58:08.2627428Z * [new tag] ciflow/trunk/152748 -> ciflow/trunk/152748 2025-06-01T20:58:08.2627814Z * [new tag] ciflow/trunk/152806 -> ciflow/trunk/152806 2025-06-01T20:58:08.2628203Z * [new tag] ciflow/trunk/152908 -> ciflow/trunk/152908 2025-06-01T20:58:08.2628587Z * [new tag] ciflow/trunk/152981 -> ciflow/trunk/152981 2025-06-01T20:58:08.2628983Z * [new tag] ciflow/trunk/152986 -> ciflow/trunk/152986 2025-06-01T20:58:08.2629380Z * [new tag] ciflow/trunk/153117 -> ciflow/trunk/153117 2025-06-01T20:58:08.2629907Z * [new tag] ciflow/trunk/153165 -> ciflow/trunk/153165 2025-06-01T20:58:08.2630377Z * [new tag] ciflow/trunk/153213 -> ciflow/trunk/153213 2025-06-01T20:58:08.2630768Z * [new tag] ciflow/trunk/153228 -> ciflow/trunk/153228 2025-06-01T20:58:08.2631205Z * [new tag] ciflow/trunk/153287 -> ciflow/trunk/153287 2025-06-01T20:58:08.2631632Z * [new tag] ciflow/trunk/153322 -> ciflow/trunk/153322 2025-06-01T20:58:08.2632028Z * [new tag] ciflow/trunk/153373 -> ciflow/trunk/153373 2025-06-01T20:58:08.2632422Z * [new tag] ciflow/trunk/153407 -> ciflow/trunk/153407 2025-06-01T20:58:08.2632816Z * [new tag] ciflow/trunk/153409 -> ciflow/trunk/153409 2025-06-01T20:58:08.2633216Z * [new tag] ciflow/trunk/153436 -> ciflow/trunk/153436 2025-06-01T20:58:08.2633605Z * [new tag] ciflow/trunk/153473 -> ciflow/trunk/153473 2025-06-01T20:58:08.2634098Z * [new tag] ciflow/trunk/153499 -> ciflow/trunk/153499 2025-06-01T20:58:08.2634505Z * [new tag] ciflow/trunk/153515 -> ciflow/trunk/153515 2025-06-01T20:58:08.2634891Z * [new tag] ciflow/trunk/153538 -> ciflow/trunk/153538 2025-06-01T20:58:08.2635286Z * [new tag] ciflow/trunk/153540 -> ciflow/trunk/153540 2025-06-01T20:58:08.2635676Z * [new tag] ciflow/trunk/153541 -> ciflow/trunk/153541 2025-06-01T20:58:08.2636084Z * [new tag] ciflow/trunk/153547 -> ciflow/trunk/153547 2025-06-01T20:58:08.3699392Z * [new tag] ciflow/trunk/153548 -> ciflow/trunk/153548 2025-06-01T20:58:08.3700341Z * [new tag] ciflow/trunk/153567 -> ciflow/trunk/153567 2025-06-01T20:58:08.3701279Z * [new tag] ciflow/trunk/153596 -> ciflow/trunk/153596 2025-06-01T20:58:08.3702097Z * [new tag] ciflow/trunk/153651 -> ciflow/trunk/153651 2025-06-01T20:58:08.3702944Z * [new tag] ciflow/trunk/153662 -> ciflow/trunk/153662 2025-06-01T20:58:08.3703797Z * [new tag] ciflow/trunk/153672 -> ciflow/trunk/153672 2025-06-01T20:58:08.3704601Z * [new tag] ciflow/trunk/153675 -> ciflow/trunk/153675 2025-06-01T20:58:08.3705520Z * [new tag] ciflow/trunk/153683 -> ciflow/trunk/153683 2025-06-01T20:58:08.3706327Z * [new tag] ciflow/trunk/153684 -> ciflow/trunk/153684 2025-06-01T20:58:08.3707224Z * [new tag] ciflow/trunk/153724 -> ciflow/trunk/153724 2025-06-01T20:58:08.3708050Z * [new tag] ciflow/trunk/153738 -> ciflow/trunk/153738 2025-06-01T20:58:08.3708888Z * [new tag] ciflow/trunk/153780 -> ciflow/trunk/153780 2025-06-01T20:58:08.3709809Z * [new tag] ciflow/trunk/153783 -> ciflow/trunk/153783 2025-06-01T20:58:08.3710703Z * [new tag] ciflow/trunk/153792 -> ciflow/trunk/153792 2025-06-01T20:58:08.3711538Z * [new tag] ciflow/trunk/153802 -> ciflow/trunk/153802 2025-06-01T20:58:08.3712346Z * [new tag] ciflow/trunk/153831 -> ciflow/trunk/153831 2025-06-01T20:58:08.3713163Z * [new tag] ciflow/trunk/153834 -> ciflow/trunk/153834 2025-06-01T20:58:08.3713992Z * [new tag] ciflow/trunk/153835 -> ciflow/trunk/153835 2025-06-01T20:58:08.3714723Z * [new tag] ciflow/trunk/153855 -> ciflow/trunk/153855 2025-06-01T20:58:08.3715580Z * [new tag] ciflow/trunk/153862 -> ciflow/trunk/153862 2025-06-01T20:58:08.3716448Z * [new tag] ciflow/trunk/153921 -> ciflow/trunk/153921 2025-06-01T20:58:08.3717303Z * [new tag] ciflow/trunk/153972 -> ciflow/trunk/153972 2025-06-01T20:58:08.3718686Z * [new tag] ciflow/trunk/153977 -> ciflow/trunk/153977 2025-06-01T20:58:08.3719388Z * [new tag] ciflow/trunk/154013 -> ciflow/trunk/154013 2025-06-01T20:58:08.3719917Z * [new tag] ciflow/trunk/154047 -> ciflow/trunk/154047 2025-06-01T20:58:08.3720391Z * [new tag] ciflow/trunk/154075 -> ciflow/trunk/154075 2025-06-01T20:58:08.3720925Z * [new tag] ciflow/trunk/154100 -> ciflow/trunk/154100 2025-06-01T20:58:08.3721484Z * [new tag] ciflow/trunk/154129 -> ciflow/trunk/154129 2025-06-01T20:58:08.3721996Z * [new tag] ciflow/trunk/154132 -> ciflow/trunk/154132 2025-06-01T20:58:08.3722565Z * [new tag] ciflow/trunk/154142 -> ciflow/trunk/154142 2025-06-01T20:58:08.3723064Z * [new tag] ciflow/trunk/154145 -> ciflow/trunk/154145 2025-06-01T20:58:08.3723592Z * [new tag] ciflow/trunk/154149 -> ciflow/trunk/154149 2025-06-01T20:58:08.3724090Z * [new tag] ciflow/trunk/154159 -> ciflow/trunk/154159 2025-06-01T20:58:08.3724643Z * [new tag] ciflow/trunk/154165 -> ciflow/trunk/154165 2025-06-01T20:58:08.3725198Z * [new tag] ciflow/trunk/154169 -> ciflow/trunk/154169 2025-06-01T20:58:08.3725737Z * [new tag] ciflow/trunk/154198 -> ciflow/trunk/154198 2025-06-01T20:58:08.3726215Z * [new tag] ciflow/trunk/154203 -> ciflow/trunk/154203 2025-06-01T20:58:08.3726724Z * [new tag] ciflow/trunk/154292 -> ciflow/trunk/154292 2025-06-01T20:58:08.3727282Z * [new tag] ciflow/trunk/154293 -> ciflow/trunk/154293 2025-06-01T20:58:08.3727842Z * [new tag] ciflow/trunk/154298 -> ciflow/trunk/154298 2025-06-01T20:58:08.3728361Z * [new tag] ciflow/trunk/154314 -> ciflow/trunk/154314 2025-06-01T20:58:08.3728902Z * [new tag] ciflow/trunk/154320 -> ciflow/trunk/154320 2025-06-01T20:58:08.3729453Z * [new tag] ciflow/trunk/154343 -> ciflow/trunk/154343 2025-06-01T20:58:08.3729979Z * [new tag] ciflow/trunk/154347 -> ciflow/trunk/154347 2025-06-01T20:58:08.3730513Z * [new tag] ciflow/trunk/154348 -> ciflow/trunk/154348 2025-06-01T20:58:08.3730998Z * [new tag] ciflow/trunk/154353 -> ciflow/trunk/154353 2025-06-01T20:58:08.3731579Z * [new tag] ciflow/trunk/154406 -> ciflow/trunk/154406 2025-06-01T20:58:08.3732100Z * [new tag] ciflow/trunk/154447 -> ciflow/trunk/154447 2025-06-01T20:58:08.3732657Z * [new tag] ciflow/trunk/154464 -> ciflow/trunk/154464 2025-06-01T20:58:08.3733177Z * [new tag] ciflow/trunk/154469 -> ciflow/trunk/154469 2025-06-01T20:58:08.3733802Z * [new tag] ciflow/trunk/154514 -> ciflow/trunk/154514 2025-06-01T20:58:08.4729729Z * [new tag] ciflow/trunk/154525 -> ciflow/trunk/154525 2025-06-01T20:58:08.4730223Z * [new tag] ciflow/trunk/154533 -> ciflow/trunk/154533 2025-06-01T20:58:08.4730674Z * [new tag] ciflow/trunk/154538 -> ciflow/trunk/154538 2025-06-01T20:58:08.4731143Z * [new tag] ciflow/trunk/154555 -> ciflow/trunk/154555 2025-06-01T20:58:08.4731541Z * [new tag] ciflow/trunk/154568 -> ciflow/trunk/154568 2025-06-01T20:58:08.4731938Z * [new tag] ciflow/trunk/154585 -> ciflow/trunk/154585 2025-06-01T20:58:08.4732323Z * [new tag] ciflow/trunk/154589 -> ciflow/trunk/154589 2025-06-01T20:58:08.4732715Z * [new tag] ciflow/trunk/154594 -> ciflow/trunk/154594 2025-06-01T20:58:08.4733255Z * [new tag] ciflow/trunk/154610 -> ciflow/trunk/154610 2025-06-01T20:58:08.4733750Z * [new tag] ciflow/trunk/154630 -> ciflow/trunk/154630 2025-06-01T20:58:08.4734156Z * [new tag] ciflow/trunk/154631 -> ciflow/trunk/154631 2025-06-01T20:58:08.4734551Z * [new tag] ciflow/trunk/154636 -> ciflow/trunk/154636 2025-06-01T20:58:08.4734944Z * [new tag] ciflow/trunk/154640 -> ciflow/trunk/154640 2025-06-01T20:58:08.4735326Z * [new tag] ciflow/trunk/154665 -> ciflow/trunk/154665 2025-06-01T20:58:08.4735725Z * [new tag] ciflow/trunk/154667 -> ciflow/trunk/154667 2025-06-01T20:58:08.4736125Z * [new tag] ciflow/trunk/154673 -> ciflow/trunk/154673 2025-06-01T20:58:08.4736554Z * [new tag] ciflow/trunk/154679 -> ciflow/trunk/154679 2025-06-01T20:58:08.4736994Z * [new tag] ciflow/trunk/154688 -> ciflow/trunk/154688 2025-06-01T20:58:08.4737430Z * [new tag] ciflow/trunk/154694 -> ciflow/trunk/154694 2025-06-01T20:58:08.4737908Z * [new tag] ciflow/trunk/154698 -> ciflow/trunk/154698 2025-06-01T20:58:08.4738348Z * [new tag] ciflow/trunk/154704 -> ciflow/trunk/154704 2025-06-01T20:58:08.4738779Z * [new tag] ciflow/trunk/154729 -> ciflow/trunk/154729 2025-06-01T20:58:08.4739214Z * [new tag] ciflow/trunk/154749 -> ciflow/trunk/154749 2025-06-01T20:58:08.4739642Z * [new tag] ciflow/trunk/154776 -> ciflow/trunk/154776 2025-06-01T20:58:08.4740115Z * [new tag] ciflow/trunk/154780 -> ciflow/trunk/154780 2025-06-01T20:58:08.4740560Z * [new tag] ciflow/trunk/154783 -> ciflow/trunk/154783 2025-06-01T20:58:08.4741009Z * [new tag] ciflow/trunk/154814 -> ciflow/trunk/154814 2025-06-01T20:58:08.4741447Z * [new tag] ciflow/trunk/154817 -> ciflow/trunk/154817 2025-06-01T20:58:08.4741876Z * [new tag] ciflow/trunk/154825 -> ciflow/trunk/154825 2025-06-01T20:58:08.4742313Z * [new tag] ciflow/trunk/70978 -> ciflow/trunk/70978 2025-06-01T20:58:08.4742781Z * [new tag] ciflow/trunk/70979 -> ciflow/trunk/70979 2025-06-01T20:58:08.4743225Z * [new tag] ciflow/unstable/123 -> ciflow/unstable/123 2025-06-01T20:58:08.4743681Z * [new tag] ciflow/win-arm64/154783 -> ciflow/win-arm64/154783 2025-06-01T20:58:08.4744145Z * [new tag] ciflow/xpu/138996 -> ciflow/xpu/138996 2025-06-01T20:58:08.4744624Z * [new tag] ciflow/xpu/139971 -> ciflow/xpu/139971 2025-06-01T20:58:08.4745044Z * [new tag] ciflow/xpu/140372 -> ciflow/xpu/140372 2025-06-01T20:58:08.4745480Z * [new tag] ciflow/xpu/147583 -> ciflow/xpu/147583 2025-06-01T20:58:08.4745909Z * [new tag] ciflow/xpu/149114 -> ciflow/xpu/149114 2025-06-01T20:58:08.4746333Z * [new tag] ciflow/xpu/150095 -> ciflow/xpu/150095 2025-06-01T20:58:08.4746765Z * [new tag] ciflow/xpu/150673 -> ciflow/xpu/150673 2025-06-01T20:58:08.4747186Z * [new tag] ciflow/xpu/151420 -> ciflow/xpu/151420 2025-06-01T20:58:08.4747658Z * [new tag] ciflow/xpu/151439 -> ciflow/xpu/151439 2025-06-01T20:58:08.4748073Z * [new tag] ciflow/xpu/151581 -> ciflow/xpu/151581 2025-06-01T20:58:08.4748495Z * [new tag] ciflow/xpu/151596 -> ciflow/xpu/151596 2025-06-01T20:58:08.4748923Z * [new tag] ciflow/xpu/151777 -> ciflow/xpu/151777 2025-06-01T20:58:08.4750133Z * [new tag] ciflow/xpu/152001 -> ciflow/xpu/152001 2025-06-01T20:58:08.4751135Z * [new tag] ciflow/xpu/152091 -> ciflow/xpu/152091 2025-06-01T20:58:08.4751570Z * [new tag] ciflow/xpu/152879 -> ciflow/xpu/152879 2025-06-01T20:58:08.4752004Z * [new tag] ciflow/xpu/153096 -> ciflow/xpu/153096 2025-06-01T20:58:08.4752463Z * [new tag] ciflow/xpu/153213 -> ciflow/xpu/153213 2025-06-01T20:58:08.4752898Z * [new tag] ciflow/xpu/153228 -> ciflow/xpu/153228 2025-06-01T20:58:08.4753334Z * [new tag] ciflow/xpu/153322 -> ciflow/xpu/153322 2025-06-01T20:58:08.5113434Z * [new tag] ciflow/xpu/153680 -> ciflow/xpu/153680 2025-06-01T20:58:08.5113959Z * [new tag] ciflow/xpu/153739 -> ciflow/xpu/153739 2025-06-01T20:58:08.5114380Z * [new tag] ciflow/xpu/153841 -> ciflow/xpu/153841 2025-06-01T20:58:08.5114821Z * [new tag] ciflow/xpu/154194 -> ciflow/xpu/154194 2025-06-01T20:58:08.5115260Z * [new tag] ciflow/xpu/154339 -> ciflow/xpu/154339 2025-06-01T20:58:08.5115641Z * [new tag] ciflow/xpu/154346 -> ciflow/xpu/154346 2025-06-01T20:58:08.5116028Z * [new tag] ciflow/xpu/154406 -> ciflow/xpu/154406 2025-06-01T20:58:08.5116408Z * [new tag] ciflow/xpu/154514 -> ciflow/xpu/154514 2025-06-01T20:58:08.5116794Z * [new tag] ciflow/xpu/154586 -> ciflow/xpu/154586 2025-06-01T20:58:08.5117176Z * [new tag] ciflow/xpu/154744 -> ciflow/xpu/154744 2025-06-01T20:58:08.5117543Z * [new tag] cslpull75 -> cslpull75 2025-06-01T20:58:08.5117908Z * [new tag] cslpull76 -> cslpull76 2025-06-01T20:58:08.5118266Z * [new tag] cslpull77 -> cslpull77 2025-06-01T20:58:08.5118630Z * [new tag] cslpull78 -> cslpull78 2025-06-01T20:58:08.5118993Z * [new tag] cslpull79 -> cslpull79 2025-06-01T20:58:08.5119338Z * [new tag] cslpull80 -> cslpull80 2025-06-01T20:58:08.5119688Z * [new tag] cslpull81 -> cslpull81 2025-06-01T20:58:08.5120040Z * [new tag] cslpull82 -> cslpull82 2025-06-01T20:58:08.5120398Z * [new tag] cslpull83 -> cslpull83 2025-06-01T20:58:08.5120792Z * [new tag] cslpull84 -> cslpull84 2025-06-01T20:58:08.5121193Z * [new tag] cslpull85 -> cslpull85 2025-06-01T20:58:08.5121540Z * [new tag] cslpull86 -> cslpull86 2025-06-01T20:58:08.5121885Z * [new tag] cslpull87 -> cslpull87 2025-06-01T20:58:08.5122244Z * [new tag] cslpull88 -> cslpull88 2025-06-01T20:58:08.5122592Z * [new tag] cslpull89 -> cslpull89 2025-06-01T20:58:08.5122955Z * [new tag] cslpull90 -> cslpull90 2025-06-01T20:58:08.5123299Z * [new tag] cslpull91 -> cslpull91 2025-06-01T20:58:08.5123653Z * [new tag] cslpull92 -> cslpull92 2025-06-01T20:58:08.5124019Z * [new tag] flight_5 -> flight_5 2025-06-01T20:58:08.5124370Z * [new tag] flight_5.1 -> flight_5.1 2025-06-01T20:58:08.5124728Z * [new tag] flight_5.2 -> flight_5.2 2025-06-01T20:58:08.5125074Z * [new tag] flight_5.3 -> flight_5.3 2025-06-01T20:58:08.5125421Z * [new tag] forpull1 -> forpull1 2025-06-01T20:58:08.5125939Z * [new tag] malfet/tag-2ef5611 -> malfet/tag-2ef5611 2025-06-01T20:58:08.5126477Z * [new tag] malfet/tag-317b1a0 -> malfet/tag-317b1a0 2025-06-01T20:58:08.5126930Z * [new tag] malfet/tag-ec6f767 -> malfet/tag-ec6f767 2025-06-01T20:58:08.5127324Z * [new tag] nightly-binary -> nightly-binary 2025-06-01T20:58:08.5127743Z * [new tag] sqzhang_flight4_plus -> sqzhang_flight4_plus 2025-06-01T20:58:08.5128139Z * [new tag] sqzhang_flight_3 -> sqzhang_flight_3 2025-06-01T20:58:08.5128506Z * [new tag] v0.1.1 -> v0.1.1 2025-06-01T20:58:08.5128851Z * [new tag] v0.1.10 -> v0.1.10 2025-06-01T20:58:08.5129181Z * [new tag] v0.1.11 -> v0.1.11 2025-06-01T20:58:08.5129526Z * [new tag] v0.1.12 -> v0.1.12 2025-06-01T20:58:08.5129852Z * [new tag] v0.1.2 -> v0.1.2 2025-06-01T20:58:08.5130191Z * [new tag] v0.1.3 -> v0.1.3 2025-06-01T20:58:08.5130513Z * [new tag] v0.1.4 -> v0.1.4 2025-06-01T20:58:08.5130840Z * [new tag] v0.1.5 -> v0.1.5 2025-06-01T20:58:08.5131166Z * [new tag] v0.1.6 -> v0.1.6 2025-06-01T20:58:08.5131492Z * [new tag] v0.1.7 -> v0.1.7 2025-06-01T20:58:08.5131858Z * [new tag] v0.1.8 -> v0.1.8 2025-06-01T20:58:08.5132182Z * [new tag] v0.1.9 -> v0.1.9 2025-06-01T20:58:08.5132555Z * [new tag] v0.2.0 -> v0.2.0 2025-06-01T20:58:08.5132878Z * [new tag] v0.3.0 -> v0.3.0 2025-06-01T20:58:08.5133213Z * [new tag] v0.3.1 -> v0.3.1 2025-06-01T20:58:08.5133540Z * [new tag] v0.4.0 -> v0.4.0 2025-06-01T20:58:08.5133857Z * [new tag] v0.4.1 -> v0.4.1 2025-06-01T20:58:08.5134192Z * [new tag] v1.0.0 -> v1.0.0 2025-06-01T20:58:08.5514902Z * [new tag] v1.0.0a0 -> v1.0.0a0 2025-06-01T20:58:08.5515331Z * [new tag] v1.0.1 -> v1.0.1 2025-06-01T20:58:08.5515684Z * [new tag] v1.0rc0 -> v1.0rc0 2025-06-01T20:58:08.5516022Z * [new tag] v1.0rc1 -> v1.0rc1 2025-06-01T20:58:08.5516359Z * [new tag] v1.1.0 -> v1.1.0 2025-06-01T20:58:08.5516692Z * [new tag] v1.1.0a0 -> v1.1.0a0 2025-06-01T20:58:08.5517033Z * [new tag] v1.10.0 -> v1.10.0 2025-06-01T20:58:08.5517394Z * [new tag] v1.10.0-rc1 -> v1.10.0-rc1 2025-06-01T20:58:08.5517751Z * [new tag] v1.10.0-rc2 -> v1.10.0-rc2 2025-06-01T20:58:08.5518109Z * [new tag] v1.10.0-rc3 -> v1.10.0-rc3 2025-06-01T20:58:08.5518444Z * [new tag] v1.10.1 -> v1.10.1 2025-06-01T20:58:08.5518789Z * [new tag] v1.10.1-rc1 -> v1.10.1-rc1 2025-06-01T20:58:08.5519124Z * [new tag] v1.10.2 -> v1.10.2 2025-06-01T20:58:08.5519475Z * [new tag] v1.10.2-rc1 -> v1.10.2-rc1 2025-06-01T20:58:08.5519820Z * [new tag] v1.11.0 -> v1.11.0 2025-06-01T20:58:08.5520152Z * [new tag] v1.11.0-rc1 -> v1.11.0-rc1 2025-06-01T20:58:08.5520501Z * [new tag] v1.11.0-rc2 -> v1.11.0-rc2 2025-06-01T20:58:08.5520994Z * [new tag] v1.11.0-rc3 -> v1.11.0-rc3 2025-06-01T20:58:08.5521433Z * [new tag] v1.11.0-rc4 -> v1.11.0-rc4 2025-06-01T20:58:08.5521792Z * [new tag] v1.11.0-rc5 -> v1.11.0-rc5 2025-06-01T20:58:08.5522135Z * [new tag] v1.11.0-rc6 -> v1.11.0-rc6 2025-06-01T20:58:08.5522487Z * [new tag] v1.11.0-rc7 -> v1.11.0-rc7 2025-06-01T20:58:08.5522825Z * [new tag] v1.12.0 -> v1.12.0 2025-06-01T20:58:08.5523175Z * [new tag] v1.12.0-rc1 -> v1.12.0-rc1 2025-06-01T20:58:08.5523516Z * [new tag] v1.12.0-rc2 -> v1.12.0-rc2 2025-06-01T20:58:08.5523877Z * [new tag] v1.12.0-rc3 -> v1.12.0-rc3 2025-06-01T20:58:08.5524228Z * [new tag] v1.12.0-rc4 -> v1.12.0-rc4 2025-06-01T20:58:08.5524573Z * [new tag] v1.12.0-rc5 -> v1.12.0-rc5 2025-06-01T20:58:08.5524931Z * [new tag] v1.12.0-rc6 -> v1.12.0-rc6 2025-06-01T20:58:08.5525267Z * [new tag] v1.12.0-rc7 -> v1.12.0-rc7 2025-06-01T20:58:08.5525615Z * [new tag] v1.12.0-rc8 -> v1.12.0-rc8 2025-06-01T20:58:08.5525953Z * [new tag] v1.12.1 -> v1.12.1 2025-06-01T20:58:08.5526302Z * [new tag] v1.12.1-rc1 -> v1.12.1-rc1 2025-06-01T20:58:08.5526655Z * [new tag] v1.12.1-rc2 -> v1.12.1-rc2 2025-06-01T20:58:08.5526999Z * [new tag] v1.12.1-rc3 -> v1.12.1-rc3 2025-06-01T20:58:08.5527357Z * [new tag] v1.12.1-rc4 -> v1.12.1-rc4 2025-06-01T20:58:08.5527699Z * [new tag] v1.12.1-rc5 -> v1.12.1-rc5 2025-06-01T20:58:08.5528044Z * [new tag] v1.13.0 -> v1.13.0 2025-06-01T20:58:08.5528393Z * [new tag] v1.13.0-rc1 -> v1.13.0-rc1 2025-06-01T20:58:08.5528749Z * [new tag] v1.13.0-rc2 -> v1.13.0-rc2 2025-06-01T20:58:08.5529106Z * [new tag] v1.13.0-rc3 -> v1.13.0-rc3 2025-06-01T20:58:08.5529449Z * [new tag] v1.13.0-rc4 -> v1.13.0-rc4 2025-06-01T20:58:08.5529798Z * [new tag] v1.13.0-rc5 -> v1.13.0-rc5 2025-06-01T20:58:08.5530139Z * [new tag] v1.13.0-rc6 -> v1.13.0-rc6 2025-06-01T20:58:08.5530480Z * [new tag] v1.13.1 -> v1.13.1 2025-06-01T20:58:08.5530832Z * [new tag] v1.13.1-rc1 -> v1.13.1-rc1 2025-06-01T20:58:08.5531170Z * [new tag] v1.2.0 -> v1.2.0 2025-06-01T20:58:08.5531519Z * [new tag] v1.2.0a0 -> v1.2.0a0 2025-06-01T20:58:08.5531861Z * [new tag] v1.3.0 -> v1.3.0 2025-06-01T20:58:08.5532204Z * [new tag] v1.3.0a0 -> v1.3.0a0 2025-06-01T20:58:08.5532543Z * [new tag] v1.3.1 -> v1.3.1 2025-06-01T20:58:08.5532877Z * [new tag] v1.4.0 -> v1.4.0 2025-06-01T20:58:08.5533217Z * [new tag] v1.4.0a0 -> v1.4.0a0 2025-06-01T20:58:08.5533551Z * [new tag] v1.4.1 -> v1.4.1 2025-06-01T20:58:08.5533884Z * [new tag] v1.5.0 -> v1.5.0 2025-06-01T20:58:08.5534217Z * [new tag] v1.5.0-rc1 -> v1.5.0-rc1 2025-06-01T20:58:08.5534568Z * [new tag] v1.5.0-rc2 -> v1.5.0-rc2 2025-06-01T20:58:08.5534910Z * [new tag] v1.5.0-rc3 -> v1.5.0-rc3 2025-06-01T20:58:08.5535362Z * [new tag] v1.5.0-rc4 -> v1.5.0-rc4 2025-06-01T20:58:08.5906581Z * [new tag] v1.5.0-rc5 -> v1.5.0-rc5 2025-06-01T20:58:08.5906986Z * [new tag] v1.5.1 -> v1.5.1 2025-06-01T20:58:08.5907343Z * [new tag] v1.5.1-rc1 -> v1.5.1-rc1 2025-06-01T20:58:08.5907686Z * [new tag] v1.6.0 -> v1.6.0 2025-06-01T20:58:08.5908079Z * [new tag] v1.6.0-rc1 -> v1.6.0-rc1 2025-06-01T20:58:08.5908440Z * [new tag] v1.6.0-rc2 -> v1.6.0-rc2 2025-06-01T20:58:08.5908826Z * [new tag] v1.6.0-rc3 -> v1.6.0-rc3 2025-06-01T20:58:08.5909173Z * [new tag] v1.6.0-rc4 -> v1.6.0-rc4 2025-06-01T20:58:08.5909510Z * [new tag] v1.6.0-rc5 -> v1.6.0-rc5 2025-06-01T20:58:08.5909871Z * [new tag] v1.6.0-rc6 -> v1.6.0-rc6 2025-06-01T20:58:08.5910213Z * [new tag] v1.6.0-rc7 -> v1.6.0-rc7 2025-06-01T20:58:08.5910553Z * [new tag] v1.7.0 -> v1.7.0 2025-06-01T20:58:08.5910890Z * [new tag] v1.7.0-rc1 -> v1.7.0-rc1 2025-06-01T20:58:08.5911229Z * [new tag] v1.7.0-rc2 -> v1.7.0-rc2 2025-06-01T20:58:08.5911573Z * [new tag] v1.7.0-rc3 -> v1.7.0-rc3 2025-06-01T20:58:08.5911907Z * [new tag] v1.7.0-rc4 -> v1.7.0-rc4 2025-06-01T20:58:08.5912251Z * [new tag] v1.7.1 -> v1.7.1 2025-06-01T20:58:08.5912588Z * [new tag] v1.7.1-rc1 -> v1.7.1-rc1 2025-06-01T20:58:08.5912942Z * [new tag] v1.7.1-rc2 -> v1.7.1-rc2 2025-06-01T20:58:08.5913297Z * [new tag] v1.7.1-rc3 -> v1.7.1-rc3 2025-06-01T20:58:08.5913635Z * [new tag] v1.8.0 -> v1.8.0 2025-06-01T20:58:08.5914071Z * [new tag] v1.8.0-rc1 -> v1.8.0-rc1 2025-06-01T20:58:08.5914460Z * [new tag] v1.8.0-rc2 -> v1.8.0-rc2 2025-06-01T20:58:08.5914807Z * [new tag] v1.8.0-rc3 -> v1.8.0-rc3 2025-06-01T20:58:08.5915161Z * [new tag] v1.8.0-rc4 -> v1.8.0-rc4 2025-06-01T20:58:08.5915502Z * [new tag] v1.8.0-rc5 -> v1.8.0-rc5 2025-06-01T20:58:08.5915913Z * [new tag] v1.8.1 -> v1.8.1 2025-06-01T20:58:08.5916245Z * [new tag] v1.8.1-rc1 -> v1.8.1-rc1 2025-06-01T20:58:08.5916595Z * [new tag] v1.8.1-rc2 -> v1.8.1-rc2 2025-06-01T20:58:08.5916939Z * [new tag] v1.8.1-rc3 -> v1.8.1-rc3 2025-06-01T20:58:08.5917274Z * [new tag] v1.8.2 -> v1.8.2 2025-06-01T20:58:08.5917613Z * [new tag] v1.8.2-rc1 -> v1.8.2-rc1 2025-06-01T20:58:08.5917945Z * [new tag] v1.9.0 -> v1.9.0 2025-06-01T20:58:08.5918283Z * [new tag] v1.9.0-rc1 -> v1.9.0-rc1 2025-06-01T20:58:08.5918632Z * [new tag] v1.9.0-rc2 -> v1.9.0-rc2 2025-06-01T20:58:08.5918967Z * [new tag] v1.9.0-rc3 -> v1.9.0-rc3 2025-06-01T20:58:08.5919312Z * [new tag] v1.9.0-rc4 -> v1.9.0-rc4 2025-06-01T20:58:08.5919681Z * [new tag] v1.9.1 -> v1.9.1 2025-06-01T20:58:08.5920015Z * [new tag] v1.9.1-rc1 -> v1.9.1-rc1 2025-06-01T20:58:08.5920508Z * [new tag] v1.9.1-rc2 -> v1.9.1-rc2 2025-06-01T20:58:08.5920929Z * [new tag] v2.0.0 -> v2.0.0 2025-06-01T20:58:08.5921277Z * [new tag] v2.0.0-rc1 -> v2.0.0-rc1 2025-06-01T20:58:08.5921622Z * [new tag] v2.0.0-rc2 -> v2.0.0-rc2 2025-06-01T20:58:08.5921972Z * [new tag] v2.0.0-rc3 -> v2.0.0-rc3 2025-06-01T20:58:08.5922313Z * [new tag] v2.0.0-rc4 -> v2.0.0-rc4 2025-06-01T20:58:08.5922660Z * [new tag] v2.0.0-rc5 -> v2.0.0-rc5 2025-06-01T20:58:08.5923003Z * [new tag] v2.0.0-rc6 -> v2.0.0-rc6 2025-06-01T20:58:08.5923343Z * [new tag] v2.0.1 -> v2.0.1 2025-06-01T20:58:08.5923683Z * [new tag] v2.0.1-rc1 -> v2.0.1-rc1 2025-06-01T20:58:08.5924022Z * [new tag] v2.0.1-rc2 -> v2.0.1-rc2 2025-06-01T20:58:08.5924376Z * [new tag] v2.0.1-rc3 -> v2.0.1-rc3 2025-06-01T20:58:08.5924719Z * [new tag] v2.0.1-rc4 -> v2.0.1-rc4 2025-06-01T20:58:08.5925060Z * [new tag] v2.1.0 -> v2.1.0 2025-06-01T20:58:08.5925438Z * [new tag] v2.1.0-rc1 -> v2.1.0-rc1 2025-06-01T20:58:08.5925815Z * [new tag] v2.1.0-rc2 -> v2.1.0-rc2 2025-06-01T20:58:08.5926160Z * [new tag] v2.1.0-rc3 -> v2.1.0-rc3 2025-06-01T20:58:08.5926497Z * [new tag] v2.1.0-rc4 -> v2.1.0-rc4 2025-06-01T20:58:08.5926838Z * [new tag] v2.1.0-rc5 -> v2.1.0-rc5 2025-06-01T20:58:08.6293942Z * [new tag] v2.1.0-rc6 -> v2.1.0-rc6 2025-06-01T20:58:08.6294361Z * [new tag] v2.1.1 -> v2.1.1 2025-06-01T20:58:08.6294738Z * [new tag] v2.1.1-rc1 -> v2.1.1-rc1 2025-06-01T20:58:08.6295100Z * [new tag] v2.1.1-rc2 -> v2.1.1-rc2 2025-06-01T20:58:08.6295451Z * [new tag] v2.1.1-rc3 -> v2.1.1-rc3 2025-06-01T20:58:08.6295795Z * [new tag] v2.1.1-rc4 -> v2.1.1-rc4 2025-06-01T20:58:08.6296135Z * [new tag] v2.1.1-rc5 -> v2.1.1-rc5 2025-06-01T20:58:08.6296480Z * [new tag] v2.1.1-rc6 -> v2.1.1-rc6 2025-06-01T20:58:08.6296810Z * [new tag] v2.1.2 -> v2.1.2 2025-06-01T20:58:08.6297148Z * [new tag] v2.1.2-rc1 -> v2.1.2-rc1 2025-06-01T20:58:08.6297486Z * [new tag] v2.1.2-rc2 -> v2.1.2-rc2 2025-06-01T20:58:08.6297831Z * [new tag] v2.1.2-rc3 -> v2.1.2-rc3 2025-06-01T20:58:08.6298173Z * [new tag] v2.2.0 -> v2.2.0 2025-06-01T20:58:08.6298504Z * [new tag] v2.2.0-rc1 -> v2.2.0-rc1 2025-06-01T20:58:08.6298852Z * [new tag] v2.2.0-rc2 -> v2.2.0-rc2 2025-06-01T20:58:08.6299196Z * [new tag] v2.2.0-rc3 -> v2.2.0-rc3 2025-06-01T20:58:08.6299541Z * [new tag] v2.2.0-rc4 -> v2.2.0-rc4 2025-06-01T20:58:08.6299874Z * [new tag] v2.2.0-rc5 -> v2.2.0-rc5 2025-06-01T20:58:08.6300219Z * [new tag] v2.2.0-rc6 -> v2.2.0-rc6 2025-06-01T20:58:08.6300563Z * [new tag] v2.2.0-rc7 -> v2.2.0-rc7 2025-06-01T20:58:08.6300906Z * [new tag] v2.2.0-rc8 -> v2.2.0-rc8 2025-06-01T20:58:08.6301248Z * [new tag] v2.2.1 -> v2.2.1 2025-06-01T20:58:08.6301727Z * [new tag] v2.2.1-rc1 -> v2.2.1-rc1 2025-06-01T20:58:08.6302173Z * [new tag] v2.2.1-rc2 -> v2.2.1-rc2 2025-06-01T20:58:08.6302518Z * [new tag] v2.2.1-rc3 -> v2.2.1-rc3 2025-06-01T20:58:08.6302865Z * [new tag] v2.2.2 -> v2.2.2 2025-06-01T20:58:08.6303213Z * [new tag] v2.2.2-rc1 -> v2.2.2-rc1 2025-06-01T20:58:08.6303555Z * [new tag] v2.2.2-rc2 -> v2.2.2-rc2 2025-06-01T20:58:08.6303909Z * [new tag] v2.2.2-rc3 -> v2.2.2-rc3 2025-06-01T20:58:08.6304242Z * [new tag] v2.3.0 -> v2.3.0 2025-06-01T20:58:08.6304588Z * [new tag] v2.3.0-rc1 -> v2.3.0-rc1 2025-06-01T20:58:08.6304949Z * [new tag] v2.3.0-rc10 -> v2.3.0-rc10 2025-06-01T20:58:08.6305301Z * [new tag] v2.3.0-rc11 -> v2.3.0-rc11 2025-06-01T20:58:08.6305654Z * [new tag] v2.3.0-rc12 -> v2.3.0-rc12 2025-06-01T20:58:08.6305994Z * [new tag] v2.3.0-rc2 -> v2.3.0-rc2 2025-06-01T20:58:08.6306340Z * [new tag] v2.3.0-rc3 -> v2.3.0-rc3 2025-06-01T20:58:08.6306677Z * [new tag] v2.3.0-rc4 -> v2.3.0-rc4 2025-06-01T20:58:08.6307028Z * [new tag] v2.3.0-rc5 -> v2.3.0-rc5 2025-06-01T20:58:08.6307370Z * [new tag] v2.3.0-rc6 -> v2.3.0-rc6 2025-06-01T20:58:08.6307704Z * [new tag] v2.3.0-rc7 -> v2.3.0-rc7 2025-06-01T20:58:08.6308050Z * [new tag] v2.3.0-rc8 -> v2.3.0-rc8 2025-06-01T20:58:08.6308385Z * [new tag] v2.3.0-rc9 -> v2.3.0-rc9 2025-06-01T20:58:08.6308727Z * [new tag] v2.3.1 -> v2.3.1 2025-06-01T20:58:08.6309065Z * [new tag] v2.3.1-rc1 -> v2.3.1-rc1 2025-06-01T20:58:08.6309420Z * [new tag] v2.3.1-rc2 -> v2.3.1-rc2 2025-06-01T20:58:08.6309768Z * [new tag] v2.3.1-rc3 -> v2.3.1-rc3 2025-06-01T20:58:08.6310104Z * [new tag] v2.4.0 -> v2.4.0 2025-06-01T20:58:08.6310453Z * [new tag] v2.4.0-rc1 -> v2.4.0-rc1 2025-06-01T20:58:08.6310791Z * [new tag] v2.4.0-rc2 -> v2.4.0-rc2 2025-06-01T20:58:08.6311152Z * [new tag] v2.4.0-rc3 -> v2.4.0-rc3 2025-06-01T20:58:08.6311502Z * [new tag] v2.4.0-rc4 -> v2.4.0-rc4 2025-06-01T20:58:08.6311846Z * [new tag] v2.4.0-rc5 -> v2.4.0-rc5 2025-06-01T20:58:08.6312192Z * [new tag] v2.4.0-rc6 -> v2.4.0-rc6 2025-06-01T20:58:08.6312530Z * [new tag] v2.4.0-rc7 -> v2.4.0-rc7 2025-06-01T20:58:08.6312879Z * [new tag] v2.4.0-rc8 -> v2.4.0-rc8 2025-06-01T20:58:08.6313212Z * [new tag] v2.4.0-rc9 -> v2.4.0-rc9 2025-06-01T20:58:08.6313552Z * [new tag] v2.4.1 -> v2.4.1 2025-06-01T20:58:08.6313973Z * [new tag] v2.4.1-rc1 -> v2.4.1-rc1 2025-06-01T20:58:08.9540541Z * [new tag] v2.4.1-rc2 -> v2.4.1-rc2 2025-06-01T20:58:08.9540964Z * [new tag] v2.4.1-rc3 -> v2.4.1-rc3 2025-06-01T20:58:08.9541325Z * [new tag] v2.5.0 -> v2.5.0 2025-06-01T20:58:08.9541715Z * [new tag] v2.5.0-rc1 -> v2.5.0-rc1 2025-06-01T20:58:08.9542123Z * [new tag] v2.5.0-rc10 -> v2.5.0-rc10 2025-06-01T20:58:08.9542684Z * [new tag] v2.5.0-rc2 -> v2.5.0-rc2 2025-06-01T20:58:08.9543144Z * [new tag] v2.5.0-rc3 -> v2.5.0-rc3 2025-06-01T20:58:08.9543505Z * [new tag] v2.5.0-rc4 -> v2.5.0-rc4 2025-06-01T20:58:08.9543849Z * [new tag] v2.5.0-rc5 -> v2.5.0-rc5 2025-06-01T20:58:08.9544195Z * [new tag] v2.5.0-rc6 -> v2.5.0-rc6 2025-06-01T20:58:08.9544543Z * [new tag] v2.5.0-rc7 -> v2.5.0-rc7 2025-06-01T20:58:08.9544883Z * [new tag] v2.5.0-rc8 -> v2.5.0-rc8 2025-06-01T20:58:08.9545236Z * [new tag] v2.5.0-rc9 -> v2.5.0-rc9 2025-06-01T20:58:08.9545573Z * [new tag] v2.5.1 -> v2.5.1 2025-06-01T20:58:08.9545921Z * [new tag] v2.5.1-rc1 -> v2.5.1-rc1 2025-06-01T20:58:08.9546256Z * [new tag] v2.6.0 -> v2.6.0 2025-06-01T20:58:08.9546601Z * [new tag] v2.6.0-rc1 -> v2.6.0-rc1 2025-06-01T20:58:08.9546945Z * [new tag] v2.6.0-rc2 -> v2.6.0-rc2 2025-06-01T20:58:08.9547328Z * [new tag] v2.6.0-rc3 -> v2.6.0-rc3 2025-06-01T20:58:08.9547713Z * [new tag] v2.6.0-rc4 -> v2.6.0-rc4 2025-06-01T20:58:08.9548051Z * [new tag] v2.6.0-rc5 -> v2.6.0-rc5 2025-06-01T20:58:08.9548395Z * [new tag] v2.6.0-rc6 -> v2.6.0-rc6 2025-06-01T20:58:08.9548730Z * [new tag] v2.6.0-rc7 -> v2.6.0-rc7 2025-06-01T20:58:08.9549079Z * [new tag] v2.6.0-rc8 -> v2.6.0-rc8 2025-06-01T20:58:08.9549421Z * [new tag] v2.6.0-rc9 -> v2.6.0-rc9 2025-06-01T20:58:08.9549759Z * [new tag] v2.7.0 -> v2.7.0 2025-06-01T20:58:08.9550104Z * [new tag] v2.7.0-rc1 -> v2.7.0-rc1 2025-06-01T20:58:08.9550448Z * [new tag] v2.7.0-rc10 -> v2.7.0-rc10 2025-06-01T20:58:08.9550803Z * [new tag] v2.7.0-rc2 -> v2.7.0-rc2 2025-06-01T20:58:08.9551135Z * [new tag] v2.7.0-rc3 -> v2.7.0-rc3 2025-06-01T20:58:08.9551473Z * [new tag] v2.7.0-rc4 -> v2.7.0-rc4 2025-06-01T20:58:08.9551816Z * [new tag] v2.7.0-rc5 -> v2.7.0-rc5 2025-06-01T20:58:08.9552153Z * [new tag] v2.7.0-rc6 -> v2.7.0-rc6 2025-06-01T20:58:08.9552495Z * [new tag] v2.7.0-rc7 -> v2.7.0-rc7 2025-06-01T20:58:08.9552874Z * [new tag] v2.7.0-rc8 -> v2.7.0-rc8 2025-06-01T20:58:08.9553225Z * [new tag] v2.7.0-rc9 -> v2.7.0-rc9 2025-06-01T20:58:08.9553617Z * [new tag] v2.7.1-rc1 -> v2.7.1-rc1 2025-06-01T20:58:08.9554041Z * [new tag] v2.7.1-rc2 -> v2.7.1-rc2 2025-06-01T20:58:08.9554400Z * [new tag] v2.7.1-rc3 -> v2.7.1-rc3 2025-06-01T20:58:08.9554741Z * [new tag] v2.7.1-rc4 -> v2.7.1-rc4 2025-06-01T20:58:08.9555101Z * [new tag] v2.7.1-rc5 -> v2.7.1-rc5 2025-06-01T20:58:08.9555458Z * [new tag] whc_flight_1 -> whc_flight_1 2025-06-01T20:58:08.9555829Z * [new tag] whc_flight_2 -> whc_flight_2 2025-06-01T20:58:08.9556193Z * [new tag] whc_flight_4 -> whc_flight_4 2025-06-01T20:58:08.9726493Z [command]"C:\Program Files\Git\cmd\git.exe" rev-parse --verify --quiet f7c09f864a6c6467a7454f1431340d3338473fd1^{object} 2025-06-01T20:58:08.9926287Z f7c09f864a6c6467a7454f1431340d3338473fd1 2025-06-01T20:58:08.9959986Z ##[endgroup] 2025-06-01T20:58:08.9960583Z ##[group]Determining the checkout info 2025-06-01T20:58:08.9961622Z ##[endgroup] 2025-06-01T20:58:08.9971088Z [command]"C:\Program Files\Git\cmd\git.exe" sparse-checkout disable 2025-06-01T20:58:09.0258747Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --unset-all extensions.worktreeConfig 2025-06-01T20:58:09.0483029Z ##[group]Checking out the ref 2025-06-01T20:58:09.0492291Z [command]"C:\Program Files\Git\cmd\git.exe" checkout --progress --force f7c09f864a6c6467a7454f1431340d3338473fd1 2025-06-01T20:58:10.1058343Z Updating files: 10% (1920/17658) 2025-06-01T20:58:10.1700066Z Updating files: 11% (1943/17658) 2025-06-01T20:58:10.2381030Z Updating files: 12% (2119/17658) 2025-06-01T20:58:10.3022124Z Updating files: 13% (2296/17658) 2025-06-01T20:58:10.3617990Z Updating files: 14% (2473/17658) 2025-06-01T20:58:10.4340802Z Updating files: 15% (2649/17658) 2025-06-01T20:58:10.4878473Z Updating files: 16% (2826/17658) 2025-06-01T20:58:10.5448544Z Updating files: 17% (3002/17658) 2025-06-01T20:58:10.8649839Z Updating files: 18% (3179/17658) 2025-06-01T20:58:10.9896631Z Updating files: 19% (3356/17658) 2025-06-01T20:58:11.0979895Z Updating files: 20% (3532/17658) 2025-06-01T20:58:11.0980203Z Updating files: 21% (3709/17658) 2025-06-01T20:58:11.1724994Z Updating files: 21% (3715/17658) 2025-06-01T20:58:11.2853877Z Updating files: 22% (3885/17658) 2025-06-01T20:58:11.3531980Z Updating files: 23% (4062/17658) 2025-06-01T20:58:11.5318343Z Updating files: 24% (4238/17658) 2025-06-01T20:58:11.6526541Z Updating files: 25% (4415/17658) 2025-06-01T20:58:11.7293246Z Updating files: 26% (4592/17658) 2025-06-01T20:58:11.8552694Z Updating files: 27% (4768/17658) 2025-06-01T20:58:11.9333984Z Updating files: 28% (4945/17658) 2025-06-01T20:58:12.0589125Z Updating files: 29% (5121/17658) 2025-06-01T20:58:12.0990816Z Updating files: 30% (5298/17658) 2025-06-01T20:58:12.1601318Z Updating files: 30% (5364/17658) 2025-06-01T20:58:12.2352714Z Updating files: 31% (5474/17658) 2025-06-01T20:58:12.3301555Z Updating files: 32% (5651/17658) 2025-06-01T20:58:12.3739537Z Updating files: 33% (5828/17658) 2025-06-01T20:58:12.5037094Z Updating files: 34% (6004/17658) 2025-06-01T20:58:12.5734942Z Updating files: 35% (6181/17658) 2025-06-01T20:58:12.6103651Z Updating files: 36% (6357/17658) 2025-06-01T20:58:12.6456835Z Updating files: 37% (6534/17658) 2025-06-01T20:58:12.7240053Z Updating files: 38% (6711/17658) 2025-06-01T20:58:12.7582900Z Updating files: 39% (6887/17658) 2025-06-01T20:58:12.7913876Z Updating files: 40% (7064/17658) 2025-06-01T20:58:12.8883885Z Updating files: 41% (7240/17658) 2025-06-01T20:58:12.9214561Z Updating files: 42% (7417/17658) 2025-06-01T20:58:12.9737011Z Updating files: 43% (7593/17658) 2025-06-01T20:58:13.0165365Z Updating files: 44% (7770/17658) 2025-06-01T20:58:13.0573215Z Updating files: 45% (7947/17658) 2025-06-01T20:58:13.0978950Z Updating files: 46% (8123/17658) 2025-06-01T20:58:13.1033272Z Updating files: 46% (8277/17658) 2025-06-01T20:58:13.1480876Z Updating files: 47% (8300/17658) 2025-06-01T20:58:13.1923726Z Updating files: 48% (8476/17658) 2025-06-01T20:58:13.2396663Z Updating files: 49% (8653/17658) 2025-06-01T20:58:13.2875906Z Updating files: 50% (8829/17658) 2025-06-01T20:58:13.3329711Z Updating files: 51% (9006/17658) 2025-06-01T20:58:13.3803966Z Updating files: 52% (9183/17658) 2025-06-01T20:58:13.4603974Z Updating files: 53% (9359/17658) 2025-06-01T20:58:13.5018905Z Updating files: 54% (9536/17658) 2025-06-01T20:58:13.5428157Z Updating files: 55% (9712/17658) 2025-06-01T20:58:13.5923148Z Updating files: 56% (9889/17658) 2025-06-01T20:58:13.6392802Z Updating files: 57% (10066/17658) 2025-06-01T20:58:13.6894141Z Updating files: 58% (10242/17658) 2025-06-01T20:58:13.7388410Z Updating files: 59% (10419/17658) 2025-06-01T20:58:13.7896223Z Updating files: 60% (10595/17658) 2025-06-01T20:58:13.8367407Z Updating files: 61% (10772/17658) 2025-06-01T20:58:13.8876810Z Updating files: 62% (10948/17658) 2025-06-01T20:58:14.0061620Z Updating files: 63% (11125/17658) 2025-06-01T20:58:14.0573197Z Updating files: 64% (11302/17658) 2025-06-01T20:58:14.1017005Z Updating files: 65% (11478/17658) 2025-06-01T20:58:14.1043781Z Updating files: 66% (11655/17658) 2025-06-01T20:58:14.1507830Z Updating files: 66% (11665/17658) 2025-06-01T20:58:14.2165709Z Updating files: 67% (11831/17658) 2025-06-01T20:58:14.4772909Z Updating files: 68% (12008/17658) 2025-06-01T20:58:14.5330086Z Updating files: 69% (12185/17658) 2025-06-01T20:58:14.5770092Z Updating files: 70% (12361/17658) 2025-06-01T20:58:14.6426999Z Updating files: 71% (12538/17658) 2025-06-01T20:58:14.7863289Z Updating files: 72% (12714/17658) 2025-06-01T20:58:14.8726275Z Updating files: 73% (12891/17658) 2025-06-01T20:58:14.9933315Z Updating files: 74% (13067/17658) 2025-06-01T20:58:15.0657617Z Updating files: 75% (13244/17658) 2025-06-01T20:58:15.1057318Z Updating files: 76% (13421/17658) 2025-06-01T20:58:15.1420748Z Updating files: 76% (13513/17658) 2025-06-01T20:58:15.5194144Z Updating files: 77% (13597/17658) 2025-06-01T20:58:15.6141048Z Updating files: 78% (13774/17658) 2025-06-01T20:58:15.7141508Z Updating files: 79% (13950/17658) 2025-06-01T20:58:15.8250364Z Updating files: 80% (14127/17658) 2025-06-01T20:58:15.9224707Z Updating files: 81% (14303/17658) 2025-06-01T20:58:16.0051705Z Updating files: 82% (14480/17658) 2025-06-01T20:58:16.0820327Z Updating files: 83% (14657/17658) 2025-06-01T20:58:16.1063689Z Updating files: 84% (14833/17658) 2025-06-01T20:58:16.1597959Z Updating files: 84% (14886/17658) 2025-06-01T20:58:16.2833736Z Updating files: 85% (15010/17658) 2025-06-01T20:58:16.3579682Z Updating files: 86% (15186/17658) 2025-06-01T20:58:16.4282607Z Updating files: 87% (15363/17658) 2025-06-01T20:58:16.5437016Z Updating files: 88% (15540/17658) 2025-06-01T20:58:16.6146361Z Updating files: 89% (15716/17658) 2025-06-01T20:58:16.7949811Z Updating files: 90% (15893/17658) 2025-06-01T20:58:16.8709594Z Updating files: 91% (16069/17658) 2025-06-01T20:58:16.9509930Z Updating files: 92% (16246/17658) 2025-06-01T20:58:17.1074714Z Updating files: 93% (16422/17658) 2025-06-01T20:58:17.1158115Z Updating files: 93% (16576/17658) 2025-06-01T20:58:17.1988600Z Updating files: 94% (16599/17658) 2025-06-01T20:58:17.2870132Z Updating files: 95% (16776/17658) 2025-06-01T20:58:17.4690238Z Updating files: 96% (16952/17658) 2025-06-01T20:58:17.5662635Z Updating files: 97% (17129/17658) 2025-06-01T20:58:17.6537226Z Updating files: 98% (17305/17658) 2025-06-01T20:58:17.7396040Z Updating files: 99% (17482/17658) 2025-06-01T20:58:17.7396355Z Updating files: 100% (17658/17658) 2025-06-01T20:58:17.7396620Z Updating files: 100% (17658/17658), done. 2025-06-01T20:58:17.7814778Z Note: switching to 'f7c09f864a6c6467a7454f1431340d3338473fd1'. 2025-06-01T20:58:17.7815122Z 2025-06-01T20:58:17.7815319Z You are in 'detached HEAD' state. You can look around, make experimental 2025-06-01T20:58:17.7815836Z changes and commit them, and you can discard any commits you make in this 2025-06-01T20:58:17.7816318Z state without impacting any branches by switching back to a branch. 2025-06-01T20:58:17.7816616Z 2025-06-01T20:58:17.7816798Z If you want to create a new branch to retain commits you create, you may 2025-06-01T20:58:17.7817294Z do so (now or later) by using -c with the switch command. Example: 2025-06-01T20:58:17.7817603Z 2025-06-01T20:58:17.7817766Z git switch -c 2025-06-01T20:58:17.7817945Z 2025-06-01T20:58:17.7818095Z Or undo this operation with: 2025-06-01T20:58:17.7818301Z 2025-06-01T20:58:17.7818377Z git switch - 2025-06-01T20:58:17.7818497Z 2025-06-01T20:58:17.7818744Z Turn off this advice by setting config variable advice.detachedHead to false 2025-06-01T20:58:17.7819098Z 2025-06-01T20:58:17.7819312Z HEAD is now at f7c09f864a6 [Docs] Reformat sparse example (#154785) 2025-06-01T20:58:17.8020217Z ##[endgroup] 2025-06-01T20:58:17.8020610Z ##[group]Setting up auth for fetching submodules 2025-06-01T20:58:17.8031692Z [command]"C:\Program Files\Git\cmd\git.exe" config --global http.https://github.com/.extraheader "AUTHORIZATION: basic ***" 2025-06-01T20:58:17.8329445Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --unset-all url.https://github.com/.insteadOf 2025-06-01T20:58:17.8553556Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add url.https://github.com/.insteadOf git@github.com: 2025-06-01T20:58:17.8784715Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add url.https://github.com/.insteadOf org-21003710@github.com: 2025-06-01T20:58:17.9005859Z ##[endgroup] 2025-06-01T20:58:17.9006257Z ##[group]Fetching submodules 2025-06-01T20:58:17.9014587Z [command]"C:\Program Files\Git\cmd\git.exe" submodule sync --recursive 2025-06-01T20:58:18.2276904Z [command]"C:\Program Files\Git\cmd\git.exe" -c protocol.version=2 submodule update --init --force --recursive 2025-06-01T20:58:18.6225894Z Submodule 'android/libs/fbjni' (https://github.com/facebookincubator/fbjni.git) registered for path 'android/libs/fbjni' 2025-06-01T20:58:18.6226855Z Submodule 'third_party/NNPACK_deps/FP16' (https://github.com/Maratyszcza/FP16.git) registered for path 'third_party/FP16' 2025-06-01T20:58:18.6227764Z Submodule 'third_party/NNPACK_deps/FXdiv' (https://github.com/Maratyszcza/FXdiv.git) registered for path 'third_party/FXdiv' 2025-06-01T20:58:18.6228647Z Submodule 'third_party/NNPACK' (https://github.com/Maratyszcza/NNPACK.git) registered for path 'third_party/NNPACK' 2025-06-01T20:58:18.6229461Z Submodule 'third_party/NVTX' (https://github.com/NVIDIA/NVTX.git) registered for path 'third_party/NVTX' 2025-06-01T20:58:18.6230536Z Submodule 'third_party/VulkanMemoryAllocator' (https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator.git) registered for path 'third_party/VulkanMemoryAllocator' 2025-06-01T20:58:18.6231658Z Submodule 'third_party/XNNPACK' (https://github.com/google/XNNPACK.git) registered for path 'third_party/XNNPACK' 2025-06-01T20:58:18.6232523Z Submodule 'third_party/benchmark' (https://github.com/google/benchmark.git) registered for path 'third_party/benchmark' 2025-06-01T20:58:18.6233555Z Submodule 'third_party/composable_kernel' (https://github.com/ROCm/composable_kernel.git) registered for path 'third_party/composable_kernel' 2025-06-01T20:58:18.6234546Z Submodule 'third_party/cpp-httplib' (https://github.com/yhirose/cpp-httplib.git) registered for path 'third_party/cpp-httplib' 2025-06-01T20:58:18.6235424Z Submodule 'third_party/cpuinfo' (https://github.com/pytorch/cpuinfo.git) registered for path 'third_party/cpuinfo' 2025-06-01T20:58:18.6236334Z Submodule 'third_party/cudnn_frontend' (https://github.com/NVIDIA/cudnn-frontend.git) registered for path 'third_party/cudnn_frontend' 2025-06-01T20:58:18.6237235Z Submodule 'third_party/cutlass' (https://github.com/NVIDIA/cutlass.git) registered for path 'third_party/cutlass' 2025-06-01T20:58:18.6238053Z Submodule 'third_party/eigen' (https://gitlab.com/libeigen/eigen.git) registered for path 'third_party/eigen' 2025-06-01T20:58:18.6238825Z Submodule 'third_party/fbgemm' (https://github.com/pytorch/fbgemm) registered for path 'third_party/fbgemm' 2025-06-01T20:58:18.6239740Z Submodule 'third_party/flash-attention' (https://github.com/Dao-AILab/flash-attention.git) registered for path 'third_party/flash-attention' 2025-06-01T20:58:18.6240729Z Submodule 'third_party/flatbuffers' (https://github.com/google/flatbuffers.git) registered for path 'third_party/flatbuffers' 2025-06-01T20:58:18.6241562Z Submodule 'third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/fmt' 2025-06-01T20:58:18.6242418Z Submodule 'third_party/gemmlowp/gemmlowp' (https://github.com/google/gemmlowp.git) registered for path 'third_party/gemmlowp/gemmlowp' 2025-06-01T20:58:18.6243266Z Submodule 'third_party/gloo' (https://github.com/pytorch/gloo) registered for path 'third_party/gloo' 2025-06-01T20:58:18.6244390Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/googletest' 2025-06-01T20:58:18.6245210Z Submodule 'third_party/ideep' (https://github.com/intel/ideep) registered for path 'third_party/ideep' 2025-06-01T20:58:18.6245979Z Submodule 'third_party/ittapi' (https://github.com/intel/ittapi.git) registered for path 'third_party/ittapi' 2025-06-01T20:58:18.6246767Z Submodule 'third_party/kineto' (https://github.com/pytorch/kineto) registered for path 'third_party/kineto' 2025-06-01T20:58:18.6247607Z Submodule 'third_party/kleidiai' (https://github.com/ARM-software/kleidiai.git) registered for path 'third_party/kleidiai' 2025-06-01T20:58:18.6248496Z Submodule 'third_party/mimalloc' (https://github.com/microsoft/mimalloc.git) registered for path 'third_party/mimalloc' 2025-06-01T20:58:18.6249345Z Submodule 'third_party/nlohmann' (https://github.com/nlohmann/json.git) registered for path 'third_party/nlohmann' 2025-06-01T20:58:18.6250121Z Submodule 'third_party/onnx' (https://github.com/onnx/onnx.git) registered for path 'third_party/onnx' 2025-06-01T20:58:18.6251068Z Submodule 'third_party/opentelemetry-cpp' (https://github.com/open-telemetry/opentelemetry-cpp.git) registered for path 'third_party/opentelemetry-cpp' 2025-06-01T20:58:18.6252091Z Submodule 'third_party/pocketfft' (https://github.com/mreineck/pocketfft) registered for path 'third_party/pocketfft' 2025-06-01T20:58:18.6253003Z Submodule 'third_party/protobuf' (https://github.com/protocolbuffers/protobuf.git) registered for path 'third_party/protobuf' 2025-06-01T20:58:18.6253938Z Submodule 'third_party/NNPACK_deps/psimd' (https://github.com/Maratyszcza/psimd.git) registered for path 'third_party/psimd' 2025-06-01T20:58:18.6254934Z Submodule 'third_party/NNPACK_deps/pthreadpool' (https://github.com/Maratyszcza/pthreadpool.git) registered for path 'third_party/pthreadpool' 2025-06-01T20:58:18.6295712Z Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/pybind11' 2025-06-01T20:58:18.6296801Z Submodule 'third_party/python-peachpy' (https://github.com/malfet/PeachPy.git) registered for path 'third_party/python-peachpy' 2025-06-01T20:58:18.6298194Z Submodule 'third_party/sleef' (https://github.com/shibatch/sleef) registered for path 'third_party/sleef' 2025-06-01T20:58:18.6299648Z Submodule 'third_party/tensorpipe' (https://github.com/pytorch/tensorpipe.git) registered for path 'third_party/tensorpipe' 2025-06-01T20:58:18.6962615Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/android/libs/fbjni'... 2025-06-01T20:58:20.0356202Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/NNPACK'... 2025-06-01T20:58:20.0356955Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/FP16'... 2025-06-01T20:58:20.0357519Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/FXdiv'... 2025-06-01T20:58:20.1804936Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/NVTX'... 2025-06-01T20:58:20.7539110Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/benchmark'... 2025-06-01T20:58:21.4034126Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/VulkanMemoryAllocator'... 2025-06-01T20:58:24.4170054Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cpp-httplib'... 2025-06-01T20:58:24.4172699Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flash-attention'... 2025-06-01T20:58:24.4173859Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cpuinfo'... 2025-06-01T20:58:24.4178905Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/gemmlowp/gemmlowp'... 2025-06-01T20:58:24.4179930Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/gloo'... 2025-06-01T20:58:24.9360727Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/XNNPACK'... 2025-06-01T20:58:45.9700918Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/ideep'... 2025-06-01T20:58:45.9701751Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/ittapi'... 2025-06-01T20:58:45.9702451Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kleidiai'... 2025-06-01T20:58:45.9703001Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fmt'... 2025-06-01T20:58:45.9703530Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/googletest'... 2025-06-01T20:58:45.9704094Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/pocketfft'... 2025-06-01T20:58:45.9704635Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/mimalloc'... 2025-06-01T20:58:45.9705197Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flatbuffers'... 2025-06-01T20:58:45.9705745Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/eigen'... 2025-06-01T20:58:45.9706258Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm'... 2025-06-01T20:58:45.9706789Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/psimd'... 2025-06-01T20:58:45.9707347Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cudnn_frontend'... 2025-06-01T20:58:45.9707950Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/python-peachpy'... 2025-06-01T20:58:45.9708535Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/pthreadpool'... 2025-06-01T20:58:45.9709094Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cutlass'... 2025-06-01T20:58:45.9709687Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/composable_kernel'... 2025-06-01T20:58:45.9710348Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe'... 2025-06-01T20:58:45.9710907Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/sleef'... 2025-06-01T20:58:45.9711422Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto'... 2025-06-01T20:58:45.9711957Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/onnx'... 2025-06-01T20:58:45.9712499Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/pybind11'... 2025-06-01T20:58:45.9713035Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/nlohmann'... 2025-06-01T20:58:45.9713595Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/protobuf'... 2025-06-01T20:58:45.9714172Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp'... 2025-06-01T20:58:46.0764021Z Submodule path 'android/libs/fbjni': checked out '7e1e1fe3858c63c251c637ae41a20de425dde96f' 2025-06-01T20:58:46.1760582Z Submodule path 'third_party/FP16': checked out '4dfe081cf6bcd15db339cf2680b9281b8451eeb3' 2025-06-01T20:58:46.2456345Z Submodule path 'third_party/FXdiv': checked out 'b408327ac2a15ec3e43352421954f5b1967701d1' 2025-06-01T20:58:46.4194579Z Submodule path 'third_party/NNPACK': checked out 'c07e3a0400713d546e0dea2d5466dd22ea389c73' 2025-06-01T20:58:47.1215484Z Submodule path 'third_party/NVTX': checked out '2942f167cc30c5e3a44a2aecd5b0d9c07ff61a07' 2025-06-01T20:58:47.3137686Z Submodule path 'third_party/VulkanMemoryAllocator': checked out '1d8f600fd424278486eade7ed3e877c99f0846b1' 2025-06-01T20:58:53.9125991Z Submodule path 'third_party/XNNPACK': checked out '51a0103656eff6fc9bfd39a4597923c4b542c883' 2025-06-01T20:58:54.0623695Z Submodule path 'third_party/benchmark': checked out '299e5928955cc62af9968370293b916f5130916f' 2025-06-01T20:58:58.9319176Z Submodule path 'third_party/composable_kernel': checked out '8086bbe3a78d931eb96fe12fdc014082e18d18d3' 2025-06-01T20:58:59.1013944Z Submodule path 'third_party/cpp-httplib': checked out '3b6597bba913d51161383657829b7e644e59c006' 2025-06-01T20:58:59.5393683Z Submodule path 'third_party/cpuinfo': checked out '5e3d2445e6a84d9599bee2bf78edbb4d80865e1d' 2025-06-01T20:58:59.7654103Z Submodule path 'third_party/cudnn_frontend': checked out '666996fe3960f27170d1527e5579ba24c8d3380a' 2025-06-01T20:59:04.0225473Z Submodule path 'third_party/cutlass': checked out 'ad7b2f5e84fcfa124cb02b91d5bd26d238c0459e' 2025-06-01T20:59:05.3646666Z Submodule path 'third_party/eigen': checked out '3147391d946bb4b6c68edd901f2add6ac1f31f8c' 2025-06-01T20:59:06.4128965Z Submodule path 'third_party/fbgemm': checked out '157e88b750c452bef2ab4653fe9d1eeb151ce4c3' 2025-06-01T20:59:06.4325419Z Submodule 'external/asmjit' (https://github.com/asmjit/asmjit.git) registered for path 'third_party/fbgemm/external/asmjit' 2025-06-01T20:59:06.4326533Z Submodule 'external/composable_kernel' (https://github.com/jwfromm/composable_kernel.git) registered for path 'third_party/fbgemm/external/composable_kernel' 2025-06-01T20:59:06.4327606Z Submodule 'external/cpuinfo' (https://github.com/pytorch/cpuinfo) registered for path 'third_party/fbgemm/external/cpuinfo' 2025-06-01T20:59:06.4329505Z Submodule 'external/cutlass' (https://github.com/jwfromm/cutlass) registered for path 'third_party/fbgemm/external/cutlass' 2025-06-01T20:59:06.4330518Z Submodule 'external/googletest' (https://github.com/google/googletest) registered for path 'third_party/fbgemm/external/googletest' 2025-06-01T20:59:06.4331642Z Submodule 'external/hipify_torch' (https://github.com/ROCmSoftwarePlatform/hipify_torch.git) registered for path 'third_party/fbgemm/external/hipify_torch' 2025-06-01T20:59:06.4332676Z Submodule 'external/json' (https://github.com/nlohmann/json.git) registered for path 'third_party/fbgemm/external/json' 2025-06-01T20:59:06.4805913Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/asmjit'... 2025-06-01T20:59:15.9249132Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/hipify_torch'... 2025-06-01T20:59:15.9250049Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/cpuinfo'... 2025-06-01T20:59:15.9250879Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/composable_kernel'... 2025-06-01T20:59:15.9251635Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/googletest'... 2025-06-01T20:59:15.9252354Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/cutlass'... 2025-06-01T20:59:15.9253017Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/json'... 2025-06-01T20:59:16.2357358Z Submodule path 'third_party/fbgemm/external/asmjit': checked out 'e5d7c0bd5d9aec44d68830187138149e6a8c4e32' 2025-06-01T20:59:18.4180202Z Submodule path 'third_party/fbgemm/external/composable_kernel': checked out '4a61bdd4bd4ed730e078aebc7c0fcf046ff29406' 2025-06-01T20:59:18.9227884Z Submodule path 'third_party/fbgemm/external/cpuinfo': checked out '6543fec09b2f04ac4a666882998b534afc9c1349' 2025-06-01T20:59:23.6223816Z Submodule path 'third_party/fbgemm/external/cutlass': checked out '3ed8d2ec4ba35ef5d9d8353826209b6f868f63d3' 2025-06-01T20:59:24.6861960Z Submodule path 'third_party/fbgemm/external/googletest': checked out 'f8d7d77c06936315286eb55f8de22cd23c188571' 2025-06-01T20:59:24.8082950Z Submodule path 'third_party/fbgemm/external/hipify_torch': checked out 'a4337c69fe0e2552a7b7b0669178926beeed828c' 2025-06-01T20:59:25.7353062Z Submodule path 'third_party/fbgemm/external/json': checked out '9cca280a4d0ccf0c08f47a99aa71d1b0e52f8d03' 2025-06-01T20:59:26.2670917Z Submodule path 'third_party/flash-attention': checked out '979702c87a8713a8e0a5e9fee122b90d2ef13be5' 2025-06-01T20:59:26.2787623Z Submodule 'csrc/composable_kernel' (https://github.com/ROCm/composable_kernel.git) registered for path 'third_party/flash-attention/csrc/composable_kernel' 2025-06-01T20:59:26.2788692Z Submodule 'csrc/cutlass' (https://github.com/NVIDIA/cutlass.git) registered for path 'third_party/flash-attention/csrc/cutlass' 2025-06-01T20:59:31.0283834Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flash-attention/csrc/composable_kernel'... 2025-06-01T20:59:31.0284668Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flash-attention/csrc/cutlass'... 2025-06-01T20:59:33.9068034Z Submodule path 'third_party/flash-attention/csrc/composable_kernel': checked out '888317e698e9803c62bd38568abc9e05d7709f33' 2025-06-01T20:59:37.1971442Z Submodule path 'third_party/flash-attention/csrc/cutlass': checked out 'c506e16788cb08416a4a57e11a9067beeee29420' 2025-06-01T20:59:39.0962500Z Submodule path 'third_party/flatbuffers': checked out 'a2cd1ea3b6d3fee220106b5fed3f7ce8da9eb757' 2025-06-01T20:59:39.2602430Z Submodule path 'third_party/fmt': checked out '40626af88bd7df9a5fb80be7b25ac85b122d6c21' 2025-06-01T20:59:39.4248521Z Submodule path 'third_party/gemmlowp/gemmlowp': checked out '3fb5c176c17c765a3492cd2f0321b0dab712f350' 2025-06-01T20:59:39.8432426Z Submodule path 'third_party/gloo': checked out 'fe67c4bea940a117ff539d23f4110efc19404edb' 2025-06-01T20:59:40.0858919Z Submodule path 'third_party/googletest': checked out '52eb8108c5bdec04579160ae17225d66034bd723' 2025-06-01T20:59:40.1649914Z Submodule path 'third_party/ideep': checked out '719d8e6cd7f7a0e01b155657526d693acf97c2b3' 2025-06-01T20:59:40.1734877Z Submodule 'mkl-dnn' (https://github.com/intel/mkl-dnn.git) registered for path 'third_party/ideep/mkl-dnn' 2025-06-01T20:59:50.7678947Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/ideep/mkl-dnn'... 2025-06-01T20:59:54.6379342Z Submodule path 'third_party/ideep/mkl-dnn': checked out '8d263e693366ef8db40acc569cc7d8edf644556d' 2025-06-01T20:59:54.7756312Z Submodule path 'third_party/ittapi': checked out 'dec1d23ca65ab069d225dfe40dea14f455170959' 2025-06-01T20:59:55.0804559Z Submodule path 'third_party/kineto': checked out '20f652846f651fcae287f667d34bcf164c99f383' 2025-06-01T20:59:55.0939372Z Submodule 'libkineto/third_party/dynolog' (https://github.com/facebookincubator/dynolog.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog' 2025-06-01T20:59:55.0940585Z Submodule 'libkineto/third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/kineto/libkineto/third_party/fmt' 2025-06-01T20:59:55.0941757Z Submodule 'libkineto/third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/kineto/libkineto/third_party/googletest' 2025-06-01T20:59:57.5447170Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog'... 2025-06-01T20:59:57.5447987Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/fmt'... 2025-06-01T20:59:57.5448788Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/googletest'... 2025-06-01T20:59:57.8550744Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog': checked out '7d04a0053a845370ae06ce317a22a48e9edcc74e' 2025-06-01T20:59:57.8771060Z Submodule 'third_party/DCGM' (https://github.com/NVIDIA/DCGM.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-06-01T20:59:57.8772217Z Submodule 'third_party/cpr' (https://github.com/libcpr/cpr.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-06-01T20:59:57.8773357Z Submodule 'third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-06-01T20:59:57.8774492Z Submodule 'third_party/gflags' (https://github.com/gflags/gflags.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-06-01T20:59:57.8775644Z Submodule 'third_party/glog' (https://github.com/google/glog.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-06-01T20:59:57.8776845Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-06-01T20:59:57.8778071Z Submodule 'third_party/json' (https://github.com/nlohmann/json.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-06-01T20:59:57.8779539Z Submodule 'third_party/pfs' (https://github.com/dtrugman/pfs.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-06-01T20:59:57.9344353Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM'... 2025-06-01T21:00:06.4727518Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/pfs'... 2025-06-01T21:00:06.4728477Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/cpr'... 2025-06-01T21:00:06.4729419Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/gflags'... 2025-06-01T21:00:06.4730361Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/glog'... 2025-06-01T21:00:06.4731341Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/fmt'... 2025-06-01T21:00:06.4732455Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/googletest'... 2025-06-01T21:00:06.4733502Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/json'... 2025-06-01T21:00:07.1887851Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM': checked out 'ffde4e54bc7249a6039a5e6b45b395141e1217f9' 2025-06-01T21:00:07.3244805Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr': checked out '871ed52d350214a034f6ef8a3b8f51c5ce1bd400' 2025-06-01T21:00:07.5092996Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt': checked out 'cd4af11efc9c622896a3e4cb599fa28668ca3d05' 2025-06-01T21:00:07.6036097Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags': checked out 'e171aa2d15ed9eb17054558e0b3a6a413bb01067' 2025-06-01T21:00:07.6124521Z Submodule 'doc' (https://github.com/gflags/gflags.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-06-01T21:00:08.1845154Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc'... 2025-06-01T21:00:08.2376482Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc': checked out '8411df715cf522606e3b1aca386ddfc0b63d34b4' 2025-06-01T21:00:08.4166301Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog': checked out 'b33e3bad4c46c8a6345525fd822af355e5ef9446' 2025-06-01T21:00:08.6188311Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest': checked out '58d77fa8070e8cec2dc1ed015d66b454c8d78850' 2025-06-01T21:00:09.3025635Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/json': checked out '4f8fba14066156b73f1189a2b8bd568bde5284c5' 2025-06-01T21:00:09.4680711Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs': checked out 'f68a2fa8ea36c783bdd760371411fcb495aa3150' 2025-06-01T21:00:09.6264914Z Submodule path 'third_party/kineto/libkineto/third_party/fmt': checked out '0041a40c1350ba702d475b9c4ad62da77caea164' 2025-06-01T21:00:09.9169211Z Submodule path 'third_party/kineto/libkineto/third_party/googletest': checked out '7aca84427f224eeed3144123d5230d5871e93347' 2025-06-01T21:00:10.3790483Z Submodule path 'third_party/kleidiai': checked out 'cca02c2f69dd18e1f12647c1c0bdc8cf90e680c7' 2025-06-01T21:00:10.5852603Z Submodule path 'third_party/mimalloc': checked out '94036de6fe20bfd8a73d4a6d142fcf532ea604d9' 2025-06-01T21:00:11.5697903Z Submodule path 'third_party/nlohmann': checked out '87cda1d6646592ac5866dc703c8e1839046a6806' 2025-06-01T21:00:15.7488683Z Submodule path 'third_party/onnx': checked out 'e709452ef2bbc1d113faf678c24e6d3467696e83' 2025-06-01T21:00:15.7602662Z Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/onnx/third_party/pybind11' 2025-06-01T21:00:16.8530114Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/onnx/third_party/pybind11'... 2025-06-01T21:00:17.0836985Z Submodule path 'third_party/onnx/third_party/pybind11': checked out 'a2e59f0e7065404b44dfe92a28aca47ba1378dc4' 2025-06-01T21:00:17.6321911Z Submodule path 'third_party/opentelemetry-cpp': checked out 'a799f4aed9c94b765dcdaabaeab7d5e7e2310878' 2025-06-01T21:00:17.6614274Z Submodule 'third_party/benchmark' (https://github.com/google/benchmark) registered for path 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-06-01T21:00:17.6615450Z Submodule 'third_party/googletest' (https://github.com/google/googletest) registered for path 'third_party/opentelemetry-cpp/third_party/googletest' 2025-06-01T21:00:17.6616506Z Submodule 'third_party/ms-gsl' (https://github.com/microsoft/GSL) registered for path 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-06-01T21:00:17.6617611Z Submodule 'third_party/nlohmann-json' (https://github.com/nlohmann/json) registered for path 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-06-01T21:00:17.6618915Z Submodule 'third_party/opentelemetry-proto' (https://github.com/open-telemetry/opentelemetry-proto) registered for path 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-06-01T21:00:17.6620371Z Submodule 'third_party/opentracing-cpp' (https://github.com/opentracing/opentracing-cpp.git) registered for path 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-06-01T21:00:17.6621668Z Submodule 'third_party/prometheus-cpp' (https://github.com/jupp0r/prometheus-cpp) registered for path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-06-01T21:00:17.6622758Z Submodule 'tools/vcpkg' (https://github.com/Microsoft/vcpkg) registered for path 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-06-01T21:00:17.7072916Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/benchmark'... 2025-06-01T21:00:28.2313832Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/opentracing-cpp'... 2025-06-01T21:00:28.2314857Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/opentelemetry-proto'... 2025-06-01T21:00:28.2315744Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/ms-gsl'... 2025-06-01T21:00:28.2316566Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/prometheus-cpp'... 2025-06-01T21:00:28.2317418Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/googletest'... 2025-06-01T21:00:28.2318255Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/nlohmann-json'... 2025-06-01T21:00:28.2319036Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/tools/vcpkg'... 2025-06-01T21:00:28.3415989Z Submodule path 'third_party/opentelemetry-cpp/third_party/benchmark': checked out 'd572f4777349d43653b21d6c2fc63020ab326db2' 2025-06-01T21:00:28.5149348Z Submodule path 'third_party/opentelemetry-cpp/third_party/googletest': checked out 'b796f7d44681514f58a683a3a71ff17c94edb0c1' 2025-06-01T21:00:28.6060215Z Submodule path 'third_party/opentelemetry-cpp/third_party/ms-gsl': checked out '6f4529395c5b7c2d661812257cd6780c67e54afa' 2025-06-01T21:00:29.0747376Z Submodule path 'third_party/opentelemetry-cpp/third_party/nlohmann-json': checked out 'bc889afb4c5bf1c0d8ee29ef35eaaf4c8bef8a5d' 2025-06-01T21:00:29.1556242Z Submodule path 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto': checked out '4ca4f0335c63cda7ab31ea7ed70d6553aee14dce' 2025-06-01T21:00:29.2575913Z Submodule path 'third_party/opentelemetry-cpp/third_party/opentracing-cpp': checked out '06b57f48ded1fa3bdd3d4346f6ef29e40e08eaf5' 2025-06-01T21:00:29.3870071Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp': checked out 'c9ffcdda9086ffd9e1283ea7a0276d831f3c8a8d' 2025-06-01T21:00:29.3972504Z Submodule 'civetweb' (https://github.com/civetweb/civetweb.git) registered for path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-06-01T21:00:29.3973801Z Submodule 'googletest' (https://github.com/google/googletest.git) registered for path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-06-01T21:00:31.6332580Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb'... 2025-06-01T21:00:31.6333665Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest'... 2025-06-01T21:00:32.5066946Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb': checked out 'eefb26f82b233268fc98577d265352720d477ba4' 2025-06-01T21:00:32.7041560Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest': checked out 'e2239ee6043f73722e7aa812a459f54a28552929' 2025-06-01T21:00:37.9701984Z Submodule path 'third_party/opentelemetry-cpp/tools/vcpkg': checked out '8eb57355a4ffb410a2e94c07b4dca2dffbee8e50' 2025-06-01T21:00:38.0415143Z Submodule path 'third_party/pocketfft': checked out '9d3ab05a7fffbc71a492bc6a17be034e83e8f0fe' 2025-06-01T21:00:39.3915569Z Submodule path 'third_party/protobuf': checked out 'd1eca4e4b421cd2997495c4b4e65cea6be4e9b8a' 2025-06-01T21:00:39.4028676Z Submodule 'third_party/benchmark' (https://github.com/google/benchmark.git) registered for path 'third_party/protobuf/third_party/benchmark' 2025-06-01T21:00:39.4029795Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/protobuf/third_party/googletest' 2025-06-01T21:00:40.9099860Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/protobuf/third_party/benchmark'... 2025-06-01T21:00:40.9100700Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/protobuf/third_party/googletest'... 2025-06-01T21:00:40.9927408Z Submodule path 'third_party/protobuf/third_party/benchmark': checked out '5b7683f49e1e9223cf9927b24f6fd3d6bd82e3f8' 2025-06-01T21:00:41.2526357Z Submodule path 'third_party/protobuf/third_party/googletest': checked out '5ec7f0c4a113e2f18ac2c6cc7df51ad6afc24081' 2025-06-01T21:00:41.3255693Z Submodule path 'third_party/psimd': checked out '072586a71b55b7f8c584153d223e95687148a900' 2025-06-01T21:00:41.4237448Z Submodule path 'third_party/pthreadpool': checked out '4fe0e1e183925bf8cfa6aae24237e724a96479b8' 2025-06-01T21:00:41.6271475Z Submodule path 'third_party/pybind11': checked out 'a2e59f0e7065404b44dfe92a28aca47ba1378dc4' 2025-06-01T21:00:41.7521993Z Submodule path 'third_party/python-peachpy': checked out 'f45429b087dd7d5bc78bb40dc7cf06425c252d67' 2025-06-01T21:00:41.9388683Z Submodule path 'third_party/sleef': checked out '5a1d179df9cf652951b59010a2d2075372d67f68' 2025-06-01T21:00:42.1014341Z Submodule path 'third_party/tensorpipe': checked out '52791a2fd214b2a9dc5759d36725909c1daa7f2e' 2025-06-01T21:00:42.1155959Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/tensorpipe/third_party/googletest' 2025-06-01T21:00:42.1157040Z Submodule 'third_party/libnop' (https://github.com/google/libnop.git) registered for path 'third_party/tensorpipe/third_party/libnop' 2025-06-01T21:00:42.1158007Z Submodule 'third_party/libuv' (https://github.com/libuv/libuv.git) registered for path 'third_party/tensorpipe/third_party/libuv' 2025-06-01T21:00:42.1158998Z Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/tensorpipe/third_party/pybind11' 2025-06-01T21:00:44.8143099Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/googletest'... 2025-06-01T21:00:44.8144204Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/libnop'... 2025-06-01T21:00:44.8145107Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/pybind11'... 2025-06-01T21:00:44.8145850Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/libuv'... 2025-06-01T21:00:45.0410392Z Submodule path 'third_party/tensorpipe/third_party/googletest': checked out 'aee0f9d9b5b87796ee8a0ab26b7587ec30e8858e' 2025-06-01T21:00:45.1422032Z Submodule path 'third_party/tensorpipe/third_party/libnop': checked out '910b55815be16109f04f4180e9adee14fb4ce281' 2025-06-01T21:00:45.4381048Z Submodule path 'third_party/tensorpipe/third_party/libuv': checked out '1dff88e5161cba5c59276d2070d2e304e4dcb242' 2025-06-01T21:00:45.5808713Z Submodule path 'third_party/tensorpipe/third_party/pybind11': checked out 'a23996fce38ff6ccfbcdc09f1e63f2c4be5ea2ef' 2025-06-01T21:00:45.5897476Z Submodule 'tools/clang' (https://github.com/wjakob/clang-cindex-python3) registered for path 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-06-01T21:00:46.0327377Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/pybind11/tools/clang'... 2025-06-01T21:00:46.0878795Z Submodule path 'third_party/tensorpipe/third_party/pybind11/tools/clang': checked out '6a00cbc4a9b8e68b71caf7f774b3f9c753ae84d5' 2025-06-01T21:00:46.1090032Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "git config --local gc.auto 0" 2025-06-01T21:00:46.4285426Z Entering 'android/libs/fbjni' 2025-06-01T21:00:46.4623513Z Entering 'third_party/FP16' 2025-06-01T21:00:46.4955740Z Entering 'third_party/FXdiv' 2025-06-01T21:00:46.5284532Z Entering 'third_party/NNPACK' 2025-06-01T21:00:46.5616853Z Entering 'third_party/NVTX' 2025-06-01T21:00:46.5958356Z Entering 'third_party/VulkanMemoryAllocator' 2025-06-01T21:00:46.6281888Z Entering 'third_party/XNNPACK' 2025-06-01T21:00:46.6624820Z Entering 'third_party/benchmark' 2025-06-01T21:00:46.7000351Z Entering 'third_party/composable_kernel' 2025-06-01T21:00:46.7335311Z Entering 'third_party/cpp-httplib' 2025-06-01T21:00:46.7702798Z Entering 'third_party/cpuinfo' 2025-06-01T21:00:46.8026668Z Entering 'third_party/cudnn_frontend' 2025-06-01T21:00:46.8358442Z Entering 'third_party/cutlass' 2025-06-01T21:00:46.8720764Z Entering 'third_party/eigen' 2025-06-01T21:00:46.9048435Z Entering 'third_party/fbgemm' 2025-06-01T21:00:46.9365838Z Entering 'third_party/fbgemm/external/asmjit' 2025-06-01T21:00:46.9701295Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-06-01T21:00:47.0038411Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-06-01T21:00:47.0418498Z Entering 'third_party/fbgemm/external/cutlass' 2025-06-01T21:00:47.0758002Z Entering 'third_party/fbgemm/external/googletest' 2025-06-01T21:00:47.1096365Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-06-01T21:00:47.1446757Z Entering 'third_party/fbgemm/external/json' 2025-06-01T21:00:47.1792806Z Entering 'third_party/flash-attention' 2025-06-01T21:00:47.2124105Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-06-01T21:00:47.2510700Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-06-01T21:00:47.2858576Z Entering 'third_party/flatbuffers' 2025-06-01T21:00:47.3189169Z Entering 'third_party/fmt' 2025-06-01T21:00:47.3516621Z Entering 'third_party/gemmlowp/gemmlowp' 2025-06-01T21:00:47.3849371Z Entering 'third_party/gloo' 2025-06-01T21:00:47.4229744Z Entering 'third_party/googletest' 2025-06-01T21:00:47.4572961Z Entering 'third_party/ideep' 2025-06-01T21:00:47.4908588Z Entering 'third_party/ideep/mkl-dnn' 2025-06-01T21:00:47.5273140Z Entering 'third_party/ittapi' 2025-06-01T21:00:47.5602688Z Entering 'third_party/kineto' 2025-06-01T21:00:47.5946448Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-06-01T21:00:47.6272993Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-06-01T21:00:47.6611204Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-06-01T21:00:47.6960027Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-06-01T21:00:47.7296598Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-06-01T21:00:47.7620401Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-06-01T21:00:47.7995623Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-06-01T21:00:47.8328018Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-06-01T21:00:47.8657858Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-06-01T21:00:47.8989318Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-06-01T21:00:47.9333983Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-06-01T21:00:47.9714749Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-06-01T21:00:48.0113028Z Entering 'third_party/kleidiai' 2025-06-01T21:00:48.0440382Z Entering 'third_party/mimalloc' 2025-06-01T21:00:48.0783242Z Entering 'third_party/nlohmann' 2025-06-01T21:00:48.1111278Z Entering 'third_party/onnx' 2025-06-01T21:00:48.1478011Z Entering 'third_party/onnx/third_party/pybind11' 2025-06-01T21:00:48.1829544Z Entering 'third_party/opentelemetry-cpp' 2025-06-01T21:00:48.2171800Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-06-01T21:00:48.2521313Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-06-01T21:00:48.2852626Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-06-01T21:00:48.3178243Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-06-01T21:00:48.3513574Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-06-01T21:00:48.3838841Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-06-01T21:00:48.4167480Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-06-01T21:00:48.4484233Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-06-01T21:00:48.4828105Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-06-01T21:00:48.5174066Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-06-01T21:00:48.5554848Z Entering 'third_party/pocketfft' 2025-06-01T21:00:48.5886877Z Entering 'third_party/protobuf' 2025-06-01T21:00:48.6207294Z Entering 'third_party/protobuf/third_party/benchmark' 2025-06-01T21:00:48.6540740Z Entering 'third_party/protobuf/third_party/googletest' 2025-06-01T21:00:48.6893450Z Entering 'third_party/psimd' 2025-06-01T21:00:48.7221943Z Entering 'third_party/pthreadpool' 2025-06-01T21:00:48.7547963Z Entering 'third_party/pybind11' 2025-06-01T21:00:48.7889698Z Entering 'third_party/python-peachpy' 2025-06-01T21:00:48.8218555Z Entering 'third_party/sleef' 2025-06-01T21:00:48.8540802Z Entering 'third_party/tensorpipe' 2025-06-01T21:00:48.8851982Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-06-01T21:00:48.9182980Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-06-01T21:00:48.9525280Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-06-01T21:00:48.9851126Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-06-01T21:00:49.0178049Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-06-01T21:00:49.0665257Z ##[endgroup] 2025-06-01T21:00:49.0665670Z ##[group]Persisting credentials for submodules 2025-06-01T21:00:49.0678153Z [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-06-01T21:00:49.3786209Z Entering 'android/libs/fbjni' 2025-06-01T21:00:49.4334609Z Entering 'third_party/FP16' 2025-06-01T21:00:49.4867105Z Entering 'third_party/FXdiv' 2025-06-01T21:00:49.5382137Z Entering 'third_party/NNPACK' 2025-06-01T21:00:49.5889267Z Entering 'third_party/NVTX' 2025-06-01T21:00:49.6427700Z Entering 'third_party/VulkanMemoryAllocator' 2025-06-01T21:00:49.6942383Z Entering 'third_party/XNNPACK' 2025-06-01T21:00:49.7468314Z Entering 'third_party/benchmark' 2025-06-01T21:00:49.7988573Z Entering 'third_party/composable_kernel' 2025-06-01T21:00:49.8504255Z Entering 'third_party/cpp-httplib' 2025-06-01T21:00:49.9008023Z Entering 'third_party/cpuinfo' 2025-06-01T21:00:49.9519671Z Entering 'third_party/cudnn_frontend' 2025-06-01T21:00:50.0034999Z Entering 'third_party/cutlass' 2025-06-01T21:00:50.0570001Z Entering 'third_party/eigen' 2025-06-01T21:00:50.1131843Z Entering 'third_party/fbgemm' 2025-06-01T21:00:50.1647404Z Entering 'third_party/fbgemm/external/asmjit' 2025-06-01T21:00:50.2172001Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-06-01T21:00:50.2709707Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-06-01T21:00:50.3251255Z Entering 'third_party/fbgemm/external/cutlass' 2025-06-01T21:00:50.3787836Z Entering 'third_party/fbgemm/external/googletest' 2025-06-01T21:00:50.4304063Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-06-01T21:00:50.4826043Z Entering 'third_party/fbgemm/external/json' 2025-06-01T21:00:50.5362944Z Entering 'third_party/flash-attention' 2025-06-01T21:00:50.5879192Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-06-01T21:00:50.6435521Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-06-01T21:00:50.6993926Z Entering 'third_party/flatbuffers' 2025-06-01T21:00:50.7487322Z Entering 'third_party/fmt' 2025-06-01T21:00:50.8011638Z Entering 'third_party/gemmlowp/gemmlowp' 2025-06-01T21:00:50.8533663Z Entering 'third_party/gloo' 2025-06-01T21:00:50.9041293Z Entering 'third_party/googletest' 2025-06-01T21:00:50.9570299Z Entering 'third_party/ideep' 2025-06-01T21:00:51.0070717Z Entering 'third_party/ideep/mkl-dnn' 2025-06-01T21:00:51.0619101Z Entering 'third_party/ittapi' 2025-06-01T21:00:51.1117712Z Entering 'third_party/kineto' 2025-06-01T21:00:51.1600882Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-06-01T21:00:51.2098001Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-06-01T21:00:51.2608285Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-06-01T21:00:51.3113560Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-06-01T21:00:51.3618066Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-06-01T21:00:51.4108259Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-06-01T21:00:51.4639454Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-06-01T21:00:51.5142957Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-06-01T21:00:51.5645942Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-06-01T21:00:51.6157254Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-06-01T21:00:51.6692502Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-06-01T21:00:51.7213859Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-06-01T21:00:51.7758148Z Entering 'third_party/kleidiai' 2025-06-01T21:00:51.8255365Z Entering 'third_party/mimalloc' 2025-06-01T21:00:51.8768685Z Entering 'third_party/nlohmann' 2025-06-01T21:00:51.9261970Z Entering 'third_party/onnx' 2025-06-01T21:00:51.9768531Z Entering 'third_party/onnx/third_party/pybind11' 2025-06-01T21:00:52.0291174Z Entering 'third_party/opentelemetry-cpp' 2025-06-01T21:00:52.0772975Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-06-01T21:00:52.1268731Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-06-01T21:00:52.1799164Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-06-01T21:00:52.2292472Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-06-01T21:00:52.2803721Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-06-01T21:00:52.3328249Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-06-01T21:00:52.3849133Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-06-01T21:00:52.4396724Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-06-01T21:00:52.4961387Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-06-01T21:00:52.5507441Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-06-01T21:00:52.6062889Z Entering 'third_party/pocketfft' 2025-06-01T21:00:52.6570096Z Entering 'third_party/protobuf' 2025-06-01T21:00:52.7095311Z Entering 'third_party/protobuf/third_party/benchmark' 2025-06-01T21:00:52.7619038Z Entering 'third_party/protobuf/third_party/googletest' 2025-06-01T21:00:52.8149953Z Entering 'third_party/psimd' 2025-06-01T21:00:52.8667193Z Entering 'third_party/pthreadpool' 2025-06-01T21:00:52.9188024Z Entering 'third_party/pybind11' 2025-06-01T21:00:52.9707116Z Entering 'third_party/python-peachpy' 2025-06-01T21:00:53.0237298Z Entering 'third_party/sleef' 2025-06-01T21:00:53.0758838Z Entering 'third_party/tensorpipe' 2025-06-01T21:00:53.1261232Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-06-01T21:00:53.1815070Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-06-01T21:00:53.2345582Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-06-01T21:00:53.2902872Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-06-01T21:00:53.3406932Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-06-01T21:00:53.4053326Z [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-06-01T21:00:53.7413138Z Entering 'android/libs/fbjni' 2025-06-01T21:00:53.7910981Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/android/libs/fbjni/config remote.origin.url 2025-06-01T21:00:53.8027972Z Entering 'third_party/FP16' 2025-06-01T21:00:53.8566474Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/FP16/config remote.origin.url 2025-06-01T21:00:53.8686098Z Entering 'third_party/FXdiv' 2025-06-01T21:00:53.9195261Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/FXdiv/config remote.origin.url 2025-06-01T21:00:53.9316838Z Entering 'third_party/NNPACK' 2025-06-01T21:00:53.9842717Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK/config remote.origin.url 2025-06-01T21:00:53.9961370Z Entering 'third_party/NVTX' 2025-06-01T21:00:54.0466762Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NVTX/config remote.origin.url 2025-06-01T21:00:54.0586116Z Entering 'third_party/VulkanMemoryAllocator' 2025-06-01T21:00:54.1086459Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/VulkanMemoryAllocator/config remote.origin.url 2025-06-01T21:00:54.1208603Z Entering 'third_party/XNNPACK' 2025-06-01T21:00:54.1746105Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/XNNPACK/config remote.origin.url 2025-06-01T21:00:54.1885681Z Entering 'third_party/benchmark' 2025-06-01T21:00:54.2388972Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/benchmark/config remote.origin.url 2025-06-01T21:00:54.2508698Z Entering 'third_party/composable_kernel' 2025-06-01T21:00:54.3002455Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/composable_kernel/config remote.origin.url 2025-06-01T21:00:54.3132804Z Entering 'third_party/cpp-httplib' 2025-06-01T21:00:54.3628153Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cpp-httplib/config remote.origin.url 2025-06-01T21:00:54.3749982Z Entering 'third_party/cpuinfo' 2025-06-01T21:00:54.4253436Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cpuinfo/config remote.origin.url 2025-06-01T21:00:54.4371946Z Entering 'third_party/cudnn_frontend' 2025-06-01T21:00:54.4858637Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cudnn_frontend/config remote.origin.url 2025-06-01T21:00:54.4975116Z Entering 'third_party/cutlass' 2025-06-01T21:00:54.5462417Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cutlass/config remote.origin.url 2025-06-01T21:00:54.5591710Z Entering 'third_party/eigen' 2025-06-01T21:00:54.6097488Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/eigen/config remote.origin.url 2025-06-01T21:00:54.6221755Z Entering 'third_party/fbgemm' 2025-06-01T21:00:54.6714495Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/config remote.origin.url 2025-06-01T21:00:54.6823218Z Entering 'third_party/fbgemm/external/asmjit' 2025-06-01T21:00:54.7316499Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/asmjit/config remote.origin.url 2025-06-01T21:00:54.7435046Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-06-01T21:00:54.7924631Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/composable_kernel/config remote.origin.url 2025-06-01T21:00:54.8051643Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-06-01T21:00:54.8568424Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/cpuinfo/config remote.origin.url 2025-06-01T21:00:54.8689637Z Entering 'third_party/fbgemm/external/cutlass' 2025-06-01T21:00:54.9182584Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/cutlass/config remote.origin.url 2025-06-01T21:00:54.9326878Z Entering 'third_party/fbgemm/external/googletest' 2025-06-01T21:00:54.9816721Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/googletest/config remote.origin.url 2025-06-01T21:00:54.9958845Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-06-01T21:00:55.0455613Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/hipify_torch/config remote.origin.url 2025-06-01T21:00:55.0573874Z Entering 'third_party/fbgemm/external/json' 2025-06-01T21:00:55.1096556Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/json/config remote.origin.url 2025-06-01T21:00:55.1231959Z Entering 'third_party/flash-attention' 2025-06-01T21:00:55.1753824Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/config remote.origin.url 2025-06-01T21:00:55.1862403Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-06-01T21:00:55.2368482Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/modules/csrc/composable_kernel/config remote.origin.url 2025-06-01T21:00:55.2501227Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-06-01T21:00:55.2996822Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/modules/csrc/cutlass/config remote.origin.url 2025-06-01T21:00:55.3141092Z Entering 'third_party/flatbuffers' 2025-06-01T21:00:55.3686129Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flatbuffers/config remote.origin.url 2025-06-01T21:00:55.3812115Z Entering 'third_party/fmt' 2025-06-01T21:00:55.4308822Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fmt/config remote.origin.url 2025-06-01T21:00:55.4438409Z Entering 'third_party/gemmlowp/gemmlowp' 2025-06-01T21:00:55.4936403Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/gemmlowp/gemmlowp/config remote.origin.url 2025-06-01T21:00:55.5057695Z Entering 'third_party/gloo' 2025-06-01T21:00:55.5577717Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/gloo/config remote.origin.url 2025-06-01T21:00:55.5700380Z Entering 'third_party/googletest' 2025-06-01T21:00:55.6240426Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/googletest/config remote.origin.url 2025-06-01T21:00:55.6388629Z Entering 'third_party/ideep' 2025-06-01T21:00:55.6910080Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/ideep/config remote.origin.url 2025-06-01T21:00:55.7013816Z Entering 'third_party/ideep/mkl-dnn' 2025-06-01T21:00:55.7508945Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/ideep/modules/mkl-dnn/config remote.origin.url 2025-06-01T21:00:55.7659734Z Entering 'third_party/ittapi' 2025-06-01T21:00:55.8149996Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/ittapi/config remote.origin.url 2025-06-01T21:00:55.8290063Z Entering 'third_party/kineto' 2025-06-01T21:00:55.8798427Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/config remote.origin.url 2025-06-01T21:00:55.8909665Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-06-01T21:00:55.9421403Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/config remote.origin.url 2025-06-01T21:00:55.9527756Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-06-01T21:00:56.0034158Z 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-06-01T21:00:56.0226145Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-06-01T21:00:56.0732443Z 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-06-01T21:00:56.0853617Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-06-01T21:00:56.1371395Z 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-06-01T21:00:56.1491328Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-06-01T21:00:56.1991028Z 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-06-01T21:00:56.2096201Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-06-01T21:00:56.2619811Z 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-06-01T21:00:56.2762345Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-06-01T21:00:56.3274467Z 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-06-01T21:00:56.3411301Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-06-01T21:00:56.3950200Z 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-06-01T21:00:56.4069061Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-06-01T21:00:56.4581791Z 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-06-01T21:00:56.4701936Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-06-01T21:00:56.5203600Z 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-06-01T21:00:56.5360284Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-06-01T21:00:56.5856073Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/fmt/config remote.origin.url 2025-06-01T21:00:56.5979012Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-06-01T21:00:56.6480978Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/googletest/config remote.origin.url 2025-06-01T21:00:56.6618083Z Entering 'third_party/kleidiai' 2025-06-01T21:00:56.7162153Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kleidiai/config remote.origin.url 2025-06-01T21:00:56.7280298Z Entering 'third_party/mimalloc' 2025-06-01T21:00:56.7780598Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/mimalloc/config remote.origin.url 2025-06-01T21:00:56.7908709Z Entering 'third_party/nlohmann' 2025-06-01T21:00:56.8410597Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/nlohmann/config remote.origin.url 2025-06-01T21:00:56.8530980Z Entering 'third_party/onnx' 2025-06-01T21:00:56.9058288Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/onnx/config remote.origin.url 2025-06-01T21:00:56.9186407Z Entering 'third_party/onnx/third_party/pybind11' 2025-06-01T21:00:56.9711275Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/onnx/modules/third_party/pybind11/config remote.origin.url 2025-06-01T21:00:56.9848980Z Entering 'third_party/opentelemetry-cpp' 2025-06-01T21:00:57.0344191Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/config remote.origin.url 2025-06-01T21:00:57.0500938Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-06-01T21:00:57.1005151Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/benchmark/config remote.origin.url 2025-06-01T21:00:57.1124001Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-06-01T21:00:57.1648373Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/googletest/config remote.origin.url 2025-06-01T21:00:57.1768576Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-06-01T21:00:57.2266881Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/ms-gsl/config remote.origin.url 2025-06-01T21:00:57.2382346Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-06-01T21:00:57.2881442Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/nlohmann-json/config remote.origin.url 2025-06-01T21:00:57.3023526Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-06-01T21:00:57.3521644Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/opentelemetry-proto/config remote.origin.url 2025-06-01T21:00:57.3642933Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-06-01T21:00:57.4159648Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/opentracing-cpp/config remote.origin.url 2025-06-01T21:00:57.4280019Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-06-01T21:00:57.4786349Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/prometheus-cpp/config remote.origin.url 2025-06-01T21:00:57.4895057Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-06-01T21:00:57.5396875Z 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-06-01T21:00:57.5552423Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-06-01T21:00:57.6045505Z 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-06-01T21:00:57.6180814Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-06-01T21:00:57.6711637Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/tools/vcpkg/config remote.origin.url 2025-06-01T21:00:57.6875256Z Entering 'third_party/pocketfft' 2025-06-01T21:00:57.7370861Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/pocketfft/config remote.origin.url 2025-06-01T21:00:57.7494382Z Entering 'third_party/protobuf' 2025-06-01T21:00:57.9881952Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/config remote.origin.url 2025-06-01T21:00:58.0008967Z Entering 'third_party/protobuf/third_party/benchmark' 2025-06-01T21:00:58.0513270Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/modules/third_party/benchmark/config remote.origin.url 2025-06-01T21:00:58.0700715Z Entering 'third_party/protobuf/third_party/googletest' 2025-06-01T21:00:58.1231366Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/modules/third_party/googletest/config remote.origin.url 2025-06-01T21:00:58.1366924Z Entering 'third_party/psimd' 2025-06-01T21:00:58.1861168Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/psimd/config remote.origin.url 2025-06-01T21:00:58.1982966Z Entering 'third_party/pthreadpool' 2025-06-01T21:00:58.2480415Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/pthreadpool/config remote.origin.url 2025-06-01T21:00:58.2604946Z Entering 'third_party/pybind11' 2025-06-01T21:00:58.3091482Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/pybind11/config remote.origin.url 2025-06-01T21:00:58.3211220Z Entering 'third_party/python-peachpy' 2025-06-01T21:00:58.3721509Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/python-peachpy/config remote.origin.url 2025-06-01T21:00:58.3844433Z Entering 'third_party/sleef' 2025-06-01T21:00:58.4340152Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/sleef/config remote.origin.url 2025-06-01T21:00:58.4461300Z Entering 'third_party/tensorpipe' 2025-06-01T21:00:58.4951355Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/config remote.origin.url 2025-06-01T21:00:58.5060547Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-06-01T21:00:58.5558293Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/googletest/config remote.origin.url 2025-06-01T21:00:58.5677109Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-06-01T21:00:58.6216611Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/libnop/config remote.origin.url 2025-06-01T21:00:58.6332691Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-06-01T21:00:58.6844258Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/libuv/config remote.origin.url 2025-06-01T21:00:58.6963870Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-06-01T21:00:58.7467452Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/pybind11/config remote.origin.url 2025-06-01T21:00:58.7573986Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-06-01T21:00:58.8078123Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/pybind11/modules/tools/clang/config remote.origin.url 2025-06-01T21:00:58.8664003Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "git config --local --add 'url.https://github.com/.insteadOf' 'git@github.com:'" 2025-06-01T21:00:59.1953734Z Entering 'android/libs/fbjni' 2025-06-01T21:00:59.2297873Z Entering 'third_party/FP16' 2025-06-01T21:00:59.2643086Z Entering 'third_party/FXdiv' 2025-06-01T21:00:59.2972735Z Entering 'third_party/NNPACK' 2025-06-01T21:00:59.3323557Z Entering 'third_party/NVTX' 2025-06-01T21:00:59.3681655Z Entering 'third_party/VulkanMemoryAllocator' 2025-06-01T21:00:59.4019477Z Entering 'third_party/XNNPACK' 2025-06-01T21:00:59.4365445Z Entering 'third_party/benchmark' 2025-06-01T21:00:59.4696482Z Entering 'third_party/composable_kernel' 2025-06-01T21:00:59.5033653Z Entering 'third_party/cpp-httplib' 2025-06-01T21:00:59.5365130Z Entering 'third_party/cpuinfo' 2025-06-01T21:00:59.5698756Z Entering 'third_party/cudnn_frontend' 2025-06-01T21:00:59.6023684Z Entering 'third_party/cutlass' 2025-06-01T21:00:59.6373417Z Entering 'third_party/eigen' 2025-06-01T21:00:59.6704006Z Entering 'third_party/fbgemm' 2025-06-01T21:00:59.7021721Z Entering 'third_party/fbgemm/external/asmjit' 2025-06-01T21:00:59.7373463Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-06-01T21:00:59.7713167Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-06-01T21:00:59.8040730Z Entering 'third_party/fbgemm/external/cutlass' 2025-06-01T21:00:59.8398776Z Entering 'third_party/fbgemm/external/googletest' 2025-06-01T21:00:59.8751791Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-06-01T21:00:59.9092597Z Entering 'third_party/fbgemm/external/json' 2025-06-01T21:00:59.9436129Z Entering 'third_party/flash-attention' 2025-06-01T21:00:59.9756138Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-06-01T21:01:00.0152912Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-06-01T21:01:00.0517327Z Entering 'third_party/flatbuffers' 2025-06-01T21:01:00.0853571Z Entering 'third_party/fmt' 2025-06-01T21:01:00.1210618Z Entering 'third_party/gemmlowp/gemmlowp' 2025-06-01T21:01:00.1533086Z Entering 'third_party/gloo' 2025-06-01T21:01:00.1876372Z Entering 'third_party/googletest' 2025-06-01T21:01:00.2205423Z Entering 'third_party/ideep' 2025-06-01T21:01:00.2529527Z Entering 'third_party/ideep/mkl-dnn' 2025-06-01T21:01:00.2896817Z Entering 'third_party/ittapi' 2025-06-01T21:01:00.3227570Z Entering 'third_party/kineto' 2025-06-01T21:01:00.3544640Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-06-01T21:01:00.3877532Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-06-01T21:01:00.4217710Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-06-01T21:01:00.4545250Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-06-01T21:01:00.4886175Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-06-01T21:01:00.5208977Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-06-01T21:01:00.5569629Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-06-01T21:01:00.5911547Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-06-01T21:01:00.6258441Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-06-01T21:01:00.6613437Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-06-01T21:01:00.6954187Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-06-01T21:01:00.7328350Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-06-01T21:01:00.7689553Z Entering 'third_party/kleidiai' 2025-06-01T21:01:00.8018295Z Entering 'third_party/mimalloc' 2025-06-01T21:01:00.8382557Z Entering 'third_party/nlohmann' 2025-06-01T21:01:00.8714362Z Entering 'third_party/onnx' 2025-06-01T21:01:00.9055985Z Entering 'third_party/onnx/third_party/pybind11' 2025-06-01T21:01:00.9422678Z Entering 'third_party/opentelemetry-cpp' 2025-06-01T21:01:00.9748317Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-06-01T21:01:01.0086818Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-06-01T21:01:01.0418178Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-06-01T21:01:01.0777443Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-06-01T21:01:01.1112601Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-06-01T21:01:01.1440587Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-06-01T21:01:01.1775522Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-06-01T21:01:01.2490351Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-06-01T21:01:01.2839376Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-06-01T21:01:01.3201865Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-06-01T21:01:01.3574413Z Entering 'third_party/pocketfft' 2025-06-01T21:01:01.3909841Z Entering 'third_party/protobuf' 2025-06-01T21:01:01.4251648Z Entering 'third_party/protobuf/third_party/benchmark' 2025-06-01T21:01:01.4576927Z Entering 'third_party/protobuf/third_party/googletest' 2025-06-01T21:01:01.4931210Z Entering 'third_party/psimd' 2025-06-01T21:01:01.5260136Z Entering 'third_party/pthreadpool' 2025-06-01T21:01:01.5582628Z Entering 'third_party/pybind11' 2025-06-01T21:01:01.5911312Z Entering 'third_party/python-peachpy' 2025-06-01T21:01:01.6240223Z Entering 'third_party/sleef' 2025-06-01T21:01:01.6567078Z Entering 'third_party/tensorpipe' 2025-06-01T21:01:01.6886970Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-06-01T21:01:01.7222037Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-06-01T21:01:01.7554115Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-06-01T21:01:01.7923110Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-06-01T21:01:01.8239004Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-06-01T21:01:01.8688971Z [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-06-01T21:01:02.1834179Z Entering 'android/libs/fbjni' 2025-06-01T21:01:02.2173625Z Entering 'third_party/FP16' 2025-06-01T21:01:02.2549848Z Entering 'third_party/FXdiv' 2025-06-01T21:01:02.2905103Z Entering 'third_party/NNPACK' 2025-06-01T21:01:02.3234732Z Entering 'third_party/NVTX' 2025-06-01T21:01:02.3597811Z Entering 'third_party/VulkanMemoryAllocator' 2025-06-01T21:01:02.3933312Z Entering 'third_party/XNNPACK' 2025-06-01T21:01:02.4289948Z Entering 'third_party/benchmark' 2025-06-01T21:01:02.4629685Z Entering 'third_party/composable_kernel' 2025-06-01T21:01:02.4964209Z Entering 'third_party/cpp-httplib' 2025-06-01T21:01:02.5312183Z Entering 'third_party/cpuinfo' 2025-06-01T21:01:02.5633922Z Entering 'third_party/cudnn_frontend' 2025-06-01T21:01:02.5988148Z Entering 'third_party/cutlass' 2025-06-01T21:01:02.6331650Z Entering 'third_party/eigen' 2025-06-01T21:01:02.6655347Z Entering 'third_party/fbgemm' 2025-06-01T21:01:02.6977464Z Entering 'third_party/fbgemm/external/asmjit' 2025-06-01T21:01:02.7309988Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-06-01T21:01:02.7657862Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-06-01T21:01:02.7994237Z Entering 'third_party/fbgemm/external/cutlass' 2025-06-01T21:01:02.8339245Z Entering 'third_party/fbgemm/external/googletest' 2025-06-01T21:01:02.8675083Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-06-01T21:01:02.9063487Z Entering 'third_party/fbgemm/external/json' 2025-06-01T21:01:02.9419477Z Entering 'third_party/flash-attention' 2025-06-01T21:01:02.9740866Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-06-01T21:01:03.0117207Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-06-01T21:01:03.0481598Z Entering 'third_party/flatbuffers' 2025-06-01T21:01:03.0847536Z Entering 'third_party/fmt' 2025-06-01T21:01:03.1174215Z Entering 'third_party/gemmlowp/gemmlowp' 2025-06-01T21:01:03.1503067Z Entering 'third_party/gloo' 2025-06-01T21:01:03.1828728Z Entering 'third_party/googletest' 2025-06-01T21:01:03.2163213Z Entering 'third_party/ideep' 2025-06-01T21:01:03.2482133Z Entering 'third_party/ideep/mkl-dnn' 2025-06-01T21:01:03.2842614Z Entering 'third_party/ittapi' 2025-06-01T21:01:03.3167098Z Entering 'third_party/kineto' 2025-06-01T21:01:03.3504786Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-06-01T21:01:03.3827591Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-06-01T21:01:03.4463876Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-06-01T21:01:03.4813555Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-06-01T21:01:03.5156153Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-06-01T21:01:03.5469504Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-06-01T21:01:03.5826181Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-06-01T21:01:03.6166741Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-06-01T21:01:03.6549785Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-06-01T21:01:03.6889862Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-06-01T21:01:03.7254591Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-06-01T21:01:03.7621964Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-06-01T21:01:03.7981274Z Entering 'third_party/kleidiai' 2025-06-01T21:01:03.8308772Z Entering 'third_party/mimalloc' 2025-06-01T21:01:03.8647781Z Entering 'third_party/nlohmann' 2025-06-01T21:01:03.8979896Z Entering 'third_party/onnx' 2025-06-01T21:01:03.9336217Z Entering 'third_party/onnx/third_party/pybind11' 2025-06-01T21:01:03.9684575Z Entering 'third_party/opentelemetry-cpp' 2025-06-01T21:01:04.0007260Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-06-01T21:01:04.0353720Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-06-01T21:01:04.0700063Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-06-01T21:01:04.1082069Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-06-01T21:01:04.1446077Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-06-01T21:01:04.1832584Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-06-01T21:01:04.2180346Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-06-01T21:01:04.2492106Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-06-01T21:01:04.2835478Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-06-01T21:01:04.3219411Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-06-01T21:01:04.3602948Z Entering 'third_party/pocketfft' 2025-06-01T21:01:04.3964214Z Entering 'third_party/protobuf' 2025-06-01T21:01:04.4284873Z Entering 'third_party/protobuf/third_party/benchmark' 2025-06-01T21:01:04.4614988Z Entering 'third_party/protobuf/third_party/googletest' 2025-06-01T21:01:04.4984420Z Entering 'third_party/psimd' 2025-06-01T21:01:04.5306914Z Entering 'third_party/pthreadpool' 2025-06-01T21:01:04.5635451Z Entering 'third_party/pybind11' 2025-06-01T21:01:04.5981218Z Entering 'third_party/python-peachpy' 2025-06-01T21:01:04.6304343Z Entering 'third_party/sleef' 2025-06-01T21:01:04.6654818Z Entering 'third_party/tensorpipe' 2025-06-01T21:01:04.6976684Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-06-01T21:01:04.7319357Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-06-01T21:01:04.7698215Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-06-01T21:01:04.8019701Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-06-01T21:01:04.8333336Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-06-01T21:01:04.8807178Z ##[endgroup] 2025-06-01T21:01:04.9069707Z [command]"C:\Program Files\Git\cmd\git.exe" log -1 --format=%H 2025-06-01T21:01:04.9266136Z f7c09f864a6c6467a7454f1431340d3338473fd1 2025-06-01T21:01:04.9584745Z Prepare all required actions 2025-06-01T21:01:04.9652012Z ##[group]Run ./.github/actions/setup-win 2025-06-01T21:01:04.9652308Z with: 2025-06-01T21:01:04.9652493Z cuda-version: cpu 2025-06-01T21:01:04.9652694Z env: 2025-06-01T21:01:04.9652875Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:01:04.9653112Z ##[endgroup] 2025-06-01T21:01:04.9734632Z ##[group]Run set -euo pipefail 2025-06-01T21:01:04.9735011Z set -euo pipefail 2025-06-01T21:01:04.9735267Z function get_ec2_metadata() { 2025-06-01T21:01:04.9735585Z  # Pulled from instance metadata endpoint for EC2 2025-06-01T21:01:04.9736160Z  # see https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instancedata-data-retrieval.html 2025-06-01T21:01:04.9736672Z  category=$1 2025-06-01T21:01:04.9737508Z  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-06-01T21:01:04.9738341Z } 2025-06-01T21:01:04.9738574Z echo "ami-id: $(get_ec2_metadata ami-id)" 2025-06-01T21:01:04.9738951Z echo "instance-id: $(get_ec2_metadata instance-id)" 2025-06-01T21:01:04.9739362Z echo "instance-type: $(get_ec2_metadata instance-type)" 2025-06-01T21:01:04.9739733Z echo "system info $(uname -a)" 2025-06-01T21:01:04.9758690Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-06-01T21:01:04.9759095Z env: 2025-06-01T21:01:04.9759277Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:01:04.9759502Z ##[endgroup] 2025-06-01T21:01:05.0333942Z ami-id: ami-047591c381c19028d 2025-06-01T21:01:05.0778380Z instance-id: i-0663466a0668f9b44 2025-06-01T21:01:05.1280153Z instance-type: c5d.4xlarge 2025-06-01T21:01:05.1469582Z system info MSYS_NT-10.0-17763 EC2AMAZ-DD9BHOF 3.5.4-395fda67.x86_64 2024-11-25 09:49 UTC x86_64 Msys 2025-06-01T21:01:05.1563937Z ##[group]Run Set-ItemProperty -Path "HKLM:\\SYSTEM\CurrentControlSet\Control\FileSystem" -Name "LongPathsEnabled" -Value 1 2025-06-01T21:01:05.1564870Z Set-ItemProperty -Path "HKLM:\\SYSTEM\CurrentControlSet\Control\FileSystem" -Name "LongPathsEnabled" -Value 1 2025-06-01T21:01:05.1580613Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-06-01T21:01:05.1581054Z env: 2025-06-01T21:01:05.1581224Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:01:05.1581446Z ##[endgroup] 2025-06-01T21:01:05.5042961Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-06-01T21:01:05.5084526Z Finished 2025-06-01T21:01:05.5378700Z ##[group]Run # Windows conda is baked into the AMI at this location 2025-06-01T21:01:05.5379166Z # Windows conda is baked into the AMI at this location 2025-06-01T21:01:05.5379569Z CONDA="C:\Jenkins\Miniconda3\condabin\conda.bat" 2025-06-01T21:01:05.5379878Z  2025-06-01T21:01:05.5380056Z { 2025-06-01T21:01:05.5380323Z  echo "CONDA_RUN=${CONDA} run --no-capture-output"; 2025-06-01T21:01:05.5380687Z  echo "CONDA_BUILD=${CONDA} run conda-build"; 2025-06-01T21:01:05.5381024Z  echo "CONDA_INSTALL=${CONDA} install"; 2025-06-01T21:01:05.5381309Z } >> "${GITHUB_ENV}" 2025-06-01T21:01:05.5399950Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-06-01T21:01:05.5400418Z env: 2025-06-01T21:01:05.5400610Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:01:05.5400828Z ##[endgroup] 2025-06-01T21:01:05.5665373Z ##[group]Run set +e 2025-06-01T21:01:05.5665598Z set +e 2025-06-01T21:01:05.5665792Z set -x 2025-06-01T21:01:05.5665969Z  2025-06-01T21:01:05.5666172Z PYTHON3=$(${CONDA_RUN} which python3) 2025-06-01T21:01:05.5666451Z EXIT_CODE=$? 2025-06-01T21:01:05.5666648Z  2025-06-01T21:01:05.5668192Z if [[ "${EXIT_CODE}" == "0" ]]; then 2025-06-01T21:01:05.5668757Z  echo "Found Python3 at ${PYTHON3}, adding it into GITHUB_PATH" 2025-06-01T21:01:05.5669113Z  2025-06-01T21:01:05.5669311Z  PYTHON_PATH=$(dirname "${PYTHON3}") 2025-06-01T21:01:05.5669635Z  echo "${PYTHON_PATH}" >> "${GITHUB_PATH}" 2025-06-01T21:01:05.5669913Z else 2025-06-01T21:01:05.5670337Z  # According to https://docs.conda.io/en/latest/miniconda.html, we are using the Miniconda3 2025-06-01T21:01:05.5671010Z  # installation, which is Python 3 based. Its Python is default to Python 3. Further, there 2025-06-01T21:01:05.5671650Z  # is also the Miniconda installation that is Python 2 based, and both can be installed if 2025-06-01T21:01:05.5672193Z  # needed. In both cases, Python binary is just called python 2025-06-01T21:01:05.5672572Z  PYTHON=$(${CONDA_RUN} which python) 2025-06-01T21:01:05.5672856Z  EXIT_CODE=$? 2025-06-01T21:01:05.5673071Z  2025-06-01T21:01:05.5673278Z  if [[ "${EXIT_CODE}" == "0" ]]; then 2025-06-01T21:01:05.5673712Z  echo "Found Python at ${PYTHON}, set Python3 alias and add it into GITHUB_PATH" 2025-06-01T21:01:05.5674109Z  2025-06-01T21:01:05.5674362Z  PYTHON3=$(echo "${PYTHON}" | sed "s/python/python3/") 2025-06-01T21:01:05.5674865Z  # It's difficult to setup alias across GitHub action steps, so I just add a softlink 2025-06-01T21:01:05.5675313Z  # here pointing to Python 2025-06-01T21:01:05.5675607Z  ln -s "${PYTHON}" "${PYTHON3}" 2025-06-01T21:01:05.5675862Z  2025-06-01T21:01:05.5676066Z  PYTHON_PATH=$(dirname "${PYTHON}") 2025-06-01T21:01:05.5676385Z  echo "${PYTHON_PATH}" >> "${GITHUB_PATH}" 2025-06-01T21:01:05.5676675Z  else 2025-06-01T21:01:05.5676903Z  echo "Found no Python using ${CONDA_RUN}" 2025-06-01T21:01:05.5677193Z  fi 2025-06-01T21:01:05.5677365Z fi 2025-06-01T21:01:05.5694857Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-06-01T21:01:05.5695272Z env: 2025-06-01T21:01:05.5695458Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:01:05.5695816Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:01:05.5696314Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:01:05.5696765Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:01:05.5697112Z ##[endgroup] 2025-06-01T21:01:05.5932649Z ++ 'C:\Jenkins\Miniconda3\condabin\conda.bat' run --no-capture-output which python3 2025-06-01T21:01:15.0105977Z 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-06-01T21:01:15.0166876Z ERROR conda.cli.main_run:execute(49): `conda run which python3` failed. (See above for error) 2025-06-01T21:01:15.0912680Z + PYTHON3= 2025-06-01T21:01:15.0912891Z + EXIT_CODE=1 2025-06-01T21:01:15.0913688Z + [[ 1 == \0 ]] 2025-06-01T21:01:15.0972773Z ++ 'C:\Jenkins\Miniconda3\condabin\conda.bat' run --no-capture-output which python 2025-06-01T21:01:16.7220076Z + PYTHON=/c/Jenkins/Miniconda3/python 2025-06-01T21:01:16.7220404Z + EXIT_CODE=0 2025-06-01T21:01:16.7220587Z + [[ 0 == \0 ]] 2025-06-01T21:01:16.7221012Z + echo 'Found Python at /c/Jenkins/Miniconda3/python, set Python3 alias and add it into GITHUB_PATH' 2025-06-01T21:01:16.7222618Z Found Python at /c/Jenkins/Miniconda3/python, set Python3 alias and add it into GITHUB_PATH 2025-06-01T21:01:16.7329820Z ++ echo /c/Jenkins/Miniconda3/python 2025-06-01T21:01:16.7380574Z ++ sed s/python/python3/ 2025-06-01T21:01:16.7442245Z + PYTHON3=/c/Jenkins/Miniconda3/python3 2025-06-01T21:01:16.7442707Z + ln -s /c/Jenkins/Miniconda3/python /c/Jenkins/Miniconda3/python3 2025-06-01T21:01:16.7620402Z ++ dirname /c/Jenkins/Miniconda3/python 2025-06-01T21:01:16.7689990Z + PYTHON_PATH=/c/Jenkins/Miniconda3 2025-06-01T21:01:16.7690292Z + echo /c/Jenkins/Miniconda3 2025-06-01T21:01:16.7798773Z ##[group]Run TMPDIR=$(python -c 'import tempfile; print(tempfile.gettempdir());') 2025-06-01T21:01:16.7799376Z TMPDIR=$(python -c 'import tempfile; print(tempfile.gettempdir());') 2025-06-01T21:01:16.7799808Z echo "TMPDIR=${TMPDIR}" >> "${GITHUB_ENV}" 2025-06-01T21:01:16.7820953Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-06-01T21:01:16.7821386Z env: 2025-06-01T21:01:16.7821556Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:01:16.7821916Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:01:16.7822409Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:01:16.7822869Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:01:16.7823202Z ##[endgroup] 2025-06-01T21:01:16.8775698Z ##[group]Run Add-MpPreference -ExclusionPath $(Get-Location).tostring(),$Env:TMPDIR,"C:\Jenkins\Miniconda3" -ErrorAction Ignore 2025-06-01T21:01:16.8776615Z Add-MpPreference -ExclusionPath $(Get-Location).tostring(),$Env:TMPDIR,"C:\Jenkins\Miniconda3" -ErrorAction Ignore 2025-06-01T21:01:16.8777365Z # Let's both exclude the path and disable Windows Defender completely just to be sure 2025-06-01T21:01:16.8777822Z # that it doesn't interfere 2025-06-01T21:01:16.8778257Z Set-MpPreference -DisableRealtimeMonitoring $True -ErrorAction Ignore 2025-06-01T21:01:16.8793355Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-06-01T21:01:16.8793799Z env: 2025-06-01T21:01:16.8793977Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:01:16.8794350Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:01:16.8794854Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:01:16.8795312Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:01:16.8795698Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:01:16.8795969Z ##[endgroup] 2025-06-01T21:01:17.2320553Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-06-01T21:01:17.2367667Z Finished 2025-06-01T21:01:18.1772528Z ##[group]Run choco install handle -y 2025-06-01T21:01:18.1772846Z choco install handle -y 2025-06-01T21:01:18.1773134Z handle C:\actions-runner\_work\ 2025-06-01T21:01:18.1788783Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-06-01T21:01:18.1789257Z env: 2025-06-01T21:01:18.1789443Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:01:18.1789797Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:01:18.1790302Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:01:18.1790763Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:01:18.1791137Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:01:18.1791414Z ##[endgroup] 2025-06-01T21:01:18.5142975Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-06-01T21:01:18.5184720Z Finished 2025-06-01T21:01:20.9728659Z Chocolatey v2.4.2 2025-06-01T21:01:21.1225779Z Installing the following packages: 2025-06-01T21:01:21.1231280Z handle 2025-06-01T21:01:21.1235086Z By installing, you accept licenses for the packages. 2025-06-01T21:01:22.0265187Z Downloading package from source 'https://community.chocolatey.org/api/v2/' 2025-06-01T21:01:22.1530385Z 2025-06-01T21:01:22.1531488Z Progress: Downloading Handle 5.0... 15% 2025-06-01T21:01:22.1531869Z Progress: Downloading Handle 5.0... 45% 2025-06-01T21:01:22.1532283Z Progress: Downloading Handle 5.0... 75% 2025-06-01T21:01:22.1532622Z Progress: Downloading Handle 5.0... 100% 2025-06-01T21:01:22.3069865Z 2025-06-01T21:01:22.3070215Z handle v5.0.0 [Approved] 2025-06-01T21:01:22.3264827Z handle package files install completed. Performing other installation steps. 2025-06-01T21:01:24.0867426Z Downloading Handle 2025-06-01T21:01:24.0867805Z from 'https://download.sysinternals.com/files/Handle.zip' 2025-06-01T21:01:24.1677587Z 2025-06-01T21:01:24.1694402Z Progress: 19% - Saving 143.51 KB of 729.82 KB 2025-06-01T21:01:24.1803187Z Progress: 41% - Saving 303.51 KB of 729.82 KB 2025-06-01T21:01:24.1820254Z Progress: 63% - Saving 463.51 KB of 729.82 KB 2025-06-01T21:01:24.1840912Z Progress: 85% - Saving 623.51 KB of 729.82 KB 2025-06-01T21:01:24.1844658Z Progress: 100% - Completed download of C:\Users\runneruser\AppData\Local\Temp\chocolatey\Handle\5.0.0\Handle.zip (729.82 KB). 2025-06-01T21:01:24.1850936Z Download of Handle.zip (729.82 KB) completed. 2025-06-01T21:01:27.2609689Z Hashes match. 2025-06-01T21:01:27.2865427Z Extracting C:\Users\runneruser\AppData\Local\Temp\chocolatey\Handle\5.0.0\Handle.zip to C:\ProgramData\chocolatey\lib\Handle\tools... 2025-06-01T21:01:27.8163160Z C:\ProgramData\chocolatey\lib\Handle\tools 2025-06-01T21:01:27.8215118Z HKEY_CURRENT_USER\Software\Sysinternals 2025-06-01T21:01:27.8342693Z HKEY_CURRENT_USER\Software\Sysinternals\Handle 2025-06-01T21:01:28.3330841Z ShimGen has successfully created a shim for handle.exe 2025-06-01T21:01:28.5154604Z ShimGen has successfully created a shim for handle64.exe 2025-06-01T21:01:28.6836499Z ShimGen has successfully created a shim for handle64a.exe 2025-06-01T21:01:28.7101031Z The install of handle was successful. 2025-06-01T21:01:28.7104388Z Deployed to 'C:\ProgramData\chocolatey\lib\Handle\tools' 2025-06-01T21:01:28.7200354Z 2025-06-01T21:01:28.7200487Z Chocolatey installed 1/1 packages. 2025-06-01T21:01:28.7200906Z See the log for details (C:\ProgramData\chocolatey\logs\chocolatey.log). 2025-06-01T21:01:28.8878427Z 2025-06-01T21:01:28.8878764Z Nthandle v5.0 - Handle viewer 2025-06-01T21:01:28.8879088Z Copyright (C) 1997-2022 Mark Russinovich 2025-06-01T21:01:28.8879388Z Sysinternals - www.sysinternals.com 2025-06-01T21:01:28.8879580Z 2025-06-01T21:01:28.9908585Z powershell.exe pid: 1608 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-06-01T21:01:28.9909179Z handle.exe pid: 5052 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-06-01T21:01:28.9909705Z handle.exe pid: 5080 type: File 94: C:\actions-runner\_work\pytorch\pytorch 2025-06-01T21:01:28.9910278Z handle64.exe pid: 5940 type: File 50: C:\actions-runner\_work\pytorch\pytorch 2025-06-01T21:01:29.0252373Z ##[group]Run python3 .github/scripts/parse_ref.py 2025-06-01T21:01:29.0252781Z python3 .github/scripts/parse_ref.py 2025-06-01T21:01:29.0271664Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-06-01T21:01:29.0272069Z env: 2025-06-01T21:01:29.0272250Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:01:29.0272605Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:01:29.0273174Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:01:29.0273692Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:01:29.0274072Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:01:29.0274352Z ##[endgroup] 2025-06-01T21:01:29.1067730Z Prepare all required actions 2025-06-01T21:01:29.1101422Z ##[group]Run ./.github/actions/get-workflow-job-id 2025-06-01T21:01:29.1101735Z with: 2025-06-01T21:01:29.1102954Z github-token: *** 2025-06-01T21:01:29.1103148Z env: 2025-06-01T21:01:29.1103317Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:01:29.1103688Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:01:29.1104196Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:01:29.1104647Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:01:29.1105035Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:01:29.1105310Z ##[endgroup] 2025-06-01T21:01:29.1170313Z ##[group]Run set -eux 2025-06-01T21:01:29.1170544Z set -eux 2025-06-01T21:01:29.1170930Z python3 .github/scripts/get_workflow_job_id.py "${GITHUB_RUN_ID}" "${RUNNER_NAME}" 2025-06-01T21:01:29.1189425Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-06-01T21:01:29.1189861Z env: 2025-06-01T21:01:29.1190051Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:01:29.1190410Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:01:29.1190929Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:01:29.1191375Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:01:29.1191757Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:01:29.1192219Z GITHUB_TOKEN: *** 2025-06-01T21:01:29.1192413Z ##[endgroup] 2025-06-01T21:01:29.1372690Z + python3 .github/scripts/get_workflow_job_id.py 15379340894 i-0663466a0668f9b44 2025-06-01T21:01:29.5455987Z setting job-id=43268061395 2025-06-01T21:01:29.5456324Z setting job-name=win-vs2022-cpu-py3 / build 2025-06-01T21:01:29.5770957Z Prepare all required actions 2025-06-01T21:01:29.5771345Z Getting action download info 2025-06-01T21:01:29.6895809Z Download action repository 'nick-fields/retry@v3.0.0' (SHA:7152eba30c6575329ac0576536151aca5a72780e) 2025-06-01T21:01:29.9481649Z ##[group]Run ./.github/actions/filter-test-configs 2025-06-01T21:01:29.9481971Z with: 2025-06-01T21:01:29.9482327Z github-token: *** 2025-06-01T21:01:29.9483323Z test-matrix: { include: [ { config: "default", shard: 1, num_shards: 3, runner: "windows.4xlarge.nonephemeral" }, { config: "default", shard: 2, num_shards: 3, runner: "windows.4xlarge.nonephemeral" }, { config: "default", shard: 3, num_shards: 3, runner: "windows.4xlarge.nonephemeral" }, ]} 2025-06-01T21:01:29.9484397Z job-name: win-vs2022-cpu-py3 / build 2025-06-01T21:01:29.9484659Z env: 2025-06-01T21:01:29.9484868Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:01:29.9485263Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:01:29.9485801Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:01:29.9486252Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:01:29.9486637Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:01:29.9486916Z ##[endgroup] 2025-06-01T21:01:29.9592300Z ##[group]Run nick-fields/retry@v3.0.0 2025-06-01T21:01:29.9592583Z with: 2025-06-01T21:01:29.9592758Z shell: bash 2025-06-01T21:01:29.9592941Z timeout_minutes: 10 2025-06-01T21:01:29.9593145Z max_attempts: 5 2025-06-01T21:01:29.9593341Z retry_wait_seconds: 30 2025-06-01T21:01:29.9594050Z 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-06-01T21:01:29.9594797Z polling_interval_seconds: 1 2025-06-01T21:01:29.9595026Z warning_on_retry: true 2025-06-01T21:01:29.9595244Z continue_on_error: false 2025-06-01T21:01:29.9595461Z env: 2025-06-01T21:01:29.9595640Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:01:29.9596060Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:01:29.9596565Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:01:29.9597012Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:01:29.9597547Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:01:29.9598012Z GITHUB_TOKEN: *** 2025-06-01T21:01:29.9598200Z ##[endgroup] 2025-06-01T21:01:30.0968692Z + python3 -m pip install requests==2.27.1 pyyaml==6.0.1 2025-06-01T21:01:34.2455552Z Collecting requests==2.27.1 2025-06-01T21:01:34.4339640Z Downloading requests-2.27.1-py2.py3-none-any.whl.metadata (5.0 kB) 2025-06-01T21:01:34.5465152Z Collecting pyyaml==6.0.1 2025-06-01T21:01:34.5517207Z Downloading PyYAML-6.0.1-cp39-cp39-win_amd64.whl.metadata (2.1 kB) 2025-06-01T21:01:34.5730153Z 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-06-01T21:01:34.5736591Z Requirement already satisfied: certifi>=2017.4.17 in c:\jenkins\miniconda3\lib\site-packages (from requests==2.27.1) (2025.1.31) 2025-06-01T21:01:34.5748724Z Requirement already satisfied: charset-normalizer~=2.0.0 in c:\jenkins\miniconda3\lib\site-packages (from requests==2.27.1) (2.0.4) 2025-06-01T21:01:34.5762610Z Requirement already satisfied: idna<4,>=2.5 in c:\jenkins\miniconda3\lib\site-packages (from requests==2.27.1) (3.7) 2025-06-01T21:01:34.6074224Z Downloading requests-2.27.1-py2.py3-none-any.whl (63 kB) 2025-06-01T21:01:34.6857439Z ---------------------------------------- 63.1/63.1 kB 1.1 MB/s eta 0:00:00 2025-06-01T21:01:34.6917150Z Downloading PyYAML-6.0.1-cp39-cp39-win_amd64.whl (152 kB) 2025-06-01T21:01:34.7256299Z ---------------------------------------- 152.8/152.8 kB 4.6 MB/s eta 0:00:00 2025-06-01T21:01:35.9038848Z Installing collected packages: requests, pyyaml 2025-06-01T21:01:35.9039387Z Attempting uninstall: requests 2025-06-01T21:01:35.9049414Z Found existing installation: requests 2.32.3 2025-06-01T21:01:35.9122941Z Uninstalling requests-2.32.3: 2025-06-01T21:01:35.9145461Z Successfully uninstalled requests-2.32.3 2025-06-01T21:01:35.9826660Z Attempting uninstall: pyyaml 2025-06-01T21:01:35.9833398Z Found existing installation: PyYAML 6.0.2 2025-06-01T21:01:35.9913591Z Uninstalling PyYAML-6.0.2: 2025-06-01T21:01:35.9940777Z Successfully uninstalled PyYAML-6.0.2 2025-06-01T21:01:36.1023961Z Successfully installed pyyaml-6.0.1 requests-2.27.1 2025-06-01T21:01:37.1212319Z Command completed after 1 attempt(s). 2025-06-01T21:01:37.1374865Z ##[group]Run set -x 2025-06-01T21:01:37.1375095Z set -x 2025-06-01T21:01:37.1375335Z  2025-06-01T21:01:37.1375716Z # Use relative path here as this could be checked out anywhere, not necessarily 2025-06-01T21:01:37.1376152Z # in runner workspace 2025-06-01T21:01:37.1376498Z python3 "${GITHUB_ACTION_PATH}/../../scripts/parse_ref.py" 2025-06-01T21:01:37.1395672Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-06-01T21:01:37.1396092Z env: 2025-06-01T21:01:37.1396267Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:01:37.1396638Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:01:37.1397151Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:01:37.1397608Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:01:37.1398053Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:01:37.1398333Z ##[endgroup] 2025-06-01T21:01:37.1591930Z + python3 'C:\actions-runner\_work\pytorch\pytorch\./.github/actions/filter-test-configs/../../scripts/parse_ref.py' 2025-06-01T21:01:37.2172321Z ##[group]Run echo "Workflow: ${GITHUB_WORKFLOW}" 2025-06-01T21:01:37.2172707Z echo "Workflow: ${GITHUB_WORKFLOW}" 2025-06-01T21:01:37.2173007Z echo "Job name: ${JOB_NAME}" 2025-06-01T21:01:37.2173246Z  2025-06-01T21:01:37.2173579Z # Use relative path here as this could be checked out anywhere, not necessarily 2025-06-01T21:01:37.2174006Z # in runner workspace 2025-06-01T21:01:37.2174388Z python3 "${GITHUB_ACTION_PATH}/../../scripts/filter_test_configs.py" \ 2025-06-01T21:01:37.2174943Z  --workflow "${GITHUB_WORKFLOW}" \ 2025-06-01T21:01:37.2175240Z  --job-name "${JOB_NAME}" \ 2025-06-01T21:01:37.2175514Z  --test-matrix "{ include: [ 2025-06-01T21:01:37.2175958Z  { config: "default", shard: 1, num_shards: 3, runner: "windows.4xlarge.nonephemeral" }, 2025-06-01T21:01:37.2176560Z  { config: "default", shard: 2, num_shards: 3, runner: "windows.4xlarge.nonephemeral" }, 2025-06-01T21:01:37.2177154Z  { config: "default", shard: 3, num_shards: 3, runner: "windows.4xlarge.nonephemeral" }, 2025-06-01T21:01:37.2177574Z ]} 2025-06-01T21:01:37.2177749Z " \ 2025-06-01T21:01:37.2177953Z  --selected-test-configs "" \ 2025-06-01T21:01:37.2178246Z  --pr-number "${PR_NUMBER}" \ 2025-06-01T21:01:37.2178505Z  --tag "${TAG}" \ 2025-06-01T21:01:37.2178760Z  --event-name "${EVENT_NAME}" \ 2025-06-01T21:01:37.2179036Z  --schedule "${SCHEDULE}" \ 2025-06-01T21:01:37.2179305Z  --branch "${HEAD_BRANCH}" 2025-06-01T21:01:37.2197474Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-06-01T21:01:37.2197895Z env: 2025-06-01T21:01:37.2198071Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:01:37.2198439Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:01:37.2198940Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:01:37.2199951Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:01:37.2200354Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:01:37.2200874Z GITHUB_TOKEN: *** 2025-06-01T21:01:37.2201104Z JOB_NAME: win-vs2022-cpu-py3 / build 2025-06-01T21:01:37.2201358Z PR_NUMBER: 2025-06-01T21:01:37.2201544Z TAG: 2025-06-01T21:01:37.2201720Z EVENT_NAME: push 2025-06-01T21:01:37.2201926Z SCHEDULE: 2025-06-01T21:01:37.2202139Z HEAD_BRANCH: 2025-06-01T21:01:37.2202406Z ##[endgroup] 2025-06-01T21:01:37.2381063Z Workflow: trunk 2025-06-01T21:01:37.2381333Z Job name: win-vs2022-cpu-py3 / build 2025-06-01T21:01:37.5170641Z ##[group]Run echo "Filtered matrix:" 2025-06-01T21:01:37.5170934Z echo "Filtered matrix:" 2025-06-01T21:01:37.5172115Z echo "{"include": [{"config": "default", "shard": 1, "num_shards": 3, "runner": "windows.4xlarge.nonephemeral"}, {"config": "default", "shard": 2, "num_shards": 3, "runner": "windows.4xlarge.nonephemeral"}, {"config": "default", "shard": 3, "num_shards": 3, "runner": "windows.4xlarge.nonephemeral"}]}" 2025-06-01T21:01:37.5173151Z  2025-06-01T21:01:37.5173319Z echo 2025-06-01T21:01:37.5173555Z echo "Is the current job unstable? False" 2025-06-01T21:01:37.5173840Z  2025-06-01T21:01:37.5174011Z echo 2025-06-01T21:01:37.5174230Z echo "Is keep-going label set? False" 2025-06-01T21:01:37.5174517Z  2025-06-01T21:01:37.5174681Z echo 2025-06-01T21:01:37.5174870Z echo "Renabled issues? " 2025-06-01T21:01:37.5193188Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-06-01T21:01:37.5193612Z env: 2025-06-01T21:01:37.5193797Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:01:37.5194165Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:01:37.5194670Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:01:37.5195135Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:01:37.5195520Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:01:37.5195813Z ##[endgroup] 2025-06-01T21:01:37.5374611Z Filtered matrix: 2025-06-01T21:01:37.5375823Z {include: [{config: default, shard: 1, num_shards: 3, runner: windows.4xlarge.nonephemeral}, {config: default, shard: 2, num_shards: 3, runner: windows.4xlarge.nonephemeral}, {config: default, shard: 3, num_shards: 3, runner: windows.4xlarge.nonephemeral}]} 2025-06-01T21:01:37.5377025Z 2025-06-01T21:01:37.5377135Z Is the current job unstable? False 2025-06-01T21:01:37.5377319Z 2025-06-01T21:01:37.5377406Z Is keep-going label set? False 2025-06-01T21:01:37.5377567Z 2025-06-01T21:01:37.5377647Z Renabled issues? 2025-06-01T21:01:37.5481986Z Prepare all required actions 2025-06-01T21:01:37.5482365Z Getting action download info 2025-06-01T21:01:37.6564798Z ##[group]Run ./.github/actions/pytest-cache-download 2025-06-01T21:01:37.6565096Z with: 2025-06-01T21:01:37.6565283Z cache_dir: .pytest_cache 2025-06-01T21:01:37.6565528Z job_identifier: trunk_win-vs2022-cpu-py3 2025-06-01T21:01:37.6565816Z s3_bucket: gha-artifacts 2025-06-01T21:01:37.6566020Z env: 2025-06-01T21:01:37.6566198Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:01:37.6566548Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:01:37.6567075Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:01:37.6567545Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:01:37.6567920Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:01:37.6568205Z ##[endgroup] 2025-06-01T21:01:37.6654801Z ##[group]Run nick-fields/retry@v3.0.0 2025-06-01T21:01:37.6655098Z with: 2025-06-01T21:01:37.6655258Z shell: bash 2025-06-01T21:01:37.6655450Z timeout_minutes: 5 2025-06-01T21:01:37.6655655Z max_attempts: 5 2025-06-01T21:01:37.6655864Z retry_wait_seconds: 30 2025-06-01T21:01:37.6656143Z command: set -eu python3 -m pip install boto3==1.35.42 2025-06-01T21:01:37.6656479Z polling_interval_seconds: 1 2025-06-01T21:01:37.6656722Z warning_on_retry: true 2025-06-01T21:01:37.6656936Z continue_on_error: false 2025-06-01T21:01:37.6657151Z env: 2025-06-01T21:01:37.6657315Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:01:37.6657676Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:01:37.6658180Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:01:37.6658635Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:01:37.6659014Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:01:37.6659290Z ##[endgroup] 2025-06-01T21:01:39.1353111Z Collecting boto3==1.35.42 2025-06-01T21:01:39.3189652Z Downloading boto3-1.35.42-py3-none-any.whl.metadata (6.7 kB) 2025-06-01T21:01:39.9790903Z Collecting botocore<1.36.0,>=1.35.42 (from boto3==1.35.42) 2025-06-01T21:01:39.9836576Z Downloading botocore-1.35.99-py3-none-any.whl.metadata (5.7 kB) 2025-06-01T21:01:39.9955785Z 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-06-01T21:01:40.0247180Z Collecting s3transfer<0.11.0,>=0.10.0 (from boto3==1.35.42) 2025-06-01T21:01:40.0346105Z Downloading s3transfer-0.10.4-py3-none-any.whl.metadata (1.7 kB) 2025-06-01T21:01:40.0519522Z 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-06-01T21:01:40.0531630Z 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-06-01T21:01:40.2088852Z Requirement already satisfied: six>=1.5 in c:\jenkins\miniconda3\lib\site-packages (from python-dateutil<3.0.0,>=2.1->botocore<1.36.0,>=1.35.42->boto3==1.35.42) (1.16.0) 2025-06-01T21:01:40.2322644Z Downloading boto3-1.35.42-py3-none-any.whl (139 kB) 2025-06-01T21:01:40.3346953Z ---------------------------------------- 139.2/139.2 kB 1.7 MB/s eta 0:00:00 2025-06-01T21:01:40.3432457Z Downloading botocore-1.35.99-py3-none-any.whl (13.3 MB) 2025-06-01T21:01:40.4674993Z ---------------------------------------- 13.3/13.3 MB 108.7 MB/s eta 0:00:00 2025-06-01T21:01:40.4719648Z Downloading s3transfer-0.10.4-py3-none-any.whl (83 kB) 2025-06-01T21:01:40.4800838Z ---------------------------------------- 83.2/83.2 kB ? eta 0:00:00 2025-06-01T21:01:41.3038668Z Installing collected packages: botocore, s3transfer, boto3 2025-06-01T21:01:41.3039503Z Attempting uninstall: botocore 2025-06-01T21:01:41.3048259Z Found existing installation: botocore 1.36.3 2025-06-01T21:01:41.5023661Z Uninstalling botocore-1.36.3: 2025-06-01T21:01:41.5821118Z Successfully uninstalled botocore-1.36.3 2025-06-01T21:01:44.0478866Z Attempting uninstall: s3transfer 2025-06-01T21:01:44.0488586Z Found existing installation: s3transfer 0.11.2 2025-06-01T21:01:44.0565324Z Uninstalling s3transfer-0.11.2: 2025-06-01T21:01:44.0586344Z Successfully uninstalled s3transfer-0.11.2 2025-06-01T21:01:44.1337100Z Attempting uninstall: boto3 2025-06-01T21:01:44.1344895Z Found existing installation: boto3 1.36.3 2025-06-01T21:01:44.1512026Z Uninstalling boto3-1.36.3: 2025-06-01T21:01:44.1563552Z Successfully uninstalled boto3-1.36.3 2025-06-01T21:01:44.7630375Z Successfully installed boto3-1.35.42 botocore-1.35.99 s3transfer-0.10.4 2025-06-01T21:01:45.7834854Z Command completed after 1 attempt(s). 2025-06-01T21:01:45.8013576Z ##[group]Run python3 .github/scripts/pytest_cache.py \ 2025-06-01T21:01:45.8013997Z python3 .github/scripts/pytest_cache.py \ 2025-06-01T21:01:45.8014319Z  --download \ 2025-06-01T21:01:45.8014576Z  --cache_dir $GITHUB_WORKSPACE/$CACHE_DIR \ 2025-06-01T21:01:45.8014912Z  --pr_identifier $GITHUB_REF \ 2025-06-01T21:01:45.8015204Z  --job_identifier $JOB_IDENTIFIER \ 2025-06-01T21:01:45.8015507Z  --temp_dir $RUNNER_TEMP \ 2025-06-01T21:01:45.8015762Z  --repo $REPO \ 2025-06-01T21:01:45.8015992Z  --bucket $BUCKET \ 2025-06-01T21:01:45.8036100Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-06-01T21:01:45.8036565Z env: 2025-06-01T21:01:45.8036759Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:01:45.8037169Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:01:45.8037709Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:01:45.8038207Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:01:45.8038645Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:01:45.8038966Z CACHE_DIR: .pytest_cache 2025-06-01T21:01:45.8039222Z JOB_IDENTIFIER: trunk_win-vs2022-cpu-py3 2025-06-01T21:01:45.8039540Z REPO: pytorch/pytorch 2025-06-01T21:01:45.8039760Z BUCKET: gha-artifacts 2025-06-01T21:01:45.8040006Z ##[endgroup] 2025-06-01T21:01:49.3293719Z PR identifier for `refs/heads/main` is `96e092540d6b3c4076e3d2bc6f1f9013` 2025-06-01T21:01:49.3295235Z Downloading cache with args Namespace(upload=False, download=True, cache_dir='C:\\actions-runner\\_work\\pytorch\\pytorch/.pytest_cache', pr_identifier='refs/heads/main', job_identifier='trunk_win-vs2022-cpu-py3', sha=None, test_config=None, shard=None, repo='pytorch/pytorch', temp_dir='C:\\actions-runner\\_work\\_temp', bucket='gha-artifacts') 2025-06-01T21:01:49.3297178Z Downloading s3://gha-artifacts/pytest_cache/pytorch/pytorch/96e092540d6b3c4076e3d2bc6f1f9013/trunk_win-vs2022-cpu-py3/062387fb53651a7720a94a6fa65463821da9ce94/default/1.zip 2025-06-01T21:01:49.3298967Z to C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\062387fb53651a7720a94a6fa65463821da9ce94\default\1.zip 2025-06-01T21:01:49.3300707Z Downloading s3://gha-artifacts/pytest_cache/pytorch/pytorch/96e092540d6b3c4076e3d2bc6f1f9013/trunk_win-vs2022-cpu-py3/3443627e078deb813ae37f7182d41a802bd05ac4/default/1.zip 2025-06-01T21:01:49.3302441Z to C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\3443627e078deb813ae37f7182d41a802bd05ac4\default\1.zip 2025-06-01T21:01:49.3304987Z Downloading s3://gha-artifacts/pytest_cache/pytorch/pytorch/96e092540d6b3c4076e3d2bc6f1f9013/trunk_win-vs2022-cpu-py3/4015166e5d51bc39d5a81aa59ad49720ec2a23fe/default/1.zip 2025-06-01T21:01:49.3306760Z to C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\4015166e5d51bc39d5a81aa59ad49720ec2a23fe\default\1.zip 2025-06-01T21:01:49.3308496Z Downloading s3://gha-artifacts/pytest_cache/pytorch/pytorch/96e092540d6b3c4076e3d2bc6f1f9013/trunk_win-vs2022-cpu-py3/4064062e1865f2180a618f329935e787f9aba069/default/2.zip 2025-06-01T21:01:49.3310215Z to C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\4064062e1865f2180a618f329935e787f9aba069\default\2.zip 2025-06-01T21:01:49.3311979Z Downloading s3://gha-artifacts/pytest_cache/pytorch/pytorch/96e092540d6b3c4076e3d2bc6f1f9013/trunk_win-vs2022-cpu-py3/41663739085c57edc4a352c55ed6b23b8e9eb91d/default/1.zip 2025-06-01T21:01:49.3313725Z to C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\41663739085c57edc4a352c55ed6b23b8e9eb91d\default\1.zip 2025-06-01T21:01:49.3315451Z Downloading s3://gha-artifacts/pytest_cache/pytorch/pytorch/96e092540d6b3c4076e3d2bc6f1f9013/trunk_win-vs2022-cpu-py3/43b18d098b4cd9e84c503d255f2f2ddc8474f661/default/1.zip 2025-06-01T21:01:49.3317188Z to C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\43b18d098b4cd9e84c503d255f2f2ddc8474f661\default\1.zip 2025-06-01T21:01:49.3318937Z Downloading s3://gha-artifacts/pytest_cache/pytorch/pytorch/96e092540d6b3c4076e3d2bc6f1f9013/trunk_win-vs2022-cpu-py3/447b481c7913f179e11ade98a3d50fa1af290281/default/1.zip 2025-06-01T21:01:49.3320671Z to C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\447b481c7913f179e11ade98a3d50fa1af290281\default\1.zip 2025-06-01T21:01:49.3322419Z Downloading s3://gha-artifacts/pytest_cache/pytorch/pytorch/96e092540d6b3c4076e3d2bc6f1f9013/trunk_win-vs2022-cpu-py3/451d652873c1e56bdff232d212c475b2c6ff4346/default/2.zip 2025-06-01T21:01:49.3324164Z to C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\451d652873c1e56bdff232d212c475b2c6ff4346\default\2.zip 2025-06-01T21:01:49.3325897Z Downloading s3://gha-artifacts/pytest_cache/pytorch/pytorch/96e092540d6b3c4076e3d2bc6f1f9013/trunk_win-vs2022-cpu-py3/460888f908ea4b634ecc863a6da6b2132108bc79/default/2.zip 2025-06-01T21:01:49.3327655Z to C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\460888f908ea4b634ecc863a6da6b2132108bc79\default\2.zip 2025-06-01T21:01:49.3329375Z Downloading s3://gha-artifacts/pytest_cache/pytorch/pytorch/96e092540d6b3c4076e3d2bc6f1f9013/trunk_win-vs2022-cpu-py3/47df195065d62a649169565293b24595249ca3b1/default/1.zip 2025-06-01T21:01:49.3331289Z to C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\47df195065d62a649169565293b24595249ca3b1\default\1.zip 2025-06-01T21:01:49.3333089Z Downloading s3://gha-artifacts/pytest_cache/pytorch/pytorch/96e092540d6b3c4076e3d2bc6f1f9013/trunk_win-vs2022-cpu-py3/5683965f02c4091a864484917f74e3a42c9c56ae/default/3.zip 2025-06-01T21:01:49.3334829Z to C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\5683965f02c4091a864484917f74e3a42c9c56ae\default\3.zip 2025-06-01T21:01:49.3336544Z Downloading s3://gha-artifacts/pytest_cache/pytorch/pytorch/96e092540d6b3c4076e3d2bc6f1f9013/trunk_win-vs2022-cpu-py3/5976419c6939207834492a1f5fba4a62f2c91b0d/default/1.zip 2025-06-01T21:01:49.3338280Z to C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\5976419c6939207834492a1f5fba4a62f2c91b0d\default\1.zip 2025-06-01T21:01:49.3340012Z Downloading s3://gha-artifacts/pytest_cache/pytorch/pytorch/96e092540d6b3c4076e3d2bc6f1f9013/trunk_win-vs2022-cpu-py3/5a8c9c3ab089bf8ee6794445b44282850b3213b9/default/2.zip 2025-06-01T21:01:49.3341748Z to C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\5a8c9c3ab089bf8ee6794445b44282850b3213b9\default\2.zip 2025-06-01T21:01:49.3343470Z Downloading s3://gha-artifacts/pytest_cache/pytorch/pytorch/96e092540d6b3c4076e3d2bc6f1f9013/trunk_win-vs2022-cpu-py3/5dd746b4b58d2e4760f46837b3ecae0090904456/default/3.zip 2025-06-01T21:01:49.3345226Z to C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\5dd746b4b58d2e4760f46837b3ecae0090904456\default\3.zip 2025-06-01T21:01:49.3347147Z Downloading s3://gha-artifacts/pytest_cache/pytorch/pytorch/96e092540d6b3c4076e3d2bc6f1f9013/trunk_win-vs2022-cpu-py3/639f459cb6bf5cb208786171bdaa9a7b1ae1fc17/default/1.zip 2025-06-01T21:01:49.3348989Z to C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\639f459cb6bf5cb208786171bdaa9a7b1ae1fc17\default\1.zip 2025-06-01T21:01:49.3350718Z Downloading s3://gha-artifacts/pytest_cache/pytorch/pytorch/96e092540d6b3c4076e3d2bc6f1f9013/trunk_win-vs2022-cpu-py3/641e4bee67453199ca5144745ddab969d9934e9f/default/1.zip 2025-06-01T21:01:49.3352479Z to C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\641e4bee67453199ca5144745ddab969d9934e9f\default\1.zip 2025-06-01T21:01:49.3354397Z Downloading s3://gha-artifacts/pytest_cache/pytorch/pytorch/96e092540d6b3c4076e3d2bc6f1f9013/trunk_win-vs2022-cpu-py3/68034198e5c25f10005d13c6a68cb7a4e3a76f1e/default/1.zip 2025-06-01T21:01:50.0057668Z to C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\68034198e5c25f10005d13c6a68cb7a4e3a76f1e\default\1.zip 2025-06-01T21:01:50.0059518Z Downloading s3://gha-artifacts/pytest_cache/pytorch/pytorch/96e092540d6b3c4076e3d2bc6f1f9013/trunk_win-vs2022-cpu-py3/784c666cae00f85ecf675298ddb056bebaf32f55/default/1.zip 2025-06-01T21:01:50.0061668Z to C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\784c666cae00f85ecf675298ddb056bebaf32f55\default\1.zip 2025-06-01T21:01:50.0063410Z Downloading s3://gha-artifacts/pytest_cache/pytorch/pytorch/96e092540d6b3c4076e3d2bc6f1f9013/trunk_win-vs2022-cpu-py3/784c666cae00f85ecf675298ddb056bebaf32f55/default/2.zip 2025-06-01T21:01:50.0065173Z to C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\784c666cae00f85ecf675298ddb056bebaf32f55\default\2.zip 2025-06-01T21:01:50.0066917Z Downloading s3://gha-artifacts/pytest_cache/pytorch/pytorch/96e092540d6b3c4076e3d2bc6f1f9013/trunk_win-vs2022-cpu-py3/792736f9ac1461a3e281aa786fd0f2b29ba0b9d3/default/1.zip 2025-06-01T21:01:50.0068663Z to C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\792736f9ac1461a3e281aa786fd0f2b29ba0b9d3\default\1.zip 2025-06-01T21:01:50.0070415Z Downloading s3://gha-artifacts/pytest_cache/pytorch/pytorch/96e092540d6b3c4076e3d2bc6f1f9013/trunk_win-vs2022-cpu-py3/7cb5c751c3f76129c95aec479647679fbba4e7ba/default/2.zip 2025-06-01T21:01:50.0072159Z to C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\7cb5c751c3f76129c95aec479647679fbba4e7ba\default\2.zip 2025-06-01T21:01:50.0073888Z Downloading s3://gha-artifacts/pytest_cache/pytorch/pytorch/96e092540d6b3c4076e3d2bc6f1f9013/trunk_win-vs2022-cpu-py3/853958f82ccd6fdcbed025a91df87b5fe6b0b6cb/default/1.zip 2025-06-01T21:01:50.0075648Z to C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\853958f82ccd6fdcbed025a91df87b5fe6b0b6cb\default\1.zip 2025-06-01T21:01:50.0077400Z Downloading s3://gha-artifacts/pytest_cache/pytorch/pytorch/96e092540d6b3c4076e3d2bc6f1f9013/trunk_win-vs2022-cpu-py3/86a160353e4b37f6d0f0230a518ad216099be88b/default/1.zip 2025-06-01T21:01:50.0079139Z to C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\86a160353e4b37f6d0f0230a518ad216099be88b\default\1.zip 2025-06-01T21:01:50.0080860Z Downloading s3://gha-artifacts/pytest_cache/pytorch/pytorch/96e092540d6b3c4076e3d2bc6f1f9013/trunk_win-vs2022-cpu-py3/88b56774bd908487c5071d976f8e71ccbeb3fd75/default/1.zip 2025-06-01T21:01:50.0082618Z to C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\88b56774bd908487c5071d976f8e71ccbeb3fd75\default\1.zip 2025-06-01T21:01:50.0084350Z Downloading s3://gha-artifacts/pytest_cache/pytorch/pytorch/96e092540d6b3c4076e3d2bc6f1f9013/trunk_win-vs2022-cpu-py3/88b56774bd908487c5071d976f8e71ccbeb3fd75/default/3.zip 2025-06-01T21:01:50.0086076Z to C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\88b56774bd908487c5071d976f8e71ccbeb3fd75\default\3.zip 2025-06-01T21:01:50.0087991Z Downloading s3://gha-artifacts/pytest_cache/pytorch/pytorch/96e092540d6b3c4076e3d2bc6f1f9013/trunk_win-vs2022-cpu-py3/8904ba638726f8c9a5aff5977c4aa76c9d2edfa6/default/1.zip 2025-06-01T21:01:50.0090617Z to C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\8904ba638726f8c9a5aff5977c4aa76c9d2edfa6\default\1.zip 2025-06-01T21:01:50.0092384Z Downloading s3://gha-artifacts/pytest_cache/pytorch/pytorch/96e092540d6b3c4076e3d2bc6f1f9013/trunk_win-vs2022-cpu-py3/8fe7ec6721c426f0bfa8428fe36104d8df0eac1c/default/1.zip 2025-06-01T21:01:50.0094158Z to C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\8fe7ec6721c426f0bfa8428fe36104d8df0eac1c\default\1.zip 2025-06-01T21:01:50.0096075Z Downloading s3://gha-artifacts/pytest_cache/pytorch/pytorch/96e092540d6b3c4076e3d2bc6f1f9013/trunk_win-vs2022-cpu-py3/909ec495b86447597b960efd5017b7129a6039e6/default/1.zip 2025-06-01T21:01:50.0098024Z to C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\909ec495b86447597b960efd5017b7129a6039e6\default\1.zip 2025-06-01T21:01:50.0099952Z Downloading s3://gha-artifacts/pytest_cache/pytorch/pytorch/96e092540d6b3c4076e3d2bc6f1f9013/trunk_win-vs2022-cpu-py3/a28dcdba2c712b91b83ea8ba2c581b746e224f38/default/1.zip 2025-06-01T21:01:50.0101698Z to C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\a28dcdba2c712b91b83ea8ba2c581b746e224f38\default\1.zip 2025-06-01T21:01:50.0103439Z Downloading s3://gha-artifacts/pytest_cache/pytorch/pytorch/96e092540d6b3c4076e3d2bc6f1f9013/trunk_win-vs2022-cpu-py3/ac9fcd63466776871389bf0e82f620b3f9532e50/default/1.zip 2025-06-01T21:01:50.0105220Z to C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\ac9fcd63466776871389bf0e82f620b3f9532e50\default\1.zip 2025-06-01T21:01:50.0107073Z Downloading s3://gha-artifacts/pytest_cache/pytorch/pytorch/96e092540d6b3c4076e3d2bc6f1f9013/trunk_win-vs2022-cpu-py3/b4fb801b2d5cecd35b8f653814b71e2328305106/default/1.zip 2025-06-01T21:01:50.0108821Z to C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\b4fb801b2d5cecd35b8f653814b71e2328305106\default\1.zip 2025-06-01T21:01:50.0110575Z Downloading s3://gha-artifacts/pytest_cache/pytorch/pytorch/96e092540d6b3c4076e3d2bc6f1f9013/trunk_win-vs2022-cpu-py3/c8bac51ec1898fa70c0e88422ae8e9d354fb0ba1/default/1.zip 2025-06-01T21:01:50.0112426Z to C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\c8bac51ec1898fa70c0e88422ae8e9d354fb0ba1\default\1.zip 2025-06-01T21:01:50.0114162Z Downloading s3://gha-artifacts/pytest_cache/pytorch/pytorch/96e092540d6b3c4076e3d2bc6f1f9013/trunk_win-vs2022-cpu-py3/d9dc6b56ec1558542094ab29e6208ca5450dc6d3/default/2.zip 2025-06-01T21:01:50.0115895Z to C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\d9dc6b56ec1558542094ab29e6208ca5450dc6d3\default\2.zip 2025-06-01T21:01:50.0117786Z Downloading s3://gha-artifacts/pytest_cache/pytorch/pytorch/96e092540d6b3c4076e3d2bc6f1f9013/trunk_win-vs2022-cpu-py3/daff26306202e843cb15d402b17ed9f320139504/default/1.zip 2025-06-01T21:01:50.4603286Z to C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\daff26306202e843cb15d402b17ed9f320139504\default\1.zip 2025-06-01T21:01:50.4605138Z Downloading s3://gha-artifacts/pytest_cache/pytorch/pytorch/96e092540d6b3c4076e3d2bc6f1f9013/trunk_win-vs2022-cpu-py3/dd766e1dc51d8dc69a2e27e11575814be3629eae/default/2.zip 2025-06-01T21:01:50.4606902Z to C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\dd766e1dc51d8dc69a2e27e11575814be3629eae\default\2.zip 2025-06-01T21:01:50.4608648Z Downloading s3://gha-artifacts/pytest_cache/pytorch/pytorch/96e092540d6b3c4076e3d2bc6f1f9013/trunk_win-vs2022-cpu-py3/dfb91a627fc1d6f9f698a2d2839fd09885323435/default/1.zip 2025-06-01T21:01:50.4610511Z to C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\dfb91a627fc1d6f9f698a2d2839fd09885323435\default\1.zip 2025-06-01T21:01:50.4612262Z Downloading s3://gha-artifacts/pytest_cache/pytorch/pytorch/96e092540d6b3c4076e3d2bc6f1f9013/trunk_win-vs2022-cpu-py3/f3daedb263dcd7441f6242e5d428be4192205331/default/1.zip 2025-06-01T21:01:50.4613992Z to C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\f3daedb263dcd7441f6242e5d428be4192205331\default\1.zip 2025-06-01T21:01:50.4615748Z Downloading s3://gha-artifacts/pytest_cache/pytorch/pytorch/96e092540d6b3c4076e3d2bc6f1f9013/trunk_win-vs2022-cpu-py3/f6761f2968ca4e8ca1c6fbe4771c804a8bdcafb6/default/1.zip 2025-06-01T21:01:50.4617513Z to C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\f6761f2968ca4e8ca1c6fbe4771c804a8bdcafb6\default\1.zip 2025-06-01T21:01:50.4619357Z Downloading s3://gha-artifacts/pytest_cache/pytorch/pytorch/96e092540d6b3c4076e3d2bc6f1f9013/trunk_win-vs2022-cpu-py3/ffd49d538e8fcd274555df018ea2ba2ad8523df8/default/1.zip 2025-06-01T21:01:50.4621097Z to C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\ffd49d538e8fcd274555df018ea2ba2ad8523df8\default\1.zip 2025-06-01T21:01:50.4623245Z Unzipping C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\062387fb53651a7720a94a6fa65463821da9ce94\default\1.zip 2025-06-01T21:01:50.4624740Z to C:\actions-runner\_work\_temp\unzipped-caches\6c20477a6179b33d4c3c91071c3915d0\.pytest_cache 2025-06-01T21:01:50.4626178Z Merging cache from C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\062387fb53651a7720a94a6fa65463821da9ce94\default\1.zip 2025-06-01T21:01:50.4628378Z Unzipping C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\3443627e078deb813ae37f7182d41a802bd05ac4\default\1.zip 2025-06-01T21:01:50.4629987Z to C:\actions-runner\_work\_temp\unzipped-caches\fae4f93588a3b8317e082ec8a84abd7c\.pytest_cache 2025-06-01T21:01:50.4631543Z Merging cache from C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\3443627e078deb813ae37f7182d41a802bd05ac4\default\1.zip 2025-06-01T21:01:50.4633727Z Unzipping C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\4015166e5d51bc39d5a81aa59ad49720ec2a23fe\default\1.zip 2025-06-01T21:01:50.4635132Z to C:\actions-runner\_work\_temp\unzipped-caches\40a3d44f7cd58683d930fc52f568d104\.pytest_cache 2025-06-01T21:01:50.4636658Z Merging cache from C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\4015166e5d51bc39d5a81aa59ad49720ec2a23fe\default\1.zip 2025-06-01T21:01:50.4638835Z Unzipping C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\4064062e1865f2180a618f329935e787f9aba069\default\2.zip 2025-06-01T21:01:50.4640244Z to C:\actions-runner\_work\_temp\unzipped-caches\9e8f18cd460024e5d2c93bfc99a1efcc\.pytest_cache 2025-06-01T21:01:50.4641716Z Merging cache from C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\4064062e1865f2180a618f329935e787f9aba069\default\2.zip 2025-06-01T21:01:50.4643941Z Unzipping C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\41663739085c57edc4a352c55ed6b23b8e9eb91d\default\1.zip 2025-06-01T21:01:50.4645348Z to C:\actions-runner\_work\_temp\unzipped-caches\414d34a42578af823cdd74a7af3a13e5\.pytest_cache 2025-06-01T21:01:50.4646794Z Merging cache from C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\41663739085c57edc4a352c55ed6b23b8e9eb91d\default\1.zip 2025-06-01T21:01:50.4649074Z Unzipping C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\43b18d098b4cd9e84c503d255f2f2ddc8474f661\default\1.zip 2025-06-01T21:01:50.4650580Z to C:\actions-runner\_work\_temp\unzipped-caches\fd9b052192358206073e2538b07c17f6\.pytest_cache 2025-06-01T21:01:50.4652020Z Merging cache from C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\43b18d098b4cd9e84c503d255f2f2ddc8474f661\default\1.zip 2025-06-01T21:01:50.4654290Z Unzipping C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\447b481c7913f179e11ade98a3d50fa1af290281\default\1.zip 2025-06-01T21:01:50.4655793Z to C:\actions-runner\_work\_temp\unzipped-caches\5046525c2bfea3af459bfa78924e35cf\.pytest_cache 2025-06-01T21:01:50.4657334Z Merging cache from C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\447b481c7913f179e11ade98a3d50fa1af290281\default\1.zip 2025-06-01T21:01:50.4659564Z Unzipping C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\451d652873c1e56bdff232d212c475b2c6ff4346\default\2.zip 2025-06-01T21:01:50.4661027Z to C:\actions-runner\_work\_temp\unzipped-caches\b1e26c966ed01f37dd46cd45a25cc251\.pytest_cache 2025-06-01T21:01:50.4662472Z Merging cache from C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\451d652873c1e56bdff232d212c475b2c6ff4346\default\2.zip 2025-06-01T21:01:50.8801593Z Unzipping C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\460888f908ea4b634ecc863a6da6b2132108bc79\default\2.zip 2025-06-01T21:01:50.8803215Z to C:\actions-runner\_work\_temp\unzipped-caches\ac2b61b0bf16229f28718e02db240d5e\.pytest_cache 2025-06-01T21:01:50.8804750Z Merging cache from C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\460888f908ea4b634ecc863a6da6b2132108bc79\default\2.zip 2025-06-01T21:01:50.8806969Z Unzipping C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\47df195065d62a649169565293b24595249ca3b1\default\1.zip 2025-06-01T21:01:50.8808395Z to C:\actions-runner\_work\_temp\unzipped-caches\50b1891c0e162d096dcb205bdb9e393f\.pytest_cache 2025-06-01T21:01:50.8809983Z Merging cache from C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\47df195065d62a649169565293b24595249ca3b1\default\1.zip 2025-06-01T21:01:50.8812231Z Unzipping C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\5683965f02c4091a864484917f74e3a42c9c56ae\default\3.zip 2025-06-01T21:01:50.8813636Z to C:\actions-runner\_work\_temp\unzipped-caches\0401a648a17a097781922a3344c53b35\.pytest_cache 2025-06-01T21:01:50.8815079Z Merging cache from C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\5683965f02c4091a864484917f74e3a42c9c56ae\default\3.zip 2025-06-01T21:01:50.8817346Z Unzipping C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\5976419c6939207834492a1f5fba4a62f2c91b0d\default\1.zip 2025-06-01T21:01:50.8818753Z to C:\actions-runner\_work\_temp\unzipped-caches\77e2e9ace68ce8295d7b62bea776ad37\.pytest_cache 2025-06-01T21:01:50.8820212Z Merging cache from C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\5976419c6939207834492a1f5fba4a62f2c91b0d\default\1.zip 2025-06-01T21:01:50.8823271Z Unzipping C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\5a8c9c3ab089bf8ee6794445b44282850b3213b9\default\2.zip 2025-06-01T21:01:50.8824706Z to C:\actions-runner\_work\_temp\unzipped-caches\743ce5acc8e010fdcc44d7281f235249\.pytest_cache 2025-06-01T21:01:50.8826164Z Merging cache from C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\5a8c9c3ab089bf8ee6794445b44282850b3213b9\default\2.zip 2025-06-01T21:01:50.8828448Z Unzipping C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\5dd746b4b58d2e4760f46837b3ecae0090904456\default\3.zip 2025-06-01T21:01:50.8829854Z to C:\actions-runner\_work\_temp\unzipped-caches\ff0c5e9619f5a43e6948d58e81dd37e0\.pytest_cache 2025-06-01T21:01:50.8831304Z Merging cache from C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\5dd746b4b58d2e4760f46837b3ecae0090904456\default\3.zip 2025-06-01T21:01:50.8833527Z Unzipping C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\639f459cb6bf5cb208786171bdaa9a7b1ae1fc17\default\1.zip 2025-06-01T21:01:50.8835130Z to C:\actions-runner\_work\_temp\unzipped-caches\e3fde01f0ca1a648cec060d16a284421\.pytest_cache 2025-06-01T21:01:50.8836811Z Merging cache from C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\639f459cb6bf5cb208786171bdaa9a7b1ae1fc17\default\1.zip 2025-06-01T21:01:50.8839274Z Unzipping C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\641e4bee67453199ca5144745ddab969d9934e9f\default\1.zip 2025-06-01T21:01:50.8840899Z to C:\actions-runner\_work\_temp\unzipped-caches\e7e35b5dd815cef2c0c4b2897799397f\.pytest_cache 2025-06-01T21:01:50.8842536Z Merging cache from C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\641e4bee67453199ca5144745ddab969d9934e9f\default\1.zip 2025-06-01T21:01:50.8845030Z Unzipping C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\68034198e5c25f10005d13c6a68cb7a4e3a76f1e\default\1.zip 2025-06-01T21:01:50.8846621Z to C:\actions-runner\_work\_temp\unzipped-caches\cc673721c3e27fd8329cac5a57beaf3f\.pytest_cache 2025-06-01T21:01:50.8848258Z Merging cache from C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\68034198e5c25f10005d13c6a68cb7a4e3a76f1e\default\1.zip 2025-06-01T21:01:50.8851050Z Unzipping C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\784c666cae00f85ecf675298ddb056bebaf32f55\default\1.zip 2025-06-01T21:01:50.8852686Z to C:\actions-runner\_work\_temp\unzipped-caches\74dbb6c1a200ec93211f04e20c618d12\.pytest_cache 2025-06-01T21:01:50.8854318Z Merging cache from C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\784c666cae00f85ecf675298ddb056bebaf32f55\default\1.zip 2025-06-01T21:01:50.8856558Z Unzipping C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\784c666cae00f85ecf675298ddb056bebaf32f55\default\2.zip 2025-06-01T21:01:50.8857965Z to C:\actions-runner\_work\_temp\unzipped-caches\279091ee23edbe7731457758be147fc4\.pytest_cache 2025-06-01T21:01:50.8859409Z Merging cache from C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\784c666cae00f85ecf675298ddb056bebaf32f55\default\2.zip 2025-06-01T21:01:50.8861758Z Unzipping C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\792736f9ac1461a3e281aa786fd0f2b29ba0b9d3\default\1.zip 2025-06-01T21:01:50.8863144Z to C:\actions-runner\_work\_temp\unzipped-caches\8f17f703c619c19976762b087f791744\.pytest_cache 2025-06-01T21:01:51.0407446Z Merging cache from C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\792736f9ac1461a3e281aa786fd0f2b29ba0b9d3\default\1.zip 2025-06-01T21:01:51.0409842Z Unzipping C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\7cb5c751c3f76129c95aec479647679fbba4e7ba\default\2.zip 2025-06-01T21:01:51.0411441Z to C:\actions-runner\_work\_temp\unzipped-caches\8a2c4851d5a4158f6212b9926ddefdf1\.pytest_cache 2025-06-01T21:01:51.0412876Z Merging cache from C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\7cb5c751c3f76129c95aec479647679fbba4e7ba\default\2.zip 2025-06-01T21:01:51.0415090Z Unzipping C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\853958f82ccd6fdcbed025a91df87b5fe6b0b6cb\default\1.zip 2025-06-01T21:01:51.0416504Z to C:\actions-runner\_work\_temp\unzipped-caches\7e80379b2066895a42e45368e69405d2\.pytest_cache 2025-06-01T21:01:51.0431342Z Merging cache from C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\853958f82ccd6fdcbed025a91df87b5fe6b0b6cb\default\1.zip 2025-06-01T21:01:51.0433765Z Unzipping C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\86a160353e4b37f6d0f0230a518ad216099be88b\default\1.zip 2025-06-01T21:01:51.0435403Z to C:\actions-runner\_work\_temp\unzipped-caches\893275613161e1c140cdd18ffed6ab9d\.pytest_cache 2025-06-01T21:01:51.0436977Z Merging cache from C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\86a160353e4b37f6d0f0230a518ad216099be88b\default\1.zip 2025-06-01T21:01:51.0439181Z Unzipping C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\88b56774bd908487c5071d976f8e71ccbeb3fd75\default\1.zip 2025-06-01T21:01:51.0440584Z to C:\actions-runner\_work\_temp\unzipped-caches\f6679428437ed6680abcddec8b0d71dc\.pytest_cache 2025-06-01T21:01:51.0442226Z Merging cache from C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\88b56774bd908487c5071d976f8e71ccbeb3fd75\default\1.zip 2025-06-01T21:01:51.0444410Z Unzipping C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\88b56774bd908487c5071d976f8e71ccbeb3fd75\default\3.zip 2025-06-01T21:01:51.0445814Z to C:\actions-runner\_work\_temp\unzipped-caches\aa1030fc356c0fe386d64fa4d8597673\.pytest_cache 2025-06-01T21:01:51.0447257Z Merging cache from C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\88b56774bd908487c5071d976f8e71ccbeb3fd75\default\3.zip 2025-06-01T21:01:51.0449448Z Unzipping C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\8904ba638726f8c9a5aff5977c4aa76c9d2edfa6\default\1.zip 2025-06-01T21:01:51.0450947Z to C:\actions-runner\_work\_temp\unzipped-caches\97b7f34934516255411f405e6f8626b3\.pytest_cache 2025-06-01T21:01:51.0452397Z Merging cache from C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\8904ba638726f8c9a5aff5977c4aa76c9d2edfa6\default\1.zip 2025-06-01T21:01:51.0454604Z Unzipping C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\8fe7ec6721c426f0bfa8428fe36104d8df0eac1c\default\1.zip 2025-06-01T21:01:51.0456025Z to C:\actions-runner\_work\_temp\unzipped-caches\35c7fed1e4e29d50c33487e97d193032\.pytest_cache 2025-06-01T21:01:51.0457484Z Merging cache from C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\8fe7ec6721c426f0bfa8428fe36104d8df0eac1c\default\1.zip 2025-06-01T21:01:51.0459677Z Unzipping C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\909ec495b86447597b960efd5017b7129a6039e6\default\1.zip 2025-06-01T21:01:51.0461178Z to C:\actions-runner\_work\_temp\unzipped-caches\180baa62e4caa1147fcfbc7e394f1ed1\.pytest_cache 2025-06-01T21:01:51.0462680Z Merging cache from C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\909ec495b86447597b960efd5017b7129a6039e6\default\1.zip 2025-06-01T21:01:51.0464890Z Unzipping C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\a28dcdba2c712b91b83ea8ba2c581b746e224f38\default\1.zip 2025-06-01T21:01:51.0466310Z to C:\actions-runner\_work\_temp\unzipped-caches\6637a5fa520a2b03ddbc8d5556ea1d41\.pytest_cache 2025-06-01T21:01:51.0467750Z Merging cache from C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\a28dcdba2c712b91b83ea8ba2c581b746e224f38\default\1.zip 2025-06-01T21:01:51.0469962Z Unzipping C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\ac9fcd63466776871389bf0e82f620b3f9532e50\default\1.zip 2025-06-01T21:01:51.0471360Z to C:\actions-runner\_work\_temp\unzipped-caches\50774f669a9ca11cb6c0accf1c21c39d\.pytest_cache 2025-06-01T21:01:51.0472795Z Merging cache from C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\ac9fcd63466776871389bf0e82f620b3f9532e50\default\1.zip 2025-06-01T21:01:51.0475000Z Unzipping C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\b4fb801b2d5cecd35b8f653814b71e2328305106\default\1.zip 2025-06-01T21:01:51.0476420Z to C:\actions-runner\_work\_temp\unzipped-caches\10f68e0e315fa58b82bf5559f7cf56ee\.pytest_cache 2025-06-01T21:01:51.0477868Z Merging cache from C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\b4fb801b2d5cecd35b8f653814b71e2328305106\default\1.zip 2025-06-01T21:01:51.0480063Z Unzipping C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\c8bac51ec1898fa70c0e88422ae8e9d354fb0ba1\default\1.zip 2025-06-01T21:01:51.0481484Z to C:\actions-runner\_work\_temp\unzipped-caches\2a18156255e1990efe26a7efbf8f83f1\.pytest_cache 2025-06-01T21:01:51.0482930Z Merging cache from C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\c8bac51ec1898fa70c0e88422ae8e9d354fb0ba1\default\1.zip 2025-06-01T21:01:51.0485121Z Unzipping C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\d9dc6b56ec1558542094ab29e6208ca5450dc6d3\default\2.zip 2025-06-01T21:01:51.0486531Z to C:\actions-runner\_work\_temp\unzipped-caches\eaefd33f52ace6198cf4c330fae4f00b\.pytest_cache 2025-06-01T21:01:51.0487953Z Merging cache from C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\d9dc6b56ec1558542094ab29e6208ca5450dc6d3\default\2.zip 2025-06-01T21:01:51.0491053Z Unzipping C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\daff26306202e843cb15d402b17ed9f320139504\default\1.zip 2025-06-01T21:01:51.0492484Z to C:\actions-runner\_work\_temp\unzipped-caches\8518d9fdacde9b3e3073efc3f98c97c2\.pytest_cache 2025-06-01T21:01:51.0493939Z Merging cache from C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\daff26306202e843cb15d402b17ed9f320139504\default\1.zip 2025-06-01T21:01:51.0496126Z Unzipping C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\dd766e1dc51d8dc69a2e27e11575814be3629eae\default\2.zip 2025-06-01T21:01:51.0497711Z to C:\actions-runner\_work\_temp\unzipped-caches\fa85dccc27996284e42968a7cbd9d536\.pytest_cache 2025-06-01T21:01:51.0499159Z Merging cache from C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\dd766e1dc51d8dc69a2e27e11575814be3629eae\default\2.zip 2025-06-01T21:01:51.0501336Z Unzipping C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\dfb91a627fc1d6f9f698a2d2839fd09885323435\default\1.zip 2025-06-01T21:01:51.0502799Z to C:\actions-runner\_work\_temp\unzipped-caches\db9dc151d55137444a6b267c8ce66f9b\.pytest_cache 2025-06-01T21:01:51.0504299Z Merging cache from C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\dfb91a627fc1d6f9f698a2d2839fd09885323435\default\1.zip 2025-06-01T21:01:51.0506491Z Unzipping C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\f3daedb263dcd7441f6242e5d428be4192205331\default\1.zip 2025-06-01T21:01:51.0507905Z to C:\actions-runner\_work\_temp\unzipped-caches\994d9ae3ffff147fd5b8857a2a18a694\.pytest_cache 2025-06-01T21:01:51.0509460Z Merging cache from C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\f3daedb263dcd7441f6242e5d428be4192205331\default\1.zip 2025-06-01T21:01:51.0511641Z Unzipping C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\f6761f2968ca4e8ca1c6fbe4771c804a8bdcafb6\default\1.zip 2025-06-01T21:01:51.0513031Z to C:\actions-runner\_work\_temp\unzipped-caches\27820b682e22e5f075ae278542c2ec99\.pytest_cache 2025-06-01T21:01:51.0514518Z Merging cache from C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\f6761f2968ca4e8ca1c6fbe4771c804a8bdcafb6\default\1.zip 2025-06-01T21:01:51.0516931Z Unzipping C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\ffd49d538e8fcd274555df018ea2ba2ad8523df8\default\1.zip 2025-06-01T21:01:51.0518339Z to C:\actions-runner\_work\_temp\unzipped-caches\dc90dfe03d3cfbdc04c1501e9137e426\.pytest_cache 2025-06-01T21:01:51.0519797Z Merging cache from C:\actions-runner\_work\_temp\cache-zip-downloads\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\pytest_cache\pytorch\pytorch\96e092540d6b3c4076e3d2bc6f1f9013\trunk_win-vs2022-cpu-py3\ffd49d538e8fcd274555df018ea2ba2ad8523df8\default\1.zip 2025-06-01T21:01:51.1051197Z ##[group]Run .ci/pytorch/win-build.sh 2025-06-01T21:01:51.1051560Z .ci/pytorch/win-build.sh 2025-06-01T21:01:51.1069896Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-06-01T21:01:51.1070360Z env: 2025-06-01T21:01:51.1070540Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:01:51.1070917Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:01:51.1071413Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:01:51.1071889Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:01:51.1072275Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:01:51.1072623Z PYTORCH_FINAL_PACKAGE_DIR: /c/15379340894/build-results/ 2025-06-01T21:01:51.1072945Z BRANCH: main 2025-06-01T21:01:51.1073151Z BUILD_ENVIRONMENT: win-vs2022-cpu-py3 2025-06-01T21:01:51.1073425Z BUILD_WHEEL: 1 2025-06-01T21:01:51.1073599Z MAX_JOBS: 8 2025-06-01T21:01:51.1073818Z CUDA_VERSION: cpu 2025-06-01T21:01:51.1074009Z PYTHON_VERSION: 3.9 2025-06-01T21:01:51.1074249Z SCCACHE_BUCKET: ossci-compiler-cache 2025-06-01T21:01:51.1074522Z SCCACHE_S3_KEY_PREFIX: trunk 2025-06-01T21:01:51.1074768Z SCCACHE_REGION: us-east-1 2025-06-01T21:01:51.1074986Z VC_PRODUCT: BuildTools 2025-06-01T21:01:51.1075194Z VC_VERSION: 2025-06-01T21:01:51.1075362Z VC_YEAR: 2019 2025-06-01T21:01:51.1075672Z ALPINE_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2025-06-01T21:01:51.1076059Z AWS_DEFAULT_REGION: us-east-1 2025-06-01T21:01:51.1076289Z PR_NUMBER: 2025-06-01T21:01:51.1076500Z SHA1: f7c09f864a6c6467a7454f1431340d3338473fd1 2025-06-01T21:01:51.1076769Z DEBUG: 0 2025-06-01T21:01:51.1076946Z TORCH_CUDA_ARCH_LIST: 8.6 2025-06-01T21:01:51.1077156Z USE_CUDA: 0 2025-06-01T21:01:51.1077334Z USE_XPU: 0 2025-06-01T21:01:51.1077500Z XPU_VERSION: 2025-06-01T21:01:51.1077690Z OUR_GITHUB_JOB_ID: 43268061395 2025-06-01T21:01:51.1077926Z ##[endgroup] 2025-06-01T21:01:51.1750658Z ++ [[ win-vs2022-cpu-py3 == *rocm* ]] 2025-06-01T21:01:51.1750977Z ++ BUILD_TEST_LIBTORCH=0 2025-06-01T21:01:51.1751385Z + source /c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/common-build.sh 2025-06-01T21:01:51.1753709Z ++ [[ win-vs2022-cpu-py3 != *win-* ]] 2025-06-01T21:01:51.1754099Z + export TMP_DIR=/c/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-06-01T21:01:51.1754609Z + TMP_DIR=/c/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-06-01T21:01:51.1808315Z ++ cygpath -w /c/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-06-01T21:01:51.1938390Z + TMP_DIR_WIN='C:\actions-runner\_work\pytorch\pytorch\build\win_tmp' 2025-06-01T21:01:51.1938780Z + export TMP_DIR_WIN 2025-06-01T21:01:51.1939094Z + export PYTORCH_FINAL_PACKAGE_DIR=/c/15379340894/build-results/ 2025-06-01T21:01:51.1939513Z + PYTORCH_FINAL_PACKAGE_DIR=/c/15379340894/build-results/ 2025-06-01T21:01:51.1939865Z + [[ -n /c/15379340894/build-results/ ]] 2025-06-01T21:01:51.1940153Z + mkdir -p /c/15379340894/build-results/ 2025-06-01T21:01:51.2068541Z + export SCRIPT_HELPERS_DIR=/c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers 2025-06-01T21:01:51.2069443Z + SCRIPT_HELPERS_DIR=/c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers 2025-06-01T21:01:51.2069891Z + set +ex 2025-06-01T21:01:52.2599202Z + /c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers/build_pytorch.bat 2025-06-01T21:01:52.2734929Z 2025-06-01T21:01:52.2735606Z C:\actions-runner\_work\pytorch\pytorch>if "0" == "1" (set BUILD_TYPE=debug ) ELSE (set BUILD_TYPE=release ) 2025-06-01T21:01:52.2738781Z 2025-06-01T21:01:52.2742741Z 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-06-01T21:01:52.2745195Z 2025-06-01T21:01:52.2745699Z C:\actions-runner\_work\pytorch\pytorch>set INSTALLER_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers 2025-06-01T21:01:52.2746308Z 2025-06-01T21:01:52.2746828Z C:\actions-runner\_work\pytorch\pytorch>call C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers\install_magma.bat 2025-06-01T21:01:52.2755928Z 2025-06-01T21:01:52.2756360Z C:\actions-runner\_work\pytorch\pytorch>if "cpu" == "cpu" ( 2025-06-01T21:01:52.2756778Z echo skip magma installation for cpu builds 2025-06-01T21:01:52.2757097Z exit /b 0 2025-06-01T21:01:52.2757268Z ) 2025-06-01T21:01:52.2757453Z skip magma installation for cpu builds 2025-06-01T21:01:52.2760242Z 2025-06-01T21:01:52.2760561Z C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 goto fail 2025-06-01T21:01:52.2761408Z 2025-06-01T21:01:52.2761663Z C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 goto fail 2025-06-01T21:01:52.2762847Z 2025-06-01T21:01:52.2763421Z C:\actions-runner\_work\pytorch\pytorch>call C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers\install_sccache.bat 2025-06-01T21:01:52.2772508Z 2025-06-01T21:01:52.2772988Z C:\actions-runner\_work\pytorch\pytorch>mkdir C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin 2025-06-01T21:01:52.2779370Z 2025-06-01T21:01:52.2779711Z C:\actions-runner\_work\pytorch\pytorch>if "" == "" ( 2025-06-01T21:01:52.2780229Z IF EXIST C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin\sccache.exe ( 2025-06-01T21:01:52.2780702Z taskkill /im sccache.exe /f /t || ver 1>nul 2025-06-01T21:01:52.2781179Z del C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin\sccache.exe || ver 1>nul 2025-06-01T21:01:52.2781610Z ) 2025-06-01T21:01:52.2782818Z if "win-vs2022-cpu-py3" == "" (curl --retry 3 --retry-all-errors -k https://s3.amazonaws.com/ossci-windows/sccache-v0.7.4.exe --output C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin\sccache.exe ) else (aws s3 cp s3://ossci-windows/sccache-v0.7.4.exe C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin\sccache.exe ) 2025-06-01T21:01:52.2784055Z ) 2025-06-01T21:01:53.5192279Z Completed 256.0 KiB/18.8 MiB (786.0 KiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5207137Z Completed 512.0 KiB/18.8 MiB (1.5 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5220985Z Completed 768.0 KiB/18.8 MiB (2.3 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5223794Z Completed 1.0 MiB/18.8 MiB (3.0 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5236246Z Completed 1.2 MiB/18.8 MiB (3.8 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5244966Z Completed 1.5 MiB/18.8 MiB (4.6 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5257255Z Completed 1.8 MiB/18.8 MiB (5.3 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5265865Z Completed 2.0 MiB/18.8 MiB (6.1 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5272234Z Completed 2.2 MiB/18.8 MiB (6.8 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5278112Z Completed 2.5 MiB/18.8 MiB (7.6 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5286123Z Completed 2.8 MiB/18.8 MiB (8.4 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5290780Z Completed 3.0 MiB/18.8 MiB (9.1 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5300381Z Completed 3.2 MiB/18.8 MiB (9.9 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5307215Z Completed 3.5 MiB/18.8 MiB (10.6 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5324121Z Completed 3.8 MiB/18.8 MiB (11.4 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5326095Z Completed 4.0 MiB/18.8 MiB (11.6 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5334265Z Completed 4.2 MiB/18.8 MiB (12.3 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5341900Z Completed 4.5 MiB/18.8 MiB (13.0 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5344195Z Completed 4.6 MiB/18.8 MiB (13.2 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5354039Z Completed 4.8 MiB/18.8 MiB (13.9 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5362886Z Completed 5.1 MiB/18.8 MiB (14.6 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5368880Z Completed 5.3 MiB/18.8 MiB (15.2 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5383473Z Completed 5.6 MiB/18.8 MiB (15.9 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5393807Z Completed 5.8 MiB/18.8 MiB (16.6 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5397788Z Completed 6.1 MiB/18.8 MiB (17.3 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5405493Z Completed 6.3 MiB/18.8 MiB (17.9 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5411498Z Completed 6.6 MiB/18.8 MiB (18.6 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5418139Z Completed 6.8 MiB/18.8 MiB (19.3 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5422589Z Completed 7.1 MiB/18.8 MiB (19.9 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5431332Z Completed 7.3 MiB/18.8 MiB (20.6 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5440475Z Completed 7.6 MiB/18.8 MiB (21.3 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5445435Z Completed 7.8 MiB/18.8 MiB (21.9 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5449331Z Completed 8.1 MiB/18.8 MiB (22.6 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5459206Z Completed 8.3 MiB/18.8 MiB (23.3 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5469698Z Completed 8.6 MiB/18.8 MiB (23.9 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5472697Z Completed 8.8 MiB/18.8 MiB (24.5 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5489376Z Completed 9.1 MiB/18.8 MiB (25.2 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5495472Z Completed 9.3 MiB/18.8 MiB (25.8 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5508855Z Completed 9.6 MiB/18.8 MiB (26.4 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5516352Z Completed 9.8 MiB/18.8 MiB (27.0 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5536029Z Completed 10.1 MiB/18.8 MiB (27.7 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5550464Z Completed 10.3 MiB/18.8 MiB (28.2 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5555952Z Completed 10.6 MiB/18.8 MiB (28.7 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5567079Z Completed 10.8 MiB/18.8 MiB (29.4 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5574784Z Completed 11.1 MiB/18.8 MiB (30.0 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5580897Z Completed 11.3 MiB/18.8 MiB (30.6 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5599471Z Completed 11.6 MiB/18.8 MiB (31.2 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5604117Z Completed 11.8 MiB/18.8 MiB (31.7 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5613129Z Completed 12.1 MiB/18.8 MiB (32.4 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5626575Z Completed 12.3 MiB/18.8 MiB (33.1 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5629241Z Completed 12.6 MiB/18.8 MiB (33.5 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5637632Z Completed 12.8 MiB/18.8 MiB (34.1 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5648839Z Completed 13.1 MiB/18.8 MiB (34.8 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5658442Z Completed 13.3 MiB/18.8 MiB (35.5 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5663324Z Completed 13.6 MiB/18.8 MiB (36.1 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5674809Z Completed 13.8 MiB/18.8 MiB (36.8 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5685577Z Completed 14.1 MiB/18.8 MiB (37.1 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5688499Z Completed 14.3 MiB/18.8 MiB (37.7 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5698970Z Completed 14.6 MiB/18.8 MiB (38.4 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5704495Z Completed 14.8 MiB/18.8 MiB (39.1 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5710793Z Completed 15.1 MiB/18.8 MiB (39.7 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5720044Z Completed 15.3 MiB/18.8 MiB (40.4 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5727701Z Completed 15.6 MiB/18.8 MiB (41.0 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5733045Z Completed 15.8 MiB/18.8 MiB (41.7 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5739708Z Completed 16.1 MiB/18.8 MiB (42.3 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5748164Z Completed 16.3 MiB/18.8 MiB (43.0 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5757300Z Completed 16.6 MiB/18.8 MiB (43.7 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5762508Z Completed 16.8 MiB/18.8 MiB (44.3 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5768990Z Completed 17.1 MiB/18.8 MiB (45.0 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5777976Z Completed 17.3 MiB/18.8 MiB (45.6 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5786274Z Completed 17.6 MiB/18.8 MiB (46.3 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5792467Z Completed 17.8 MiB/18.8 MiB (47.0 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5799214Z Completed 18.1 MiB/18.8 MiB (47.6 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5801877Z Completed 18.3 MiB/18.8 MiB (48.3 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5807198Z Completed 18.6 MiB/18.8 MiB (48.9 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5816612Z Completed 18.8 MiB/18.8 MiB (49.6 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.5817149Z download: s3://ossci-windows/sccache-v0.7.4.exe to build\win_tmp\bin\sccache.exe 2025-06-01T21:01:53.6705780Z 2025-06-01T21:01:53.6706503Z C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 goto fail 2025-06-01T21:01:53.6706842Z 2025-06-01T21:01:53.6707137Z C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 goto fail 2025-06-01T21:01:53.6709715Z 2025-06-01T21:01:53.6710263Z C:\actions-runner\_work\pytorch\pytorch>if "0" == "1" ( 2025-06-01T21:01:53.6710634Z set CUDA_VERSION=xpu 2025-06-01T21:01:53.6711137Z call C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\..\windows\internal\xpu_install.bat 2025-06-01T21:01:53.6711687Z if errorlevel 1 exit /b 1 2025-06-01T21:01:53.6711901Z ) 2025-06-01T21:01:53.6712016Z 2025-06-01T21:01:53.6712559Z C:\actions-runner\_work\pytorch\pytorch>call C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers\activate_miniconda3.bat 2025-06-01T21:01:53.6723011Z 2025-06-01T21:01:53.6723741Z C:\actions-runner\_work\pytorch\pytorch>if "win-vs2022-cpu-py3" == "" (set CONDA_PARENT_DIR=C:\actions-runner\_work\pytorch\pytorch ) else (set CONDA_PARENT_DIR=C:\Jenkins ) 2025-06-01T21:01:53.6726662Z 2025-06-01T21:01:53.6727049Z C:\actions-runner\_work\pytorch\pytorch>if not exist C:\Jenkins\Miniconda3 (set INSTALL_FRESH_CONDA=1 ) 2025-06-01T21:01:53.6729399Z 2025-06-01T21:01:53.6729787Z C:\actions-runner\_work\pytorch\pytorch>if "" == "1" ( 2025-06-01T21:01:53.6730837Z 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-06-01T21:01:53.6731819Z if errorlevel 1 exit /b 2025-06-01T21:01:53.6732070Z if not errorlevel 0 exit /b 2025-06-01T21:01:53.6732829Z 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-06-01T21:01:53.6733605Z if errorlevel 1 exit /b 2025-06-01T21:01:53.6733828Z if not errorlevel 0 exit /b 2025-06-01T21:01:53.6734259Z ) 2025-06-01T21:01:53.6734354Z 2025-06-01T21:01:53.6734694Z C:\actions-runner\_work\pytorch\pytorch>call C:\Jenkins\Miniconda3\Scripts\activate.bat C:\Jenkins\Miniconda3 2025-06-01T21:01:54.9867010Z Chocolatey v2.4.2 2025-06-01T21:01:55.1297454Z Upgrading the following packages: 2025-06-01T21:01:55.1302243Z cmake 2025-06-01T21:01:55.1305628Z By upgrading, you accept licenses for the packages. 2025-06-01T21:01:55.4575654Z cmake is not installed. Installing... 2025-06-01T21:01:56.1271826Z Downloading package from source 'https://community.chocolatey.org/api/v2/' 2025-06-01T21:01:56.8706112Z 2025-06-01T21:01:56.8706553Z cmake.install v3.27.9 [Approved] 2025-06-01T21:01:56.8897245Z cmake.install package files upgrade completed. Performing other installation steps. 2025-06-01T21:01:57.5150893Z Installing 64-bit cmake.install... 2025-06-01T21:02:10.1249169Z cmake.install has been installed. 2025-06-01T21:02:10.2096201Z cmake.install may be able to be automatically uninstalled. 2025-06-01T21:02:10.2142915Z Environment Vars (like PATH) have changed. Close/reopen your shell to 2025-06-01T21:02:10.2143419Z see the changes (or in powershell/cmd.exe just type `refreshenv`). 2025-06-01T21:02:10.4252462Z The upgrade of cmake.install was successful. 2025-06-01T21:02:10.4255707Z Deployed to 'C:\Program Files\CMake\' 2025-06-01T21:02:10.4289715Z Downloading package from source 'https://community.chocolatey.org/api/v2/' 2025-06-01T21:02:10.4885014Z 2025-06-01T21:02:10.4886343Z cmake v3.27.9 [Approved] 2025-06-01T21:02:10.4899268Z cmake package files upgrade completed. Performing other installation steps. 2025-06-01T21:02:10.5979098Z The upgrade of cmake was successful. 2025-06-01T21:02:10.5981996Z Deployed to 'C:\ProgramData\chocolatey\lib\cmake' 2025-06-01T21:02:10.6061869Z 2025-06-01T21:02:10.6061998Z Chocolatey upgraded 2/2 packages. 2025-06-01T21:02:10.6062435Z See the log for details (C:\ProgramData\chocolatey\logs\chocolatey.log). 2025-06-01T21:02:11.3845679Z Collecting mkl-include==2021.4.0 2025-06-01T21:02:11.5705016Z Downloading mkl_include-2021.4.0-py2.py3-none-win_amd64.whl.metadata (1.3 kB) 2025-06-01T21:02:11.5966701Z Collecting mkl-devel==2021.4.0 2025-06-01T21:02:11.6026370Z Downloading mkl_devel-2021.4.0-py2.py3-none-win_amd64.whl.metadata (1.4 kB) 2025-06-01T21:02:11.6311757Z Collecting mkl==2021.4.0 (from mkl-devel==2021.4.0) 2025-06-01T21:02:11.6366846Z Downloading mkl-2021.4.0-py2.py3-none-win_amd64.whl.metadata (1.4 kB) 2025-06-01T21:02:11.6797175Z Collecting intel-openmp==2021.* (from mkl==2021.4.0->mkl-devel==2021.4.0) 2025-06-01T21:02:11.6850292Z Downloading intel_openmp-2021.4.0-py2.py3-none-win_amd64.whl.metadata (1.2 kB) 2025-06-01T21:02:11.7094147Z Collecting tbb==2021.* (from mkl==2021.4.0->mkl-devel==2021.4.0) 2025-06-01T21:02:11.7147561Z Downloading tbb-2021.13.1-py3-none-win_amd64.whl.metadata (1.1 kB) 2025-06-01T21:02:11.7283726Z Downloading mkl_include-2021.4.0-py2.py3-none-win_amd64.whl (1.2 MB) 2025-06-01T21:02:11.8312893Z ---------------------------------------- 1.2/1.2 MB 10.8 MB/s eta 0:00:00 2025-06-01T21:02:11.8384692Z Downloading mkl_devel-2021.4.0-py2.py3-none-win_amd64.whl (9.1 MB) 2025-06-01T21:02:11.9174750Z ---------------------------------------- 9.1/9.1 MB 117.0 MB/s eta 0:00:00 2025-06-01T21:02:11.9235876Z Downloading mkl-2021.4.0-py2.py3-none-win_amd64.whl (228.5 MB) 2025-06-01T21:02:15.0379504Z ---------------------------------------- 228.5/228.5 MB 5.2 MB/s eta 0:00:00 2025-06-01T21:02:15.0439034Z Downloading intel_openmp-2021.4.0-py2.py3-none-win_amd64.whl (3.5 MB) 2025-06-01T21:02:15.0762798Z ---------------------------------------- 3.5/3.5 MB 113.1 MB/s eta 0:00:00 2025-06-01T21:02:15.0828056Z Downloading tbb-2021.13.1-py3-none-win_amd64.whl (286 kB) 2025-06-01T21:02:15.0928884Z ---------------------------------------- 286.9/286.9 kB ? eta 0:00:00 2025-06-01T21:02:16.5147775Z Installing collected packages: tbb, mkl-include, intel-openmp, mkl, mkl-devel 2025-06-01T21:02:21.6337458Z Successfully installed intel-openmp-2021.4.0 mkl-2021.4.0 mkl-devel-2021.4.0 mkl-include-2021.4.0 tbb-2021.13.1 2025-06-01T21:02:22.0342891Z ********************************************************************** 2025-06-01T21:02:22.0343372Z ** Visual Studio 2019 Developer Command Prompt v16.11.44 2025-06-01T21:02:22.0343936Z ** Copyright (c) 2021 Microsoft Corporation 2025-06-01T21:02:22.0344716Z ********************************************************************** 2025-06-01T21:02:22.4822619Z [vcvarsall.bat] Environment initialized for: 'x64' 2025-06-01T21:02:22.4858762Z 2025-06-01T21:02:22.4859205Z (base) C:\actions-runner\_work\pytorch\pytorch>popd 2025-06-01T21:02:22.4863699Z 2025-06-01T21:02:22.4864345Z (base) C:\actions-runner\_work\pytorch\pytorch>if not "0" == "1" goto cuda_build_end 2025-06-01T21:02:22.4865135Z 2025-06-01T21:02:22.4865390Z (base) C:\actions-runner\_work\pytorch\pytorch>set DISTUTILS_USE_SDK=1 2025-06-01T21:02:22.4867669Z 2025-06-01T21:02:22.4877956Z (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 (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\bin\HostX64\x64;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\IDE\VC\VCPackages;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\IDE\CommonExtensions\Microsoft\TestWindow;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\IDE\CommonExtensions\Microsoft\TeamFoundation\Team Explorer;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild\Current\bin\Roslyn;C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\Tools\devinit;C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\x64;C:\Program Files (x86)\Windows Kits\10\bin\x64;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\\MSBuild\Current\Bin;C:\Windows\Microsoft.NET\Framework64\v4.0.30319;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\Tools\;C:\Jenkins\Miniconda3;C:\Jenkins\Miniconda3\Library\mingw-w64\bin;C:\Jenkins\Miniconda3\Library\usr\bin;C:\Jenkins\Miniconda3\Library\bin;C:\Jenkins\Miniconda3\Scripts;C:\Jenkins\Miniconda3\bin;C:\Jenkins\Miniconda3\condabin;C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\Amazon\cfn-bootstrap;C:\ProgramData\chocolatey\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps 2025-06-01T21:02:22.4886740Z 2025-06-01T21:02:22.4887017Z (base) C:\actions-runner\_work\pytorch\pytorch>if "8.6" == "" set TORCH_CUDA_ARCH_LIST=8.6 2025-06-01T21:02:22.4887602Z 2025-06-01T21:02:22.4887806Z (base) C:\actions-runner\_work\pytorch\pytorch>set SCCACHE_IDLE_TIMEOUT=0 2025-06-01T21:02:22.4888107Z 2025-06-01T21:02:22.4888528Z (base) C:\actions-runner\_work\pytorch\pytorch>set SCCACHE_IGNORE_SERVER_IO_ERROR=1 2025-06-01T21:02:22.4889361Z 2025-06-01T21:02:22.4889557Z (base) C:\actions-runner\_work\pytorch\pytorch>sccache --stop-server 2025-06-01T21:02:22.5012487Z Stopping sccache server... 2025-06-01T21:02:23.5055801Z sccache: error: couldn't connect to server 2025-06-01T21:02:23.5058162Z sccache: caused by: No connection could be made because the target machine actively refused it. (os error 10061) 2025-06-01T21:02:23.5081372Z 2025-06-01T21:02:23.5081759Z (base) C:\actions-runner\_work\pytorch\pytorch>sccache --start-server 2025-06-01T21:02:23.5172931Z sccache: Starting the server... 2025-06-01T21:02:23.7516704Z 2025-06-01T21:02:23.7517221Z (base) C:\actions-runner\_work\pytorch\pytorch>sccache --zero-stats 2025-06-01T21:02:23.7634261Z Compile requests 0 2025-06-01T21:02:23.7634603Z Compile requests executed 0 2025-06-01T21:02:23.7634876Z Cache hits 0 2025-06-01T21:02:23.7635126Z Cache misses 0 2025-06-01T21:02:23.7635392Z Cache timeouts 0 2025-06-01T21:02:23.7635673Z Cache read errors 0 2025-06-01T21:02:23.7635926Z Forced recaches 0 2025-06-01T21:02:23.7636189Z Cache write errors 0 2025-06-01T21:02:23.7636481Z Compilation failures 0 2025-06-01T21:02:23.7636754Z Cache errors 0 2025-06-01T21:02:23.7637057Z Non-cacheable compilations 0 2025-06-01T21:02:23.7637339Z Non-cacheable calls 0 2025-06-01T21:02:23.7637633Z Non-compilation calls 0 2025-06-01T21:02:23.7637912Z Unsupported compiler calls 0 2025-06-01T21:02:23.7638194Z Average cache write 0.000 s 2025-06-01T21:02:23.7638489Z Average compiler 0.000 s 2025-06-01T21:02:23.7638781Z Average cache read hit 0.000 s 2025-06-01T21:02:23.7639057Z Failed distributed compilations 0 2025-06-01T21:02:23.7639434Z Cache location s3, name: ossci-compiler-cache, prefix: /trunk/ 2025-06-01T21:02:23.7639811Z Version (client) 0.7.4 2025-06-01T21:02:23.7653874Z 2025-06-01T21:02:23.7654551Z (base) C:\actions-runner\_work\pytorch\pytorch>set CMAKE_C_COMPILER_LAUNCHER=sccache 2025-06-01T21:02:23.7656474Z 2025-06-01T21:02:23.7656804Z (base) C:\actions-runner\_work\pytorch\pytorch>set CMAKE_CXX_COMPILER_LAUNCHER=sccache 2025-06-01T21:02:23.7659188Z 2025-06-01T21:02:23.7659459Z (base) C:\actions-runner\_work\pytorch\pytorch>set CMAKE_GENERATOR=Ninja 2025-06-01T21:02:23.7663233Z 2025-06-01T21:02:23.7663543Z (base) C:\actions-runner\_work\pytorch\pytorch>if "0" == "1" ( 2025-06-01T21:02:23.7663886Z 2025-06-01T21:02:23.7664039Z 2025-06-01T21:02:23.7664187Z 2025-06-01T21:02:23.7664929Z 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-06-01T21:02:23.7665798Z if errorlevel 1 goto fail 2025-06-01T21:02:23.7666076Z if not errorlevel 0 goto fail 2025-06-01T21:02:23.7667209Z echo @"C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin\randomtemp.exe" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin\sccache.exe" "C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.8\bin\nvcc.exe" %* 1>"C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/bin/nvcc.bat" 2025-06-01T21:02:23.7668500Z cat C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/bin/nvcc.bat 2025-06-01T21:02:23.7669110Z set CUDA_NVCC_EXECUTABLE=C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/bin/nvcc.bat 2025-06-01T21:02:23.7669940Z for /F "usebackq delims=" %n in (`cygpath -m "C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.8\bin\nvcc.exe"`) do set CMAKE_CUDA_COMPILER=%n 2025-06-01T21:02:23.7671335Z 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-06-01T21:02:23.7672163Z ) 2025-06-01T21:02:23.7672317Z 2025-06-01T21:02:23.7672440Z (base) C:\actions-runner\_work\pytorch\pytorch>set 2025-06-01T21:02:23.7672859Z ACTIONS_RUNNER_HOOK_JOB_COMPLETED=C:\actions-runner\jobcompleted.ps1 2025-06-01T21:02:23.7673245Z ALLUSERSPROFILE=C:\ProgramData 2025-06-01T21:02:23.7673606Z ALPINE_IMAGE=308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2025-06-01T21:02:23.7674022Z APPDATA=C:\Users\runneruser\AppData\Roaming 2025-06-01T21:02:23.7674307Z AWS_DEFAULT_REGION=us-east-1 2025-06-01T21:02:23.7674679Z AWS_EXECUTION_ENV=EC2 2025-06-01T21:02:23.7674883Z BRANCH=main 2025-06-01T21:02:23.7675089Z BUILD_ENVIRONMENT=win-vs2022-cpu-py3 2025-06-01T21:02:23.7675348Z BUILD_TYPE=release 2025-06-01T21:02:23.7675542Z BUILD_WHEEL=1 2025-06-01T21:02:23.7675707Z CI=true 2025-06-01T21:02:23.7675886Z CMAKE_CXX_COMPILER_LAUNCHER=sccache 2025-06-01T21:02:23.7676145Z CMAKE_C_COMPILER_LAUNCHER=sccache 2025-06-01T21:02:23.7676396Z CMAKE_GENERATOR=Ninja 2025-06-01T21:02:23.7676611Z CommandPromptType=Native 2025-06-01T21:02:23.7676878Z COMMONPROGRAMFILES=C:\Program Files\Common Files 2025-06-01T21:02:23.7677242Z COMPUTERNAME=EC2AMAZ-DD9BHOF 2025-06-01T21:02:23.7677526Z COMSPEC=C:\Windows\system32\cmd.exe 2025-06-01T21:02:23.7677885Z CONDA_BUILD=C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:02:23.7678251Z CONDA_DEFAULT_ENV=base 2025-06-01T21:02:23.7678509Z CONDA_EXE=C:\Jenkins\Miniconda3\Scripts\conda.exe 2025-06-01T21:02:23.7678902Z CONDA_INSTALL=C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:02:23.7679256Z CONDA_PARENT_DIR=C:\Jenkins 2025-06-01T21:02:23.7679501Z CONDA_PREFIX=C:\Jenkins\Miniconda3 2025-06-01T21:02:23.7679762Z CONDA_PROMPT_MODIFIER=(base) 2025-06-01T21:02:23.7680044Z CONDA_PYTHON_EXE=C:\Jenkins\Miniconda3\python.exe 2025-06-01T21:02:23.7680466Z CONDA_RUN=C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:02:23.7680861Z CONDA_SHLVL=1 2025-06-01T21:02:23.7681147Z CUDA_PATH=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.8 2025-06-01T21:02:23.7681614Z CUDA_PATH_V11_8=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.8 2025-06-01T21:02:23.7682085Z CUDA_PATH_V12_4=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.4 2025-06-01T21:02:23.7682566Z CUDA_PATH_V12_6=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-06-01T21:02:23.7683081Z CUDA_PATH_V12_8=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.8 2025-06-01T21:02:23.7683482Z CUDA_VERSION=cpu 2025-06-01T21:02:23.7683720Z ChocolateyInstall=C:\ProgramData\chocolatey 2025-06-01T21:02:23.7684097Z CommonProgramFiles(x86)=C:\Program Files (x86)\Common Files 2025-06-01T21:02:23.7684485Z CommonProgramW6432=C:\Program Files\Common Files 2025-06-01T21:02:23.7684768Z DEBUG=0 2025-06-01T21:02:23.7685106Z DevEnvDir=C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\IDE\ 2025-06-01T21:02:23.7685516Z DISTUTILS_USE_SDK=1 2025-06-01T21:02:23.7685765Z DriverData=C:\Windows\System32\Drivers\DriverData 2025-06-01T21:02:23.7686070Z EC2LAUNCH_TELEMETRY=1 2025-06-01T21:02:23.7686515Z ExtensionSdkDir=C:\Program Files (x86)\Microsoft SDKs\Windows Kits\10\ExtensionSDKs 2025-06-01T21:02:23.7686944Z Framework40Version=v4.0 2025-06-01T21:02:23.7687213Z FrameworkDir=C:\Windows\Microsoft.NET\Framework64\ 2025-06-01T21:02:23.7687592Z FrameworkDir64=C:\Windows\Microsoft.NET\Framework64\ 2025-06-01T21:02:23.7687914Z FrameworkVersion=v4.0.30319 2025-06-01T21:02:23.7688166Z FrameworkVersion64=v4.0.30319 2025-06-01T21:02:23.7688438Z GITHUB_ACTION=build 2025-06-01T21:02:23.7688641Z GITHUB_ACTIONS=true 2025-06-01T21:02:23.7688823Z GITHUB_ACTION_REF= 2025-06-01T21:02:23.7689071Z GITHUB_ACTION_REPOSITORY= 2025-06-01T21:02:23.7689448Z GITHUB_ACTOR=pytorchmergebot 2025-06-01T21:02:23.7689677Z GITHUB_ACTOR_ID=97764156 2025-06-01T21:02:23.7689929Z GITHUB_API_URL=https://api.github.com 2025-06-01T21:02:23.7690183Z GITHUB_BASE_REF= 2025-06-01T21:02:23.7690617Z GITHUB_ENV=C:\actions-runner\_work\_temp\_runner_file_commands\set_env_5bc3b868-c9e1-4596-8bdd-9c7ca6f96b38 2025-06-01T21:02:23.7691112Z GITHUB_EVENT_NAME=push 2025-06-01T21:02:23.7691453Z GITHUB_EVENT_PATH=C:\actions-runner\_work\_temp\_github_workflow\event.json 2025-06-01T21:02:23.7691891Z GITHUB_GRAPHQL_URL=https://api.github.com/graphql 2025-06-01T21:02:23.7692200Z GITHUB_HEAD_REF= 2025-06-01T21:02:23.7692394Z GITHUB_JOB=build 2025-06-01T21:02:23.7692921Z GITHUB_OUTPUT=C:\actions-runner\_work\_temp\_runner_file_commands\set_output_5bc3b868-c9e1-4596-8bdd-9c7ca6f96b38 2025-06-01T21:02:23.7693689Z GITHUB_PATH=C:\actions-runner\_work\_temp\_runner_file_commands\add_path_5bc3b868-c9e1-4596-8bdd-9c7ca6f96b38 2025-06-01T21:02:23.7694240Z GITHUB_REF=refs/heads/main 2025-06-01T21:02:23.7694474Z GITHUB_REF_NAME=main 2025-06-01T21:02:23.7694720Z GITHUB_REF_PROTECTED=true 2025-06-01T21:02:23.7694943Z GITHUB_REF_TYPE=branch 2025-06-01T21:02:23.7695166Z GITHUB_REPOSITORY=pytorch/pytorch 2025-06-01T21:02:23.7695428Z GITHUB_REPOSITORY_ID=65600975 2025-06-01T21:02:23.7695677Z GITHUB_REPOSITORY_OWNER=pytorch 2025-06-01T21:02:23.7695922Z GITHUB_REPOSITORY_OWNER_ID=21003710 2025-06-01T21:02:23.7696187Z GITHUB_RETENTION_DAYS=90 2025-06-01T21:02:23.7696399Z GITHUB_RUN_ATTEMPT=1 2025-06-01T21:02:23.7696603Z GITHUB_RUN_ID=15379340894 2025-06-01T21:02:23.7696815Z GITHUB_RUN_NUMBER=129555 2025-06-01T21:02:23.7697056Z GITHUB_SERVER_URL=https://github.com 2025-06-01T21:02:23.7697362Z GITHUB_SHA=f7c09f864a6c6467a7454f1431340d3338473fd1 2025-06-01T21:02:23.7697920Z GITHUB_STATE=C:\actions-runner\_work\_temp\_runner_file_commands\save_state_5bc3b868-c9e1-4596-8bdd-9c7ca6f96b38 2025-06-01T21:02:23.7698722Z GITHUB_STEP_SUMMARY=C:\actions-runner\_work\_temp\_runner_file_commands\step_summary_5bc3b868-c9e1-4596-8bdd-9c7ca6f96b38 2025-06-01T21:02:23.7699288Z GITHUB_TRIGGERING_ACTOR=pytorchmergebot 2025-06-01T21:02:23.7699579Z GITHUB_WORKFLOW=trunk 2025-06-01T21:02:23.7699981Z GITHUB_WORKFLOW_REF=pytorch/pytorch/.github/workflows/trunk.yml@refs/heads/main 2025-06-01T21:02:23.7700514Z GITHUB_WORKFLOW_SHA=f7c09f864a6c6467a7454f1431340d3338473fd1 2025-06-01T21:02:23.7700941Z GITHUB_WORKSPACE=C:\actions-runner\_work\pytorch\pytorch 2025-06-01T21:02:23.7701265Z GIT_DEFAULT_BRANCH=main 2025-06-01T21:02:23.7701480Z HOME=C:\Users\runneruser 2025-06-01T21:02:23.7703134Z INCLUDE=C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\winrt;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\cppwinrt 2025-06-01T21:02:23.7705043Z INSTALLER_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers 2025-06-01T21:02:23.7706487Z LIB=C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\lib\x64;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\lib\um\x64;C:\Program Files (x86)\Windows Kits\10\lib\10.0.19041.0\ucrt\x64;C:\Program Files (x86)\Windows Kits\10\lib\10.0.19041.0\um\x64 2025-06-01T21:02:23.7708643Z LIBPATH=C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\lib\x64;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\lib\x86\store\references;C:\Program Files (x86)\Windows Kits\10\UnionMetadata\10.0.19041.0;C:\Program Files (x86)\Windows Kits\10\References\10.0.19041.0;C:\Windows\Microsoft.NET\Framework64\v4.0.30319 2025-06-01T21:02:23.7710078Z LOCALAPPDATA=C:\Users\runneruser\AppData\Local 2025-06-01T21:02:23.7710471Z MAX_JOBS=8 2025-06-01T21:02:23.7710745Z NETFXSDKDir=C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\ 2025-06-01T21:02:23.7711086Z NUMBER_OF_PROCESSORS=16 2025-06-01T21:02:23.7711336Z OS=Windows_NT 2025-06-01T21:02:23.7711530Z OUR_GITHUB_JOB_ID=43268061395 2025-06-01T21:02:23.7719282Z PATH=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin;C:\Program Files\CMake\bin;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\bin\HostX64\x64;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\IDE\VC\VCPackages;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\IDE\CommonExtensions\Microsoft\TestWindow;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\IDE\CommonExtensions\Microsoft\TeamFoundation\Team Explorer;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild\Current\bin\Roslyn;C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\Tools\devinit;C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\x64;C:\Program Files (x86)\Windows Kits\10\bin\x64;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\\MSBuild\Current\Bin;C:\Windows\Microsoft.NET\Framework64\v4.0.30319;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\Tools\;C:\Jenkins\Miniconda3;C:\Jenkins\Miniconda3\Library\mingw-w64\bin;C:\Jenkins\Miniconda3\Library\usr\bin;C:\Jenkins\Miniconda3\Library\bin;C:\Jenkins\Miniconda3\Scripts;C:\Jenkins\Miniconda3\bin;C:\Jenkins\Miniconda3\condabin;C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\Amazon\cfn-bootstrap;C:\ProgramData\chocolatey\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps 2025-06-01T21:02:23.7726774Z PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC 2025-06-01T21:02:23.7727097Z Platform=x64 2025-06-01T21:02:23.7727305Z PROCESSOR_ARCHITECTURE=AMD64 2025-06-01T21:02:23.7727667Z PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 85 Stepping 7, GenuineIntel 2025-06-01T21:02:23.7728048Z PROCESSOR_LEVEL=6 2025-06-01T21:02:23.7728249Z PROCESSOR_REVISION=5507 2025-06-01T21:02:23.7728510Z PROGRAMFILES=C:\Program Files 2025-06-01T21:02:23.7728766Z PROMPT=(base) $P$G 2025-06-01T21:02:23.7728991Z PR_NUMBER= 2025-06-01T21:02:23.7729434Z PSModulePath=C:\Windows\system32\WindowsPowerShell\v1.0\Modules;C:\Program Files\WindowsPowerShell\Modules 2025-06-01T21:02:23.7729958Z PUBLIC=C:\Users\Public 2025-06-01T21:02:23.7730518Z *** 2025-06-01T21:02:23.7730683Z PYTHON_VERSION=3.9 2025-06-01T21:02:23.7730940Z PYTORCH_FINAL_PACKAGE_DIR=C:/15379340894/build-results/ 2025-06-01T21:02:23.7731269Z ProgramData=C:\ProgramData 2025-06-01T21:02:23.7731520Z ProgramFiles(x86)=C:\Program Files (x86) 2025-06-01T21:02:23.7731822Z ProgramW6432=C:\Program Files 2025-06-01T21:02:23.7732049Z RUNNER_ARCH=X64 2025-06-01T21:02:23.7732254Z RUNNER_ENVIRONMENT=self-hosted 2025-06-01T21:02:23.7732493Z RUNNER_NAME=i-0663466a0668f9b44 2025-06-01T21:02:23.7732730Z RUNNER_OS=Windows 2025-06-01T21:02:23.7732942Z RUNNER_TEMP=C:\actions-runner\_work\_temp 2025-06-01T21:02:23.7733266Z RUNNER_TOOL_CACHE=C:\actions-runner\_work\_tool 2025-06-01T21:02:23.7733663Z RUNNER_TRACKING_ID=github_788a8636-c8d5-4f0c-9bb9-96fec8871884 2025-06-01T21:02:23.7734049Z RUNNER_WORKSPACE=C:\actions-runner\_work\pytorch 2025-06-01T21:02:23.7734414Z SCCACHE_BUCKET=ossci-compiler-cache 2025-06-01T21:02:23.7734806Z SCCACHE_IDLE_TIMEOUT=0 2025-06-01T21:02:23.7735084Z SCCACHE_IGNORE_SERVER_IO_ERROR=1 2025-06-01T21:02:23.7735330Z SCCACHE_REGION=us-east-1 2025-06-01T21:02:23.7735563Z SCCACHE_S3_KEY_PREFIX=trunk 2025-06-01T21:02:23.7735965Z SCRIPT_HELPERS_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers 2025-06-01T21:02:23.7736442Z SHA1=f7c09f864a6c6467a7454f1431340d3338473fd1 2025-06-01T21:02:23.7736712Z SHLVL=2 2025-06-01T21:02:23.7736942Z SSL_CERT_FILE=C:\Jenkins\Miniconda3\Library\ssl\cacert.pem 2025-06-01T21:02:23.7737276Z SYSTEMDRIVE=C: 2025-06-01T21:02:23.7737461Z SYSTEMROOT=C:\Windows 2025-06-01T21:02:23.7737693Z TEMP=C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:02:23.7737959Z TERM=xterm-256color 2025-06-01T21:02:23.7738179Z TMP=C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:02:23.7738565Z TMPDIR=C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:02:23.7738942Z TMP_DIR=C:/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-06-01T21:02:23.7739363Z TMP_DIR_WIN=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp 2025-06-01T21:02:23.7739725Z TORCH_CUDA_ARCH_LIST=8.6 2025-06-01T21:02:23.7739952Z UCRTVersion=10.0.19041.0 2025-06-01T21:02:23.7740258Z UniversalCRTSdkDir=C:\Program Files (x86)\Windows Kits\10\ 2025-06-01T21:02:23.7740660Z UPDATEFILE=update.finished 2025-06-01T21:02:23.7740933Z USERDOMAIN=EC2AMAZ-DD9BHOF 2025-06-01T21:02:23.7741161Z USERNAME=runneruser 2025-06-01T21:02:23.7741362Z USERPROFILE=C:\Users\runneruser 2025-06-01T21:02:23.7741601Z USE_CUDA=0 2025-06-01T21:02:23.7741771Z USE_XPU=0 2025-06-01T21:02:23.7742154Z VCIDEInstallDir=C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\IDE\VC\ 2025-06-01T21:02:23.7742754Z VCINSTALLDIR=C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\ 2025-06-01T21:02:23.7743410Z VCToolsInstallDir=C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\ 2025-06-01T21:02:23.7744163Z VCToolsRedistDir=C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Redist\MSVC\14.29.30133\ 2025-06-01T21:02:23.7744667Z VCToolsVersion=14.29.30133 2025-06-01T21:02:23.7744899Z VC_PRODUCT=BuildTools 2025-06-01T21:02:23.7745091Z VC_VERSION= 2025-06-01T21:02:23.7745267Z VC_YEAR=2019 2025-06-01T21:02:23.7745455Z VERBOSE_ARG='SilentlyContinue' 2025-06-01T21:02:23.7745723Z VisualStudioVersion=16.0 2025-06-01T21:02:23.7746135Z VS160COMNTOOLS=C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\Tools\ 2025-06-01T21:02:23.7746639Z VSCMD_ARG_app_plat=Desktop 2025-06-01T21:02:23.7746912Z VSCMD_ARG_HOST_ARCH=x64 2025-06-01T21:02:23.7747116Z VSCMD_ARG_TGT_ARCH=x64 2025-06-01T21:02:23.7747322Z VSCMD_VER=16.11.44 2025-06-01T21:02:23.7747644Z VSINSTALLDIR=C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\ 2025-06-01T21:02:23.7748047Z WINDIR=C:\Windows 2025-06-01T21:02:23.7748592Z 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-06-01T21:02:23.7749307Z WindowsSdkBinPath=C:\Program Files (x86)\Windows Kits\10\bin\ 2025-06-01T21:02:23.7749734Z WindowsSdkDir=C:\Program Files (x86)\Windows Kits\10\ 2025-06-01T21:02:23.7750061Z WindowsSDKLibVersion=10.0.19041.0\ 2025-06-01T21:02:23.7750460Z WindowsSdkVerBinPath=C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\ 2025-06-01T21:02:23.7750877Z WindowsSDKVersion=10.0.19041.0\ 2025-06-01T21:02:23.7751370Z WindowsSDK_ExecutablePath_x64=C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\ 2025-06-01T21:02:23.7752095Z WindowsSDK_ExecutablePath_x86=C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\ 2025-06-01T21:02:23.7752623Z XPU_VERSION= 2025-06-01T21:02:23.7753045Z _=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers/build_pytorch.bat 2025-06-01T21:02:23.7753504Z __CONDA_OPENSLL_CERT_FILE_SET="1" 2025-06-01T21:02:23.7754008Z __devinit_path=C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\Tools\devinit\devinit.exe 2025-06-01T21:02:23.7754618Z __DOTNET_ADD_64BIT=1 2025-06-01T21:02:23.7754847Z __DOTNET_PREFERRED_BITNESS=64 2025-06-01T21:02:23.7758059Z __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-06-01T21:02:23.7761180Z 2025-06-01T21:02:23.7761412Z (base) C:\actions-runner\_work\pytorch\pytorch>python setup.py bdist_wheel 2025-06-01T21:02:24.0804411Z Building wheel torch-2.8.0a0+gitf7c09f8 2025-06-01T21:02:28.2609775Z -- The CXX compiler identification is MSVC 19.29.30158.0 2025-06-01T21:02:28.3892891Z -- The C compiler identification is MSVC 19.29.30158.0 2025-06-01T21:02:28.4088978Z -- Detecting CXX compiler ABI info 2025-06-01T21:02:29.3733834Z -- Detecting CXX compiler ABI info - done 2025-06-01T21:02:29.3761083Z -- Check for working CXX compiler: C:/Program Files (x86)/Microsoft Visual Studio/2019/BuildTools/VC/Tools/MSVC/14.29.30133/bin/Hostx64/x64/cl.exe - skipped 2025-06-01T21:02:29.3766828Z -- Detecting CXX compile features 2025-06-01T21:02:29.3810624Z -- Detecting CXX compile features - done 2025-06-01T21:02:29.3916369Z -- Detecting C compiler ABI info 2025-06-01T21:02:29.6750066Z -- Detecting C compiler ABI info - done 2025-06-01T21:02:29.6772209Z -- Check for working C compiler: C:/Program Files (x86)/Microsoft Visual Studio/2019/BuildTools/VC/Tools/MSVC/14.29.30133/bin/Hostx64/x64/cl.exe - skipped 2025-06-01T21:02:29.6776613Z -- Detecting C compile features 2025-06-01T21:02:29.6785718Z -- Detecting C compile features - done 2025-06-01T21:02:29.6835110Z -- Not forcing any particular BLAS to be found 2025-06-01T21:02:29.6914424Z CMake Warning at CMakeLists.txt:413 (message): 2025-06-01T21:02:29.6914836Z TensorPipe cannot be used on Windows. Set it to OFF 2025-06-01T21:02:29.6915080Z 2025-06-01T21:02:29.6915085Z 2025-06-01T21:02:29.6915208Z CMake Warning at CMakeLists.txt:415 (message): 2025-06-01T21:02:29.6915546Z KleidiAI cannot be used on Windows. Set it to OFF 2025-06-01T21:02:29.6915771Z 2025-06-01T21:02:29.6915776Z 2025-06-01T21:02:29.6974602Z -- Performing Test C_HAS_AVX_1 2025-06-01T21:02:30.7806452Z -- Performing Test C_HAS_AVX_1 - Success 2025-06-01T21:02:30.7810425Z -- Performing Test C_HAS_AVX2_1 2025-06-01T21:02:31.1330185Z -- Performing Test C_HAS_AVX2_1 - Success 2025-06-01T21:02:31.1334143Z -- Performing Test C_HAS_AVX512_1 2025-06-01T21:02:31.4945221Z -- Performing Test C_HAS_AVX512_1 - Success 2025-06-01T21:02:31.4950970Z -- Performing Test CXX_HAS_AVX_1 2025-06-01T21:02:31.8824500Z -- Performing Test CXX_HAS_AVX_1 - Success 2025-06-01T21:02:31.8829701Z -- Performing Test CXX_HAS_AVX2_1 2025-06-01T21:02:32.2379075Z -- Performing Test CXX_HAS_AVX2_1 - Success 2025-06-01T21:02:32.2384458Z -- Performing Test CXX_HAS_AVX512_1 2025-06-01T21:02:32.6579323Z -- Performing Test CXX_HAS_AVX512_1 - Success 2025-06-01T21:02:32.6580788Z -- Current compiler supports avx2 extension. Will build perfkernels. 2025-06-01T21:02:32.6585609Z -- Performing Test CAFFE2_COMPILER_SUPPORTS_AVX512_EXTENSIONS 2025-06-01T21:02:33.3141970Z -- Performing Test CAFFE2_COMPILER_SUPPORTS_AVX512_EXTENSIONS - Success 2025-06-01T21:02:33.3142516Z -- Current compiler supports avx512f extension. Will build fbgemm. 2025-06-01T21:02:33.3161873Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_VISIBILITY 2025-06-01T21:02:33.6699201Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_VISIBILITY - Failed 2025-06-01T21:02:33.6719641Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_INLINE_VISIBILITY 2025-06-01T21:02:33.9649441Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_INLINE_VISIBILITY - Failed 2025-06-01T21:02:33.9656457Z -- Could not find hardware support for NEON on this machine. 2025-06-01T21:02:33.9656829Z -- No OMAP3 processor on this machine. 2025-06-01T21:02:33.9657111Z -- No OMAP4 processor on this machine. 2025-06-01T21:02:33.9657653Z -- Compiler does not support SVE extension. Will not build perfkernels. 2025-06-01T21:02:33.9778522Z -- Performing Test HAS/UTF_8 2025-06-01T21:02:34.4208864Z -- Performing Test HAS/UTF_8 - Success 2025-06-01T21:02:34.4231979Z -- Building using own protobuf under third_party per request. 2025-06-01T21:02:34.4232390Z -- Use custom protobuf build. 2025-06-01T21:02:34.4249518Z CMake Deprecation Warning at third_party/protobuf/cmake/CMakeLists.txt:2 (cmake_minimum_required): 2025-06-01T21:02:34.4250210Z Compatibility with CMake < 3.5 will be removed from a future version of 2025-06-01T21:02:34.4250584Z CMake. 2025-06-01T21:02:34.4250687Z 2025-06-01T21:02:34.4250888Z Update the VERSION argument value or use a ... suffix to tell 2025-06-01T21:02:34.4251375Z CMake that the project does not need compatibility with older versions. 2025-06-01T21:02:34.4251684Z 2025-06-01T21:02:34.4251688Z 2025-06-01T21:02:34.4263613Z -- 2025-06-01T21:02:34.4263833Z -- 3.13.0.0 2025-06-01T21:02:34.4279585Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD 2025-06-01T21:02:34.5325680Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Failed 2025-06-01T21:02:34.5327569Z -- Looking for pthread_create in pthreads 2025-06-01T21:02:34.6862768Z -- Looking for pthread_create in pthreads - not found 2025-06-01T21:02:34.6863421Z -- Looking for pthread_create in pthread 2025-06-01T21:02:34.8432293Z -- Looking for pthread_create in pthread - not found 2025-06-01T21:02:34.8447557Z -- Found Threads: TRUE 2025-06-01T21:02:34.8918664Z -- Caffe2 protobuf include directory: $$ 2025-06-01T21:02:34.8950809Z -- Trying to find preferred BLAS backend of choice: MKL 2025-06-01T21:02:34.8973257Z -- MKL_THREADING = OMP 2025-06-01T21:02:34.8976659Z -- Looking for sys/types.h 2025-06-01T21:02:35.1898778Z -- Looking for sys/types.h - found 2025-06-01T21:02:35.1901847Z -- Looking for stdint.h 2025-06-01T21:02:35.4825742Z -- Looking for stdint.h - found 2025-06-01T21:02:35.4827542Z -- Looking for stddef.h 2025-06-01T21:02:35.8286713Z -- Looking for stddef.h - found 2025-06-01T21:02:35.8287523Z -- Check size of void* 2025-06-01T21:02:36.1484715Z -- Check size of void* - done 2025-06-01T21:02:36.1945873Z -- Looking for cblas_sgemm 2025-06-01T21:02:36.4927480Z -- Looking for cblas_sgemm - found 2025-06-01T21:02:36.4930597Z -- Looking for cblas_gemm_bf16bf16f32 2025-06-01T21:02:36.7917668Z -- Looking for cblas_gemm_bf16bf16f32 - found 2025-06-01T21:02:36.7918434Z -- Looking for cblas_gemm_f16f16f32 2025-06-01T21:02:37.0850922Z -- Looking for cblas_gemm_f16f16f32 - not found 2025-06-01T21:02:37.1652546Z -- MKL libraries: C:/Jenkins/Miniconda3/Library/lib/mkl_intel_lp64_dll.lib;C:/Jenkins/Miniconda3/Library/lib/mkl_intel_thread_dll.lib;C:/Jenkins/Miniconda3/Library/lib/mkl_core_dll.lib 2025-06-01T21:02:37.1653499Z -- MKL include directory: C:/Jenkins/Miniconda3/Library/include 2025-06-01T21:02:37.1653905Z -- MKL OpenMP type: 2025-06-01T21:02:37.1654171Z -- MKL OpenMP library: 2025-06-01T21:02:37.3260734Z -- The ASM compiler identification is MSVC 2025-06-01T21:02:37.3298862Z -- Found assembler: C:/Program Files (x86)/Microsoft Visual Studio/2019/BuildTools/VC/Tools/MSVC/14.29.30133/bin/Hostx64/x64/cl.exe 2025-06-01T21:02:37.3416887Z -- Building for XNNPACK_TARGET_PROCESSOR: x86_64 2025-06-01T21:02:37.3478507Z -- Generating microkernels.cmake 2025-06-01T21:02:42.1152415Z 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-06-01T21:02:42.1153780Z 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-06-01T21:02:42.1154597Z No microkernel found in src\reference\binary-elementwise.cc 2025-06-01T21:02:42.1155001Z No microkernel found in src\reference\packing.cc 2025-06-01T21:02:42.1155389Z No microkernel found in src\reference\unary-elementwise.cc 2025-06-01T21:02:42.2263573Z -- Found Git: C:/Program Files/Git/cmd/git.exe (found version "2.47.1.windows.2") 2025-06-01T21:02:42.2637037Z -- Google Benchmark version: v1.9.3, normalized to 1.9.3 2025-06-01T21:02:42.2652844Z -- Looking for shm_open in rt 2025-06-01T21:02:42.4234351Z -- Looking for shm_open in rt - not found 2025-06-01T21:02:42.4282764Z -- Performing Test HAVE_CXX_FLAG_WX 2025-06-01T21:02:42.7198719Z -- Performing Test HAVE_CXX_FLAG_WX - Success 2025-06-01T21:02:42.7202068Z -- Compiling and running to test HAVE_STD_REGEX 2025-06-01T21:02:45.8248586Z -- Performing Test HAVE_STD_REGEX -- success 2025-06-01T21:02:45.8249454Z -- Compiling and running to test HAVE_GNU_POSIX_REGEX 2025-06-01T21:02:45.9265654Z -- Performing Test HAVE_GNU_POSIX_REGEX -- failed to compile 2025-06-01T21:02:45.9266177Z -- Compiling and running to test HAVE_POSIX_REGEX 2025-06-01T21:02:46.0152321Z -- Performing Test HAVE_POSIX_REGEX -- failed to compile 2025-06-01T21:02:46.0154024Z -- Compiling and running to test HAVE_STEADY_CLOCK 2025-06-01T21:02:46.7026429Z -- Performing Test HAVE_STEADY_CLOCK -- success 2025-06-01T21:02:46.7059684Z -- Compiling and running to test HAVE_PTHREAD_AFFINITY 2025-06-01T21:02:46.7959953Z -- Performing Test HAVE_PTHREAD_AFFINITY -- failed to compile 2025-06-01T21:02:46.8139470Z CMake Warning (dev) at third_party/fbgemm/CMakeLists.txt:97 (find_package): 2025-06-01T21:02:46.8140042Z Policy CMP0148 is not set: The FindPythonInterp and FindPythonLibs modules 2025-06-01T21:02:46.8140570Z are removed. Run "cmake --help-policy CMP0148" for policy details. Use 2025-06-01T21:02:46.8141062Z the cmake_policy command to set the policy and suppress this warning. 2025-06-01T21:02:46.8141357Z 2025-06-01T21:02:46.8141551Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-06-01T21:02:46.8141854Z 2025-06-01T21:02:46.8598773Z -- Found PythonInterp: C:/Jenkins/Miniconda3/python.exe (found version "3.9.19") 2025-06-01T21:02:46.8621689Z -- Performing Test COMPILER_SUPPORTS_AVX512 2025-06-01T21:02:47.1746640Z -- Performing Test COMPILER_SUPPORTS_AVX512 - Success 2025-06-01T21:02:47.1755070Z -- Performing Test HAVE_GNU_F2H_IEEE 2025-06-01T21:02:47.2598044Z -- Performing Test HAVE_GNU_F2H_IEEE - Failed 2025-06-01T21:02:48.2168012Z CMake Warning (dev) at C:/Program Files/CMake/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:438 (message): 2025-06-01T21:02:48.2168828Z The package name passed to `find_package_handle_standard_args` (OpenMP_C) 2025-06-01T21:02:48.2169338Z does not match the name of the calling package (OpenMP). This can lead to 2025-06-01T21:02:48.2169832Z problems in calling code that expects `find_package` result variables 2025-06-01T21:02:48.2170230Z (e.g., `_FOUND`) to follow a certain pattern. 2025-06-01T21:02:48.2170533Z Call Stack (most recent call first): 2025-06-01T21:02:48.2170922Z cmake/Modules/FindOpenMP.cmake:635 (find_package_handle_standard_args) 2025-06-01T21:02:48.2171373Z third_party/fbgemm/CMakeLists.txt:148 (find_package) 2025-06-01T21:02:48.2171794Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-06-01T21:02:48.2172087Z 2025-06-01T21:02:48.2172214Z -- Found OpenMP_C: -openmp:experimental 2025-06-01T21:02:48.5365539Z CMake Warning (dev) at C:/Program Files/CMake/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:438 (message): 2025-06-01T21:02:48.5366535Z The package name passed to `find_package_handle_standard_args` (OpenMP_CXX) 2025-06-01T21:02:48.5367049Z does not match the name of the calling package (OpenMP). This can lead to 2025-06-01T21:02:48.5367547Z problems in calling code that expects `find_package` result variables 2025-06-01T21:02:48.5367949Z (e.g., `_FOUND`) to follow a certain pattern. 2025-06-01T21:02:48.5368251Z Call Stack (most recent call first): 2025-06-01T21:02:48.5368634Z cmake/Modules/FindOpenMP.cmake:635 (find_package_handle_standard_args) 2025-06-01T21:02:48.5369081Z third_party/fbgemm/CMakeLists.txt:148 (find_package) 2025-06-01T21:02:48.5369512Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-06-01T21:02:48.5369861Z 2025-06-01T21:02:48.5370128Z -- Found OpenMP_CXX: -openmp:experimental 2025-06-01T21:02:48.5377539Z -- Found OpenMP: TRUE 2025-06-01T21:02:48.5379497Z -- OpenMP found! OpenMP_C_INCLUDE_DIRS = 2025-06-01T21:02:48.8135928Z -- ========== 2025-06-01T21:02:48.8136212Z -- CMAKE_BUILD_TYPE = Release 2025-06-01T21:02:48.8136522Z -- CMAKE_CXX_FLAGS_DEBUG is /Z7 /Ob0 /Od /RTC1 /bigobj 2025-06-01T21:02:48.8136881Z -- CMAKE_CXX_FLAGS_RELEASE is /O2 /Ob2 /DNDEBUG /bigobj 2025-06-01T21:02:48.8137193Z -- ========== 2025-06-01T21:02:48.8320361Z ** AsmJit Summary ** 2025-06-01T21:02:48.8320810Z ASMJIT_DIR=C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/asmjit 2025-06-01T21:02:48.8321274Z ASMJIT_TEST=FALSE 2025-06-01T21:02:48.8321487Z ASMJIT_TARGET_TYPE=SHARED 2025-06-01T21:02:48.8321726Z ASMJIT_DEPS= 2025-06-01T21:02:48.8321910Z ASMJIT_LIBS=asmjit 2025-06-01T21:02:48.8322110Z ASMJIT_CFLAGS= 2025-06-01T21:02:48.8322552Z ASMJIT_PRIVATE_CFLAGS=-MP;-GF;-Zc:__cplusplus;-Zc:inline;-Zc:strictStrings;-Zc:threadSafeInit-;-W4 2025-06-01T21:02:48.8323031Z ASMJIT_PRIVATE_CFLAGS_DBG=-GS 2025-06-01T21:02:48.8323307Z ASMJIT_PRIVATE_CFLAGS_REL=-GS-;-O2;-Oi 2025-06-01T21:02:48.8416181Z -- Performing Test HAS_WNO_DEPRECATED_ENUM_ENUM_CONVERSION 2025-06-01T21:02:48.9137988Z -- Performing Test HAS_WNO_DEPRECATED_ENUM_ENUM_CONVERSION - Failed 2025-06-01T21:02:48.9159731Z -- Performing Test HAS_WNO_DEPRECATED_ANON_ENUM_ENUM_CONVERSION 2025-06-01T21:02:48.9865476Z -- Performing Test HAS_WNO_DEPRECATED_ANON_ENUM_ENUM_CONVERSION - Failed 2025-06-01T21:02:48.9887462Z -- Performing Test HAS_WNO_ERROR_DEPRECATED_ENUM_ENUM_CONVERSION 2025-06-01T21:02:49.0615199Z -- Performing Test HAS_WNO_ERROR_DEPRECATED_ENUM_ENUM_CONVERSION - Failed 2025-06-01T21:02:49.0864542Z CMake Deprecation Warning at third_party/FP16/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-06-01T21:02:49.0865160Z Compatibility with CMake < 3.5 will be removed from a future version of 2025-06-01T21:02:49.0865545Z CMake. 2025-06-01T21:02:49.0865683Z 2025-06-01T21:02:49.0865888Z Update the VERSION argument value or use a ... suffix to tell 2025-06-01T21:02:49.0866383Z CMake that the project does not need compatibility with older versions. 2025-06-01T21:02:49.0866755Z 2025-06-01T21:02:49.0866759Z 2025-06-01T21:02:49.0929757Z CMake Deprecation Warning at third_party/psimd/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-06-01T21:02:49.0930393Z Compatibility with CMake < 3.5 will be removed from a future version of 2025-06-01T21:02:49.0930757Z CMake. 2025-06-01T21:02:49.0930851Z 2025-06-01T21:02:49.0931050Z Update the VERSION argument value or use a ... suffix to tell 2025-06-01T21:02:49.0931530Z CMake that the project does not need compatibility with older versions. 2025-06-01T21:02:49.0931831Z 2025-06-01T21:02:49.0931835Z 2025-06-01T21:02:49.0977532Z -- Using third party subdirectory Eigen. 2025-06-01T21:02:51.2869607Z -- Found Python: C:\Jenkins\Miniconda3\python.exe (found version "3.9.19") found components: Interpreter Development.Module NumPy 2025-06-01T21:02:51.2871688Z -- Using third_party/pybind11. 2025-06-01T21:02:51.2872888Z -- pybind11 include dirs: C:/actions-runner/_work/pytorch/pytorch/cmake/../third_party/pybind11/include 2025-06-01T21:02:51.2918011Z -- Could NOT find OpenTelemetryApi (missing: OpenTelemetryApi_INCLUDE_DIRS) 2025-06-01T21:02:51.2918548Z -- Using third_party/opentelemetry-cpp. 2025-06-01T21:02:51.2919615Z -- opentelemetry api include dirs: C:/actions-runner/_work/pytorch/pytorch/cmake/../third_party/opentelemetry-cpp/api/include 2025-06-01T21:02:51.8505262Z -- Could NOT find MPI_C (missing: MPI_C_LIB_NAMES MPI_C_HEADER_DIR MPI_C_WORKS) 2025-06-01T21:02:52.2793887Z -- Could NOT find MPI_CXX (missing: MPI_CXX_LIB_NAMES MPI_CXX_HEADER_DIR MPI_CXX_WORKS) 2025-06-01T21:02:52.2801236Z -- Could NOT find MPI (missing: MPI_C_FOUND MPI_CXX_FOUND) 2025-06-01T21:02:52.2805730Z CMake Warning at cmake/Dependencies.cmake:905 (message): 2025-06-01T21:02:52.2824189Z Not compiling with MPI. Suppress this warning with -DUSE_MPI=OFF 2025-06-01T21:02:52.2824676Z Call Stack (most recent call first): 2025-06-01T21:02:52.2824966Z CMakeLists.txt:863 (include) 2025-06-01T21:02:52.2825190Z 2025-06-01T21:02:52.2825195Z 2025-06-01T21:02:52.2856449Z -- Adding OpenMP CXX_FLAGS: -openmp:experimental 2025-06-01T21:02:52.2864423Z -- Found nvtx3: C:/actions-runner/_work/pytorch/pytorch/third_party/NVTX/c/include 2025-06-01T21:02:52.2884276Z -- MSVC detected 2025-06-01T21:02:52.2884482Z -- Set USE_REDIS OFF 2025-06-01T21:02:52.2884704Z -- Set USE_IBVERBS OFF 2025-06-01T21:02:52.2884935Z -- Set USE_NCCL OFF 2025-06-01T21:02:52.2885125Z -- Set USE_RCCL OFF 2025-06-01T21:02:52.2885329Z -- Set USE_LIBUV OFF 2025-06-01T21:02:52.2894691Z -- Gloo build as SHARED library 2025-06-01T21:02:52.7314748Z -- Found Python3: C:\Jenkins\Miniconda3\python.exe (found version "3.9.19") found components: Interpreter 2025-06-01T21:02:52.7329334Z -- ONNX_PROTOC_EXECUTABLE: $ 2025-06-01T21:02:52.7330096Z -- Protobuf_VERSION: Protobuf_VERSION_NOTFOUND 2025-06-01T21:02:52.7332108Z Generated: C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto 2025-06-01T21:02:52.7339572Z Generated: C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch-ml.proto 2025-06-01T21:02:52.7346744Z Generated: C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto 2025-06-01T21:02:52.9751271Z -- 2025-06-01T21:02:52.9751540Z -- ******** Summary ******** 2025-06-01T21:02:52.9751829Z -- CMake version : 3.27.9 2025-06-01T21:02:52.9752212Z -- CMake command : C:/Program Files/CMake/bin/cmake.exe 2025-06-01T21:02:52.9752577Z -- System : Windows 2025-06-01T21:02:52.9753223Z -- C++ compiler : C:/Program Files (x86)/Microsoft Visual Studio/2019/BuildTools/VC/Tools/MSVC/14.29.30133/bin/Hostx64/x64/cl.exe 2025-06-01T21:02:52.9753858Z -- C++ compiler version : 19.29.30158.0 2025-06-01T21:02:52.9754385Z -- CXX flags : /DWIN32 /D_WINDOWS /GR /EHsc /Zc:__cplusplus /bigobj /FS /utf-8 -DUSE_PTHREADPOOL /EHsc /wd26812 2025-06-01T21:02:52.9754927Z -- Build type : Release 2025-06-01T21:02:52.9755294Z -- Compile definitions : ONNX_ML=1;ONNXIFI_ENABLE_EXT=1 2025-06-01T21:02:52.9755771Z -- CMAKE_PREFIX_PATH : C:\Jenkins\Miniconda3\Lib\site-packages 2025-06-01T21:02:52.9756258Z -- CMAKE_INSTALL_PREFIX : C:/actions-runner/_work/pytorch/pytorch/torch 2025-06-01T21:02:52.9756779Z -- CMAKE_MODULE_PATH : C:/actions-runner/_work/pytorch/pytorch/cmake/Modules 2025-06-01T21:02:52.9757174Z -- 2025-06-01T21:02:52.9757355Z -- ONNX version : 1.18.0 2025-06-01T21:02:52.9757664Z -- ONNX NAMESPACE : onnx_torch 2025-06-01T21:02:52.9757970Z -- ONNX_USE_LITE_PROTO : OFF 2025-06-01T21:02:52.9758262Z -- USE_PROTOBUF_SHARED_LIBS : OFF 2025-06-01T21:02:52.9758547Z -- ONNX_DISABLE_EXCEPTIONS : OFF 2025-06-01T21:02:52.9759090Z -- ONNX_DISABLE_STATIC_REGISTRATION : OFF 2025-06-01T21:02:52.9759424Z -- ONNX_WERROR : OFF 2025-06-01T21:02:52.9759739Z -- ONNX_BUILD_TESTS : OFF 2025-06-01T21:02:52.9760019Z -- BUILD_SHARED_LIBS : OFF 2025-06-01T21:02:52.9760276Z -- 2025-06-01T21:02:52.9760581Z -- Protobuf compiler : $ 2025-06-01T21:02:52.9760947Z -- Protobuf includes : 2025-06-01T21:02:52.9761227Z -- Protobuf libraries : 2025-06-01T21:02:52.9761508Z -- ONNX_BUILD_PYTHON : OFF 2025-06-01T21:02:52.9761896Z -- Found CUDA with FP16 support, compiling with torch.cuda.HalfTensor 2025-06-01T21:02:52.9762592Z -- Adding -DNDEBUG to compile flags 2025-06-01T21:02:52.9763779Z CMake Warning at cmake/Dependencies.cmake:1417 (message): 2025-06-01T21:02:52.9764255Z Not compiling with MAGMA. Suppress this warning with -DUSE_MAGMA=OFF. 2025-06-01T21:02:52.9764665Z Call Stack (most recent call first): 2025-06-01T21:02:52.9764931Z CMakeLists.txt:863 (include) 2025-06-01T21:02:52.9765088Z 2025-06-01T21:02:52.9765093Z 2025-06-01T21:02:52.9769181Z -- Could not find hardware support for NEON on this machine. 2025-06-01T21:02:52.9769536Z -- No OMAP3 processor on this machine. 2025-06-01T21:02:52.9769829Z -- No OMAP4 processor on this machine. 2025-06-01T21:02:52.9786486Z -- Looking for sbgemm_ 2025-06-01T21:02:53.1735140Z -- Looking for sbgemm_ - not found 2025-06-01T21:02:53.1745150Z -- Found a library with LAPACK API (mkl). 2025-06-01T21:02:53.1746439Z disabling CUDA because NOT USE_CUDA is set 2025-06-01T21:02:53.1746802Z disabling ROCM because NOT USE_ROCM is set 2025-06-01T21:02:53.1747206Z -- MIOpen not found. Compiling without MIOpen support 2025-06-01T21:02:53.1756216Z -- Will build oneDNN UKERNEL 2025-06-01T21:02:53.1845537Z -- MKLDNN_CPU_RUNTIME = OMP 2025-06-01T21:02:53.1862274Z -- DNNL_TARGET_ARCH: X64 2025-06-01T21:02:53.1888900Z -- DNNL_LIBRARY_NAME: dnnl 2025-06-01T21:02:53.1975566Z CMake Warning (dev) at C:/Program Files/CMake/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:438 (message): 2025-06-01T21:02:53.1976298Z The package name passed to `find_package_handle_standard_args` (OpenMP_C) 2025-06-01T21:02:53.1976804Z does not match the name of the calling package (OpenMP). This can lead to 2025-06-01T21:02:53.1977298Z problems in calling code that expects `find_package` result variables 2025-06-01T21:02:53.1977693Z (e.g., `_FOUND`) to follow a certain pattern. 2025-06-01T21:02:53.1978005Z Call Stack (most recent call first): 2025-06-01T21:02:53.1978406Z cmake/Modules/FindOpenMP.cmake:635 (find_package_handle_standard_args) 2025-06-01T21:02:53.1978906Z third_party/ideep/mkl-dnn/cmake/OpenMP.cmake:41 (find_package) 2025-06-01T21:02:53.1979324Z third_party/ideep/mkl-dnn/CMakeLists.txt:89 (include) 2025-06-01T21:02:53.1979746Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-06-01T21:02:53.1980062Z 2025-06-01T21:02:53.1983772Z CMake Warning (dev) at C:/Program Files/CMake/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:438 (message): 2025-06-01T21:02:53.1984544Z The package name passed to `find_package_handle_standard_args` (OpenMP_CXX) 2025-06-01T21:02:53.1985054Z does not match the name of the calling package (OpenMP). This can lead to 2025-06-01T21:02:53.1985547Z problems in calling code that expects `find_package` result variables 2025-06-01T21:02:53.1985947Z (e.g., `_FOUND`) to follow a certain pattern. 2025-06-01T21:02:53.1986251Z Call Stack (most recent call first): 2025-06-01T21:02:53.1986645Z cmake/Modules/FindOpenMP.cmake:635 (find_package_handle_standard_args) 2025-06-01T21:02:53.1987156Z third_party/ideep/mkl-dnn/cmake/OpenMP.cmake:41 (find_package) 2025-06-01T21:02:53.1987581Z third_party/ideep/mkl-dnn/CMakeLists.txt:89 (include) 2025-06-01T21:02:53.1988007Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-06-01T21:02:53.1988504Z 2025-06-01T21:02:53.2377098Z -- Enabled testing coverage: CI 2025-06-01T21:02:53.2387853Z -- Enabled workload: TRAINING 2025-06-01T21:02:53.2388151Z -- Enabled primitives: ALL 2025-06-01T21:02:53.2388464Z -- Enabled primitive CPU ISA: ALL 2025-06-01T21:02:53.2388779Z -- Enabled primitive GPU ISA: ALL 2025-06-01T21:02:53.2389126Z -- Enabled GeMM kernels ISA: ALL 2025-06-01T21:02:53.2485016Z -- Primitive cache is enabled 2025-06-01T21:02:53.2485670Z -- Experimental functionality for ukernels is enabled 2025-06-01T21:02:53.3070513Z -- The ASM_MASM compiler identification is MSVC 2025-06-01T21:02:53.3532739Z -- Found assembler: C:/Program Files (x86)/Microsoft Visual Studio/2019/BuildTools/VC/Tools/MSVC/14.29.30133/bin/Hostx64/x64/ml64.exe 2025-06-01T21:02:53.3771049Z -- Graph component is enabled 2025-06-01T21:02:53.3872577Z -- Graph compiler backend is disabled. 2025-06-01T21:02:53.3977938Z -- Found MKL-DNN: TRUE 2025-06-01T21:02:53.4059809Z -- {fmt} version: 11.2.0 2025-06-01T21:02:53.4060072Z -- Build type: Release 2025-06-01T21:02:53.4133245Z -- Using CPU-only version of Kineto 2025-06-01T21:02:53.4133682Z -- Configuring Kineto dependency: 2025-06-01T21:02:53.4134143Z -- KINETO_SOURCE_DIR = C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto 2025-06-01T21:02:53.4134599Z -- KINETO_BUILD_TESTS = OFF 2025-06-01T21:02:53.4134844Z -- KINETO_LIBRARY_TYPE = static 2025-06-01T21:02:53.4190655Z CMake Warning (dev) at third_party/kineto/libkineto/CMakeLists.txt:15 (find_package): 2025-06-01T21:02:53.4191211Z Policy CMP0148 is not set: The FindPythonInterp and FindPythonLibs modules 2025-06-01T21:02:53.4191720Z are removed. Run "cmake --help-policy CMP0148" for policy details. Use 2025-06-01T21:02:53.4192212Z the cmake_policy command to set the policy and suppress this warning. 2025-06-01T21:02:53.4192512Z 2025-06-01T21:02:53.4192702Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-06-01T21:02:53.4193003Z 2025-06-01T21:02:53.4606256Z INFO CUDA_SOURCE_DIR = 2025-06-01T21:02:53.4606501Z INFO ROCM_SOURCE_DIR = 2025-06-01T21:02:53.5000083Z INFO CUPTI unavailable or disabled - not building GPU profilers 2025-06-01T21:02:53.5865720Z -- Kineto: FMT_SOURCE_DIR = C:/actions-runner/_work/pytorch/pytorch/third_party/fmt 2025-06-01T21:02:53.5866355Z -- Kineto: FMT_INCLUDE_DIR = C:/actions-runner/_work/pytorch/pytorch/third_party/fmt/include 2025-06-01T21:02:53.5866843Z INFO CUPTI_INCLUDE_DIR = /extras/CUPTI/include 2025-06-01T21:02:53.5867169Z INFO ROCTRACER_INCLUDE_DIR = /include/roctracer 2025-06-01T21:02:53.5867740Z INFO DYNOLOG_INCLUDE_DIR = C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/ 2025-06-01T21:02:53.5868700Z INFO IPCFABRIC_INCLUDE_DIR = C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog//dynolog/src/ipcfabric/ 2025-06-01T21:02:53.5892650Z -- Configured Kineto (CPU) 2025-06-01T21:02:53.5940168Z -- Performing Test HAS/WD4624 2025-06-01T21:02:53.8942218Z -- Performing Test HAS/WD4624 - Success 2025-06-01T21:02:53.8964420Z -- Performing Test HAS/WD4068 2025-06-01T21:02:54.1994821Z -- Performing Test HAS/WD4068 - Success 2025-06-01T21:02:54.2016603Z -- Performing Test HAS/WD4067 2025-06-01T21:02:54.4937139Z -- Performing Test HAS/WD4067 - Success 2025-06-01T21:02:54.4958133Z -- Performing Test HAS/WD4267 2025-06-01T21:02:54.7958574Z -- Performing Test HAS/WD4267 - Success 2025-06-01T21:02:54.7983076Z -- Performing Test HAS/WD4661 2025-06-01T21:02:55.0811114Z -- Performing Test HAS/WD4661 - Success 2025-06-01T21:02:55.0837346Z -- Performing Test HAS/WD4717 2025-06-01T21:02:55.3997139Z -- Performing Test HAS/WD4717 - Success 2025-06-01T21:02:55.4019845Z -- Performing Test HAS/WD4244 2025-06-01T21:02:55.6865397Z -- Performing Test HAS/WD4244 - Success 2025-06-01T21:02:55.6893143Z -- Performing Test HAS/WD4804 2025-06-01T21:02:55.9753969Z -- Performing Test HAS/WD4804 - Success 2025-06-01T21:02:55.9775572Z -- Performing Test HAS/WD4273 2025-06-01T21:02:56.2669355Z -- Performing Test HAS/WD4273 - Success 2025-06-01T21:02:56.2691489Z -- Performing Test HAS_WNO_STRINGOP_OVERFLOW 2025-06-01T21:02:56.3405488Z -- Performing Test HAS_WNO_STRINGOP_OVERFLOW - Failed 2025-06-01T21:02:57.4202615Z -- 2025-06-01T21:02:57.4203457Z -- Architecture: x64 2025-06-01T21:02:57.4206470Z -- Use the C++ compiler to compile (MI_USE_CXX=ON) 2025-06-01T21:02:57.4213235Z -- 2025-06-01T21:02:57.4213435Z -- Library name : mimalloc 2025-06-01T21:02:57.4213680Z -- Version : 2.2.3 2025-06-01T21:02:57.4213929Z -- Build type : release 2025-06-01T21:02:57.4214499Z -- C++ Compiler : C:/Program Files (x86)/Microsoft Visual Studio/2019/BuildTools/VC/Tools/MSVC/14.29.30133/bin/Hostx64/x64/cl.exe 2025-06-01T21:02:57.4215352Z -- Compiler flags : /Zc:__cplusplus 2025-06-01T21:02:57.4215719Z -- Compiler defines : MI_CMAKE_BUILD_TYPE=release;MI_BUILD_RELEASE 2025-06-01T21:02:57.4216166Z -- Link libraries : psapi;shell32;user32;advapi32;bcrypt 2025-06-01T21:02:57.4216511Z -- Build targets : static 2025-06-01T21:02:57.4216722Z -- 2025-06-01T21:02:57.4298856Z -- don't use NUMA 2025-06-01T21:02:57.4348822Z -- Looking for backtrace 2025-06-01T21:02:57.5227749Z -- Looking for backtrace - not found 2025-06-01T21:02:57.5310628Z -- Could NOT find Backtrace (missing: Backtrace_LIBRARY Backtrace_INCLUDE_DIR) 2025-06-01T21:03:01.8100999Z -- headers outputs: 2025-06-01T21:03:03.8164922Z -- sources outputs: 2025-06-01T21:03:05.3586577Z -- declarations_yaml outputs: 2025-06-01T21:03:05.3667353Z -- Performing Test COMPILER_SUPPORTS_NO_AVX256_SPLIT 2025-06-01T21:03:10.6982073Z -- Performing Test COMPILER_SUPPORTS_NO_AVX256_SPLIT - Failed 2025-06-01T21:03:10.9145186Z -- Using ATen parallel backend: OMP 2025-06-01T21:03:10.9159883Z disabling CUDA because USE_CUDA is set false 2025-06-01T21:03:11.2993408Z -- Found OpenSSL: C:/Jenkins/Miniconda3/Library/lib/libcrypto.lib (found version "3.0.15") 2025-06-01T21:03:11.3838561Z -- Check size of long double 2025-06-01T21:03:11.7017847Z -- Check size of long double - done 2025-06-01T21:03:11.7022229Z -- Performing Test COMPILER_SUPPORTS_FLOAT128 2025-06-01T21:03:11.8202004Z -- Performing Test COMPILER_SUPPORTS_FLOAT128 - Failed 2025-06-01T21:03:11.8205022Z -- Performing Test COMPILER_SUPPORTS_SSE2 2025-06-01T21:03:12.1894448Z -- Performing Test COMPILER_SUPPORTS_SSE2 - Success 2025-06-01T21:03:12.1898737Z -- Performing Test COMPILER_SUPPORTS_SSE4 2025-06-01T21:03:12.5640635Z -- Performing Test COMPILER_SUPPORTS_SSE4 - Success 2025-06-01T21:03:12.5643651Z -- Performing Test COMPILER_SUPPORTS_AVX 2025-06-01T21:03:12.9318963Z -- Performing Test COMPILER_SUPPORTS_AVX - Success 2025-06-01T21:03:12.9322955Z -- Performing Test COMPILER_SUPPORTS_FMA4 2025-06-01T21:03:13.3065063Z -- Performing Test COMPILER_SUPPORTS_FMA4 - Success 2025-06-01T21:03:13.3067756Z -- Performing Test COMPILER_SUPPORTS_AVX2 2025-06-01T21:03:13.6784411Z -- Performing Test COMPILER_SUPPORTS_AVX2 - Success 2025-06-01T21:03:13.6788537Z -- Performing Test COMPILER_SUPPORTS_AVX512F 2025-06-01T21:03:14.0568863Z -- Performing Test COMPILER_SUPPORTS_AVX512F - Success 2025-06-01T21:03:14.0609323Z -- Found OpenMP_C: -openmp:experimental (found version "2.0") 2025-06-01T21:03:14.0618907Z -- Found OpenMP_CXX: -openmp:experimental (found version "2.0") 2025-06-01T21:03:14.0627556Z -- Found OpenMP: TRUE (found version "2.0") 2025-06-01T21:03:14.0631801Z -- Performing Test COMPILER_SUPPORTS_OPENMP 2025-06-01T21:03:14.4373172Z -- Performing Test COMPILER_SUPPORTS_OPENMP - Success 2025-06-01T21:03:14.4376606Z -- Performing Test COMPILER_SUPPORTS_OMP_SIMD 2025-06-01T21:03:14.5493205Z -- Performing Test COMPILER_SUPPORTS_OMP_SIMD - Failed 2025-06-01T21:03:14.5495710Z -- Performing Test COMPILER_SUPPORTS_WEAK_ALIASES 2025-06-01T21:03:14.6747810Z -- Performing Test COMPILER_SUPPORTS_WEAK_ALIASES - Failed 2025-06-01T21:03:14.6750359Z -- Performing Test COMPILER_SUPPORTS_BUILTIN_MATH 2025-06-01T21:03:14.8634772Z -- Performing Test COMPILER_SUPPORTS_BUILTIN_MATH - Failed 2025-06-01T21:03:14.8636987Z -- Performing Test COMPILER_SUPPORTS_SYS_GETRANDOM 2025-06-01T21:03:14.9513589Z -- Performing Test COMPILER_SUPPORTS_SYS_GETRANDOM - Failed 2025-06-01T21:03:15.0317746Z -- Configuring build for SLEEF-v3.8.0 2025-06-01T21:03:15.0318071Z Target system: Windows-10.0.17763 2025-06-01T21:03:15.0318382Z Target processor: AMD64 2025-06-01T21:03:15.0318620Z Host system: Windows-10.0.17763 2025-06-01T21:03:15.0318872Z Host processor: AMD64 2025-06-01T21:03:15.0319517Z Detected C compiler: MSVC @ C:/Program Files (x86)/Microsoft Visual Studio/2019/BuildTools/VC/Tools/MSVC/14.29.30133/bin/Hostx64/x64/cl.exe 2025-06-01T21:03:15.0320192Z CMake: 3.27.9 2025-06-01T21:03:15.0320711Z Make program: C:/Jenkins/Miniconda3/Library/bin/ninja.exe 2025-06-01T21:03:15.0321315Z -- Using option `/D_CRT_SECURE_NO_WARNINGS /D_CRT_NONSTDC_NO_DEPRECATE ` to compile libsleef 2025-06-01T21:03:15.0321783Z -- Building shared libs : OFF 2025-06-01T21:03:15.0322030Z -- Building static test bins: OFF 2025-06-01T21:03:15.0322297Z -- MPFR : LIB_MPFR-NOTFOUND 2025-06-01T21:03:15.0322521Z -- GMP : LIBGMP-NOTFOUND 2025-06-01T21:03:15.0322730Z -- RT : 2025-06-01T21:03:15.0322913Z -- FFTW3 : LIBFFTW3-NOTFOUND 2025-06-01T21:03:15.0323145Z -- OPENSSL : 3.0.15 2025-06-01T21:03:15.0323351Z -- SDE : SDE_COMMAND-NOTFOUND 2025-06-01T21:03:15.0323601Z -- COMPILER_SUPPORTS_OPENMP : FALSE 2025-06-01T21:03:15.0825690Z AT_INSTALL_INCLUDE_DIR include/ATen/core 2025-06-01T21:03:15.0826327Z core header install: C:/actions-runner/_work/pytorch/pytorch/build/aten/src/ATen/core/aten_interned_strings.h 2025-06-01T21:03:15.0827089Z core header install: C:/actions-runner/_work/pytorch/pytorch/build/aten/src/ATen/core/enum_tag.h 2025-06-01T21:03:15.0827806Z core header install: C:/actions-runner/_work/pytorch/pytorch/build/aten/src/ATen/core/TensorBody.h 2025-06-01T21:03:15.6268121Z -- Performing Test HAS_WNO_UNUSED_PRIVATE_FIELD 2025-06-01T21:03:15.7037327Z -- Performing Test HAS_WNO_UNUSED_PRIVATE_FIELD - Failed 2025-06-01T21:03:15.7042014Z -- Generating sources for unboxing kernels Python::Interpreter;-m;torchgen.gen_executorch;--source-path=C:/actions-runner/_work/pytorch/pytorch/test/edge/../../test/edge;--install-dir=C:/actions-runner/_work/pytorch/pytorch/build/out;--tags-path=C:/actions-runner/_work/pytorch/pytorch/test/edge/../../aten/src/ATen/native/tags.yaml;--aten-yaml-path=C:/actions-runner/_work/pytorch/pytorch/test/edge/../../aten/src/ATen/native/native_functions.yaml;--use-aten-lib;--op-selection-yaml-path=C:/actions-runner/_work/pytorch/pytorch/test/edge/../../test/edge/selected_operators.yaml;--custom-ops-yaml-path=C:/actions-runner/_work/pytorch/pytorch/test/edge/../../test/edge/custom_ops.yaml 2025-06-01T21:03:15.8399059Z CMake Warning at CMakeLists.txt:1276 (message): 2025-06-01T21:03:15.8399542Z Generated cmake files are only fully tested if one builds with system glog, 2025-06-01T21:03:15.8400107Z gflags, and protobuf. Other settings may generate files that are not well 2025-06-01T21:03:15.8400478Z tested. 2025-06-01T21:03:15.8400589Z 2025-06-01T21:03:15.8400594Z 2025-06-01T21:03:15.8425659Z -- 2025-06-01T21:03:15.8425912Z -- ******** Summary ******** 2025-06-01T21:03:15.8426172Z -- General: 2025-06-01T21:03:15.8426367Z -- CMake version : 3.27.9 2025-06-01T21:03:15.8426694Z -- CMake command : C:/Program Files/CMake/bin/cmake.exe 2025-06-01T21:03:15.8427038Z -- System : Windows 2025-06-01T21:03:15.8427626Z -- C++ compiler : C:/Program Files (x86)/Microsoft Visual Studio/2019/BuildTools/VC/Tools/MSVC/14.29.30133/bin/Hostx64/x64/cl.exe 2025-06-01T21:03:15.8428214Z -- C++ compiler id : MSVC 2025-06-01T21:03:15.8428493Z -- C++ compiler version : 19.29.30158.0 2025-06-01T21:03:15.8428775Z -- Using ccache if found : OFF 2025-06-01T21:03:15.8430014Z -- CXX flags : /DWIN32 /D_WINDOWS /GR /EHsc /Zc:__cplusplus /bigobj /FS /utf-8 -DUSE_PTHREADPOOL -DNDEBUG -DUSE_KINETO -DLIBKINETO_NOCUPTI -DLIBKINETO_NOROCTRACER -DLIBKINETO_NOXPUPTI=ON -DUSE_FBGEMM -DUSE_XNNPACK -DSYMBOLICATE_MOBILE_DEBUG_HANDLE /wd4624 /wd4068 /wd4067 /wd4267 /wd4661 /wd4717 /wd4244 /wd4804 /wd4273 2025-06-01T21:03:15.8431582Z -- Shared LD flags : /machine:x64 /ignore:4049 /ignore:4217 /ignore:4099 2025-06-01T21:03:15.8432057Z -- Static LD flags : /machine:x64 /ignore:4049 /ignore:4217 /ignore:4099 2025-06-01T21:03:15.8432516Z -- Module LD flags : /machine:x64 /ignore:4049 /ignore:4217 /ignore:4099 2025-06-01T21:03:15.8432877Z -- Build type : Release 2025-06-01T21:03:15.8434051Z -- 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-06-01T21:03:15.8435177Z -- CMAKE_PREFIX_PATH : C:\Jenkins\Miniconda3\Lib\site-packages 2025-06-01T21:03:15.8435648Z -- CMAKE_INSTALL_PREFIX : C:/actions-runner/_work/pytorch/pytorch/torch 2025-06-01T21:03:15.8436045Z -- USE_GOLD_LINKER : OFF 2025-06-01T21:03:15.8436274Z -- 2025-06-01T21:03:15.8436461Z -- TORCH_VERSION : 2.8.0 2025-06-01T21:03:15.8436728Z -- BUILD_STATIC_RUNTIME_BENCHMARK: OFF 2025-06-01T21:03:15.8437002Z -- BUILD_BINARY : OFF 2025-06-01T21:03:15.8437253Z -- BUILD_CUSTOM_PROTOBUF : ON 2025-06-01T21:03:15.8437487Z -- Link local protobuf : ON 2025-06-01T21:03:15.8437736Z -- BUILD_PYTHON : True 2025-06-01T21:03:15.8437976Z -- Python version : 3.9.19 2025-06-01T21:03:15.8438306Z -- Python executable : C:\Jenkins\Miniconda3\python.exe 2025-06-01T21:03:15.8438723Z -- Python library : C:/Jenkins/Miniconda3/libs/python39.lib 2025-06-01T21:03:15.8439127Z -- Python includes : C:/Jenkins/Miniconda3/include 2025-06-01T21:03:15.8439529Z -- Python site-package : C:\Jenkins\Miniconda3\Lib\site-packages 2025-06-01T21:03:15.8439897Z -- BUILD_SHARED_LIBS : ON 2025-06-01T21:03:15.8440160Z -- CAFFE2_USE_MSVC_STATIC_RUNTIME : OFF 2025-06-01T21:03:15.8440437Z -- BUILD_TEST : True 2025-06-01T21:03:15.8440681Z -- BUILD_JNI : OFF 2025-06-01T21:03:15.8441010Z -- BUILD_MOBILE_AUTOGRAD : OFF 2025-06-01T21:03:15.8441267Z -- BUILD_LITE_INTERPRETER: OFF 2025-06-01T21:03:15.8441515Z -- INTERN_BUILD_MOBILE : 2025-06-01T21:03:15.8441755Z -- TRACING_BASED : OFF 2025-06-01T21:03:15.8441984Z -- USE_BLAS : 1 2025-06-01T21:03:15.8442224Z -- BLAS : mkl 2025-06-01T21:03:15.8442452Z -- BLAS_HAS_SBGEMM : 2025-06-01T21:03:15.8442687Z -- USE_LAPACK : 1 2025-06-01T21:03:15.8442925Z -- LAPACK : mkl 2025-06-01T21:03:15.8443145Z -- USE_ASAN : OFF 2025-06-01T21:03:15.8443373Z -- USE_TSAN : OFF 2025-06-01T21:03:15.8443611Z -- USE_CPP_CODE_COVERAGE : OFF 2025-06-01T21:03:15.8443853Z -- USE_CUDA : 0 2025-06-01T21:03:15.8444070Z -- USE_XPU : 0 2025-06-01T21:03:15.8444292Z -- USE_ROCM : OFF 2025-06-01T21:03:15.8444544Z -- BUILD_NVFUSER : 2025-06-01T21:03:15.8444775Z -- USE_EIGEN_FOR_BLAS : 2025-06-01T21:03:15.8445012Z -- USE_FBGEMM : ON 2025-06-01T21:03:15.8445247Z -- USE_FAKELOWP : OFF 2025-06-01T21:03:15.8445504Z -- USE_KINETO : ON 2025-06-01T21:03:15.8445727Z -- USE_GFLAGS : OFF 2025-06-01T21:03:15.8445963Z -- USE_GLOG : OFF 2025-06-01T21:03:15.8446198Z -- USE_LITE_PROTO : OFF 2025-06-01T21:03:15.8446434Z -- USE_PYTORCH_METAL : OFF 2025-06-01T21:03:15.8446700Z -- USE_PYTORCH_METAL_EXPORT : OFF 2025-06-01T21:03:15.8446972Z -- USE_MPS : OFF 2025-06-01T21:03:15.8447208Z -- CAN_COMPILE_METAL : 2025-06-01T21:03:15.8447437Z -- USE_MKL : ON 2025-06-01T21:03:15.8447837Z -- USE_STATIC_MKL : OFF 2025-06-01T21:03:15.8448072Z -- USE_MKLDNN : ON 2025-06-01T21:03:15.8448313Z -- USE_MKLDNN_ACL : OFF 2025-06-01T21:03:15.8448546Z -- USE_MKLDNN_CBLAS : OFF 2025-06-01T21:03:15.8448786Z -- USE_UCC : OFF 2025-06-01T21:03:15.8449009Z -- USE_ITT : ON 2025-06-01T21:03:15.8449244Z -- USE_XCCL : OFF 2025-06-01T21:03:15.8449471Z -- USE_NCCL : OFF 2025-06-01T21:03:15.8449706Z -- USE_NNPACK : OFF 2025-06-01T21:03:15.8449940Z -- USE_NUMPY : ON 2025-06-01T21:03:15.8450163Z -- USE_OBSERVERS : ON 2025-06-01T21:03:15.8450393Z -- USE_OPENCL : OFF 2025-06-01T21:03:15.8450620Z -- USE_OPENMP : ON 2025-06-01T21:03:15.8450947Z -- USE_MIMALLOC : ON 2025-06-01T21:03:15.8451187Z -- USE_MIMALLOC_ON_MKL : OFF 2025-06-01T21:03:15.8451435Z -- USE_VULKAN : OFF 2025-06-01T21:03:15.8451666Z -- USE_PROF : OFF 2025-06-01T21:03:15.8451905Z -- USE_PYTORCH_QNNPACK : OFF 2025-06-01T21:03:15.8452142Z -- USE_XNNPACK : ON 2025-06-01T21:03:15.8452386Z -- USE_DISTRIBUTED : ON 2025-06-01T21:03:15.8452633Z -- USE_MPI : OFF 2025-06-01T21:03:15.8452873Z -- USE_GLOO : ON 2025-06-01T21:03:15.8453123Z -- USE_GLOO_WITH_OPENSSL : OFF 2025-06-01T21:03:15.8453362Z -- USE_GLOO_IBVERBS : OFF 2025-06-01T21:03:15.8453616Z -- USE_TENSORPIPE : OFF 2025-06-01T21:03:15.8453902Z -- Public Dependencies : caffe2::mkl 2025-06-01T21:03:15.8454647Z -- Private Dependencies : Threads::Threads;pthreadpool;cpuinfo;XNNPACK;microkernels-prod;fbgemm;ittnotify;fp16;caffe2::openmp;gloo;fmt::fmt-header-only;kineto 2025-06-01T21:03:15.8455375Z -- Public CUDA Deps. : 2025-06-01T21:03:15.8455625Z -- Private CUDA Deps. : 2025-06-01T21:03:15.8455867Z -- USE_COREML_DELEGATE : OFF 2025-06-01T21:03:15.8456117Z -- BUILD_LAZY_TS_BACKEND : ON 2025-06-01T21:03:15.8456375Z -- USE_ROCM_KERNEL_ASSERT : OFF 2025-06-01T21:03:15.8527494Z -- Performing Test HAS_WMISSING_PROTOTYPES 2025-06-01T21:03:15.9253930Z -- Performing Test HAS_WMISSING_PROTOTYPES - Failed 2025-06-01T21:03:15.9275645Z -- Performing Test HAS_WERROR_MISSING_PROTOTYPES 2025-06-01T21:03:15.9989277Z -- Performing Test HAS_WERROR_MISSING_PROTOTYPES - Failed 2025-06-01T21:03:16.0064126Z -- Configuring done (51.7s) 2025-06-01T21:03:22.0898261Z -- Generating done (5.1s) 2025-06-01T21:03:22.3129437Z CMake Warning: 2025-06-01T21:03:22.3129814Z Manually-specified variables were not used by the project: 2025-06-01T21:03:22.3130100Z 2025-06-01T21:03:22.3130200Z BUILD_ENVIRONMENT 2025-06-01T21:03:22.3130397Z BUILD_TYPE 2025-06-01T21:03:22.3130609Z BUILD_WHEEL 2025-06-01T21:03:22.3130719Z 2025-06-01T21:03:22.3130723Z 2025-06-01T21:03:22.3156160Z -- Build files have been written to: C:/actions-runner/_work/pytorch/pytorch/build 2025-06-01T21:03:28.0329757Z [1/4] Generating ATen declarations_yaml 2025-06-01T21:03:35.2052626Z [2/4] Generating ATen headers 2025-06-01T21:03:36.0312648Z [3/4] Generating ATen sources 2025-06-01T21:03:41.7398409Z [1/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\arena.cc.obj 2025-06-01T21:03:41.7512771Z [2/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\generated_message_util.cc.obj 2025-06-01T21:03:41.7528100Z [3/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\coded_stream.cc.obj 2025-06-01T21:03:41.7597639Z [4/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\implicit_weak_message.cc.obj 2025-06-01T21:03:41.7611688Z [5/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\generated_enum_util.cc.obj 2025-06-01T21:03:41.7626828Z [6/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\generated_message_table_driven_lite.cc.obj 2025-06-01T21:03:41.7977753Z [7/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\any_lite.cc.obj 2025-06-01T21:03:41.8061767Z [8/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\extension_set.cc.obj 2025-06-01T21:03:41.9932753Z [9/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\strtod.cc.obj 2025-06-01T21:03:42.0084586Z [10/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\zero_copy_stream.cc.obj 2025-06-01T21:03:42.0228460Z [11/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\zero_copy_stream_impl.cc.obj 2025-06-01T21:03:42.0441399Z [12/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\parse_context.cc.obj 2025-06-01T21:03:42.0863945Z [13/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\zero_copy_stream_impl_lite.cc.obj 2025-06-01T21:03:42.0944536Z [14/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\message_lite.cc.obj 2025-06-01T21:03:42.0958536Z [15/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\repeated_field.cc.obj 2025-06-01T21:03:42.2415433Z [16/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\bytestream.cc.obj 2025-06-01T21:03:42.2827937Z [17/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\status.cc.obj 2025-06-01T21:03:42.3087207Z [18/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\int128.cc.obj 2025-06-01T21:03:42.3099915Z [19/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\statusor.cc.obj 2025-06-01T21:03:42.3265704Z [20/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\stringprintf.cc.obj 2025-06-01T21:03:42.3310105Z [21/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\stringpiece.cc.obj 2025-06-01T21:03:42.4712562Z [22/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\structurally_valid.cc.obj 2025-06-01T21:03:42.5274754Z [23/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\strutil.cc.obj 2025-06-01T21:03:42.5469350Z [24/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\time.cc.obj 2025-06-01T21:03:42.6126739Z [25/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\wire_format_lite.cc.obj 2025-06-01T21:03:42.6307867Z [26/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\any.cc.obj 2025-06-01T21:03:42.6419283Z [27/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\any.pb.cc.obj 2025-06-01T21:03:42.7897344Z [28/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\api.pb.cc.obj 2025-06-01T21:03:42.8603293Z [29/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\compiler\importer.cc.obj 2025-06-01T21:03:42.9430361Z [30/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\compiler\parser.cc.obj 2025-06-01T21:03:43.0174270Z [31/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\descriptor.pb.cc.obj 2025-06-01T21:03:43.0538676Z [32/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\duration.pb.cc.obj 2025-06-01T21:03:43.0555293Z [33/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\descriptor.cc.obj 2025-06-01T21:03:43.0571554Z [34/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\descriptor_database.cc.obj 2025-06-01T21:03:43.1562365Z [35/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\common.cc.obj 2025-06-01T21:03:43.1903444Z [36/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\io_win32.cc.obj 2025-06-01T21:03:43.2092714Z [37/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\gzip_stream.cc.obj 2025-06-01T21:03:43.2443051Z [38/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\dynamic_message.cc.obj 2025-06-01T21:03:43.2592839Z [39/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\empty.pb.cc.obj 2025-06-01T21:03:43.3416962Z [40/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\extension_set_heavy.cc.obj 2025-06-01T21:03:43.3696290Z [41/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\field_mask.pb.cc.obj 2025-06-01T21:03:43.4044254Z [42/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\generated_message_table_driven.cc.obj 2025-06-01T21:03:43.4372097Z [43/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\printer.cc.obj 2025-06-01T21:03:43.4487142Z [44/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\tokenizer.cc.obj 2025-06-01T21:03:43.4610509Z [45/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\generated_message_reflection.cc.obj 2025-06-01T21:03:43.6137936Z [46/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\service.cc.obj 2025-06-01T21:03:43.6516741Z [47/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\map_field.cc.obj 2025-06-01T21:03:43.6750826Z [48/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\reflection_ops.cc.obj 2025-06-01T21:03:43.6862793Z [49/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\message.cc.obj 2025-06-01T21:03:43.7050989Z [50/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\substitute.cc.obj 2025-06-01T21:03:43.7290481Z [51/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\source_context.pb.cc.obj 2025-06-01T21:03:43.8449914Z [52/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\struct.pb.cc.obj 2025-06-01T21:03:43.8725046Z [53/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\text_format.cc.obj 2025-06-01T21:03:43.9398841Z [54/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\delimited_message_util.cc.obj 2025-06-01T21:03:43.9483259Z [55/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\timestamp.pb.cc.obj 2025-06-01T21:03:43.9688927Z [56/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\unknown_field_set.cc.obj 2025-06-01T21:03:44.0138034Z [57/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\type.pb.cc.obj 2025-06-01T21:03:44.0159453Z [58/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\field_comparator.cc.obj 2025-06-01T21:03:44.0472192Z [59/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\field_mask_util.cc.obj 2025-06-01T21:03:44.1840802Z [60/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\error_listener.cc.obj 2025-06-01T21:03:44.2015055Z [61/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\datapiece.cc.obj 2025-06-01T21:03:44.2407002Z [62/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\json_escaping.cc.obj 2025-06-01T21:03:44.2718155Z [63/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\default_value_objectwriter.cc.obj 2025-06-01T21:03:44.2953725Z [64/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\json_stream_parser.cc.obj 2025-06-01T21:03:44.3008412Z [65/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\field_mask_utility.cc.obj 2025-06-01T21:03:44.3737429Z [66/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\object_writer.cc.obj 2025-06-01T21:03:44.3824846Z [67/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\json_objectwriter.cc.obj 2025-06-01T21:03:44.5591788Z [68/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\proto_writer.cc.obj 2025-06-01T21:03:44.6139661Z [69/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\type_info_test_helper.cc.obj 2025-06-01T21:03:44.6319414Z [70/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\protostream_objectsource.cc.obj 2025-06-01T21:03:44.6378939Z [71/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\protostream_objectwriter.cc.obj 2025-06-01T21:03:44.6469986Z [72/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\type_info.cc.obj 2025-06-01T21:03:44.6496483Z [73/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\utility.cc.obj 2025-06-01T21:03:44.6577505Z [74/7110] Building RC object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\version.rc.res 2025-06-01T21:03:44.7015558Z Microsoft (R) Windows (R) Resource Compiler Version 10.0.10011.16384 2025-06-01T21:03:44.7016570Z 2025-06-01T21:03:44.7017155Z 2025-06-01T21:03:44.7017577Z Copyright (C) Microsoft Corporation. All rights reserved. 2025-06-01T21:03:44.7017928Z 2025-06-01T21:03:44.7017937Z 2025-06-01T21:03:44.7017941Z 2025-06-01T21:03:44.7017946Z 2025-06-01T21:03:44.7018427Z [75/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\json_util.cc.obj 2025-06-01T21:03:44.7785222Z [76/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\message_differencer.cc.obj 2025-06-01T21:03:44.9747517Z [77/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\wrappers.pb.cc.obj 2025-06-01T21:03:44.9954783Z [78/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\code_generator.cc.obj 2025-06-01T21:03:45.0118461Z [79/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\type_resolver_util.cc.obj 2025-06-01T21:03:45.0438690Z [80/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\wire_format.cc.obj 2025-06-01T21:03:45.0781275Z [81/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_enum.cc.obj 2025-06-01T21:03:45.1016670Z [82/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_enum_field.cc.obj 2025-06-01T21:03:45.2068228Z [83/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\command_line_interface.cc.obj 2025-06-01T21:03:45.4001859Z [84/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_extension.cc.obj 2025-06-01T21:03:45.4024629Z [85/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_field.cc.obj 2025-06-01T21:03:45.4047136Z [86/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_generator.cc.obj 2025-06-01T21:03:45.4133380Z [87/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_file.cc.obj 2025-06-01T21:03:45.4313570Z [88/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_map_field.cc.obj 2025-06-01T21:03:45.4711823Z [89/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_helpers.cc.obj 2025-06-01T21:03:45.5884982Z [90/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_message.cc.obj 2025-06-01T21:03:45.7489544Z [91/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_doc_comment.cc.obj 2025-06-01T21:03:45.7505611Z [92/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_primitive_field.cc.obj 2025-06-01T21:03:45.7638441Z [93/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_service.cc.obj 2025-06-01T21:03:45.7714726Z [94/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_message_field.cc.obj 2025-06-01T21:03:45.8134970Z [95/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_padding_optimizer.cc.obj 2025-06-01T21:03:45.8284565Z [96/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_string_field.cc.obj 2025-06-01T21:03:45.9084094Z [97/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_enum.cc.obj 2025-06-01T21:03:46.1080204Z [98/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_generator.cc.obj 2025-06-01T21:03:46.1134722Z [99/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_enum_field.cc.obj 2025-06-01T21:03:46.1189905Z [100/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_field_base.cc.obj 2025-06-01T21:03:46.1379133Z [101/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_helpers.cc.obj 2025-06-01T21:03:46.1695906Z [102/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_map_field.cc.obj 2025-06-01T21:03:46.1853861Z [103/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_message.cc.obj 2025-06-01T21:03:46.2065320Z [104/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\time_util.cc.obj 2025-06-01T21:03:46.2615241Z [105/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_message_field.cc.obj 2025-06-01T21:03:46.4549890Z [106/7110] Linking CXX static library lib\libprotobuf.lib 2025-06-01T21:03:46.4613542Z [107/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_repeated_enum_field.cc.obj 2025-06-01T21:03:46.4835157Z [108/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_repeated_message_field.cc.obj 2025-06-01T21:03:46.4910364Z [109/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_reflection_class.cc.obj 2025-06-01T21:03:46.5128955Z [110/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_primitive_field.cc.obj 2025-06-01T21:03:46.5310730Z [111/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_source_generator_base.cc.obj 2025-06-01T21:03:46.5434149Z [112/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_repeated_primitive_field.cc.obj 2025-06-01T21:03:46.6051657Z [113/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_wrapper_field.cc.obj 2025-06-01T21:03:46.7255554Z [114/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_doc_comment.cc.obj 2025-06-01T21:03:46.8088395Z [115/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_context.cc.obj 2025-06-01T21:03:46.8503687Z [116/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_enum_field.cc.obj 2025-06-01T21:03:46.8519663Z [117/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_enum.cc.obj 2025-06-01T21:03:46.8770185Z [118/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_enum_field_lite.cc.obj 2025-06-01T21:03:46.8950914Z [119/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_enum_lite.cc.obj 2025-06-01T21:03:46.9122402Z [120/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_extension.cc.obj 2025-06-01T21:03:47.0096578Z [121/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_extension_lite.cc.obj 2025-06-01T21:03:47.0847402Z [122/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_field.cc.obj 2025-06-01T21:03:47.2167041Z [123/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_file.cc.obj 2025-06-01T21:03:47.2190881Z [124/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_generator_factory.cc.obj 2025-06-01T21:03:47.2206546Z [125/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_generator.cc.obj 2025-06-01T21:03:47.2454100Z [126/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_map_field.cc.obj 2025-06-01T21:03:47.2648902Z [127/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_map_field_lite.cc.obj 2025-06-01T21:03:47.3158706Z [128/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_helpers.cc.obj 2025-06-01T21:03:47.4180165Z [129/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_message_builder.cc.obj 2025-06-01T21:03:47.4542208Z [130/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_message.cc.obj 2025-06-01T21:03:47.5609624Z [131/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_message_field_lite.cc.obj 2025-06-01T21:03:47.5756906Z [132/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_message_builder_lite.cc.obj 2025-06-01T21:03:47.5922420Z [133/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_message_field.cc.obj 2025-06-01T21:03:47.5980924Z [134/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_name_resolver.cc.obj 2025-06-01T21:03:47.6455206Z [135/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_message_lite.cc.obj 2025-06-01T21:03:47.6738051Z [136/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_primitive_field.cc.obj 2025-06-01T21:03:47.7270897Z [137/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\js\well_known_types_embed.cc.obj 2025-06-01T21:03:47.7822534Z [138/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_primitive_field_lite.cc.obj 2025-06-01T21:03:47.8187740Z [139/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_service.cc.obj 2025-06-01T21:03:47.9075838Z [140/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_string_field.cc.obj 2025-06-01T21:03:47.9169332Z [141/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_shared_code_generator.cc.obj 2025-06-01T21:03:47.9286480Z [142/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_string_field_lite.cc.obj 2025-06-01T21:03:48.0214455Z [143/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_enum.cc.obj 2025-06-01T21:03:48.0403281Z [144/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\js\js_generator.cc.obj 2025-06-01T21:03:48.0828311Z [145/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_enum_field.cc.obj 2025-06-01T21:03:48.1562382Z [146/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_extension.cc.obj 2025-06-01T21:03:48.1580038Z [147/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_field.cc.obj 2025-06-01T21:03:48.3066314Z [148/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_generator.cc.obj 2025-06-01T21:03:48.3121939Z [149/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_file.cc.obj 2025-06-01T21:03:48.3643144Z [150/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_helpers.cc.obj 2025-06-01T21:03:48.3969427Z [151/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_map_field.cc.obj 2025-06-01T21:03:48.4096445Z [152/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_message.cc.obj 2025-06-01T21:03:48.4245228Z [153/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_message_field.cc.obj 2025-06-01T21:03:48.4945399Z [154/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_oneof.cc.obj 2025-06-01T21:03:48.5278753Z [155/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_primitive_field.cc.obj 2025-06-01T21:03:48.5379053Z [156/7110] Building RC object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\version.rc.res 2025-06-01T21:03:48.6648520Z Microsoft (R) Windows (R) Resource Compiler Version 10.0.10011.16384 2025-06-01T21:03:48.6648857Z 2025-06-01T21:03:48.6648864Z 2025-06-01T21:03:48.6649135Z Copyright (C) Microsoft Corporation. All rights reserved. 2025-06-01T21:03:48.6649486Z 2025-06-01T21:03:48.6649491Z 2025-06-01T21:03:48.6649495Z 2025-06-01T21:03:48.6649499Z 2025-06-01T21:03:48.6649973Z [157/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\plugin.cc.obj 2025-06-01T21:03:48.6748606Z [158/7110] Building RC object third_party\protobuf\cmake\CMakeFiles\protoc.dir\version.rc.res 2025-06-01T21:03:48.7112647Z Microsoft (R) Windows (R) Resource Compiler Version 10.0.10011.16384 2025-06-01T21:03:48.7113085Z 2025-06-01T21:03:48.7114272Z 2025-06-01T21:03:48.7114735Z Copyright (C) Microsoft Corporation. All rights reserved. 2025-06-01T21:03:48.7115075Z 2025-06-01T21:03:48.7115079Z 2025-06-01T21:03:48.7115083Z 2025-06-01T21:03:48.7115090Z 2025-06-01T21:03:48.7115704Z [159/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\php\php_generator.cc.obj 2025-06-01T21:03:48.7444802Z [160/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\plugin.pb.cc.obj 2025-06-01T21:03:48.7502980Z [161/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\zip_writer.cc.obj 2025-06-01T21:03:48.7986913Z [162/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\python\python_generator.cc.obj 2025-06-01T21:03:48.7997112Z [163/7110] Building C object confu-deps\pthreadpool\CMakeFiles\pthreadpool.dir\src\legacy-api.c.obj 2025-06-01T21:03:48.8146478Z [164/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\ruby\ruby_generator.cc.obj 2025-06-01T21:03:48.8251640Z [165/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\protoc.dir\__\src\google\protobuf\compiler\main.cc.obj 2025-06-01T21:03:48.8795543Z [166/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\subprocess.cc.obj 2025-06-01T21:03:48.8957650Z [167/7110] Building C object sleef\src\libm\CMakeFiles\mkalias.dir\mkalias.c.obj 2025-06-01T21:03:48.8998779Z [168/7110] Building C object sleef\src\libm\CMakeFiles\mkrename.dir\mkrename.c.obj 2025-06-01T21:03:48.9329602Z [169/7110] Building C object sleef\src\libm\CMakeFiles\mkdisp.dir\mkdisp.c.obj 2025-06-01T21:03:49.1000778Z [170/7110] Linking CXX static library lib\libprotoc.lib 2025-06-01T21:03:49.1795497Z [171/7110] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\cache.c.obj 2025-06-01T21:03:49.2322356Z [172/7110] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\api.c.obj 2025-06-01T21:03:49.2556771Z [173/7110] Building C object confu-deps\pthreadpool\CMakeFiles\pthreadpool.dir\src\memory.c.obj 2025-06-01T21:03:49.2612148Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:03:49.2613693Z [174/7110] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\init.c.obj 2025-06-01T21:03:49.2908002Z [175/7110] Building C object confu-deps\pthreadpool\CMakeFiles\pthreadpool.dir\src\portable-api.c.obj 2025-06-01T21:03:49.2954695Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:03:49.2956497Z [176/7110] Building C object confu-deps\pthreadpool\CMakeFiles\pthreadpool.dir\src\windows.c.obj 2025-06-01T21:03:49.3122709Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:03:49.3123659Z [177/7110] Building C object confu-deps\pthreadpool\CMakeFiles\pthreadpool.dir\src\fastpath.c.obj 2025-06-01T21:03:49.3463116Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:03:49.3463964Z [178/7110] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\info.c.obj 2025-06-01T21:03:49.3518903Z [179/7110] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\init.c.obj 2025-06-01T21:03:49.3675851Z [180/7110] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\uarch.c.obj 2025-06-01T21:03:49.3687546Z [181/7110] Linking C static library lib\pthreadpool.lib 2025-06-01T21:03:49.3741722Z [182/7110] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\name.c.obj 2025-06-01T21:03:49.3762667Z [183/7110] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\vendor.c.obj 2025-06-01T21:03:49.4299215Z [184/7110] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\topology.c.obj 2025-06-01T21:03:49.4386038Z [185/7110] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\isa.c.obj 2025-06-01T21:03:49.4528928Z [186/7110] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\cache\descriptor.c.obj 2025-06-01T21:03:49.4586541Z [187/7110] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\cache\init.c.obj 2025-06-01T21:03:49.4830365Z [188/7110] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\log.c.obj 2025-06-01T21:03:49.4920240Z [189/7110] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\cache\deterministic.c.obj 2025-06-01T21:03:49.5260319Z [190/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-avgpool\f16-avgpool-9p8x-minmax-f16c-c8.c.obj 2025-06-01T21:03:49.5603673Z [191/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-avgpool\f16-avgpool-9x-minmax-f16c-c8.c.obj 2025-06-01T21:03:49.5883053Z [192/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-dwconv\gen\f16-dwconv-25p8c-minmax-fma3-acc2.c.obj 2025-06-01T21:03:49.6099989Z [193/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-dwconv\gen\f16-dwconv-9p16c-minmax-fma3.c.obj 2025-06-01T21:03:49.6223564Z [194/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int16-u16.c.obj 2025-06-01T21:03:49.6237351Z [195/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-dwconv\gen\f16-dwconv-4p16c-minmax-fma3.c.obj 2025-06-01T21:03:49.6257852Z [196/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-dwconv\gen\f16-dwconv-3p16c-minmax-fma3.c.obj 2025-06-01T21:03:49.6455464Z [197/7110] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\windows\init.c.obj 2025-06-01T21:03:49.6539198Z [198/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx512skx-u16.c.obj 2025-06-01T21:03:49.6927112Z [199/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-f16c-u16.c.obj 2025-06-01T21:03:49.7223266Z [200/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-scalar-u4.c.obj 2025-06-01T21:03:49.7280884Z [201/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int16-u32.c.obj 2025-06-01T21:03:49.7293962Z [202/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-scalar-u1.c.obj 2025-06-01T21:03:49.7305718Z [203/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int16-u16.c.obj 2025-06-01T21:03:49.7757828Z [204/7110] 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-06-01T21:03:49.7809925Z [205/7110] 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-06-01T21:03:49.7990511Z [206/7110] 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-06-01T21:03:49.8288062Z [207/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-avx512skx-c64.c.obj 2025-06-01T21:03:49.8302200Z [208/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-f16c-c32.c.obj 2025-06-01T21:03:49.8379718Z [209/7110] 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-06-01T21:03:49.8512728Z [210/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-avx512skx-u64-acc4.c.obj 2025-06-01T21:03:49.8916101Z [211/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-f16c-u32-acc4.c.obj 2025-06-01T21:03:49.9027741Z [212/7110] Linking CXX executable bin\protoc.exe 2025-06-01T21:03:49.9039728Z [213/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-ibilinear\gen\f16-ibilinear-fma3-c8.c.obj 2025-06-01T21:03:49.9135500Z [214/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-maxpool\f16-maxpool-9p8x-minmax-f16c-c8.c.obj 2025-06-01T21:03:49.9271285Z [215/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-pavgpool\f16-pavgpool-9x-minmax-avx2-c8.c.obj 2025-06-01T21:03:49.9328175Z [216/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-imagic-u4.c.obj 2025-06-01T21:03:49.9405677Z [217/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-pavgpool\f16-pavgpool-9p8x-minmax-avx2-c8.c.obj 2025-06-01T21:03:49.9559276Z [218/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-qu8-vcvt\gen\f16-qu8-vcvt-scalar-imagic-u4.c.obj 2025-06-01T21:03:49.9887763Z [219/7110] Running gen_proto.py on onnx/onnx.in.proto 2025-06-01T21:03:49.9937001Z Processing C:\actions-runner\_work\pytorch\pytorch\third_party\onnx\onnx\onnx.in.proto 2025-06-01T21:03:49.9937408Z 2025-06-01T21:03:49.9937745Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx_onnx_torch-ml.proto 2025-06-01T21:03:49.9938231Z 2025-06-01T21:03:49.9938561Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx_onnx_torch-ml.proto3 2025-06-01T21:03:49.9939741Z 2025-06-01T21:03:49.9940034Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-ml.pb.h 2025-06-01T21:03:49.9940412Z 2025-06-01T21:03:49.9940723Z generating C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx_pb.py 2025-06-01T21:03:49.9941126Z 2025-06-01T21:03:49.9941776Z [220/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u32.c.obj 2025-06-01T21:03:50.0006014Z [221/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-rminmax\f16-rmax-f16c-u32.c.obj 2025-06-01T21:03:50.0259849Z [222/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-rminmax\gen\f16-rmax-avx512skx-u64-acc4.c.obj 2025-06-01T21:03:50.0292563Z [223/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-rminmax\gen\f16-rmax-scalar-u2-acc2.c.obj 2025-06-01T21:03:50.1039615Z [224/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-rminmax\gen\f16-rminmax-avx512skx-u64-acc4.c.obj 2025-06-01T21:03:50.1050996Z [225/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-rminmax\gen\f16-rminmax-scalar-u2-acc2.c.obj 2025-06-01T21:03:50.1064377Z [226/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vaddc-f16c-u16.c.obj 2025-06-01T21:03:50.1079908Z [227/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vdiv-f16c-u8.c.obj 2025-06-01T21:03:50.1093076Z [228/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vadd-f16c-u16.c.obj 2025-06-01T21:03:50.1197868Z [229/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vdivc-f16c-u8.c.obj 2025-06-01T21:03:50.2166473Z [230/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vmaxc-f16c-u16.c.obj 2025-06-01T21:03:50.2226568Z [231/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vmin-f16c-u16.c.obj 2025-06-01T21:03:50.2242270Z [232/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vmax-f16c-u16.c.obj 2025-06-01T21:03:50.2354823Z [233/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vminc-f16c-u16.c.obj 2025-06-01T21:03:50.2370900Z [234/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vmul-f16c-u16.c.obj 2025-06-01T21:03:50.2399141Z [235/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vprelu-f16c-u16.c.obj 2025-06-01T21:03:50.2647771Z [236/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vmulc-f16c-u16.c.obj 2025-06-01T21:03:50.3265596Z [237/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vpreluc-f16c-u16.c.obj 2025-06-01T21:03:50.3327789Z [238/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vrpreluc-f16c-u16.c.obj 2025-06-01T21:03:50.3344554Z [239/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vrdivc-f16c-u8.c.obj 2025-06-01T21:03:50.3527030Z [240/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vrsubc-f16c-u16.c.obj 2025-06-01T21:03:50.3778191Z [241/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vsub-f16c-u16.c.obj 2025-06-01T21:03:50.3853242Z [242/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vsqrdiffc-f16c-u16.c.obj 2025-06-01T21:03:50.3923216Z [243/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vsqrdiff-f16c-u16.c.obj 2025-06-01T21:03:50.4322840Z [244/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vsubc-f16c-u16.c.obj 2025-06-01T21:03:50.4381729Z [245/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vclamp\gen\f16-vclamp-f16c-u16.c.obj 2025-06-01T21:03:50.4476097Z [246/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-velu\gen\f16-velu-avx2-rr1-p3-u16.c.obj 2025-06-01T21:03:50.4730254Z [247/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vhswish\gen\f16-vhswish-f16c-u16.c.obj 2025-06-01T21:03:50.4792908Z [248/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vmulcaddc\gen\f16-vmulcaddc-c8-minmax-fma3-2x.c.obj 2025-06-01T21:03:50.4809567Z [249/7110] Running C++ protocol buffer compiler on C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto 2025-06-01T21:03:50.5217139Z [250/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vrnd\gen\f16-vrndd-f16c-u16.c.obj 2025-06-01T21:03:50.5230615Z [251/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vlrelu\gen\f16-vlrelu-f16c-u16.c.obj 2025-06-01T21:03:50.5414512Z [252/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vrnd\gen\f16-vrndne-f16c-u16.c.obj 2025-06-01T21:03:50.5478899Z [253/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vrnd\gen\f16-vrndu-f16c-u16.c.obj 2025-06-01T21:03:50.5689103Z [254/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vrnd\gen\f16-vrndz-f16c-u16.c.obj 2025-06-01T21:03:50.5751610Z [255/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vrsqrt\gen\f16-vrsqrt-f16c-rsqrt-u32.c.obj 2025-06-01T21:03:50.5874077Z [256/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-rcp-u32.c.obj 2025-06-01T21:03:50.5887999Z [257/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vsqrt\gen\f16-vsqrt-f16c-rsqrt-u32.c.obj 2025-06-01T21:03:50.6457110Z [258/7110] 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-06-01T21:03:50.6515579Z [259/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vunary\gen\f16-vneg-sse2-u16.c.obj 2025-06-01T21:03:50.6556658Z [260/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-argmaxpool\f32-argmaxpool-4x-sse2-c4.c.obj 2025-06-01T21:03:50.6567943Z [261/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vunary\gen\f16-vabs-sse2-u16.c.obj 2025-06-01T21:03:50.6636671Z [262/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-argmaxpool\f32-argmaxpool-4x-scalar-c1.c.obj 2025-06-01T21:03:50.6839116Z [263/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-argmaxpool\f32-argmaxpool-9p8x-scalar-c1.c.obj 2025-06-01T21:03:50.6983866Z [264/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vunary\gen\f16-vsqr-f16c-u16.c.obj 2025-06-01T21:03:50.7089048Z [265/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vtanh\gen\f16-vtanh-fma3-polynomial-p19h9t2-u32.c.obj 2025-06-01T21:03:50.7162109Z [266/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-argmaxpool\f32-argmaxpool-9x-sse2-c4.c.obj 2025-06-01T21:03:50.7237765Z [267/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-argmaxpool\f32-argmaxpool-9p8x-sse2-c4.c.obj 2025-06-01T21:03:50.7441586Z [268/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-argmaxpool\f32-argmaxpool-9x-scalar-c1.c.obj 2025-06-01T21:03:50.7578905Z [269/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-avgpool\f32-avgpool-9p8x-minmax-scalar-c1.c.obj 2025-06-01T21:03:50.7628771Z [270/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-avgpool\f32-avgpool-9p8x-minmax-sse-c4.c.obj 2025-06-01T21:03:50.8041960Z [271/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-avgpool\f32-avgpool-9x-minmax-scalar-c1.c.obj 2025-06-01T21:03:50.8098705Z [272/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-conv-hwc2chw\f32-conv-hwc2chw-3x3s2p1c3x4-scalar-1x1.c.obj 2025-06-01T21:03:50.8226378Z [273/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-conv-hwc2chw\f32-conv-hwc2chw-3x3s2p1c3x4-sse-2x2.c.obj 2025-06-01T21:03:50.8274698Z [274/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-avgpool\f32-avgpool-9x-minmax-sse-c4.c.obj 2025-06-01T21:03:50.8457939Z [275/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-25p16c-minmax-avx512f.c.obj 2025-06-01T21:03:50.8529262Z [276/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-25p1c-minmax-scalar-acc2.c.obj 2025-06-01T21:03:50.8918013Z [277/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-25p1c-scalar-acc2.c.obj 2025-06-01T21:03:50.8972672Z [278/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-25p8c-minmax-avx.c.obj 2025-06-01T21:03:50.9279915Z [279/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-25p8c-minmax-sse.c.obj 2025-06-01T21:03:50.9329321Z [280/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-3p16c-minmax-avx.c.obj 2025-06-01T21:03:50.9502565Z [281/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l4c1s1r-minmax-scalar-acc2.c.obj 2025-06-01T21:03:50.9633963Z [282/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-25p8c-minmax-fma3.c.obj 2025-06-01T21:03:50.9765093Z [283/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-3p16c-minmax-fma3.c.obj 2025-06-01T21:03:50.9784397Z [284/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-3p16c-minmax-avx512f.c.obj 2025-06-01T21:03:51.0031961Z [285/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-3p1c-scalar-acc2.c.obj 2025-06-01T21:03:51.0094151Z [286/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-3p1c-minmax-scalar-acc2.c.obj 2025-06-01T21:03:51.0401374Z [287/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-3p8c-minmax-sse.c.obj 2025-06-01T21:03:51.0701370Z [288/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-4p16c-minmax-avx.c.obj 2025-06-01T21:03:51.0712805Z [289/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-4p16c-minmax-avx512f.c.obj 2025-06-01T21:03:51.0760518Z [290/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-4p16c-minmax-fma3.c.obj 2025-06-01T21:03:51.0925836Z [291/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-4p1c-minmax-scalar-acc2.c.obj 2025-06-01T21:03:51.0937093Z [292/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-4p1c-scalar-acc2.c.obj 2025-06-01T21:03:51.1091494Z [293/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-4p8c-minmax-sse.c.obj 2025-06-01T21:03:51.1175010Z [294/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l32c16s1r-minmax-avx512f.c.obj 2025-06-01T21:03:51.1609216Z [295/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l8c8s4r-minmax-fma3.c.obj 2025-06-01T21:03:51.1843608Z [296/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l8c8s4r-minmax-avx.c.obj 2025-06-01T21:03:51.1910118Z [297/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l16c4s4r-minmax-sse.c.obj 2025-06-01T21:03:51.2098782Z [298/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-9p16c-minmax-fma3.c.obj 2025-06-01T21:03:51.2141332Z [299/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-9p16c-minmax-avx512f.c.obj 2025-06-01T21:03:51.2194273Z [300/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-9p16c-minmax-avx.c.obj 2025-06-01T21:03:51.2274383Z [301/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-9p1c-scalar-acc2.c.obj 2025-06-01T21:03:51.2288436Z [302/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-9p1c-minmax-scalar-acc2.c.obj 2025-06-01T21:03:51.2737752Z [303/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-9p8c-minmax-sse.c.obj 2025-06-01T21:03:51.3058278Z [304/7110] 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-06-01T21:03:51.3073239Z [305/7110] 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-06-01T21:03:51.3291593Z [306/7110] 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-06-01T21:03:51.3391778Z [307/7110] 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-06-01T21:03:51.3440297Z [308/7110] 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-06-01T21:03:51.3453469Z [309/7110] 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-06-01T21:03:51.3671167Z [310/7110] 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-06-01T21:03:51.4102275Z [311/7110] 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-06-01T21:03:51.4235014Z [312/7110] 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-06-01T21:03:51.4246910Z [313/7110] 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-06-01T21:03:51.4475193Z [314/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-avx-u24.c.obj 2025-06-01T21:03:51.4521761Z [315/7110] 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-06-01T21:03:51.4738264Z [316/7110] 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-06-01T21:03:51.4883174Z [317/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-avx512skx-u16.c.obj 2025-06-01T21:03:51.4898676Z [318/7110] 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-06-01T21:03:51.5108736Z [319/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-f16c-u16.c.obj 2025-06-01T21:03:51.5237392Z [320/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-fabsf-u2.c.obj 2025-06-01T21:03:51.5304995Z [321/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-bitcast-u4.c.obj 2025-06-01T21:03:51.5455328Z [322/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse2-u16.c.obj 2025-06-01T21:03:51.5504354Z [323/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse41-u8.c.obj 2025-06-01T21:03:51.5925820Z [324/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x16-minmax-avx-broadcast.c.obj 2025-06-01T21:03:51.6163669Z [325/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x16-minmax-fma3-broadcast.c.obj 2025-06-01T21:03:51.6211560Z [326/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x16s4-minmax-fma3-broadcast.c.obj 2025-06-01T21:03:51.6617554Z [327/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x4-minmax-scalar.c.obj 2025-06-01T21:03:51.6763224Z [328/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x4-relu-scalar.c.obj 2025-06-01T21:03:51.6817508Z [329/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x8-minmax-sse-load1.c.obj 2025-06-01T21:03:51.6830685Z [330/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x32-minmax-avx512f-broadcast.c.obj 2025-06-01T21:03:51.6910925Z [331/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x4-scalar.c.obj 2025-06-01T21:03:51.7373169Z [332/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-2x4-relu-scalar.c.obj 2025-06-01T21:03:51.7492002Z [333/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-2x4-minmax-scalar.c.obj 2025-06-01T21:03:51.7590412Z [334/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-2x4-scalar.c.obj 2025-06-01T21:03:51.8050933Z [335/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x2-minmax-scalar.c.obj 2025-06-01T21:03:51.8159991Z [336/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x2-scalar.c.obj 2025-06-01T21:03:51.8213764Z [337/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x16s4-minmax-fma3-broadcast.c.obj 2025-06-01T21:03:51.8224652Z [338/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x2c4-minmax-sse.c.obj 2025-06-01T21:03:51.8303411Z [339/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x4-minmax-scalar.c.obj 2025-06-01T21:03:51.8724105Z [340/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x4-relu-scalar.c.obj 2025-06-01T21:03:51.8809528Z [341/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x4-scalar.c.obj 2025-06-01T21:03:51.8862860Z [342/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x8-minmax-sse-load1.c.obj 2025-06-01T21:03:51.9195636Z [343/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-ibilinear-chw\gen\f32-ibilinear-chw-scalar-p4.c.obj 2025-06-01T21:03:51.9380960Z [344/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-ibilinear-chw\gen\f32-ibilinear-chw-sse-p8.c.obj 2025-06-01T21:03:51.9548600Z [345/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-5x16-minmax-avx-broadcast.c.obj 2025-06-01T21:03:51.9614724Z [346/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-ibilinear\gen\f32-ibilinear-scalar-c2.c.obj 2025-06-01T21:03:51.9659677Z [347/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-7x32-minmax-avx512f-broadcast.c.obj 2025-06-01T21:03:51.9737556Z [348/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-ibilinear\gen\f32-ibilinear-sse-c8.c.obj 2025-06-01T21:03:51.9794189Z [349/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-5x16-minmax-fma3-broadcast.c.obj 2025-06-01T21:03:52.0135737Z [350/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x16-minmax-avx-broadcast.c.obj 2025-06-01T21:03:52.0354146Z [351/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x16-minmax-fma3-broadcast.c.obj 2025-06-01T21:03:52.0612432Z [352/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x16s4-minmax-fma3-broadcast.c.obj 2025-06-01T21:03:52.0698267Z [353/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x32-minmax-avx512f-broadcast.c.obj 2025-06-01T21:03:52.0823357Z [354/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x4-scalar.c.obj 2025-06-01T21:03:52.0958382Z [355/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x4-relu-scalar.c.obj 2025-06-01T21:03:52.1034838Z [356/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x8-minmax-sse-load1.c.obj 2025-06-01T21:03:52.1218778Z [357/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x4-minmax-scalar.c.obj 2025-06-01T21:03:52.1325966Z [358/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-2x4-minmax-scalar.c.obj 2025-06-01T21:03:52.1572904Z [359/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-2x4-relu-scalar.c.obj 2025-06-01T21:03:52.1706195Z [360/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-2x4-scalar.c.obj 2025-06-01T21:03:52.1907722Z [361/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x16s4-minmax-fma3-broadcast.c.obj 2025-06-01T21:03:52.1971924Z [362/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x2-minmax-scalar.c.obj 2025-06-01T21:03:52.2323657Z [363/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x2-scalar.c.obj 2025-06-01T21:03:52.2378060Z [364/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x4-minmax-scalar.c.obj 2025-06-01T21:03:52.2440378Z [365/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x2c4-minmax-sse.c.obj 2025-06-01T21:03:52.2852648Z [366/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x8-minmax-sse-load1.c.obj 2025-06-01T21:03:52.2902086Z [367/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x4-relu-scalar.c.obj 2025-06-01T21:03:52.2999426Z [368/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x4-scalar.c.obj 2025-06-01T21:03:52.3102891Z [369/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-5x16-minmax-avx-broadcast.c.obj 2025-06-01T21:03:52.3203300Z [370/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-5x16-minmax-fma3-broadcast-prfm.c.obj 2025-06-01T21:03:52.3428449Z [371/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-maxpool\f32-maxpool-9p8x-minmax-scalar-c1.c.obj 2025-06-01T21:03:52.3463003Z [372/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-maxpool\f32-maxpool-9p8x-minmax-sse-c4.c.obj 2025-06-01T21:03:52.3514461Z [373/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-7x32-minmax-avx512f-broadcast.c.obj 2025-06-01T21:03:52.4075054Z [374/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-pavgpool\f32-pavgpool-9x-minmax-sse-c4.c.obj 2025-06-01T21:03:52.4121230Z [375/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-pavgpool\f32-pavgpool-9p8x-minmax-sse-c4.c.obj 2025-06-01T21:03:52.4192625Z [376/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-pavgpool\f32-pavgpool-9x-minmax-scalar-c1.c.obj 2025-06-01T21:03:52.4373013Z [377/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-pavgpool\f32-pavgpool-9p8x-minmax-scalar-c1.c.obj 2025-06-01T21:03:52.4478236Z [378/7110] 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-06-01T21:03:52.4723532Z [379/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-1x4-minmax-scalar.c.obj 2025-06-01T21:03:52.4735406Z [380/7110] 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-06-01T21:03:52.4857373Z [381/7110] 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-06-01T21:03:52.5374703Z [382/7110] 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-06-01T21:03:52.5394334Z [383/7110] 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-06-01T21:03:52.5519647Z [384/7110] 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-06-01T21:03:52.5734935Z [385/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-4x4-minmax-scalar.c.obj 2025-06-01T21:03:52.5785682Z [386/7110] 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-06-01T21:03:52.6061091Z [387/7110] 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-06-01T21:03:52.6130921Z [388/7110] 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-06-01T21:03:52.6279269Z [389/7110] 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-06-01T21:03:52.6626292Z [390/7110] 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-06-01T21:03:52.6687201Z [391/7110] 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-06-01T21:03:52.7047014Z [392/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-1x4-minmax-scalar.c.obj 2025-06-01T21:03:52.7215119Z [393/7110] 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-06-01T21:03:52.7424415Z [394/7110] 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-06-01T21:03:52.7880212Z [395/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x4-minmax-scalar.c.obj 2025-06-01T21:03:52.7974977Z [396/7110] 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-06-01T21:03:52.8163944Z [397/7110] 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-06-01T21:03:52.8421845Z [398/7110] 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-06-01T21:03:52.8468835Z [399/7110] 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-06-01T21:03:52.8599123Z [400/7110] 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-06-01T21:03:52.8689108Z [401/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx-u32.c.obj 2025-06-01T21:03:52.8896589Z [402/7110] 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-06-01T21:03:52.9127323Z [403/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-imagic-u1.c.obj 2025-06-01T21:03:52.9334017Z [404/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx512skx-u128.c.obj 2025-06-01T21:03:52.9500498Z [405/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-imagic-u4.c.obj 2025-06-01T21:03:52.9546401Z [406/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-lrintf-u4.c.obj 2025-06-01T21:03:52.9600174Z [407/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx2-u64.c.obj 2025-06-01T21:03:52.9721043Z [408/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse41-u32.c.obj 2025-06-01T21:03:52.9773107Z [409/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse2-u32.c.obj 2025-06-01T21:03:53.0084264Z [410/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx-u32.c.obj 2025-06-01T21:03:53.0133406Z [411/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx2-u64.c.obj 2025-06-01T21:03:53.0479532Z [412/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx512skx-u128.c.obj 2025-06-01T21:03:53.0522049Z [413/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-imagic-u4.c.obj 2025-06-01T21:03:53.0690677Z [414/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-lrintf-u4.c.obj 2025-06-01T21:03:53.0867893Z [415/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-sse2-u32.c.obj 2025-06-01T21:03:53.1032564Z [416/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr2-p5-u32-acc2.c.obj 2025-06-01T21:03:53.1088250Z [417/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx256skx-rr2-p5-u32-acc2.c.obj 2025-06-01T21:03:53.1101972Z [418/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-imagic-u1.c.obj 2025-06-01T21:03:53.1234977Z [419/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx512f-rr2-p5-u64-acc2.c.obj 2025-06-01T21:03:53.1403824Z [420/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-sse2-rr2-p5-u16-acc2.c.obj 2025-06-01T21:03:53.1788359Z [421/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-avx-c32.c.obj 2025-06-01T21:03:53.1900925Z [422/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-avx512f-c64.c.obj 2025-06-01T21:03:53.2026193Z [423/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-scalar.c.obj 2025-06-01T21:03:53.2074913Z [424/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rmax-avx-u32-acc4.c.obj 2025-06-01T21:03:53.2202684Z [425/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-scalar-rr2-p5-u4-acc2.c.obj 2025-06-01T21:03:53.2265890Z [426/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rmax-avx512f-u64-acc4.c.obj 2025-06-01T21:03:53.2387365Z [427/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rmax-scalar-u4-acc4.c.obj 2025-06-01T21:03:53.2456352Z [428/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-sse-c16.c.obj 2025-06-01T21:03:53.2822500Z [429/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rmax-sse-u16-acc4.c.obj 2025-06-01T21:03:53.2964442Z [430/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rminmax-avx512f-u64-acc4.c.obj 2025-06-01T21:03:53.3044297Z [431/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rminmax-scalar-u4-acc4.c.obj 2025-06-01T21:03:53.3216305Z [432/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rminmax-sse-u16-acc4.c.obj 2025-06-01T21:03:53.3299551Z [433/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rsum\gen\f32-rsum-avx-u32-acc4.c.obj 2025-06-01T21:03:53.3932314Z [434/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rminmax-avx-u32-acc4.c.obj 2025-06-01T21:03:53.4261943Z [435/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rsum\gen\f32-rsum-scalar-u4-acc4.c.obj 2025-06-01T21:03:53.4360610Z [436/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rsum\gen\f32-rsum-avx512f-u64-acc4.c.obj 2025-06-01T21:03:53.4465569Z [437/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rsum\gen\f32-rsum-sse-u16-acc4.c.obj 2025-06-01T21:03:53.4656392Z [438/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-spmm\gen\f32-spmm-8x1-minmax-scalar.c.obj 2025-06-01T21:03:53.4853173Z [439/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-spmm\gen\f32-spmm-32x1-minmax-sse.c.obj 2025-06-01T21:03:53.4908170Z [440/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-spmm\gen\f32-spmm-8x2-minmax-scalar.c.obj 2025-06-01T21:03:53.5035188Z [441/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-spmm\gen\f32-spmm-8x4-minmax-scalar.c.obj 2025-06-01T21:03:53.5101770Z [442/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vadd-avx-u16.c.obj 2025-06-01T21:03:53.5398557Z [443/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vadd-avx512f-u32.c.obj 2025-06-01T21:03:53.5571213Z [444/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vadd-scalar-u8.c.obj 2025-06-01T21:03:53.5661688Z [445/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vadd-sse-u8.c.obj 2025-06-01T21:03:53.5732746Z [446/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vaddc-avx-u16.c.obj 2025-06-01T21:03:53.6085459Z [447/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vaddc-avx512f-u32.c.obj 2025-06-01T21:03:53.6098020Z [448/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vaddc-scalar-u8.c.obj 2025-06-01T21:03:53.6263555Z [449/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdiv-avx-u16.c.obj 2025-06-01T21:03:53.6288402Z [450/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vaddc-sse-u8.c.obj 2025-06-01T21:03:53.6573292Z [451/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdiv-avx512f-u32.c.obj 2025-06-01T21:03:53.6666109Z [452/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdiv-scalar-u2.c.obj 2025-06-01T21:03:53.6869504Z [453/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdiv-sse-u8.c.obj 2025-06-01T21:03:53.6921328Z [454/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdivc-avx-u16.c.obj 2025-06-01T21:03:53.7100342Z [455/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdivc-avx512f-u32.c.obj 2025-06-01T21:03:53.7286808Z [456/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdivc-scalar-u2.c.obj 2025-06-01T21:03:53.7541566Z [457/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmax-avx-u16.c.obj 2025-06-01T21:03:53.7745764Z [458/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmax-avx512f-u32.c.obj 2025-06-01T21:03:53.7919622Z [459/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmax-scalar-u8.c.obj 2025-06-01T21:03:53.8105661Z [460/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdivc-sse-u8.c.obj 2025-06-01T21:03:53.8477434Z [461/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmaxc-avx-u16.c.obj 2025-06-01T21:03:53.8643865Z [462/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmax-sse-u8.c.obj 2025-06-01T21:03:53.8701618Z [463/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmaxc-avx512f-u32.c.obj 2025-06-01T21:03:53.8865156Z [464/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmaxc-scalar-u8.c.obj 2025-06-01T21:03:53.8935166Z [465/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmaxc-sse-u8.c.obj 2025-06-01T21:03:53.9065937Z [466/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmin-avx-u16.c.obj 2025-06-01T21:03:53.9124541Z [467/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmin-avx512f-u32.c.obj 2025-06-01T21:03:53.9662160Z [468/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmin-scalar-u8.c.obj 2025-06-01T21:03:53.9900854Z [469/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vminc-avx-u16.c.obj 2025-06-01T21:03:54.0108619Z [470/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vminc-avx512f-u32.c.obj 2025-06-01T21:03:54.0242551Z [471/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmin-sse-u8.c.obj 2025-06-01T21:03:54.0494162Z [472/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vminc-scalar-u8.c.obj 2025-06-01T21:03:54.0611374Z [473/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vminc-sse-u8.c.obj 2025-06-01T21:03:54.0831611Z [474/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmul-avx512f-u32.c.obj 2025-06-01T21:03:54.0972682Z [475/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmul-avx-u16.c.obj 2025-06-01T21:03:54.1037821Z [476/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmul-scalar-u8.c.obj 2025-06-01T21:03:54.1180442Z [477/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmulc-avx-u16.c.obj 2025-06-01T21:03:54.1237711Z [478/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmul-sse-u8.c.obj 2025-06-01T21:03:54.1403662Z [479/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmulc-avx512f-u32.c.obj 2025-06-01T21:03:54.1527657Z [480/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmulc-scalar-u8.c.obj 2025-06-01T21:03:54.1621654Z [481/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmulc-sse-u8.c.obj 2025-06-01T21:03:54.2083919Z [482/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vprelu-avx512f-u32.c.obj 2025-06-01T21:03:54.2207268Z [483/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vprelu-avx-u16.c.obj 2025-06-01T21:03:54.2261771Z [484/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vprelu-scalar-u8.c.obj 2025-06-01T21:03:54.2460892Z [485/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vprelu-sse2-u8.c.obj 2025-06-01T21:03:54.2619736Z [486/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vpreluc-avx-u16.c.obj 2025-06-01T21:03:54.2779516Z [487/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vpreluc-scalar-u8.c.obj 2025-06-01T21:03:54.2826797Z [488/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vpreluc-avx512f-u32.c.obj 2025-06-01T21:03:54.2947170Z [489/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vpreluc-sse2-u8.c.obj 2025-06-01T21:03:54.3135406Z [490/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrdivc-avx-u16.c.obj 2025-06-01T21:03:54.3389636Z [491/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrdivc-avx512f-u32.c.obj 2025-06-01T21:03:54.3611042Z [492/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrdivc-sse-u8.c.obj 2025-06-01T21:03:54.3677749Z [493/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrdivc-scalar-u2.c.obj 2025-06-01T21:03:54.3817916Z [494/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrpreluc-avx-u16.c.obj 2025-06-01T21:03:54.3895904Z [495/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrpreluc-avx512f-u32.c.obj 2025-06-01T21:03:54.4019511Z [496/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrpreluc-scalar-u8.c.obj 2025-06-01T21:03:54.4084770Z [497/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrpreluc-sse2-u8.c.obj 2025-06-01T21:03:54.4210472Z [498/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrsubc-avx-u16.c.obj 2025-06-01T21:03:54.4641491Z [499/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrsubc-avx512f-u32.c.obj 2025-06-01T21:03:54.5227130Z [500/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrsubc-scalar-u8.c.obj 2025-06-01T21:03:54.5409228Z [501/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrsubc-sse-u8.c.obj 2025-06-01T21:03:54.5617147Z [502/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiff-avx-u16.c.obj 2025-06-01T21:03:54.5799291Z [503/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiff-avx512f-u32.c.obj 2025-06-01T21:03:54.6071867Z [504/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiff-scalar-u8.c.obj 2025-06-01T21:03:54.6264053Z [505/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiffc-avx-u16.c.obj 2025-06-01T21:03:54.6443528Z [506/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiff-sse-u8.c.obj 2025-06-01T21:03:54.7230421Z [507/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiffc-avx512f-u32.c.obj 2025-06-01T21:03:54.7464433Z [508/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiffc-scalar-u8.c.obj 2025-06-01T21:03:54.7662423Z [509/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiffc-sse-u8.c.obj 2025-06-01T21:03:54.7861664Z [510/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsub-avx-u16.c.obj 2025-06-01T21:03:54.8044000Z [511/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsub-avx512f-u32.c.obj 2025-06-01T21:03:54.8247310Z [512/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsub-scalar-u8.c.obj 2025-06-01T21:03:55.2613457Z [513/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsubc-avx-u16.c.obj 2025-06-01T21:03:55.2665656Z [514/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsub-sse-u8.c.obj 2025-06-01T21:03:55.2774047Z [515/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsubc-avx512f-u32.c.obj 2025-06-01T21:03:55.2851718Z [516/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsubc-scalar-u8.c.obj 2025-06-01T21:03:55.3094545Z [517/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vclamp\gen\f32-vclamp-avx-u16.c.obj 2025-06-01T21:03:55.3109509Z [518/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsubc-sse-u8.c.obj 2025-06-01T21:03:55.3310817Z [519/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vclamp\gen\f32-vclamp-avx512f-u16.c.obj 2025-06-01T21:03:55.3468264Z [520/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vclamp\gen\f32-vclamp-scalar-u4.c.obj 2025-06-01T21:03:55.3742679Z [521/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcmul\gen\f32-vcmul-avx512f-u32.c.obj 2025-06-01T21:03:55.3797533Z [522/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vclamp\gen\f32-vclamp-sse-u8.c.obj 2025-06-01T21:03:55.3975654Z [523/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcmul\gen\f32-vcmul-scalar-u4.c.obj 2025-06-01T21:03:55.4149257Z [524/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcmul\gen\f32-vcmul-sse-u8.c.obj 2025-06-01T21:03:55.4167773Z [525/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcmul\gen\f32-vcmul-fma3-u16.c.obj 2025-06-01T21:03:55.4520042Z [526/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysign-avx.c.obj 2025-06-01T21:03:55.4723565Z [527/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysign-scalar.c.obj 2025-06-01T21:03:55.4807147Z [528/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysign-avx512f.c.obj 2025-06-01T21:03:55.4949166Z [529/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysignc-avx.c.obj 2025-06-01T21:03:55.5026189Z [530/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysignc-avx512f.c.obj 2025-06-01T21:03:55.5233359Z [531/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysignc-sse2.c.obj 2025-06-01T21:03:55.5289589Z [532/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysign-sse2.c.obj 2025-06-01T21:03:55.5695638Z [533/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vrcopysignc-avx.c.obj 2025-06-01T21:03:55.5809437Z [534/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vrcopysignc-scalar.c.obj 2025-06-01T21:03:55.5850992Z [535/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vrcopysignc-avx512f.c.obj 2025-06-01T21:03:55.5950243Z [536/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysignc-scalar.c.obj 2025-06-01T21:03:55.6004640Z [537/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vrcopysignc-sse2.c.obj 2025-06-01T21:03:55.6077734Z [538/7110] 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-06-01T21:03:55.6253985Z [539/7110] 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-06-01T21:03:55.6563141Z [540/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-velu\gen\f32-velu-avx512f-rr1-p6-u64.c.obj 2025-06-01T21:03:55.6852020Z [541/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-velu\gen\f32-velu-scalar-rr2-lut16-p3-u2.c.obj 2025-06-01T21:03:55.7072486Z [542/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-velu\gen\f32-velu-sse2-rr2-lut16-p3-u12.c.obj 2025-06-01T21:03:55.7161391Z [543/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vgelu\gen\f32-vgelu-avx-rational-12-10-div.c.obj 2025-06-01T21:03:55.7172806Z [544/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-velu\gen\f32-velu-scalar-rr2-lut16-p3-u4.c.obj 2025-06-01T21:03:55.7384089Z [545/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vgelu\gen\f32-vgelu-fma3-rational-12-10-div.c.obj 2025-06-01T21:03:55.7472696Z [546/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vgelu\gen\f32-vgelu-avx512f-rational-12-10-nr.c.obj 2025-06-01T21:03:55.7609036Z [547/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vexp\gen\f32-vexp-scalar-exp.c.obj 2025-06-01T21:03:55.7624989Z [548/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vgelu\gen\f32-vgelu-scalar-rational-12-10-div.c.obj 2025-06-01T21:03:55.8217838Z [549/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vhswish\gen\f32-vhswish-fma3-u16.c.obj 2025-06-01T21:03:55.8281414Z [550/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vhswish\gen\f32-vhswish-avx512f-u16.c.obj 2025-06-01T21:03:55.8293051Z [551/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vgelu\gen\f32-vgelu-sse2-rational-12-10-div.c.obj 2025-06-01T21:03:55.8304574Z [552/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vhswish\gen\f32-vhswish-avx-u16.c.obj 2025-06-01T21:03:55.8622730Z [553/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vhswish\gen\f32-vhswish-scalar-u4.c.obj 2025-06-01T21:03:55.8911459Z [554/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlog\gen\f32-vlog-avx2-rational-3-3-div.c.obj 2025-06-01T21:03:55.8977503Z [555/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vhswish\gen\f32-vhswish-sse-u8.c.obj 2025-06-01T21:03:55.9306986Z [556/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlog\gen\f32-vlog-fma3-rational-3-3-div.c.obj 2025-06-01T21:03:55.9511394Z [557/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlog\gen\f32-vlog-scalar-rational-3-3-div.c.obj 2025-06-01T21:03:55.9606256Z [558/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlrelu\gen\f32-vlrelu-avx512f-u16.c.obj 2025-06-01T21:03:55.9663114Z [559/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlog\gen\f32-vlog-sse2-rational-3-3-div.c.obj 2025-06-01T21:03:55.9717332Z [560/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlrelu\gen\f32-vlrelu-avx-u16.c.obj 2025-06-01T21:03:55.9787815Z [561/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlog\gen\f32-vlog-avx512f-rational-3-3-div.c.obj 2025-06-01T21:03:55.9980534Z [562/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlrelu\gen\f32-vlrelu-sse-u8.c.obj 2025-06-01T21:03:56.0293471Z [563/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlrelu\gen\f32-vlrelu-scalar-u4.c.obj 2025-06-01T21:03:56.0350597Z [564/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlrelu\gen\f32-vlrelu-sse41-u8.c.obj 2025-06-01T21:03:56.0495697Z [565/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vmulcaddc\gen\f32-vmulcaddc-c1-minmax-scalar-2x.c.obj 2025-06-01T21:03:56.0603089Z [566/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vmulcaddc\gen\f32-vmulcaddc-c4-minmax-sse-2x.c.obj 2025-06-01T21:03:56.0874833Z [567/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndd-avx-u16.c.obj 2025-06-01T21:03:56.0934288Z [568/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrelu\gen\f32-vrelu-scalar-u8.c.obj 2025-06-01T21:03:56.0949743Z [569/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndd-avx512f-u16.c.obj 2025-06-01T21:03:56.1617948Z [570/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndd-scalar-libm-u4.c.obj 2025-06-01T21:03:56.1675350Z [571/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndd-sse41-u8.c.obj 2025-06-01T21:03:56.1687226Z [572/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndne-avx-u16.c.obj 2025-06-01T21:03:56.1872735Z [573/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndd-scalar-libm-u1.c.obj 2025-06-01T21:03:56.1966351Z [574/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndne-scalar-libm-u4.c.obj 2025-06-01T21:03:56.1978172Z [575/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndne-avx512f-u16.c.obj 2025-06-01T21:03:56.2058553Z [576/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndd-sse2-u8.c.obj 2025-06-01T21:03:56.2344816Z [577/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndne-scalar-libm-u1.c.obj 2025-06-01T21:03:56.2715035Z [578/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndne-sse41-u8.c.obj 2025-06-01T21:03:56.2927883Z [579/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndu-avx-u16.c.obj 2025-06-01T21:03:56.2977544Z [580/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndne-sse2-u8.c.obj 2025-06-01T21:03:56.3028433Z [581/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndu-scalar-libm-u1.c.obj 2025-06-01T21:03:56.3087431Z [582/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndu-scalar-libm-u4.c.obj 2025-06-01T21:03:56.3135921Z [583/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndu-avx512f-u16.c.obj 2025-06-01T21:03:56.3196449Z [584/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndu-sse2-u8.c.obj 2025-06-01T21:03:56.3427265Z [585/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndu-sse41-u8.c.obj 2025-06-01T21:03:56.3839482Z [586/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndz-avx-u16.c.obj 2025-06-01T21:03:56.4073887Z [587/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndz-avx512f-u16.c.obj 2025-06-01T21:03:56.4130738Z [588/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndz-scalar-libm-u1.c.obj 2025-06-01T21:03:56.4206281Z [589/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndz-sse2-u8.c.obj 2025-06-01T21:03:56.4260292Z [590/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndz-scalar-libm-u4.c.obj 2025-06-01T21:03:56.4317802Z [591/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndz-sse41-u8.c.obj 2025-06-01T21:03:56.4329698Z [592/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrsqrt\gen\f32-vrsqrt-avx-rsqrt-u16.c.obj 2025-06-01T21:03:56.4569136Z [593/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrsqrt\gen\f32-vrsqrt-avx512f-rsqrt-u32.c.obj 2025-06-01T21:03:56.4898895Z [594/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrsqrt\gen\f32-vrsqrt-fma3-rsqrt-u16.c.obj 2025-06-01T21:03:56.5210101Z [595/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrsqrt\gen\f32-vrsqrt-scalar-rsqrt-u1.c.obj 2025-06-01T21:03:56.5264128Z [596/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrsqrt\gen\f32-vrsqrt-scalar-rsqrt-u4.c.obj 2025-06-01T21:03:56.5330666Z [597/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrsqrt\gen\f32-vrsqrt-sse-rsqrt-u8.c.obj 2025-06-01T21:03:56.5445807Z [598/7110] 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-06-01T21:03:56.5501702Z [599/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-nr2-u16.c.obj 2025-06-01T21:03:56.5551024Z [600/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-div-u16.c.obj 2025-06-01T21:03:56.5664721Z [601/7110] 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-06-01T21:03:56.6125984Z [602/7110] 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-06-01T21:03:56.6362405Z [603/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsqrt\gen\f32-vsqrt-avx512f-rsqrt-u16.c.obj 2025-06-01T21:03:56.6408348Z [604/7110] 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-06-01T21:03:56.6461973Z [605/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsqrt\gen\f32-vsqrt-avx-rsqrt-u16.c.obj 2025-06-01T21:03:56.6575359Z [606/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsqrt\gen\f32-vsqrt-fma3-rsqrt-u16.c.obj 2025-06-01T21:03:56.6639105Z [607/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsqrt\gen\f32-vsqrt-sse-rsqrt-u12.c.obj 2025-06-01T21:03:56.6709548Z [608/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vtanh\gen\f32-vtanh-avx-rational-9-8-div.c.obj 2025-06-01T21:03:56.7127270Z [609/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsqrt\gen\f32-vsqrt-scalar-sqrt-u1.c.obj 2025-06-01T21:03:56.7452229Z [610/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vtanh\gen\f32-vtanh-fma3-rational-9-8-div.c.obj 2025-06-01T21:03:56.7465174Z [611/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vtanh\gen\f32-vtanh-avx512f-rational-9-8-nr.c.obj 2025-06-01T21:03:56.7522780Z [612/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vtanh\gen\f32-vtanh-sse2-rational-9-8-div.c.obj 2025-06-01T21:03:56.7611154Z [613/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vtanh\gen\f32-vtanh-scalar-rational-9-8-div.c.obj 2025-06-01T21:03:56.7746885Z [614/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vabs-avx512f.c.obj 2025-06-01T21:03:56.7843384Z [615/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vabs-avx.c.obj 2025-06-01T21:03:56.8029166Z [616/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vabs-scalar.c.obj 2025-06-01T21:03:56.8170394Z [617/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vabs-sse2.c.obj 2025-06-01T21:03:56.8623136Z [618/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vneg-avx.c.obj 2025-06-01T21:03:56.8698844Z [619/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vneg-scalar.c.obj 2025-06-01T21:03:56.8793307Z [620/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vneg-sse2.c.obj 2025-06-01T21:03:56.8869317Z [621/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vsqr-avx.c.obj 2025-06-01T21:03:56.8920008Z [622/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vsqr-avx512f.c.obj 2025-06-01T21:03:56.9072916Z [623/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vsqr-scalar.c.obj 2025-06-01T21:03:56.9247030Z [624/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vsqr-sse2.c.obj 2025-06-01T21:03:56.9902469Z [625/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vneg-avx512f.c.obj 2025-06-01T21:03:56.9916760Z [626/7110] 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-06-01T21:03:56.9967438Z [627/7110] 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-06-01T21:03:57.0235905Z [628/7110] 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-06-01T21:03:57.0317614Z [629/7110] 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-06-01T21:03:57.0374618Z [630/7110] 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-06-01T21:03:57.0509335Z [631/7110] 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-06-01T21:03:57.0667978Z [632/7110] 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-06-01T21:03:57.1339564Z [633/7110] 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-06-01T21:03:57.1395990Z [634/7110] 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-06-01T21:03:57.1539902Z [635/7110] 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-06-01T21:03:57.1587169Z [636/7110] 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-06-01T21:03:57.1702013Z [637/7110] 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-06-01T21:03:57.1769048Z [638/7110] 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-06-01T21:03:57.1906604Z [639/7110] 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-06-01T21:03:57.2472546Z [640/7110] 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-06-01T21:03:57.2632754Z [641/7110] 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-06-01T21:03:57.2647539Z [642/7110] 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-06-01T21:03:57.2910637Z [643/7110] 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-06-01T21:03:57.3062011Z [644/7110] 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-06-01T21:03:57.3073704Z [645/7110] 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-06-01T21:03:57.3130367Z [646/7110] 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-06-01T21:03:57.3286469Z [647/7110] 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-06-01T21:03:57.3645276Z [648/7110] 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-06-01T21:03:57.3869164Z [649/7110] 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-06-01T21:03:57.4063135Z [650/7110] 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-06-01T21:03:57.4279512Z [651/7110] 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-06-01T21:03:57.4353521Z [652/7110] 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-06-01T21:03:57.4420324Z [653/7110] 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-06-01T21:03:57.4483063Z [654/7110] 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-06-01T21:03:57.4577494Z [655/7110] 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-06-01T21:03:57.4933189Z [656/7110] 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-06-01T21:03:57.5173792Z [657/7110] 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-06-01T21:03:57.5353657Z [658/7110] 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-06-01T21:03:57.5650369Z [659/7110] 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-06-01T21:03:57.5850450Z [660/7110] 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-06-01T21:03:57.6069781Z [661/7110] 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-06-01T21:03:57.6125576Z [662/7110] 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-06-01T21:03:57.6210844Z [663/7110] 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-06-01T21:03:57.6463048Z [664/7110] 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-06-01T21:03:57.6529694Z [665/7110] 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-06-01T21:03:57.6660805Z [666/7110] 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-06-01T21:03:57.7119581Z [667/7110] 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-06-01T21:03:57.7167960Z [668/7110] 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-06-01T21:03:57.7337921Z [669/7110] 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-06-01T21:03:57.7424962Z [670/7110] 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-06-01T21:03:57.7476800Z [671/7110] 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-06-01T21:03:57.7920142Z [672/7110] 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-06-01T21:03:57.8100760Z [673/7110] 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-06-01T21:03:57.8156052Z [674/7110] 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-06-01T21:03:57.8740206Z [675/7110] 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-06-01T21:03:57.8798287Z [676/7110] 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-06-01T21:03:57.8849938Z [677/7110] 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-06-01T21:03:57.8898616Z [678/7110] 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-06-01T21:03:57.8912925Z [679/7110] 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-06-01T21:03:57.9331492Z [680/7110] 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-06-01T21:03:57.9385425Z [681/7110] 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-06-01T21:03:58.0095368Z [682/7110] 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-06-01T21:03:58.0244058Z [683/7110] 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-06-01T21:03:58.0364931Z [684/7110] 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-06-01T21:03:58.0460431Z [685/7110] 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-06-01T21:03:58.0587275Z [686/7110] 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-06-01T21:03:58.0727566Z [687/7110] 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-06-01T21:03:58.0739334Z [688/7110] 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-06-01T21:03:58.0845021Z [689/7110] 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-06-01T21:03:58.1680959Z [690/7110] 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-06-01T21:03:58.1732703Z [691/7110] 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-06-01T21:03:58.1786657Z [692/7110] 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-06-01T21:03:58.1942184Z [693/7110] 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-06-01T21:03:58.1953103Z [694/7110] 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-06-01T21:03:58.2028755Z [695/7110] 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-06-01T21:03:58.2165651Z [696/7110] 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-06-01T21:03:58.2417035Z [697/7110] 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-06-01T21:03:58.2966987Z [698/7110] 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-06-01T21:03:58.3013792Z [699/7110] 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-06-01T21:03:58.3183219Z [700/7110] 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-06-01T21:03:58.3194249Z [701/7110] 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-06-01T21:03:58.3445662Z [702/7110] 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-06-01T21:03:58.3500193Z [703/7110] 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-06-01T21:03:58.3549031Z [704/7110] 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-06-01T21:03:58.3562889Z [705/7110] 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-06-01T21:03:58.4400440Z [706/7110] 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-06-01T21:03:58.4448559Z [707/7110] 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-06-01T21:03:58.4678110Z [708/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:03:58.4692069Z [709/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:03:58.4746709Z [710/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-25p32c-minmax-fp32-avx512skx-mul32.c.obj 2025-06-01T21:03:58.4822458Z [711/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:03:58.5201637Z [712/7110] 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-06-01T21:03:58.5457347Z [713/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-25p1c-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:03:58.5511092Z [714/7110] 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-06-01T21:03:58.5569036Z [715/7110] 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-06-01T21:03:58.5739097Z [716/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:03:58.5861947Z [717/7110] 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-06-01T21:03:58.5942565Z [718/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-9p2c-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:03:58.6136952Z [719/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:03:58.6765178Z [720/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:03:58.6828532Z [721/7110] 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-06-01T21:03:58.6873550Z [722/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f16-vcvt\gen\qs8-f16-vcvt-avx2-u16.c.obj 2025-06-01T21:03:58.6919102Z [723/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx-u32.c.obj 2025-06-01T21:03:58.7013523Z [724/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-9p32c-minmax-fp32-avx512skx-mul32.c.obj 2025-06-01T21:03:58.7090742Z [725/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx2-u16.c.obj 2025-06-01T21:03:58.7103304Z [726/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx512skx-u32.c.obj 2025-06-01T21:03:58.7176826Z [727/7110] 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-06-01T21:03:58.7994587Z [728/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-scalar-u1.c.obj 2025-06-01T21:03:58.8189872Z [729/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-packw\gen\qs8-packw-x64c4-gemm-goi-scalar.c.obj 2025-06-01T21:03:58.8423997Z [730/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse41-u16.c.obj 2025-06-01T21:03:58.8470168Z [731/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-scalar-u4.c.obj 2025-06-01T21:03:58.8781849Z [732/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse2-u32.c.obj 2025-06-01T21:03:58.8838525Z [733/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-packw\gen\qs8-packw-x16c8-gemm-goi-avx256vnni-prfm.c.obj 2025-06-01T21:03:58.8856097Z [734/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-packw\gen\qs8-packw-x8c8-gemm-goi-avx256vnni-prfm.c.obj 2025-06-01T21:03:58.9122372Z [735/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-packw\gen\qs8-packw-x16c8-gemm-goi-scalar.c.obj 2025-06-01T21:03:58.9391758Z [736/7110] 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-06-01T21:03:58.9539756Z [737/7110] 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-06-01T21:03:58.9614918Z [738/7110] 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-06-01T21:03:58.9749672Z [739/7110] 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-06-01T21:03:58.9990313Z [740/7110] 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-06-01T21:03:59.0086119Z [741/7110] 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-06-01T21:03:59.0474737Z [742/7110] 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-06-01T21:03:59.0560324Z [743/7110] 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-06-01T21:03:59.0631470Z [744/7110] 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-06-01T21:03:59.0687129Z [745/7110] 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-06-01T21:03:59.0809387Z [746/7110] 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-06-01T21:03:59.1189254Z [747/7110] 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-06-01T21:03:59.1497102Z [748/7110] 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-06-01T21:03:59.1794025Z [749/7110] 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-06-01T21:03:59.1938180Z [750/7110] 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-06-01T21:03:59.2064972Z [751/7110] 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-06-01T21:03:59.2076150Z [752/7110] 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-06-01T21:03:59.2127221Z [753/7110] 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-06-01T21:03:59.2138001Z [754/7110] 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-06-01T21:03:59.2477742Z [755/7110] 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-06-01T21:03:59.2966598Z [756/7110] 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-06-01T21:03:59.3019829Z [757/7110] 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-06-01T21:03:59.3243942Z [758/7110] 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-06-01T21:03:59.3330122Z [759/7110] 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-06-01T21:03:59.3524330Z [760/7110] 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-06-01T21:03:59.3536605Z [761/7110] 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-06-01T21:03:59.3654995Z [762/7110] 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-06-01T21:03:59.3760544Z [763/7110] 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-06-01T21:03:59.4625639Z [764/7110] 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-06-01T21:03:59.4755680Z [765/7110] 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-06-01T21:03:59.4964412Z [766/7110] 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-06-01T21:03:59.5010507Z [767/7110] 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-06-01T21:03:59.5065153Z [768/7110] 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-06-01T21:03:59.5075896Z [769/7110] 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-06-01T21:03:59.5122049Z [770/7110] 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-06-01T21:03:59.5174104Z [771/7110] 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-06-01T21:03:59.5922440Z [772/7110] 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-06-01T21:03:59.6087264Z [773/7110] 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-06-01T21:03:59.6466724Z [774/7110] 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-06-01T21:03:59.6478003Z [775/7110] 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-06-01T21:03:59.6527517Z [776/7110] 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-06-01T21:03:59.6681272Z [777/7110] 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-06-01T21:03:59.6868680Z [778/7110] 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-06-01T21:03:59.7277712Z [779/7110] 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-06-01T21:03:59.7370239Z [780/7110] 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-06-01T21:03:59.7448019Z [781/7110] 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-06-01T21:03:59.7629078Z [782/7110] 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-06-01T21:03:59.7648206Z [783/7110] 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-06-01T21:03:59.8025292Z [784/7110] 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-06-01T21:03:59.8085066Z [785/7110] 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-06-01T21:03:59.8309558Z [786/7110] 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-06-01T21:03:59.8717442Z [787/7110] 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-06-01T21:03:59.8729049Z [788/7110] 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-06-01T21:03:59.8789581Z [789/7110] 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-06-01T21:03:59.8839067Z [790/7110] 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-06-01T21:03:59.9244256Z [791/7110] 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-06-01T21:03:59.9259648Z [792/7110] 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-06-01T21:03:59.9273989Z [793/7110] 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-06-01T21:03:59.9591455Z [794/7110] 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-06-01T21:03:59.9772040Z [795/7110] 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-06-01T21:03:59.9894641Z [796/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rdsum\gen\qs8-rdsum-7p7x-minmax-fp32-avx2-c64.c.obj 2025-06-01T21:04:00.0165614Z [797/7110] 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-06-01T21:04:00.0276101Z [798/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rdsum\gen\qs8-rdsum-minmax-fp32-scalar-u1-acc1.c.obj 2025-06-01T21:04:00.0433431Z [799/7110] 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-06-01T21:04:00.0532646Z [800/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rdsum\gen\qs8-rdsum-7p7x-minmax-fp32-avx512skx-c64.c.obj 2025-06-01T21:04:00.0585493Z [801/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rdsum\gen\qs8-rdsum-7p7x-minmax-fp32-sse41-c64.c.obj 2025-06-01T21:04:00.0651091Z [802/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rsum\gen\qs8-rsum-avx2-u64-acc2.c.obj 2025-06-01T21:04:00.0695296Z [803/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rsum\gen\qs8-rsum-avx256skx-u64-acc2.c.obj 2025-06-01T21:04:00.1024848Z [804/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rsum\gen\qs8-rsum-avx512skx-u128-acc2.c.obj 2025-06-01T21:04:00.1213139Z [805/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rsum\gen\qs8-rsum-scalar-u4.c.obj 2025-06-01T21:04:00.1381760Z [806/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rsum\gen\qs8-rsum-avx512vnni-u128-acc2.c.obj 2025-06-01T21:04:00.1484557Z [807/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rsum\gen\qs8-rsum-ssse3-u32-acc2.c.obj 2025-06-01T21:04:00.1635756Z [808/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul32-ld32-u8.c.obj 2025-06-01T21:04:00.1694607Z [809/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx2-mul32-ld64-u16.c.obj 2025-06-01T21:04:00.1751625Z [810/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx512skx-mul32-ld128-u16.c.obj 2025-06-01T21:04:00.1809398Z [811/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vadd\gen\qs8-vadd-minmax-scalar-u1.c.obj 2025-06-01T21:04:00.2190184Z [812/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vadd\gen\qs8-vadd-minmax-scalar-u4.c.obj 2025-06-01T21:04:00.2266116Z [813/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse2-mul16-ld64-u8.c.obj 2025-06-01T21:04:00.2456447Z [814/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul16-ld64-u8.c.obj 2025-06-01T21:04:00.2524117Z [815/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul32-ld32-u8.c.obj 2025-06-01T21:04:00.2812551Z [816/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx512skx-mul32-ld128-u16.c.obj 2025-06-01T21:04:00.2921584Z [817/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-scalar-u1.c.obj 2025-06-01T21:04:00.3023434Z [818/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx2-mul32-ld64-u16.c.obj 2025-06-01T21:04:00.3254770Z [819/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-scalar-u4.c.obj 2025-06-01T21:04:00.3268841Z [820/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse2-mul16-ld64-u8.c.obj 2025-06-01T21:04:00.3421904Z [821/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-avx-u32.c.obj 2025-06-01T21:04:00.3455261Z [822/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul16-ld64-u8.c.obj 2025-06-01T21:04:00.3609677Z [823/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-avx2-u32.c.obj 2025-06-01T21:04:00.3819168Z [824/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-scalar-u1.c.obj 2025-06-01T21:04:00.3935348Z [825/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-scalar-u4.c.obj 2025-06-01T21:04:00.3988829Z [826/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-sse2-u32.c.obj 2025-06-01T21:04:00.4250196Z [827/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-sse41-u32.c.obj 2025-06-01T21:04:00.4344225Z [828/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-ssse3-u32.c.obj 2025-06-01T21:04:00.4596105Z [829/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-avx2-u32.c.obj 2025-06-01T21:04:00.4743279Z [830/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-scalar-andxor-u4.c.obj 2025-06-01T21:04:00.4800265Z [831/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-avx-u32.c.obj 2025-06-01T21:04:00.4885589Z [832/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-scalar-select-u4.c.obj 2025-06-01T21:04:00.4997051Z [833/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-sse2-u32.c.obj 2025-06-01T21:04:00.5302813Z [834/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-sse41-u32.c.obj 2025-06-01T21:04:00.5321263Z [835/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-ssse3-u32.c.obj 2025-06-01T21:04:00.5384406Z [836/7110] 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-06-01T21:04:00.5858419Z [837/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vmul\gen\qs8-vmul-minmax-fp32-scalar-u4.c.obj 2025-06-01T21:04:00.5931549Z [838/7110] 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-06-01T21:04:00.5943290Z [839/7110] 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-06-01T21:04:00.6012651Z [840/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vmulc\gen\qs8-vmulc-minmax-fp32-scalar-u4.c.obj 2025-06-01T21:04:00.6130354Z [841/7110] 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-06-01T21:04:00.6383313Z [842/7110] 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-06-01T21:04:00.6396524Z [843/7110] 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-06-01T21:04:00.6453803Z [844/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-avgpool\qu8-avgpool-9p8x-minmax-fp32-scalar-imagic-c1.c.obj 2025-06-01T21:04:00.6945117Z [845/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-avgpool\qu8-avgpool-9p8x-minmax-fp32-sse2-c8.c.obj 2025-06-01T21:04:00.6957504Z [846/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-avgpool\qu8-avgpool-9x-minmax-fp32-scalar-imagic-c1.c.obj 2025-06-01T21:04:00.7074159Z [847/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-avgpool\qu8-avgpool-9x-minmax-fp32-sse2-c8.c.obj 2025-06-01T21:04:00.7154218Z [848/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p16c-minmax-fp32-avx-mul16.c.obj 2025-06-01T21:04:00.7239467Z [849/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p16c-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:04:00.7651403Z [850/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:04:00.7710000Z [851/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:04:00.7724757Z [852/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p1c-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:04:00.8048922Z [853/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p8c-minmax-fp32-sse2-mul16.c.obj 2025-06-01T21:04:00.8063934Z [854/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p32c-minmax-fp32-avx512skx-mul32.c.obj 2025-06-01T21:04:00.8227806Z [855/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p8c-minmax-fp32-sse41-mul16.c.obj 2025-06-01T21:04:00.8279112Z [856/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p16c-minmax-fp32-avx-mul16.c.obj 2025-06-01T21:04:00.8336385Z [857/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p16c-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:04:00.8847571Z [858/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:04:00.8899085Z [859/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:04:00.8914361Z [860/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p2c-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:04:00.9199784Z [861/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p32c-minmax-fp32-avx512skx-mul32.c.obj 2025-06-01T21:04:00.9300948Z [862/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p8c-minmax-fp32-sse2-mul16.c.obj 2025-06-01T21:04:00.9341700Z [863/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx2-u16.c.obj 2025-06-01T21:04:00.9419384Z [864/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p8c-minmax-fp32-sse41-mul16.c.obj 2025-06-01T21:04:00.9621424Z [865/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx-u32.c.obj 2025-06-01T21:04:00.9900041Z [866/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx512skx-u32.c.obj 2025-06-01T21:04:00.9953371Z [867/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-scalar-u4.c.obj 2025-06-01T21:04:01.0031097Z [868/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-scalar-u1.c.obj 2025-06-01T21:04:01.0301572Z [869/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse41-u16.c.obj 2025-06-01T21:04:01.0582022Z [870/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-1x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-06-01T21:04:01.0729138Z [871/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse2-u32.c.obj 2025-06-01T21:04:01.0781147Z [872/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-1x2-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:04:01.0953211Z [873/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-1x4-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:04:01.1282241Z [874/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-1x4c8-minmax-fp32-sse41-ld64.c.obj 2025-06-01T21:04:01.1293634Z [875/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-1x4c8-minmax-fp32-sse2-ld64.c.obj 2025-06-01T21:04:01.1462355Z [876/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-1x8c8-minmax-fp32-avx2.c.obj 2025-06-01T21:04:01.1783050Z [877/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-1x4c8-minmax-fp32-avx-ld128.c.obj 2025-06-01T21:04:01.1830364Z [878/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-2x2-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:04:01.2022415Z [879/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-3x4-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:04:01.2169619Z [880/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-3x4c8-minmax-fp32-sse2-ld64.c.obj 2025-06-01T21:04:01.2249236Z [881/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-2x4c8-minmax-fp32-avx-ld128.c.obj 2025-06-01T21:04:01.2730250Z [882/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-7x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-06-01T21:04:01.3007187Z [883/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-1x2-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:04:01.3182640Z [884/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-1x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-06-01T21:04:01.3226253Z [885/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-3x8c8-minmax-fp32-avx2.c.obj 2025-06-01T21:04:01.3271568Z [886/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-1x4c8-minmax-fp32-avx-ld128.c.obj 2025-06-01T21:04:01.3356862Z [887/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-3x4c8-minmax-fp32-sse41-ld64.c.obj 2025-06-01T21:04:01.3368720Z [888/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-1x4-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:04:01.3621509Z [889/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-1x4c8-minmax-fp32-sse2-ld64.c.obj 2025-06-01T21:04:01.3785858Z [890/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-1x4c8-minmax-fp32-sse41-ld64.c.obj 2025-06-01T21:04:01.4173393Z [891/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-1x8c8-minmax-fp32-avx2.c.obj 2025-06-01T21:04:01.4486193Z [892/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-3x4c8-minmax-fp32-sse2-ld64.c.obj 2025-06-01T21:04:01.4548990Z [893/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-2x2-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:04:01.4609618Z [894/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-3x4c8-minmax-fp32-sse41-ld64.c.obj 2025-06-01T21:04:01.4655195Z [895/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-3x4-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:04:01.4699871Z [896/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-2x4c8-minmax-fp32-avx-ld128.c.obj 2025-06-01T21:04:01.5062070Z [897/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-3x8c8-minmax-fp32-avx2.c.obj 2025-06-01T21:04:01.5125674Z [898/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-7x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-06-01T21:04:01.5293632Z [899/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-rdsum\gen\qu8-rdsum-7p7x-ssse3-c64.c.obj 2025-06-01T21:04:01.5537577Z [900/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-rsum\gen\qu8-rsum-avx2-u64-acc2.c.obj 2025-06-01T21:04:01.5596252Z [901/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-rdsum\gen\qu8-rdsum-scalar.c.obj 2025-06-01T21:04:01.5753461Z [902/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx-mul32-ld32-u8.c.obj 2025-06-01T21:04:01.5807605Z [903/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-rsum\gen\qu8-rsum-sse2-u32-acc2.c.obj 2025-06-01T21:04:01.6169696Z [904/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-rsum\gen\qu8-rsum-scalar-u4.c.obj 2025-06-01T21:04:01.6272199Z [905/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx2-mul32-ld64-u16.c.obj 2025-06-01T21:04:01.6397220Z [906/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vadd\gen\qu8-vadd-minmax-scalar-u1.c.obj 2025-06-01T21:04:01.6581468Z [907/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vadd\gen\qu8-vadd-minmax-scalar-u4.c.obj 2025-06-01T21:04:01.6593975Z [908/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx512skx-mul32-ld128-u16.c.obj 2025-06-01T21:04:01.6750085Z [909/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vadd\gen\qu8-vadd-minmax-sse2-mul16-ld64-u8.c.obj 2025-06-01T21:04:01.6924468Z [910/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vadd\gen\qu8-vadd-minmax-sse41-mul16-ld64-u8.c.obj 2025-06-01T21:04:01.7059478Z [911/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx-mul32-ld32-u8.c.obj 2025-06-01T21:04:01.7176441Z [912/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx2-mul32-ld64-u16.c.obj 2025-06-01T21:04:01.7367440Z [913/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx512skx-mul32-ld128-u16.c.obj 2025-06-01T21:04:01.7587248Z [914/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-scalar-u1.c.obj 2025-06-01T21:04:01.7710630Z [915/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-sse2-mul16-ld64-u8.c.obj 2025-06-01T21:04:01.7856724Z [916/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-scalar-u4.c.obj 2025-06-01T21:04:01.7935754Z [917/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-avx-u32.c.obj 2025-06-01T21:04:01.8002541Z [918/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-avx2-u32.c.obj 2025-06-01T21:04:01.8082664Z [919/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-sse41-mul16-ld64-u8.c.obj 2025-06-01T21:04:01.8325298Z [920/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-scalar-u1.c.obj 2025-06-01T21:04:01.8383987Z [921/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-scalar-u4.c.obj 2025-06-01T21:04:01.8521512Z [922/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-sse2-u32.c.obj 2025-06-01T21:04:01.8793913Z [923/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-sse41-u32.c.obj 2025-06-01T21:04:01.8921446Z [924/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-ssse3-u32.c.obj 2025-06-01T21:04:01.9059245Z [925/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-avx-u32.c.obj 2025-06-01T21:04:01.9178632Z [926/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-avx2-u32.c.obj 2025-06-01T21:04:01.9230295Z [927/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-scalar-andxor-u4.c.obj 2025-06-01T21:04:01.9448676Z [928/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-sse2-u32.c.obj 2025-06-01T21:04:01.9682628Z [929/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-sse41-u32.c.obj 2025-06-01T21:04:01.9918548Z [930/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-scalar-select-u4.c.obj 2025-06-01T21:04:01.9974759Z [931/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-ssse3-u32.c.obj 2025-06-01T21:04:01.9990943Z [932/7110] 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-06-01T21:04:02.0158385Z [933/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vmul\gen\qu8-vmul-minmax-fp32-scalar-u4.c.obj 2025-06-01T21:04:02.0283911Z [934/7110] 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-06-01T21:04:02.0344512Z [935/7110] 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-06-01T21:04:02.0827680Z [936/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vmulc\gen\qu8-vmulc-minmax-fp32-scalar-u4.c.obj 2025-06-01T21:04:02.0918523Z [937/7110] 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-06-01T21:04:02.1005219Z [938/7110] 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-06-01T21:04:02.1052746Z [939/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s32-f32-vcvt\gen\s32-f32-vcvt-avx512f.c.obj 2025-06-01T21:04:02.1221631Z [940/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s32-f32-vcvt\gen\s32-f32-vcvt-scalar.c.obj 2025-06-01T21:04:02.1233658Z [941/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-ibilinear\gen\s8-ibilinear-scalar-c1.c.obj 2025-06-01T21:04:02.1277165Z [942/7110] 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-06-01T21:04:02.1368281Z [943/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s32-f32-vcvt\gen\s32-f32-vcvt-avx2.c.obj 2025-06-01T21:04:02.1771457Z [944/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-ibilinear\gen\s8-ibilinear-sse2-c8.c.obj 2025-06-01T21:04:02.1905959Z [945/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-ibilinear\gen\s8-ibilinear-sse41-c16.c.obj 2025-06-01T21:04:02.2026312Z [946/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-maxpool\s8-maxpool-9p8x-minmax-scalar-c1.c.obj 2025-06-01T21:04:02.2300422Z [947/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-maxpool\s8-maxpool-9p8x-minmax-sse2-c16.c.obj 2025-06-01T21:04:02.2352443Z [948/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-vclamp\s8-vclamp-avx512skx-u256.c.obj 2025-06-01T21:04:02.2510825Z [949/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-maxpool\s8-maxpool-9p8x-minmax-sse41-c16.c.obj 2025-06-01T21:04:02.2594100Z [950/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-vclamp\s8-vclamp-avx2-u128.c.obj 2025-06-01T21:04:02.2805757Z [951/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-vclamp\s8-vclamp-sse2-u64.c.obj 2025-06-01T21:04:02.2860084Z [952/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-vclamp\s8-vclamp-scalar-u4.c.obj 2025-06-01T21:04:02.3003034Z [953/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-ibilinear\gen\u8-ibilinear-scalar-c1.c.obj 2025-06-01T21:04:02.3127890Z [954/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-vclamp\s8-vclamp-sse41-u64.c.obj 2025-06-01T21:04:02.3214394Z [955/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-ibilinear\gen\u8-ibilinear-sse2-c8.c.obj 2025-06-01T21:04:02.3259648Z [956/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-ibilinear\gen\u8-ibilinear-sse41-c16.c.obj 2025-06-01T21:04:02.3552138Z [957/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-lut32norm\u8-lut32norm-scalar.c.obj 2025-06-01T21:04:02.3636161Z [958/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-maxpool\u8-maxpool-9p8x-minmax-scalar-c1.c.obj 2025-06-01T21:04:02.3741863Z [959/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-maxpool\u8-maxpool-9p8x-minmax-sse2-c16.c.obj 2025-06-01T21:04:02.3789179Z [960/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-rmax\u8-rmax-scalar-u2.c.obj 2025-06-01T21:04:02.4124550Z [961/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-rmax\u8-rmax-sse2-u16.c.obj 2025-06-01T21:04:02.4219277Z [962/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-vclamp\u8-vclamp-avx2-u128.c.obj 2025-06-01T21:04:02.4291007Z [963/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-vclamp\u8-vclamp-scalar-u4.c.obj 2025-06-01T21:04:02.4398435Z [964/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-vclamp\u8-vclamp-avx512skx-u256.c.obj 2025-06-01T21:04:02.4645717Z [965/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-vclamp\u8-vclamp-sse2-u64.c.obj 2025-06-01T21:04:02.4657012Z [966/7110] 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-06-01T21:04:02.4939249Z [967/7110] 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-06-01T21:04:02.5082314Z [968/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x16-transposec\gen\x16-transposec-2x4-scalar-int.c.obj 2025-06-01T21:04:02.5096914Z [969/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x16-transposec\gen\x16-transposec-8x8-reuse-multi-sse2.c.obj 2025-06-01T21:04:02.5187457Z [970/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x24-transposec\gen\x24-transposec-1x2-scalar.c.obj 2025-06-01T21:04:02.5235213Z [971/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x16-transposec\gen\x16-transposec-16x16-reuse-switch-avx2.c.obj 2025-06-01T21:04:02.5284237Z [972/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x24-transposec\x24-transposec-4x4-ssse3.c.obj 2025-06-01T21:04:02.5653546Z [973/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-packw\gen\x32-packw-x16-gemm-gio-avx-u8.c.obj 2025-06-01T21:04:02.5704175Z [974/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-packw\gen\x32-packw-x16-gemm-goi-avx-u4.c.obj 2025-06-01T21:04:02.5942878Z [975/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-packw\gen\x32-packw-x16s4-gemm-goi-avx-u4.c.obj 2025-06-01T21:04:02.6112594Z [976/7110] 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-06-01T21:04:02.6162149Z [977/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-packw\gen\x32-packw-x2c4-gemm-goi-sse2-u4.c.obj 2025-06-01T21:04:02.6208426Z [978/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-packw\gen\x32-packw-x32-gemm-gio-avx512f-u8.c.obj 2025-06-01T21:04:02.6286280Z [979/7110] 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-06-01T21:04:02.6442534Z [980/7110] 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-06-01T21:04:02.6628387Z [981/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-packw\gen\x32-packw-x8-gemm-goi-sse2-u4.c.obj 2025-06-01T21:04:02.6722781Z [982/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-transposec\gen\x32-transposec-2x4-scalar-int.c.obj 2025-06-01T21:04:02.6813823Z [983/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-unpool\x32-unpool-scalar.c.obj 2025-06-01T21:04:02.6858694Z [984/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-transposec\gen\x32-transposec-8x8-reuse-multi-avx.c.obj 2025-06-01T21:04:02.6929943Z [985/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-x2-scalar.c.obj 2025-06-01T21:04:02.6972244Z [986/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-unpool\x32-unpool-sse2.c.obj 2025-06-01T21:04:02.7020398Z [987/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-x2-sse2.c.obj 2025-06-01T21:04:02.7210024Z [988/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-transposec\x32-transposec-4x4-sse.c.obj 2025-06-01T21:04:02.7518192Z [989/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-x3-scalar.c.obj 2025-06-01T21:04:02.7528802Z [990/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-x3-sse2.c.obj 2025-06-01T21:04:02.7540510Z [991/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-xm-scalar.c.obj 2025-06-01T21:04:02.7587913Z [992/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-xm-sse2.c.obj 2025-06-01T21:04:02.7603167Z [993/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-x4-scalar.c.obj 2025-06-01T21:04:02.7679430Z [994/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-x4-sse2.c.obj 2025-06-01T21:04:02.8046989Z [995/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x64-transposec\gen\x64-transposec-2x2-multi-mov-sse2.c.obj 2025-06-01T21:04:02.8249837Z [996/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x64-transposec\gen\x64-transposec-4x2-scalar-int.c.obj 2025-06-01T21:04:02.8310330Z [997/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-lut\gen\x8-lut-scalar-u4.c.obj 2025-06-01T21:04:02.8437686Z [998/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-lut\gen\x8-lut-avx-u64.c.obj 2025-06-01T21:04:02.8526947Z [999/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x64-transposec\gen\x64-transposec-4x4-reuse-multi-avx.c.obj 2025-06-01T21:04:02.8665534Z [1000/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-lut\gen\x8-lut-avx512vbmi-vpermx2b-u128.c.obj 2025-06-01T21:04:02.8870623Z [1001/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-lut\gen\x8-lut-avx512skx-vpshufb-u64.c.obj 2025-06-01T21:04:02.9027065Z [1002/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-packq\x8-packq-scalar-f32qp8-u1.c.obj 2025-06-01T21:04:02.9197189Z [1003/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-packw\gen\x8-packw-x16-gemm-goi-scalar-u2.c.obj 2025-06-01T21:04:02.9240210Z [1004/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-packw\gen\x8-packw-x32-gemm-goi-scalar-u2.c.obj 2025-06-01T21:04:02.9251622Z [1005/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-lut\gen\x8-lut-avx2-u128.c.obj 2025-06-01T21:04:02.9425151Z [1006/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-packw\gen\x8-packw-x4-gemm-goi-scalar-u2.c.obj 2025-06-01T21:04:02.9577075Z [1007/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-transposec\gen\x8-transposec-16x16-reuse-mov-sse2.c.obj 2025-06-01T21:04:02.9775699Z [1008/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-x2-scalar.c.obj 2025-06-01T21:04:02.9894916Z [1009/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-packw\gen\x8-packw-x8-gemm-goi-scalar-u2.c.obj 2025-06-01T21:04:02.9904688Z [1010/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-x3-scalar.c.obj 2025-06-01T21:04:02.9915448Z [1011/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-transposec\gen\x8-transposec-2x4-scalar-int.c.obj 2025-06-01T21:04:03.0041757Z [1012/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-x3-sse2.c.obj 2025-06-01T21:04:03.0102559Z [1013/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-x2-sse2.c.obj 2025-06-01T21:04:03.0150678Z [1014/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-x4-scalar.c.obj 2025-06-01T21:04:03.0433821Z [1015/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-transposec\gen\x8-transposec-32x32-reuse-switch-avx2.c.obj 2025-06-01T21:04:03.0444410Z [1016/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-x4-sse2.c.obj 2025-06-01T21:04:03.0665509Z [1017/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-xm-scalar.c.obj 2025-06-01T21:04:03.0675710Z [1018/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-xm-sse2.c.obj 2025-06-01T21:04:03.0717371Z [1019/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\xx-fill\xx-fill-scalar-u16.c.obj 2025-06-01T21:04:03.0727405Z [1020/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\xx-fill\xx-fill-sse2-u64.c.obj 2025-06-01T21:04:03.0894399Z [1021/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\xx-copy\xx-copy-scalar-memcpy.c.obj 2025-06-01T21:04:03.1047089Z [1022/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\xx-pad\xx-pad-p16-sse2-u16.c.obj 2025-06-01T21:04:03.1093170Z [1023/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\xx-pad\xx-pad-p4-scalar-u16.c.obj 2025-06-01T21:04:03.1314479Z [1024/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\xx-transposev\xx-transposev-1x1-scalar-memcpy.c.obj 2025-06-01T21:04:03.1395699Z [1025/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2-k-over-2048.c.obj 2025-06-01T21:04:03.1493501Z [1026/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2minus-k-over-8.c.obj 2025-06-01T21:04:03.1503881Z [1027/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2minus-k-over-16.c.obj 2025-06-01T21:04:03.1552110Z [1028/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2minus-k-over-4.c.obj 2025-06-01T21:04:03.1600512Z [1029/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2-k-over-64.c.obj 2025-06-01T21:04:03.1613908Z [1030/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2minus-k-over-32.c.obj 2025-06-01T21:04:03.1813335Z [1031/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2minus-k-over-64.c.obj 2025-06-01T21:04:03.2067206Z [1032/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2minus-k-over-2048.c.obj 2025-06-01T21:04:03.2238780Z [1033/7110] Linking C static library lib\cpuinfo.lib 2025-06-01T21:04:03.2291412Z [1034/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\vlog.c.obj 2025-06-01T21:04:03.2320126Z [1035/7110] Running gen_proto.py on onnx/onnx-data.in.proto 2025-06-01T21:04:03.2330498Z Processing C:\actions-runner\_work\pytorch\pytorch\third_party\onnx\onnx\onnx-data.in.proto 2025-06-01T21:04:03.2331019Z 2025-06-01T21:04:03.2331355Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-data_onnx_torch.proto 2025-06-01T21:04:03.2331816Z 2025-06-01T21:04:03.2332148Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-data_onnx_torch.proto3 2025-06-01T21:04:03.2332584Z 2025-06-01T21:04:03.2332870Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-data.pb.h 2025-06-01T21:04:03.2333251Z 2025-06-01T21:04:03.2333542Z generating C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx_data_pb.py 2025-06-01T21:04:03.2333950Z 2025-06-01T21:04:03.2334211Z [1036/7110] Running gen_proto.py on onnx/onnx-operators.in.proto 2025-06-01T21:04:03.2334793Z Processing C:\actions-runner\_work\pytorch\pytorch\third_party\onnx\onnx\onnx-operators.in.proto 2025-06-01T21:04:03.2335555Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-operators_onnx_torch-ml.proto 2025-06-01T21:04:03.2336474Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-operators_onnx_torch-ml.proto3 2025-06-01T21:04:03.2337261Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-operators-ml.pb.h 2025-06-01T21:04:03.2546919Z generating C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx_operators_pb.py 2025-06-01T21:04:03.2547689Z 2025-06-01T21:04:03.2547935Z [1037/7110] Linking C executable sleef\bin\mkrename.exe 2025-06-01T21:04:03.2557956Z [1038/7110] Linking C executable sleef\bin\mkalias.exe 2025-06-01T21:04:03.2581465Z [1039/7110] Linking C executable sleef\bin\mkdisp.exe 2025-06-01T21:04:03.3059269Z [1040/7110] Building C object confu-deps\XNNPACK\CMakeFiles\logging.dir\src\enums\allocation-type.c.obj 2025-06-01T21:04:03.3099871Z [1041/7110] Building C object confu-deps\XNNPACK\CMakeFiles\logging.dir\src\enums\datatype-strings.c.obj 2025-06-01T21:04:03.3180553Z [1042/7110] Building C object confu-deps\XNNPACK\CMakeFiles\logging.dir\src\enums\node-type.c.obj 2025-06-01T21:04:03.3230040Z [1043/7110] Building C object confu-deps\XNNPACK\CMakeFiles\logging.dir\src\enums\microkernel-type.c.obj 2025-06-01T21:04:03.3277103Z [1044/7110] Building C object confu-deps\XNNPACK\CMakeFiles\indirection.dir\src\indirection.c.obj 2025-06-01T21:04:03.3322013Z [1045/7110] Building C object confu-deps\XNNPACK\CMakeFiles\logging.dir\src\enums\operator-type.c.obj 2025-06-01T21:04:03.4221253Z [1046/7110] Building C object confu-deps\XNNPACK\CMakeFiles\normalization.dir\src\normalization.c.obj 2025-06-01T21:04:03.4236935Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:03.4237630Z [1047/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microparams-init.dir\src\microparams-init.c.obj 2025-06-01T21:04:03.4647886Z [1048/7110] Building C object confu-deps\XNNPACK\CMakeFiles\allocator.dir\src\allocator.c.obj 2025-06-01T21:04:03.5060584Z [1049/7110] Building CXX object confu-deps\XNNPACK\CMakeFiles\packing.dir\src\reference\packing.cc.obj 2025-06-01T21:04:03.5061861Z 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-06-01T21:04:03.5063030Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-06-01T21:04:03.5064221Z 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-06-01T21:04:03.5065548Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-06-01T21:04:03.5066748Z 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-06-01T21:04:03.5067912Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(535): note: see declaration of 'xnn_bfloat16' 2025-06-01T21:04:03.5069116Z 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-06-01T21:04:03.5070277Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(535): note: see declaration of 'xnn_bfloat16' 2025-06-01T21:04:03.5071475Z 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-06-01T21:04:03.5072647Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-06-01T21:04:03.5073733Z C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\xutility(4528): warning C4244: '=': conversion from 'const _Ty' to 'float', possible loss of data 2025-06-01T21:04:03.5074494Z with 2025-06-01T21:04:03.5074661Z [ 2025-06-01T21:04:03.5074825Z _Ty=int 2025-06-01T21:04:03.5075001Z ] 2025-06-01T21:04:03.5075978Z 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-06-01T21:04:03.5077105Z with 2025-06-01T21:04:03.5077279Z [ 2025-06-01T21:04:03.5077463Z _OutIt=float *, 2025-06-01T21:04:03.5077678Z Dst=float, 2025-06-01T21:04:03.5077888Z _Diff=size_t, 2025-06-01T21:04:03.5078084Z _Ty=int 2025-06-01T21:04:03.5078290Z ] 2025-06-01T21:04:03.5079124Z 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-06-01T21:04:03.5080200Z with 2025-06-01T21:04:03.5080374Z [ 2025-06-01T21:04:03.5080539Z Src=float, 2025-06-01T21:04:03.5080742Z Dst=float 2025-06-01T21:04:03.5080964Z ] 2025-06-01T21:04:03.5081685Z C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\xutility(4528): warning C4244: 'argument': conversion from 'const _Ty' to 'float', possible loss of data 2025-06-01T21:04:03.5082520Z with 2025-06-01T21:04:03.5082696Z [ 2025-06-01T21:04:03.5082858Z _Ty=int 2025-06-01T21:04:03.5083065Z ] 2025-06-01T21:04:03.5084000Z 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-06-01T21:04:03.5276864Z with 2025-06-01T21:04:03.5277160Z [ 2025-06-01T21:04:03.5277562Z _OutIt=xnn_float16 *, 2025-06-01T21:04:03.5277914Z Dst=xnn_float16, 2025-06-01T21:04:03.5278142Z _Diff=size_t, 2025-06-01T21:04:03.5278344Z _Ty=int 2025-06-01T21:04:03.5278522Z ] 2025-06-01T21:04:03.5279488Z 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-06-01T21:04:03.5280535Z with 2025-06-01T21:04:03.5280797Z [ 2025-06-01T21:04:03.5281061Z Src=float, 2025-06-01T21:04:03.5281408Z Dst=xnn_float16 2025-06-01T21:04:03.5281772Z ] 2025-06-01T21:04:03.5282625Z [1050/7110] Building C object confu-deps\XNNPACK\CMakeFiles\hardware-config.dir\src\configs\hardware-config.c.obj 2025-06-01T21:04:03.5303148Z [1051/7110] Linking C static library lib\microkernels-prod.lib 2025-06-01T21:04:03.5405493Z [1052/7110] Building C object confu-deps\XNNPACK\CMakeFiles\datatype.dir\src\datatype.c.obj 2025-06-01T21:04:03.5539366Z [1053/7110] Building C object confu-deps\XNNPACK\CMakeFiles\cache.dir\src\cache.c.obj 2025-06-01T21:04:03.5592180Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:03.5592961Z [1054/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernel-utils.dir\src\microkernel-utils.c.obj 2025-06-01T21:04:03.6340786Z [1055/7110] Building C object confu-deps\XNNPACK\CMakeFiles\memory.dir\src\memory.c.obj 2025-06-01T21:04:03.6546457Z [1056/7110] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\argmax-pooling-nhwc.c.obj 2025-06-01T21:04:03.6685936Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\operators\argmax-pooling-nhwc.c(252): warning C4090: 'function': different 'const' qualifiers 2025-06-01T21:04:03.6686747Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:03.6687368Z [1057/7110] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\average-pooling-nhwc.c.obj 2025-06-01T21:04:03.6697229Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\operators\average-pooling-nhwc.c(519): warning C4090: 'function': different 'const' qualifiers 2025-06-01T21:04:03.6698010Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:03.6698667Z [1058/7110] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\binary-elementwise-nd.c.obj 2025-06-01T21:04:03.6779653Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:03.6780170Z [1059/7110] Building C object confu-deps\XNNPACK\CMakeFiles\logging.dir\src\log.c.obj 2025-06-01T21:04:03.6915042Z [1060/7110] Building C object confu-deps\XNNPACK\CMakeFiles\mutex.dir\src\mutex.c.obj 2025-06-01T21:04:03.6968857Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:03.6970390Z [1061/7110] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operator-delete.c.obj 2025-06-01T21:04:03.7405584Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:03.7406265Z [1062/7110] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\channel-shuffle-nc.c.obj 2025-06-01T21:04:03.7732411Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:03.7733254Z [1063/7110] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\batch-matrix-multiply-nc.c.obj 2025-06-01T21:04:03.7802532Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:03.7803190Z [1064/7110] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\constant-pad-nd.c.obj 2025-06-01T21:04:03.8118196Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:03.8119504Z [1065/7110] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\dynamic-fully-connected-nc.c.obj 2025-06-01T21:04:03.8724199Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:03.8724865Z [1066/7110] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\max-pooling-nhwc.c.obj 2025-06-01T21:04:03.8890279Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\operators\max-pooling-nhwc.c(491): warning C4090: 'function': different 'const' qualifiers 2025-06-01T21:04:03.8891110Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:03.8891775Z [1067/7110] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\reduce-nd.c.obj 2025-06-01T21:04:03.9076981Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:03.9077595Z [1068/7110] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\pack-lh.c.obj 2025-06-01T21:04:03.9090094Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:03.9090835Z [1069/7110] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\convolution-nchw.c.obj 2025-06-01T21:04:03.9152553Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:03.9153292Z [1070/7110] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\deconvolution-nhwc.c.obj 2025-06-01T21:04:03.9233864Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\operators\deconvolution-nhwc.c(1260): warning C4090: 'function': different 'const' qualifiers 2025-06-01T21:04:03.9236220Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\operators\deconvolution-nhwc.c(1548): warning C4090: 'function': different 'const' qualifiers 2025-06-01T21:04:03.9237675Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:03.9238765Z [1071/7110] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\convolution-nhwc.c.obj 2025-06-01T21:04:03.9314945Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\operators\convolution-nhwc.c(2491): warning C4090: 'function': different 'const' qualifiers 2025-06-01T21:04:03.9315901Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:03.9316618Z [1072/7110] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\resize-bilinear-nchw.c.obj 2025-06-01T21:04:03.9699019Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\operators\resize-bilinear-nchw.c(206): warning C4090: 'function': different 'const' qualifiers 2025-06-01T21:04:03.9699916Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:03.9700553Z [1073/7110] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\resize-bilinear-nhwc.c.obj 2025-06-01T21:04:03.9933561Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\operators\resize-bilinear-nhwc.c(272): warning C4090: 'function': different 'const' qualifiers 2025-06-01T21:04:03.9934380Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:03.9935201Z [1074/7110] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\rope-nthc.c.obj 2025-06-01T21:04:04.0095538Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:04.0096285Z [1075/7110] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\scaled-dot-product-attention-nhtc.c.obj 2025-06-01T21:04:04.0136308Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:04.0136954Z [1076/7110] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\softmax-nc.c.obj 2025-06-01T21:04:04.0253969Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:04.0254765Z [1077/7110] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\slice-nd.c.obj 2025-06-01T21:04:04.0422358Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:04.0513672Z [1078/7110] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\fully-connected-nc.c.obj 2025-06-01T21:04:04.0514342Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:04.0514970Z [1079/7110] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\unary-elementwise-nc.c.obj 2025-06-01T21:04:04.0658254Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:04.0658901Z [1080/7110] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\transpose-nd.c.obj 2025-06-01T21:04:04.0859780Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:04.0860881Z [1081/7110] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\unpooling-nhwc.c.obj 2025-06-01T21:04:04.0966818Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\operators\unpooling-nhwc.c(208): warning C4090: 'function': different 'const' qualifiers 2025-06-01T21:04:04.0967636Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:04.0968273Z [1082/7110] Building C object confu-deps\XNNPACK\CMakeFiles\operator-run.dir\src\operator-run.c.obj 2025-06-01T21:04:04.0969130Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\operator-run.c(1425): warning C4090: 'initializing': different 'const' qualifiers 2025-06-01T21:04:04.0970310Z 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-06-01T21:04:04.0971860Z 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-06-01T21:04:04.1077388Z 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-06-01T21:04:04.1078579Z 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-06-01T21:04:04.1079558Z [1083/7110] Building C object confu-deps\XNNPACK\CMakeFiles\operator-utils.dir\src\operator-utils.c.obj 2025-06-01T21:04:04.2600648Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\operator-utils.c(162): warning C4090: 'function': different 'const' qualifiers 2025-06-01T21:04:04.2601675Z [1084/7110] Building CXX object confu-deps\XNNPACK\CMakeFiles\reference-ukernels.dir\src\reference\binary-elementwise.cc.obj 2025-06-01T21:04:04.2603086Z 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-06-01T21:04:04.2604290Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-06-01T21:04:04.2605567Z 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-06-01T21:04:04.2606952Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-06-01T21:04:04.2608239Z 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-06-01T21:04:04.2609392Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(535): note: see declaration of 'xnn_bfloat16' 2025-06-01T21:04:04.2610708Z 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-06-01T21:04:04.2611898Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(535): note: see declaration of 'xnn_bfloat16' 2025-06-01T21:04:04.2701477Z 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-06-01T21:04:04.2703823Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-06-01T21:04:04.2705652Z [1085/7110] Building CXX object confu-deps\XNNPACK\CMakeFiles\reference-ukernels.dir\src\reference\unary-elementwise.cc.obj 2025-06-01T21:04:04.2707502Z 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-06-01T21:04:04.2708848Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-06-01T21:04:04.2710312Z 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-06-01T21:04:04.2712132Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-06-01T21:04:04.2713416Z 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-06-01T21:04:04.2714584Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(535): note: see declaration of 'xnn_bfloat16' 2025-06-01T21:04:04.2716115Z 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-06-01T21:04:04.2717487Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(535): note: see declaration of 'xnn_bfloat16' 2025-06-01T21:04:04.2720060Z 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-06-01T21:04:04.2721235Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-06-01T21:04:04.2722079Z [1086/7110] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\memory-planner.c.obj 2025-06-01T21:04:04.3082019Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:04.3082585Z [1087/7110] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph.c.obj 2025-06-01T21:04:04.3155771Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:04.3156753Z [1088/7110] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\runtime.c.obj 2025-06-01T21:04:04.3168624Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:04.3169818Z [1089/7110] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\argmax-pooling-2d.c.obj 2025-06-01T21:04:04.3183657Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:04.3184372Z [1090/7110] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\average-pooling-2d.c.obj 2025-06-01T21:04:04.3413105Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:04.3414119Z [1091/7110] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\batch-matrix-multiply.c.obj 2025-06-01T21:04:04.5131026Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:04.5148242Z [1092/7110] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\concatenate.c.obj 2025-06-01T21:04:04.5267089Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:04.5267755Z [1093/7110] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\convolution-2d.c.obj 2025-06-01T21:04:04.5385273Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:04.5385870Z [1094/7110] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\copy.c.obj 2025-06-01T21:04:04.5456280Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:04.5456873Z [1095/7110] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\binary.c.obj 2025-06-01T21:04:04.5524231Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:04.5524872Z [1096/7110] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\deconvolution-2d.c.obj 2025-06-01T21:04:04.5588823Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:04.5589871Z [1097/7110] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\deprecated.c.obj 2025-06-01T21:04:04.5602944Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:04.5603592Z [1098/7110] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\depth-to-space-2d.c.obj 2025-06-01T21:04:04.5788119Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:04.5789396Z [1099/7110] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\depthwise-convolution-2d.c.obj 2025-06-01T21:04:04.7481743Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:04.7482463Z [1100/7110] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\even-split.c.obj 2025-06-01T21:04:04.7634665Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:04.7635970Z [1101/7110] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\fully-connected-sparse.c.obj 2025-06-01T21:04:04.7698501Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:04.7700227Z [1102/7110] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\fully-connected.c.obj 2025-06-01T21:04:04.7987188Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:04.7987844Z [1103/7110] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\reshape-helpers.c.obj 2025-06-01T21:04:04.8033217Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:04.8034420Z [1104/7110] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\max-pooling-2d.c.obj 2025-06-01T21:04:04.8091068Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:04.8093477Z [1105/7110] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\softmax.c.obj 2025-06-01T21:04:04.8159437Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:04.8160287Z [1106/7110] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\scaled-dot-product-attention.c.obj 2025-06-01T21:04:04.8221661Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:04.8222775Z [1107/7110] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\pack-lh.c.obj 2025-06-01T21:04:04.9769674Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:04.9770345Z [1108/7110] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\space-to-depth-2d.c.obj 2025-06-01T21:04:05.0226083Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:05.0226759Z [1109/7110] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\static-constant-pad.c.obj 2025-06-01T21:04:05.0310599Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:05.0311442Z [1110/7110] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\unpooling-2d.c.obj 2025-06-01T21:04:05.0369723Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:05.0370915Z [1111/7110] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\static-reduce.c.obj 2025-06-01T21:04:05.0435552Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:05.0436273Z [1112/7110] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\static-slice.c.obj 2025-06-01T21:04:05.0448110Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:05.0448713Z [1113/7110] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\static-transpose.c.obj 2025-06-01T21:04:05.0567655Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:05.0568078Z [1114/7110] Generating sleeflibm_AVX2.h.tmp 2025-06-01T21:04:05.0580255Z [1115/7110] Generating sleeflibm_AVX.h.tmp 2025-06-01T21:04:05.0688395Z [1116/7110] Generating sleeflibm_AVX2128.h.tmp 2025-06-01T21:04:05.0703741Z [1117/7110] Generating sleeflibm_AVX512F.h.tmp 2025-06-01T21:04:05.0812847Z [1118/7110] Generating sleeflibm_AVX512FNOFMA.h.tmp 2025-06-01T21:04:05.0822192Z [1119/7110] Generating sleeflibm_AVX512F_.h.tmp 2025-06-01T21:04:05.0886228Z [1120/7110] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\static-resize-bilinear-2d.c.obj 2025-06-01T21:04:05.0931237Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:05.0931720Z [1121/7110] Generating sleeflibm_AVX_.h.tmp 2025-06-01T21:04:05.0943601Z [1122/7110] Generating sleeflibm_DSP_SCALAR.h.tmp 2025-06-01T21:04:05.1011667Z [1123/7110] Generating sleeflibm_FMA4.h.tmp 2025-06-01T21:04:05.1057617Z [1124/7110] Generating sleeflibm_PURECFMA_SCALAR.h.tmp 2025-06-01T21:04:05.1074310Z [1125/7110] Running C++ protocol buffer compiler on C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch-ml.proto 2025-06-01T21:04:05.1085251Z [1126/7110] Generating sleeflibm_PUREC_SCALAR.h.tmp 2025-06-01T21:04:05.1142406Z [1127/7110] Generating sleeflibm_SSE2.h.tmp 2025-06-01T21:04:05.1190237Z [1128/7110] Generating sleeflibm_SSE4.h.tmp 2025-06-01T21:04:05.1205560Z [1129/7110] Generating sleeflibm_SSE_.h.tmp 2025-06-01T21:04:05.1231070Z [1130/7110] Generating alias_AVX512F_dp.h.tmp 2025-06-01T21:04:05.1270705Z [1131/7110] Generating alias_AVX512F_sp.h.tmp 2025-06-01T21:04:05.1341645Z [1132/7110] Running C++ protocol buffer compiler on C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto 2025-06-01T21:04:05.1351579Z [1133/7110] Generating dispsse.c.tmp 2025-06-01T21:04:05.1360729Z [1134/7110] Generating dispscalar.c.body 2025-06-01T21:04:05.1370034Z [1135/7110] Generating dispavx.c.tmp 2025-06-01T21:04:05.1547786Z [1136/7110] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\unary.c.obj 2025-06-01T21:04:05.1934508Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:05.1935130Z [1137/7110] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\validation.c.obj 2025-06-01T21:04:05.2267985Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:05.2269071Z [1138/7110] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\tensor.c.obj 2025-06-01T21:04:05.3695885Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:05.3696597Z [1139/7110] Generating build_identifier.c 2025-06-01T21:04:05.4763076Z [1140/7110] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\archtraits.cpp.obj 2025-06-01T21:04:05.4764310Z 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-06-01T21:04:05.4765906Z 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-06-01T21:04:05.4767271Z 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-06-01T21:04:05.4768660Z 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-06-01T21:04:05.4769991Z 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-06-01T21:04:05.4771316Z 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-06-01T21:04:05.4772652Z 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-06-01T21:04:05.4878798Z 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-06-01T21:04:05.4880336Z 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-06-01T21:04:05.4881921Z 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-06-01T21:04:05.4883277Z [1141/7110] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\assembler.cpp.obj 2025-06-01T21:04:05.4932938Z [1142/7110] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\codewriter.cpp.obj 2025-06-01T21:04:05.5026316Z [1143/7110] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\builder.cpp.obj 2025-06-01T21:04:05.5192364Z [1144/7110] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\compiler.cpp.obj 2025-06-01T21:04:05.5275903Z [1145/7110] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\constpool.cpp.obj 2025-06-01T21:04:05.5292200Z [1146/7110] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\codeholder.cpp.obj 2025-06-01T21:04:05.6809184Z [1147/7110] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\cpuinfo.cpp.obj 2025-06-01T21:04:05.8186885Z [1148/7110] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\errorhandler.cpp.obj 2025-06-01T21:04:05.8255267Z [1149/7110] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\environment.cpp.obj 2025-06-01T21:04:05.8269298Z [1150/7110] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\emithelper.cpp.obj 2025-06-01T21:04:05.8436052Z [1151/7110] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\emitterutils.cpp.obj 2025-06-01T21:04:05.8574611Z [1152/7110] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\emitter.cpp.obj 2025-06-01T21:04:05.8731542Z [1153/7110] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\func.cpp.obj 2025-06-01T21:04:05.8890537Z [1154/7110] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\formatter.cpp.obj 2025-06-01T21:04:06.0031527Z [1155/7110] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\funcargscontext.cpp.obj 2025-06-01T21:04:06.1313304Z [1156/7110] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\globals.cpp.obj 2025-06-01T21:04:06.1441737Z [1157/7110] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\inst.cpp.obj 2025-06-01T21:04:06.1565132Z [1158/7110] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\instdb.cpp.obj 2025-06-01T21:04:06.1629298Z [1159/7110] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\jitruntime.cpp.obj 2025-06-01T21:04:06.1933634Z [1160/7110] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\operand.cpp.obj 2025-06-01T21:04:06.2002587Z [1161/7110] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\jitallocator.cpp.obj 2025-06-01T21:04:06.2276935Z [1162/7110] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\logger.cpp.obj 2025-06-01T21:04:06.2931973Z [1163/7110] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\osutils.cpp.obj 2025-06-01T21:04:06.4980761Z [1164/7110] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\string.cpp.obj 2025-06-01T21:04:06.5053059Z [1165/7110] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\support.cpp.obj 2025-06-01T21:04:06.5066734Z [1166/7110] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\rastack.cpp.obj 2025-06-01T21:04:06.5080629Z [1167/7110] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\ralocal.cpp.obj 2025-06-01T21:04:06.5155930Z [1168/7110] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\rapass.cpp.obj 2025-06-01T21:04:06.5330929Z [1169/7110] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\target.cpp.obj 2025-06-01T21:04:06.5670320Z [1170/7110] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\type.cpp.obj 2025-06-01T21:04:06.6271677Z [1171/7110] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\virtmem.cpp.obj 2025-06-01T21:04:06.8186640Z [1172/7110] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\zone.cpp.obj 2025-06-01T21:04:06.8234841Z [1173/7110] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\zonehash.cpp.obj 2025-06-01T21:04:06.8292355Z [1174/7110] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\zonestack.cpp.obj 2025-06-01T21:04:06.8443026Z [1175/7110] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\zonelist.cpp.obj 2025-06-01T21:04:06.8511621Z [1176/7110] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\zonetree.cpp.obj 2025-06-01T21:04:06.9139733Z [1177/7110] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\zonevector.cpp.obj 2025-06-01T21:04:06.9396835Z [1178/7110] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\armformatter.cpp.obj 2025-06-01T21:04:06.9399324Z 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-06-01T21:04:06.9401899Z 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-06-01T21:04:06.9404574Z 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-06-01T21:04:06.9407348Z 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-06-01T21:04:06.9410026Z 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-06-01T21:04:06.9413236Z 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-06-01T21:04:06.9415772Z 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-06-01T21:04:06.9775423Z 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-06-01T21:04:06.9776850Z 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-06-01T21:04:06.9778389Z 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-06-01T21:04:06.9779910Z [1179/7110] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64assembler.cpp.obj 2025-06-01T21:04:06.9781026Z 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-06-01T21:04:06.9782404Z 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-06-01T21:04:06.9784285Z 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-06-01T21:04:06.9785729Z 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-06-01T21:04:06.9787073Z 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-06-01T21:04:06.9788472Z 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-06-01T21:04:06.9789805Z 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-06-01T21:04:07.1653538Z 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-06-01T21:04:07.1654921Z 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-06-01T21:04:07.1656250Z 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-06-01T21:04:07.1657395Z [1180/7110] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64emithelper.cpp.obj 2025-06-01T21:04:07.1658750Z 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-06-01T21:04:07.1660151Z 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-06-01T21:04:07.1661480Z 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-06-01T21:04:07.1662883Z 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-06-01T21:04:07.1664315Z 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-06-01T21:04:07.1665707Z 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-06-01T21:04:07.1667132Z 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-06-01T21:04:07.1896991Z 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-06-01T21:04:07.1898654Z 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-06-01T21:04:07.1900279Z 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-06-01T21:04:07.1901498Z [1181/7110] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64formatter.cpp.obj 2025-06-01T21:04:07.1902754Z 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-06-01T21:04:07.1904400Z 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-06-01T21:04:07.1906026Z 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-06-01T21:04:07.1907965Z 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-06-01T21:04:07.1910717Z 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-06-01T21:04:07.1913325Z 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-06-01T21:04:07.1916030Z 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-06-01T21:04:07.1975568Z 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-06-01T21:04:07.1978349Z 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-06-01T21:04:07.1981092Z 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-06-01T21:04:07.1983205Z [1182/7110] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64func.cpp.obj 2025-06-01T21:04:07.1985548Z 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-06-01T21:04:07.1988113Z 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-06-01T21:04:07.1990644Z 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-06-01T21:04:07.1993275Z 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-06-01T21:04:07.1995417Z 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-06-01T21:04:07.1997041Z 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-06-01T21:04:07.1998668Z 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-06-01T21:04:07.2052725Z 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-06-01T21:04:07.2054328Z 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-06-01T21:04:07.2055891Z 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-06-01T21:04:07.2057111Z [1183/7110] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64builder.cpp.obj 2025-06-01T21:04:07.2058352Z 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-06-01T21:04:07.2059934Z 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-06-01T21:04:07.2061279Z 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-06-01T21:04:07.2062604Z 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-06-01T21:04:07.2064159Z 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-06-01T21:04:07.2065951Z 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-06-01T21:04:07.2067467Z 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-06-01T21:04:07.2131995Z 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-06-01T21:04:07.2134656Z 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-06-01T21:04:07.2137620Z 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-06-01T21:04:07.2139646Z [1184/7110] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64compiler.cpp.obj 2025-06-01T21:04:07.2141688Z 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-06-01T21:04:07.2144344Z 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-06-01T21:04:07.2147029Z 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-06-01T21:04:07.2149783Z 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-06-01T21:04:07.2152424Z 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-06-01T21:04:07.2155099Z 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-06-01T21:04:07.2157906Z 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-06-01T21:04:07.2852244Z 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-06-01T21:04:07.2853640Z 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-06-01T21:04:07.2855214Z 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-06-01T21:04:07.2856379Z [1185/7110] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64instdb.cpp.obj 2025-06-01T21:04:07.2857496Z 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-06-01T21:04:07.2858960Z 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-06-01T21:04:07.2860296Z 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-06-01T21:04:07.2861725Z 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-06-01T21:04:07.2863121Z 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-06-01T21:04:07.2864622Z 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-06-01T21:04:07.2865938Z 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-06-01T21:04:07.3069915Z 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-06-01T21:04:07.3071400Z 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-06-01T21:04:07.3073239Z 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-06-01T21:04:07.3074353Z [1186/7110] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64instapi.cpp.obj 2025-06-01T21:04:07.3075497Z 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-06-01T21:04:07.3077007Z 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-06-01T21:04:07.3078331Z 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-06-01T21:04:07.3079685Z 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-06-01T21:04:07.3081009Z 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-06-01T21:04:07.3082339Z 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-06-01T21:04:07.3084566Z 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-06-01T21:04:07.3346852Z 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-06-01T21:04:07.3349604Z 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-06-01T21:04:07.3352306Z 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-06-01T21:04:07.3354400Z [1187/7110] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64operand.cpp.obj 2025-06-01T21:04:07.3356540Z 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-06-01T21:04:07.3359213Z 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-06-01T21:04:07.3361929Z 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-06-01T21:04:07.3364604Z 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-06-01T21:04:07.3367216Z 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-06-01T21:04:07.3369819Z 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-06-01T21:04:07.3372516Z 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-06-01T21:04:07.5611609Z 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-06-01T21:04:07.5613015Z 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-06-01T21:04:07.5614501Z 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-06-01T21:04:07.5615579Z [1188/7110] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64rapass.cpp.obj 2025-06-01T21:04:07.5616643Z 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-06-01T21:04:07.5617984Z 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-06-01T21:04:07.5619592Z 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-06-01T21:04:07.5620918Z 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-06-01T21:04:07.5622326Z 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-06-01T21:04:07.5623882Z 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-06-01T21:04:07.5625233Z 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-06-01T21:04:07.5794463Z 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-06-01T21:04:07.5795958Z 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-06-01T21:04:07.5797330Z 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-06-01T21:04:07.5798490Z [1189/7110] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86compiler.cpp.obj 2025-06-01T21:04:07.6142293Z [1190/7110] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86emithelper.cpp.obj 2025-06-01T21:04:07.6636047Z [1191/7110] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86builder.cpp.obj 2025-06-01T21:04:07.6649835Z [1192/7110] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86func.cpp.obj 2025-06-01T21:04:07.6663834Z [1193/7110] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86formatter.cpp.obj 2025-06-01T21:04:07.6677758Z [1194/7110] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86assembler.cpp.obj 2025-06-01T21:04:07.6679764Z 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-06-01T21:04:07.6682619Z 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-06-01T21:04:07.6685472Z 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-06-01T21:04:07.6688092Z 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-06-01T21:04:07.6690741Z 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-06-01T21:04:07.6693414Z 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-06-01T21:04:07.6696379Z 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-06-01T21:04:07.6699542Z 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-06-01T21:04:07.6702221Z 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-06-01T21:04:07.6705651Z 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-06-01T21:04:07.6708306Z 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-06-01T21:04:07.6710955Z 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-06-01T21:04:07.6713710Z 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-06-01T21:04:07.6716465Z 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-06-01T21:04:07.6719341Z 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-06-01T21:04:07.6721991Z 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-06-01T21:04:07.6724697Z 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-06-01T21:04:07.6727388Z 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-06-01T21:04:07.6730070Z 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-06-01T21:04:07.6732791Z 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-06-01T21:04:07.7362057Z 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-06-01T21:04:07.7363568Z 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-06-01T21:04:07.7364869Z [1195/7110] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86instdb.cpp.obj 2025-06-01T21:04:07.8887977Z [1196/7110] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86instapi.cpp.obj 2025-06-01T21:04:07.9047153Z [1197/7110] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86operand.cpp.obj 2025-06-01T21:04:08.0457047Z [1198/7110] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\alloc.c.obj 2025-06-01T21:04:08.0721904Z [1199/7110] Building CXX object third_party\onnx\CMakeFiles\onnx_proto.dir\onnx\onnx-operators_onnx_torch-ml.pb.cc.obj 2025-06-01T21:04:08.0917649Z [1200/7110] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86rapass.cpp.obj 2025-06-01T21:04:08.0970098Z [1201/7110] Building CXX object third_party\onnx\CMakeFiles\onnx_proto.dir\onnx\onnx-data_onnx_torch.pb.cc.obj 2025-06-01T21:04:08.1308201Z [1202/7110] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\alloc-aligned.c.obj 2025-06-01T21:04:08.1697204Z [1203/7110] Building CXX object third_party\onnx\CMakeFiles\onnx_proto.dir\onnx\onnx_onnx_torch-ml.pb.cc.obj 2025-06-01T21:04:08.2446292Z [1204/7110] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\alloc-posix.c.obj 2025-06-01T21:04:08.2992769Z [1205/7110] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\arena.c.obj 2025-06-01T21:04:08.4368851Z [1206/7110] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\libc.c.obj 2025-06-01T21:04:08.4442003Z [1207/7110] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\bitmap.c.obj 2025-06-01T21:04:08.4460413Z [1208/7110] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\heap.c.obj 2025-06-01T21:04:08.4560337Z [1209/7110] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\init.c.obj 2025-06-01T21:04:08.5184819Z [1210/7110] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\os.c.obj 2025-06-01T21:04:08.5328304Z [1211/7110] Generating include/renameavx512fnofma.h 2025-06-01T21:04:08.5462118Z Generating renameavx512fnofma.h: mkrename "cinz_" "8" "16" "avx512fnofma" 2025-06-01T21:04:08.5462866Z 2025-06-01T21:04:08.5463087Z [1212/7110] Generating include/renameavx512f.h 2025-06-01T21:04:08.5593955Z Generating renameavx512f.h: mkrename "finz_" "8" "16" "avx512f" 2025-06-01T21:04:08.5594414Z 2025-06-01T21:04:08.5594561Z [1213/7110] Generating include/renameavx2.h 2025-06-01T21:04:08.5714691Z Generating renameavx2.h: mkrename "finz_" "4" "8" "avx2" 2025-06-01T21:04:08.5714977Z 2025-06-01T21:04:08.5715098Z [1214/7110] Generating include/renameavx2128.h 2025-06-01T21:04:08.5845079Z Generating renameavx2128.h: mkrename "finz_" "2" "4" "avx2128" 2025-06-01T21:04:08.5845438Z 2025-06-01T21:04:08.5845550Z [1215/7110] Generating include/renamefma4.h 2025-06-01T21:04:08.5971939Z Generating renamefma4.h: mkrename "finz_" "4" "8" "fma4" 2025-06-01T21:04:08.5972455Z 2025-06-01T21:04:08.5972651Z [1216/7110] Generating include/renameavx.h 2025-06-01T21:04:08.6097885Z Generating renameavx.h: mkrename "cinz_" "4" "8" "avx" 2025-06-01T21:04:08.6098387Z 2025-06-01T21:04:08.6098607Z [1217/7110] Generating include/renamesse4.h 2025-06-01T21:04:08.6221195Z Generating renamesse4.h: mkrename "cinz_" "2" "4" "sse4" 2025-06-01T21:04:08.6221487Z 2025-06-01T21:04:08.6221613Z [1218/7110] Generating include/renamesse2.h 2025-06-01T21:04:08.6339196Z Generating renamesse2.h: mkrename "cinz_" "2" "4" "sse2" 2025-06-01T21:04:08.6339480Z 2025-06-01T21:04:08.6339618Z [1219/7110] Generating include/renamepurec_scalar.h 2025-06-01T21:04:08.6450217Z Generating renamepurec_scalar.h: mkrename "cinz_" "1" "1" "purec" 2025-06-01T21:04:08.6450546Z 2025-06-01T21:04:08.6450702Z [1220/7110] Generating include/renamepurecfma_scalar.h 2025-06-01T21:04:08.6569658Z Generating renamepurecfma_scalar.h: mkrename "finz_" "1" "1" "purecfma" 2025-06-01T21:04:08.6570338Z 2025-06-01T21:04:08.6570534Z [1221/7110] Generating include/renamecuda.h 2025-06-01T21:04:08.6765190Z Generating renamecuda.h: mkrename "finz_" "1" "1" "cuda" 2025-06-01T21:04:08.6765492Z 2025-06-01T21:04:08.6765820Z [1222/7110] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\page.c.obj 2025-06-01T21:04:08.6779137Z [1223/7110] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\random.c.obj 2025-06-01T21:04:08.6843248Z [1224/7110] Generating ../../../include/sleef.h 2025-06-01T21:04:08.6968649Z [1225/7110] Generating include/renamedspscalar.h 2025-06-01T21:04:08.6979086Z [1226/7110] Generating include/alias_avx512f.h 2025-06-01T21:04:08.6990655Z [1227/7110] Generating dispscalar.c 2025-06-01T21:04:08.7105212Z [1228/7110] Generating include/renamedsp128.h 2025-06-01T21:04:08.7203772Z [1229/7110] Generating dispsse.c 2025-06-01T21:04:08.7223539Z [1230/7110] Generating dispavx.c 2025-06-01T21:04:08.7236065Z [1231/7110] Generating include/renamedsp256.h 2025-06-01T21:04:08.7733023Z [1232/7110] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\segment-map.c.obj 2025-06-01T21:04:08.8057533Z [1233/7110] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\stats.c.obj 2025-06-01T21:04:08.8133101Z [1234/7110] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\segment.c.obj 2025-06-01T21:04:08.8218711Z [1235/7110] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\prim\prim.c.obj 2025-06-01T21:04:09.0964984Z [1236/7110] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\avgpool-config.c.obj 2025-06-01T21:04:09.0982326Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:09.0983014Z [1237/7110] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\binary-elementwise-config.c.obj 2025-06-01T21:04:09.1065737Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:09.1066886Z [1238/7110] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\argmaxpool-config.c.obj 2025-06-01T21:04:09.1434260Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:09.1434983Z [1239/7110] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\options.c.obj 2025-06-01T21:04:09.1451356Z [1240/7110] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\cmul-config.c.obj 2025-06-01T21:04:09.1544099Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:09.1545425Z [1241/7110] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\experiments-config.c.obj 2025-06-01T21:04:09.1835031Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:09.1835805Z [1242/7110] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\conv-hwc2chw-config.c.obj 2025-06-01T21:04:09.1948386Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:09.1950871Z [1243/7110] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\dwconv-config.c.obj 2025-06-01T21:04:09.2115417Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:09.2116848Z [1244/7110] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\dwconv2d-chw-config.c.obj 2025-06-01T21:04:09.4916308Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:09.4917042Z [1245/7110] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\ibilinear-chw-config.c.obj 2025-06-01T21:04:09.5236602Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:09.5237754Z [1246/7110] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\gemm-config.c.obj 2025-06-01T21:04:09.5305749Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:09.5306491Z [1247/7110] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\maxpool-config.c.obj 2025-06-01T21:04:09.5324360Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:09.5325092Z [1248/7110] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\lut32norm-config.c.obj 2025-06-01T21:04:09.5343081Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:09.5344156Z [1249/7110] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\ibilinear-config.c.obj 2025-06-01T21:04:09.5690435Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:09.5691167Z [1250/7110] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\pavgpool-config.c.obj 2025-06-01T21:04:09.5954310Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:09.5955584Z [1251/7110] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\raddstoreexpminusmax-config.c.obj 2025-06-01T21:04:09.5969430Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:09.5970214Z [1252/7110] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\pack-lh-config.c.obj 2025-06-01T21:04:09.8807216Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:09.8807957Z [1253/7110] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\reduce-config.c.obj 2025-06-01T21:04:09.8916435Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:09.8917185Z [1254/7110] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\spmm-config.c.obj 2025-06-01T21:04:09.9150749Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:09.9151973Z [1255/7110] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\transpose-config.c.obj 2025-06-01T21:04:09.9213084Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:09.9213779Z [1256/7110] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\rmax-config.c.obj 2025-06-01T21:04:09.9300819Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:09.9301563Z [1257/7110] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\unary-elementwise-config.c.obj 2025-06-01T21:04:09.9456536Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:09.9457588Z [1258/7110] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\unpool-config.c.obj 2025-06-01T21:04:09.9547030Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:09.9547676Z [1259/7110] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\vmulcaddc-config.c.obj 2025-06-01T21:04:09.9653743Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:09.9655136Z [1260/7110] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\xx-fill-config.c.obj 2025-06-01T21:04:09.9984482Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:09.9985065Z [1261/7110] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\params.c.obj 2025-06-01T21:04:10.0610730Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:10.0611866Z [1262/7110] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\build_identifier.c.obj 2025-06-01T21:04:10.0757347Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:10.0757991Z [1263/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\ExecuteKernel.cc.obj 2025-06-01T21:04:10.2473155Z [1264/7110] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\xx-pad-config.c.obj 2025-06-01T21:04:10.2779013Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:10.2779848Z [1265/7110] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\x8-lut-config.c.obj 2025-06-01T21:04:10.2799384Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:10.2799997Z [1266/7110] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\zip-config.c.obj 2025-06-01T21:04:10.3003988Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:10.3005038Z [1267/7110] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\init.c.obj 2025-06-01T21:04:10.4482508Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:10.4483491Z [1268/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\EmbeddingSpMDMNBit.cc.obj 2025-06-01T21:04:10.4718408Z [1269/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\EmbeddingSpMDM.cc.obj 2025-06-01T21:04:10.4776466Z [1270/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmBfloat16Convert.cc.obj 2025-06-01T21:04:10.5266250Z [1271/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\Fbgemm.cc.obj 2025-06-01T21:04:10.5268433Z 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-06-01T21:04:10.5270007Z with 2025-06-01T21:04:10.5270176Z [ 2025-06-01T21:04:10.5270377Z inpType=uint8_t 2025-06-01T21:04:10.5270585Z ] 2025-06-01T21:04:10.5272436Z 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-06-01T21:04:10.5276315Z 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-06-01T21:04:10.5280062Z 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-06-01T21:04:10.5283842Z 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-06-01T21:04:10.5286340Z with 2025-06-01T21:04:10.5286677Z [ 2025-06-01T21:04:10.5287004Z inpType=int8_t 2025-06-01T21:04:10.5287418Z ] 2025-06-01T21:04:10.5288813Z 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-06-01T21:04:10.5292265Z 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-06-01T21:04:10.5295999Z 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-06-01T21:04:10.5299824Z 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-06-01T21:04:10.5302336Z with 2025-06-01T21:04:10.5302645Z [ 2025-06-01T21:04:10.5302977Z inpType=uint8_t 2025-06-01T21:04:10.5303366Z ] 2025-06-01T21:04:10.5304939Z 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-06-01T21:04:10.5308485Z 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-06-01T21:04:10.5312520Z 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-06-01T21:04:10.5316414Z 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-06-01T21:04:10.5318902Z with 2025-06-01T21:04:10.5319218Z [ 2025-06-01T21:04:10.5319551Z inpType=int8_t 2025-06-01T21:04:10.5319936Z ] 2025-06-01T21:04:10.5321332Z 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-06-01T21:04:10.5324978Z 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-06-01T21:04:10.5328640Z 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-06-01T21:04:10.5332463Z 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-06-01T21:04:10.5335134Z with 2025-06-01T21:04:10.5335421Z [ 2025-06-01T21:04:10.5335723Z inpType=uint8_t 2025-06-01T21:04:10.5336119Z ] 2025-06-01T21:04:10.5337641Z 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-06-01T21:04:10.5341533Z 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-06-01T21:04:10.5345405Z 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-06-01T21:04:10.5349380Z 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-06-01T21:04:10.5352017Z with 2025-06-01T21:04:10.5352351Z [ 2025-06-01T21:04:10.5352677Z inpType=uint8_t 2025-06-01T21:04:10.5353062Z ] 2025-06-01T21:04:10.5355260Z 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-06-01T21:04:10.5359171Z 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-06-01T21:04:10.5363039Z 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-06-01T21:04:10.5367031Z 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-06-01T21:04:10.5369531Z with 2025-06-01T21:04:10.5369961Z [ 2025-06-01T21:04:10.5370260Z inpType=uint8_t 2025-06-01T21:04:10.5370631Z ] 2025-06-01T21:04:10.5372127Z 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-06-01T21:04:10.5375914Z 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-06-01T21:04:10.5379681Z 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-06-01T21:04:10.5383572Z 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-06-01T21:04:10.5386136Z with 2025-06-01T21:04:10.5386450Z [ 2025-06-01T21:04:10.5386767Z inpType=uint8_t 2025-06-01T21:04:10.5387190Z ] 2025-06-01T21:04:10.5388674Z 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-06-01T21:04:10.5392309Z 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-06-01T21:04:10.5396160Z 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-06-01T21:04:10.5400063Z 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-06-01T21:04:10.5402578Z with 2025-06-01T21:04:10.5402874Z [ 2025-06-01T21:04:10.5403160Z inpType=uint8_t 2025-06-01T21:04:10.5403517Z ] 2025-06-01T21:04:10.5405049Z 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-06-01T21:04:10.5408979Z 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-06-01T21:04:10.5413150Z 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-06-01T21:04:10.5417145Z 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-06-01T21:04:10.5419665Z with 2025-06-01T21:04:10.5419994Z [ 2025-06-01T21:04:10.5420302Z inpType=uint8_t 2025-06-01T21:04:10.5420684Z ] 2025-06-01T21:04:10.5422209Z 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-06-01T21:04:10.5425910Z 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-06-01T21:04:10.5429747Z 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-06-01T21:04:10.5433500Z 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-06-01T21:04:10.5436197Z with 2025-06-01T21:04:10.5436491Z [ 2025-06-01T21:04:10.5436767Z inpType=uint8_t 2025-06-01T21:04:10.5437131Z ] 2025-06-01T21:04:10.5438573Z 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-06-01T21:04:10.5442324Z 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-06-01T21:04:10.5446086Z 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-06-01T21:04:10.5450213Z 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-06-01T21:04:10.5452828Z with 2025-06-01T21:04:10.5453184Z [ 2025-06-01T21:04:10.5453505Z inpType=uint8_t 2025-06-01T21:04:10.5453942Z ] 2025-06-01T21:04:10.5455452Z 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-06-01T21:04:10.5459358Z 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-06-01T21:04:10.5463196Z 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-06-01T21:04:10.5467304Z 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-06-01T21:04:10.5469892Z with 2025-06-01T21:04:10.5470213Z [ 2025-06-01T21:04:10.5470529Z inpType=uint8_t 2025-06-01T21:04:10.5470933Z ] 2025-06-01T21:04:10.5472638Z 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-06-01T21:04:10.5476399Z 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-06-01T21:04:10.5480392Z 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-06-01T21:04:10.5484198Z 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-06-01T21:04:10.5486548Z with 2025-06-01T21:04:10.5486857Z [ 2025-06-01T21:04:10.5487155Z inpType=uint8_t 2025-06-01T21:04:10.5487548Z ] 2025-06-01T21:04:10.5488972Z 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-06-01T21:04:10.5492539Z 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-06-01T21:04:10.5496154Z 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-06-01T21:04:10.5499723Z 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-06-01T21:04:10.5502139Z with 2025-06-01T21:04:10.5502486Z [ 2025-06-01T21:04:10.5502790Z inpType=int8_t 2025-06-01T21:04:10.5503174Z ] 2025-06-01T21:04:10.5504605Z 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-06-01T21:04:10.5508219Z 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-06-01T21:04:10.5511694Z 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-06-01T21:04:10.5515604Z 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-06-01T21:04:10.5517928Z with 2025-06-01T21:04:10.5518254Z [ 2025-06-01T21:04:10.5518561Z inpType=uint8_t 2025-06-01T21:04:10.5518951Z ] 2025-06-01T21:04:10.5520456Z 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-06-01T21:04:10.5523995Z 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-06-01T21:04:10.5527661Z 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-06-01T21:04:10.5531260Z 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-06-01T21:04:10.5533668Z with 2025-06-01T21:04:10.5533996Z [ 2025-06-01T21:04:10.5534300Z inpType=int8_t 2025-06-01T21:04:10.5534697Z ] 2025-06-01T21:04:10.5536141Z 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-06-01T21:04:10.5539677Z 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-06-01T21:04:10.5543239Z 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-06-01T21:04:10.5546938Z 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-06-01T21:04:10.5549356Z with 2025-06-01T21:04:10.5549665Z [ 2025-06-01T21:04:10.5549975Z inpType=uint8_t 2025-06-01T21:04:10.5550411Z ] 2025-06-01T21:04:10.5552012Z 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-06-01T21:04:10.5555921Z 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-06-01T21:04:10.5559710Z 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-06-01T21:04:10.5563728Z 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-06-01T21:04:10.5566180Z with 2025-06-01T21:04:10.5566496Z [ 2025-06-01T21:04:10.5566810Z inpType=uint8_t 2025-06-01T21:04:10.5567213Z ] 2025-06-01T21:04:10.5568799Z 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-06-01T21:04:10.5572554Z 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-06-01T21:04:10.5576318Z 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-06-01T21:04:10.5579446Z 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-06-01T21:04:10.5581478Z with 2025-06-01T21:04:10.5581749Z [ 2025-06-01T21:04:10.5582034Z inpType=uint8_t 2025-06-01T21:04:10.5582391Z ] 2025-06-01T21:04:10.5583768Z 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-06-01T21:04:10.5586874Z 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-06-01T21:04:10.5590036Z 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-06-01T21:04:10.5593386Z 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-06-01T21:04:10.5595668Z with 2025-06-01T21:04:10.5595960Z [ 2025-06-01T21:04:10.5596224Z inpType=uint8_t 2025-06-01T21:04:10.5596557Z ] 2025-06-01T21:04:10.5597916Z 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-06-01T21:04:10.5601202Z 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-06-01T21:04:10.5603499Z 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-06-01T21:04:10.5606530Z 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-06-01T21:04:10.5609050Z with 2025-06-01T21:04:10.5609376Z [ 2025-06-01T21:04:10.5609684Z inpType=uint8_t 2025-06-01T21:04:10.5610076Z ] 2025-06-01T21:04:10.5611653Z 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-06-01T21:04:10.5615337Z 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-06-01T21:04:10.5619450Z 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-06-01T21:04:10.5623435Z 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-06-01T21:04:10.5626522Z with 2025-06-01T21:04:10.5626862Z [ 2025-06-01T21:04:10.5627171Z inpType=uint8_t 2025-06-01T21:04:10.5627497Z ] 2025-06-01T21:04:10.5628344Z 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-06-01T21:04:10.5630404Z 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-06-01T21:04:10.5632431Z 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-06-01T21:04:10.5635572Z 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-06-01T21:04:10.5638114Z with 2025-06-01T21:04:10.5638438Z [ 2025-06-01T21:04:10.5638744Z inpType=uint8_t 2025-06-01T21:04:10.5639166Z ] 2025-06-01T21:04:10.5640821Z 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-06-01T21:04:10.5645164Z 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-06-01T21:04:10.5649060Z 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-06-01T21:04:10.5653494Z 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-06-01T21:04:10.5656104Z with 2025-06-01T21:04:10.5656432Z [ 2025-06-01T21:04:10.5656740Z inpType=uint8_t 2025-06-01T21:04:10.5657134Z ] 2025-06-01T21:04:10.5658675Z 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-06-01T21:04:10.5662415Z 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-06-01T21:04:10.5666174Z 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-06-01T21:04:10.5670079Z 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-06-01T21:04:10.5672715Z with 2025-06-01T21:04:10.5673034Z [ 2025-06-01T21:04:10.5673353Z inpType=uint8_t 2025-06-01T21:04:10.5673749Z ] 2025-06-01T21:04:10.5675432Z 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-06-01T21:04:10.5679311Z 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-06-01T21:04:10.5683173Z 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-06-01T21:04:10.5686832Z 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-06-01T21:04:10.5691009Z 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-06-01T21:04:10.5695085Z 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-06-01T21:04:10.5699283Z 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-06-01T21:04:10.5703302Z 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-06-01T21:04:10.5707456Z 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-06-01T21:04:10.5711410Z 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-06-01T21:04:10.5715622Z 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-06-01T21:04:10.5719700Z 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-06-01T21:04:10.5723683Z 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-06-01T21:04:10.5727664Z 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-06-01T21:04:10.5731580Z 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-06-01T21:04:10.6245026Z 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-06-01T21:04:10.6247743Z [1272/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmConv.cc.obj 2025-06-01T21:04:10.6250908Z 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-06-01T21:04:10.6253446Z with 2025-06-01T21:04:10.6253755Z [ 2025-06-01T21:04:10.6254061Z T=uint8_t, 2025-06-01T21:04:10.6254444Z accT=int32_t, 2025-06-01T21:04:10.6254841Z inpType=uint8_t 2025-06-01T21:04:10.6256219Z ] 2025-06-01T21:04:10.6257702Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:10.6259336Z with 2025-06-01T21:04:10.6259642Z [ 2025-06-01T21:04:10.6259947Z T=uint8_t, 2025-06-01T21:04:10.6260302Z accT=int32_t 2025-06-01T21:04:10.6260672Z ] 2025-06-01T21:04:10.6263039Z 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-06-01T21:04:10.6265670Z with 2025-06-01T21:04:10.6265992Z [ 2025-06-01T21:04:10.6266272Z T=uint8_t, 2025-06-01T21:04:10.6266642Z accT=int32_t 2025-06-01T21:04:10.6267020Z ] 2025-06-01T21:04:10.6268561Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:10.6270215Z with 2025-06-01T21:04:10.6270522Z [ 2025-06-01T21:04:10.6270817Z T=uint8_t, 2025-06-01T21:04:10.6271125Z accT=int32_t 2025-06-01T21:04:10.6271481Z ] 2025-06-01T21:04:10.6273598Z 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-06-01T21:04:10.6276293Z with 2025-06-01T21:04:10.6276610Z [ 2025-06-01T21:04:10.6276910Z T=int8_t, 2025-06-01T21:04:10.6277278Z accT=int32_t, 2025-06-01T21:04:10.6277642Z inpType=int8_t 2025-06-01T21:04:10.6278031Z ] 2025-06-01T21:04:10.6279369Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:10.6280874Z with 2025-06-01T21:04:10.6281161Z [ 2025-06-01T21:04:10.6281465Z T=int8_t, 2025-06-01T21:04:10.6281815Z accT=int32_t 2025-06-01T21:04:10.6282186Z ] 2025-06-01T21:04:10.6284389Z 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-06-01T21:04:10.6286710Z with 2025-06-01T21:04:10.6287023Z [ 2025-06-01T21:04:10.6287318Z T=int8_t, 2025-06-01T21:04:10.6287692Z accT=int32_t 2025-06-01T21:04:10.6288054Z ] 2025-06-01T21:04:10.6289444Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:10.6290991Z with 2025-06-01T21:04:10.6291291Z [ 2025-06-01T21:04:10.6291588Z T=int8_t, 2025-06-01T21:04:10.6291938Z accT=int32_t 2025-06-01T21:04:10.6292310Z ] 2025-06-01T21:04:10.6294678Z 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-06-01T21:04:10.6297191Z with 2025-06-01T21:04:10.6297509Z [ 2025-06-01T21:04:10.6297815Z ACC_T=int32_t, 2025-06-01T21:04:10.6298377Z T=uint8_t, 2025-06-01T21:04:10.6298732Z accT=int32_t, 2025-06-01T21:04:10.6299129Z inpType=uint8_t 2025-06-01T21:04:10.6299515Z ] 2025-06-01T21:04:10.6301017Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:10.6302611Z with 2025-06-01T21:04:10.6302925Z [ 2025-06-01T21:04:10.6303237Z ACC_T=int32_t, 2025-06-01T21:04:10.6303617Z T=uint8_t, 2025-06-01T21:04:10.6303976Z accT=int32_t 2025-06-01T21:04:10.6313446Z ] 2025-06-01T21:04:10.6315048Z 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-06-01T21:04:10.6318439Z with 2025-06-01T21:04:10.6318778Z [ 2025-06-01T21:04:10.6319092Z ACC_T=int32_t, 2025-06-01T21:04:10.6319475Z T=uint8_t, 2025-06-01T21:04:10.6319834Z accT=int32_t 2025-06-01T21:04:10.6320194Z ] 2025-06-01T21:04:10.6321703Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:10.6323327Z with 2025-06-01T21:04:10.6323634Z [ 2025-06-01T21:04:10.6323927Z ACC_T=int32_t, 2025-06-01T21:04:10.6324313Z T=uint8_t, 2025-06-01T21:04:10.6324657Z accT=int32_t 2025-06-01T21:04:10.6325026Z ] 2025-06-01T21:04:10.6327354Z 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-06-01T21:04:10.6329769Z with 2025-06-01T21:04:10.6330069Z [ 2025-06-01T21:04:10.6330369Z ACC_T=int32_t, 2025-06-01T21:04:10.6330759Z T=uint8_t, 2025-06-01T21:04:10.6331111Z accT=int32_t, 2025-06-01T21:04:10.6331501Z inpType=uint8_t 2025-06-01T21:04:10.6331890Z ] 2025-06-01T21:04:10.6333330Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:10.6334896Z with 2025-06-01T21:04:10.6335197Z [ 2025-06-01T21:04:10.6335505Z ACC_T=int32_t, 2025-06-01T21:04:10.6335889Z T=uint8_t, 2025-06-01T21:04:10.6336266Z accT=int32_t 2025-06-01T21:04:10.6336642Z ] 2025-06-01T21:04:10.6338875Z 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-06-01T21:04:10.6341199Z with 2025-06-01T21:04:10.6341509Z [ 2025-06-01T21:04:10.6341826Z ACC_T=int32_t, 2025-06-01T21:04:10.6342201Z T=uint8_t, 2025-06-01T21:04:10.6342549Z accT=int32_t 2025-06-01T21:04:10.6342892Z ] 2025-06-01T21:04:10.6344399Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:10.6346012Z with 2025-06-01T21:04:10.6346301Z [ 2025-06-01T21:04:10.6346602Z ACC_T=int32_t, 2025-06-01T21:04:10.6347154Z T=uint8_t, 2025-06-01T21:04:10.6347510Z accT=int32_t 2025-06-01T21:04:10.6347867Z ] 2025-06-01T21:04:10.6350096Z 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-06-01T21:04:10.6353049Z with 2025-06-01T21:04:10.6353456Z [ 2025-06-01T21:04:10.6354128Z ACC_T=int32_t, 2025-06-01T21:04:10.6356273Z T=uint8_t, 2025-06-01T21:04:10.6356714Z accT=int32_t, 2025-06-01T21:04:10.6357110Z inpType=uint8_t 2025-06-01T21:04:10.6358260Z ] 2025-06-01T21:04:10.6359761Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:10.6361365Z with 2025-06-01T21:04:10.6361671Z [ 2025-06-01T21:04:10.6361970Z ACC_T=int32_t, 2025-06-01T21:04:10.6362358Z T=uint8_t, 2025-06-01T21:04:10.6362708Z accT=int32_t 2025-06-01T21:04:10.6363068Z ] 2025-06-01T21:04:10.6365321Z 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-06-01T21:04:10.6367714Z with 2025-06-01T21:04:10.6368025Z [ 2025-06-01T21:04:10.6368330Z ACC_T=int32_t, 2025-06-01T21:04:10.6368745Z T=uint8_t, 2025-06-01T21:04:10.6369106Z accT=int32_t 2025-06-01T21:04:10.6369475Z ] 2025-06-01T21:04:10.6370959Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:10.6372605Z with 2025-06-01T21:04:10.6372900Z [ 2025-06-01T21:04:10.6373198Z ACC_T=int32_t, 2025-06-01T21:04:10.6373577Z T=uint8_t, 2025-06-01T21:04:10.6373945Z accT=int32_t 2025-06-01T21:04:10.6374313Z ] 2025-06-01T21:04:10.6376379Z 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-06-01T21:04:10.6380414Z 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-06-01T21:04:10.6383250Z 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-06-01T21:04:10.6389790Z 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-06-01T21:04:10.6392341Z 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-06-01T21:04:10.6393910Z [1273/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmFPCommon.cc.obj 2025-06-01T21:04:10.6449966Z [1274/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmFloat16Convert.cc.obj 2025-06-01T21:04:10.6701493Z [1275/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmFP16.cc.obj 2025-06-01T21:04:10.7507112Z [1276/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmI8Spmdm.cc.obj 2025-06-01T21:04:10.9191873Z [1277/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\ExecuteKernelU8S8.cc.obj 2025-06-01T21:04:10.9556197Z [1278/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmSparseDense.cc.obj 2025-06-01T21:04:10.9638846Z [1279/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmPackMatrixB.cc.obj 2025-06-01T21:04:10.9694562Z [1280/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmI64.cc.obj 2025-06-01T21:04:11.0327571Z [1281/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GenerateKernelU8S8S32ACC16.cc.obj 2025-06-01T21:04:11.0517540Z [1282/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GenerateKernel.cc.obj 2025-06-01T21:04:11.0828132Z [1283/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GenerateKernelDirectConvU8S8S32ACC32.cc.obj 2025-06-01T21:04:11.1646984Z [1284/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GenerateKernelU8S8S32ACC16Avx512.cc.obj 2025-06-01T21:04:11.3612032Z [1285/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GenerateKernelU8S8S32ACC16Avx512VNNI.cc.obj 2025-06-01T21:04:11.3798719Z [1286/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackAMatrix.cc.obj 2025-06-01T21:04:11.3801466Z 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-06-01T21:04:11.3803899Z with 2025-06-01T21:04:11.3804201Z [ 2025-06-01T21:04:11.3804491Z T=uint8_t, 2025-06-01T21:04:11.3804832Z accT=int32_t, 2025-06-01T21:04:11.3805213Z inpType=uint8_t 2025-06-01T21:04:11.3805581Z ] 2025-06-01T21:04:11.3806902Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:11.3808394Z with 2025-06-01T21:04:11.3808740Z [ 2025-06-01T21:04:11.3809014Z T=uint8_t, 2025-06-01T21:04:11.3809358Z accT=int32_t 2025-06-01T21:04:11.3809704Z ] 2025-06-01T21:04:11.3811860Z 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-06-01T21:04:11.3813296Z with 2025-06-01T21:04:11.3813476Z [ 2025-06-01T21:04:11.3813645Z T=uint8_t, 2025-06-01T21:04:11.3813841Z accT=int32_t 2025-06-01T21:04:11.3814060Z ] 2025-06-01T21:04:11.3814891Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:11.3815802Z with 2025-06-01T21:04:11.3815980Z [ 2025-06-01T21:04:11.3816140Z T=uint8_t, 2025-06-01T21:04:11.3816343Z accT=int32_t 2025-06-01T21:04:11.3816750Z ] 2025-06-01T21:04:11.3817921Z 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-06-01T21:04:11.3819158Z with 2025-06-01T21:04:11.3819335Z [ 2025-06-01T21:04:11.3819497Z T=uint8_t, 2025-06-01T21:04:11.3819689Z accT=int16_t, 2025-06-01T21:04:11.3819902Z inpType=uint8_t 2025-06-01T21:04:11.3820101Z ] 2025-06-01T21:04:11.3820955Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:11.3821743Z with 2025-06-01T21:04:11.3821916Z [ 2025-06-01T21:04:11.3822073Z T=uint8_t, 2025-06-01T21:04:11.3822284Z accT=int16_t 2025-06-01T21:04:11.3822484Z ] 2025-06-01T21:04:11.3823639Z 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-06-01T21:04:11.3841312Z with 2025-06-01T21:04:11.3841683Z [ 2025-06-01T21:04:11.3841865Z T=uint8_t, 2025-06-01T21:04:11.3842159Z accT=int16_t 2025-06-01T21:04:11.3842363Z ] 2025-06-01T21:04:11.3843149Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:11.3843976Z with 2025-06-01T21:04:11.3844165Z [ 2025-06-01T21:04:11.3844330Z T=uint8_t, 2025-06-01T21:04:11.3844544Z accT=int16_t 2025-06-01T21:04:11.3844741Z ] 2025-06-01T21:04:11.3845886Z 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-06-01T21:04:11.3847480Z with 2025-06-01T21:04:11.3847783Z [ 2025-06-01T21:04:11.3848055Z T=uint8_t, 2025-06-01T21:04:11.3848396Z accT=int32_t, 2025-06-01T21:04:11.3848784Z inpType=uint8_t 2025-06-01T21:04:11.3849140Z ] 2025-06-01T21:04:11.3850512Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:11.3852018Z with 2025-06-01T21:04:11.3852195Z [ 2025-06-01T21:04:11.3852363Z T=uint8_t, 2025-06-01T21:04:11.3852563Z accT=int32_t 2025-06-01T21:04:11.3852783Z ] 2025-06-01T21:04:11.3853909Z 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-06-01T21:04:11.3855095Z with 2025-06-01T21:04:11.3855270Z [ 2025-06-01T21:04:11.3855426Z T=uint8_t, 2025-06-01T21:04:11.3855636Z accT=int32_t 2025-06-01T21:04:11.3855827Z ] 2025-06-01T21:04:11.3856593Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:11.3857400Z with 2025-06-01T21:04:11.3857756Z [ 2025-06-01T21:04:11.3857916Z T=uint8_t, 2025-06-01T21:04:11.3858120Z accT=int32_t 2025-06-01T21:04:11.3858328Z ] 2025-06-01T21:04:11.3859465Z 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-06-01T21:04:11.3860657Z with 2025-06-01T21:04:11.3860818Z [ 2025-06-01T21:04:11.3860980Z T=uint8_t, 2025-06-01T21:04:11.3861170Z accT=int16_t, 2025-06-01T21:04:11.3861389Z inpType=uint8_t 2025-06-01T21:04:11.3861593Z ] 2025-06-01T21:04:11.3862417Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:11.3863292Z with 2025-06-01T21:04:11.3863471Z [ 2025-06-01T21:04:11.3863625Z T=uint8_t, 2025-06-01T21:04:11.3863824Z accT=int16_t 2025-06-01T21:04:11.3864019Z ] 2025-06-01T21:04:11.3865137Z 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-06-01T21:04:11.3866297Z with 2025-06-01T21:04:11.3866470Z [ 2025-06-01T21:04:11.3866628Z T=uint8_t, 2025-06-01T21:04:11.3866825Z accT=int16_t 2025-06-01T21:04:11.3867022Z ] 2025-06-01T21:04:11.3867764Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:11.3868567Z with 2025-06-01T21:04:11.3868728Z [ 2025-06-01T21:04:11.3868892Z T=uint8_t, 2025-06-01T21:04:11.3869082Z accT=int16_t 2025-06-01T21:04:11.3869289Z ] 2025-06-01T21:04:11.4305628Z 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-06-01T21:04:11.4307680Z 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-06-01T21:04:11.4309224Z [1287/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GenerateKernelU8S8S32ACC32.cc.obj 2025-06-01T21:04:11.4320522Z [1288/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GenerateKernelU8S8S32ACC32Avx512VNNI.cc.obj 2025-06-01T21:04:11.4778454Z [1289/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GroupwiseConvAcc32Avx2.cc.obj 2025-06-01T21:04:11.4781061Z 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-06-01T21:04:11.4784412Z 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-06-01T21:04:11.4786482Z 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-06-01T21:04:11.4788847Z 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-06-01T21:04:11.4790931Z 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-06-01T21:04:11.4792799Z 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-06-01T21:04:11.4794632Z 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-06-01T21:04:11.4796310Z 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-06-01T21:04:11.4798097Z 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-06-01T21:04:11.4799804Z 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-06-01T21:04:11.4801726Z 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-06-01T21:04:11.4804064Z 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-06-01T21:04:11.4807199Z 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-06-01T21:04:11.4810469Z 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-06-01T21:04:11.4813554Z 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-06-01T21:04:11.4815416Z 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-06-01T21:04:11.4820340Z 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-06-01T21:04:11.4822871Z 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-06-01T21:04:11.4824601Z 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-06-01T21:04:11.4826676Z 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-06-01T21:04:11.4828473Z 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-06-01T21:04:11.4830139Z 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-06-01T21:04:11.4832160Z 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-06-01T21:04:11.4833977Z 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-06-01T21:04:11.4835761Z 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-06-01T21:04:11.4837415Z 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-06-01T21:04:11.4838989Z 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-06-01T21:04:11.4840552Z 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-06-01T21:04:11.4842207Z 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-06-01T21:04:11.4843984Z 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-06-01T21:04:11.4845674Z 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-06-01T21:04:11.4847251Z 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-06-01T21:04:11.4848975Z 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-06-01T21:04:11.4850684Z 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-06-01T21:04:11.4852467Z 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-06-01T21:04:11.4854087Z 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-06-01T21:04:11.4855777Z 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-06-01T21:04:11.4857390Z 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-06-01T21:04:11.4859129Z 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-06-01T21:04:11.4860871Z 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-06-01T21:04:11.4862659Z 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-06-01T21:04:11.4864249Z 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-06-01T21:04:11.4865925Z 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-06-01T21:04:11.4867634Z 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-06-01T21:04:11.4869280Z 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-06-01T21:04:11.4870981Z 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-06-01T21:04:11.4872587Z 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-06-01T21:04:11.4874262Z 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-06-01T21:04:11.4876048Z 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-06-01T21:04:11.4877921Z 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-06-01T21:04:11.4879826Z 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-06-01T21:04:11.4881550Z 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-06-01T21:04:11.4883389Z 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-06-01T21:04:11.4885099Z 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-06-01T21:04:11.4886812Z 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-06-01T21:04:11.4888440Z 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-06-01T21:04:11.4890048Z 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-06-01T21:04:11.4891700Z 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-06-01T21:04:11.4893448Z 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-06-01T21:04:11.4895290Z 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-06-01T21:04:11.4896516Z [1290/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GroupwiseConv.cc.obj 2025-06-01T21:04:11.5138805Z [1291/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackAWithIm2Col.cc.obj 2025-06-01T21:04:11.5142309Z 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-06-01T21:04:11.5144905Z with 2025-06-01T21:04:11.5145235Z [ 2025-06-01T21:04:11.5145541Z T=uint8_t, 2025-06-01T21:04:11.5145910Z accT=int32_t, 2025-06-01T21:04:11.5146338Z inpType=uint8_t 2025-06-01T21:04:11.5146725Z ] 2025-06-01T21:04:11.5148214Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:11.5150059Z with 2025-06-01T21:04:11.5150349Z [ 2025-06-01T21:04:11.5150695Z T=uint8_t, 2025-06-01T21:04:11.5151094Z accT=int32_t 2025-06-01T21:04:11.5151470Z ] 2025-06-01T21:04:11.5153781Z 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-06-01T21:04:11.5156279Z with 2025-06-01T21:04:11.5156609Z [ 2025-06-01T21:04:11.5157115Z T=uint8_t, 2025-06-01T21:04:11.5157482Z accT=int32_t 2025-06-01T21:04:11.5157826Z ] 2025-06-01T21:04:11.5159322Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:11.5160978Z with 2025-06-01T21:04:11.5161283Z [ 2025-06-01T21:04:11.5161575Z T=uint8_t, 2025-06-01T21:04:11.5161947Z accT=int32_t 2025-06-01T21:04:11.5162341Z ] 2025-06-01T21:04:11.5164663Z 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-06-01T21:04:11.5167130Z with 2025-06-01T21:04:11.5167446Z [ 2025-06-01T21:04:11.5167767Z T=uint8_t, 2025-06-01T21:04:11.5168438Z accT=int16_t, 2025-06-01T21:04:11.5168905Z inpType=uint8_t 2025-06-01T21:04:11.5169321Z ] 2025-06-01T21:04:11.5170823Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:11.5172549Z with 2025-06-01T21:04:11.5172801Z [ 2025-06-01T21:04:11.5172989Z T=uint8_t, 2025-06-01T21:04:11.5173257Z accT=int16_t 2025-06-01T21:04:11.5173553Z ] 2025-06-01T21:04:11.5175904Z 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-06-01T21:04:11.5178307Z with 2025-06-01T21:04:11.5178607Z [ 2025-06-01T21:04:11.5178920Z T=uint8_t, 2025-06-01T21:04:11.5179268Z accT=int16_t 2025-06-01T21:04:11.5179625Z ] 2025-06-01T21:04:11.5181192Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:11.5182867Z with 2025-06-01T21:04:11.5183201Z [ 2025-06-01T21:04:11.5183517Z T=uint8_t, 2025-06-01T21:04:11.5183902Z accT=int16_t 2025-06-01T21:04:11.5184285Z ] 2025-06-01T21:04:11.5186733Z 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-06-01T21:04:11.5189309Z with 2025-06-01T21:04:11.5189604Z [ 2025-06-01T21:04:11.5189930Z T=uint8_t, 2025-06-01T21:04:11.5190289Z accT=int32_t, 2025-06-01T21:04:11.5190988Z inpType=uint8_t 2025-06-01T21:04:11.5191379Z ] 2025-06-01T21:04:11.5193012Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:11.5194760Z with 2025-06-01T21:04:11.5195207Z [ 2025-06-01T21:04:11.5195384Z T=uint8_t, 2025-06-01T21:04:11.5195581Z accT=int32_t 2025-06-01T21:04:11.5195798Z ] 2025-06-01T21:04:11.5197786Z 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-06-01T21:04:11.5200351Z with 2025-06-01T21:04:11.5200670Z [ 2025-06-01T21:04:11.5200988Z T=uint8_t, 2025-06-01T21:04:11.5201346Z accT=int32_t 2025-06-01T21:04:11.5201683Z ] 2025-06-01T21:04:11.5203175Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:11.5204872Z with 2025-06-01T21:04:11.5205183Z [ 2025-06-01T21:04:11.5205482Z T=uint8_t, 2025-06-01T21:04:11.5205833Z accT=int32_t 2025-06-01T21:04:11.5206190Z ] 2025-06-01T21:04:11.5208429Z 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-06-01T21:04:11.5210975Z with 2025-06-01T21:04:11.5211257Z [ 2025-06-01T21:04:11.5211540Z T=uint8_t, 2025-06-01T21:04:11.5211907Z accT=int16_t, 2025-06-01T21:04:11.5212281Z inpType=uint8_t 2025-06-01T21:04:11.5212647Z ] 2025-06-01T21:04:11.5214085Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:11.5215614Z with 2025-06-01T21:04:11.5215888Z [ 2025-06-01T21:04:11.5216217Z T=uint8_t, 2025-06-01T21:04:11.5216600Z accT=int16_t 2025-06-01T21:04:11.5216984Z ] 2025-06-01T21:04:11.5219332Z 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-06-01T21:04:11.5221693Z with 2025-06-01T21:04:11.5222003Z [ 2025-06-01T21:04:11.5222338Z T=uint8_t, 2025-06-01T21:04:11.5222737Z accT=int16_t 2025-06-01T21:04:11.5223107Z ] 2025-06-01T21:04:11.5224630Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:11.5226301Z with 2025-06-01T21:04:11.5226600Z [ 2025-06-01T21:04:11.5226901Z T=uint8_t, 2025-06-01T21:04:11.5227260Z accT=int16_t 2025-06-01T21:04:11.5227630Z ] 2025-06-01T21:04:11.5230003Z 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-06-01T21:04:11.5232699Z with 2025-06-01T21:04:11.5233008Z [ 2025-06-01T21:04:11.5233323Z T=uint8_t, 2025-06-01T21:04:11.5233728Z accT=int32_t, 2025-06-01T21:04:11.5234154Z inpType=uint8_t 2025-06-01T21:04:11.5234551Z ] 2025-06-01T21:04:11.5236125Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:11.5237755Z with 2025-06-01T21:04:11.5238057Z [ 2025-06-01T21:04:11.5238365Z T=uint8_t, 2025-06-01T21:04:11.5238735Z accT=int32_t 2025-06-01T21:04:11.5239291Z ] 2025-06-01T21:04:11.5240734Z 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-06-01T21:04:11.5242039Z with 2025-06-01T21:04:11.5242276Z [ 2025-06-01T21:04:11.5242461Z T=uint8_t, 2025-06-01T21:04:11.5242664Z accT=int32_t 2025-06-01T21:04:11.5242860Z ] 2025-06-01T21:04:11.5243642Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:11.5244565Z with 2025-06-01T21:04:11.5244780Z [ 2025-06-01T21:04:11.5244970Z T=uint8_t, 2025-06-01T21:04:11.5245209Z accT=int32_t 2025-06-01T21:04:11.5245474Z ] 2025-06-01T21:04:11.5246668Z 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-06-01T21:04:11.5247988Z with 2025-06-01T21:04:11.5248161Z [ 2025-06-01T21:04:11.5248321Z T=uint8_t, 2025-06-01T21:04:11.5248554Z accT=int16_t, 2025-06-01T21:04:11.5248774Z inpType=uint8_t 2025-06-01T21:04:11.5248991Z ] 2025-06-01T21:04:11.5249864Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:11.5250770Z with 2025-06-01T21:04:11.5250986Z [ 2025-06-01T21:04:11.5251196Z T=uint8_t, 2025-06-01T21:04:11.5251479Z accT=int16_t 2025-06-01T21:04:11.5251718Z ] 2025-06-01T21:04:11.5252883Z 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-06-01T21:04:11.5254268Z with 2025-06-01T21:04:11.5254443Z [ 2025-06-01T21:04:11.5254607Z T=uint8_t, 2025-06-01T21:04:11.5254810Z accT=int16_t 2025-06-01T21:04:11.5255006Z ] 2025-06-01T21:04:11.5255816Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:11.5256741Z with 2025-06-01T21:04:11.5256930Z [ 2025-06-01T21:04:11.5257152Z T=uint8_t, 2025-06-01T21:04:11.5257370Z accT=int16_t 2025-06-01T21:04:11.5257564Z ] 2025-06-01T21:04:11.5259009Z 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-06-01T21:04:11.5260446Z with 2025-06-01T21:04:11.5260619Z [ 2025-06-01T21:04:11.5260781Z T=uint8_t, 2025-06-01T21:04:11.5260993Z accT=int32_t, 2025-06-01T21:04:11.5261294Z inpType=uint8_t 2025-06-01T21:04:11.5261522Z ] 2025-06-01T21:04:11.5262304Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:11.5263267Z with 2025-06-01T21:04:11.5263440Z [ 2025-06-01T21:04:11.5263707Z T=uint8_t, 2025-06-01T21:04:11.5263972Z accT=int32_t 2025-06-01T21:04:11.5264162Z ] 2025-06-01T21:04:11.5265456Z 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-06-01T21:04:11.5266840Z with 2025-06-01T21:04:11.5267006Z [ 2025-06-01T21:04:11.5267169Z T=uint8_t, 2025-06-01T21:04:11.5267363Z accT=int32_t 2025-06-01T21:04:11.5267627Z ] 2025-06-01T21:04:11.5268383Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:11.5269219Z with 2025-06-01T21:04:11.5269380Z [ 2025-06-01T21:04:11.5269553Z T=uint8_t, 2025-06-01T21:04:11.5269741Z accT=int32_t 2025-06-01T21:04:11.5269943Z ] 2025-06-01T21:04:11.5271169Z 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-06-01T21:04:11.5272446Z with 2025-06-01T21:04:11.5272617Z [ 2025-06-01T21:04:11.5272772Z T=uint8_t, 2025-06-01T21:04:11.5272973Z accT=int16_t, 2025-06-01T21:04:11.5273180Z inpType=uint8_t 2025-06-01T21:04:11.5273390Z ] 2025-06-01T21:04:11.5274137Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:11.5275057Z with 2025-06-01T21:04:11.5275234Z [ 2025-06-01T21:04:11.5275399Z T=uint8_t, 2025-06-01T21:04:11.5275613Z accT=int16_t 2025-06-01T21:04:11.5275816Z ] 2025-06-01T21:04:11.5277070Z 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-06-01T21:04:11.5278733Z with 2025-06-01T21:04:11.5278942Z [ 2025-06-01T21:04:11.5279115Z T=uint8_t, 2025-06-01T21:04:11.5279311Z accT=int16_t 2025-06-01T21:04:11.5279592Z ] 2025-06-01T21:04:11.5280756Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:11.5282719Z with 2025-06-01T21:04:11.5283053Z [ 2025-06-01T21:04:11.5283360Z T=uint8_t, 2025-06-01T21:04:11.5283724Z accT=int16_t 2025-06-01T21:04:11.5284282Z ] 2025-06-01T21:04:11.5286655Z 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-06-01T21:04:11.5289105Z with 2025-06-01T21:04:11.5289428Z [ 2025-06-01T21:04:11.5289732Z T=uint8_t, 2025-06-01T21:04:11.5290111Z accT=int32_t, 2025-06-01T21:04:11.5290514Z inpType=uint8_t 2025-06-01T21:04:11.5290913Z ] 2025-06-01T21:04:11.5292515Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:11.5294107Z with 2025-06-01T21:04:11.5294419Z [ 2025-06-01T21:04:11.5294717Z T=uint8_t, 2025-06-01T21:04:11.5295089Z accT=int32_t 2025-06-01T21:04:11.5295439Z ] 2025-06-01T21:04:11.5297736Z 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-06-01T21:04:11.5300172Z with 2025-06-01T21:04:11.5300484Z [ 2025-06-01T21:04:11.5300791Z T=uint8_t, 2025-06-01T21:04:11.5301156Z accT=int32_t 2025-06-01T21:04:11.5301533Z ] 2025-06-01T21:04:11.5303043Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:11.5304685Z with 2025-06-01T21:04:11.5304996Z [ 2025-06-01T21:04:11.5305417Z T=uint8_t, 2025-06-01T21:04:11.5305932Z accT=int32_t 2025-06-01T21:04:11.5306269Z ] 2025-06-01T21:04:11.5308565Z 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-06-01T21:04:11.5311042Z with 2025-06-01T21:04:11.5311326Z [ 2025-06-01T21:04:11.5311615Z T=uint8_t, 2025-06-01T21:04:11.5311962Z accT=int16_t, 2025-06-01T21:04:11.5312318Z inpType=uint8_t 2025-06-01T21:04:11.5312680Z ] 2025-06-01T21:04:11.5314153Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:11.5315842Z with 2025-06-01T21:04:11.5316160Z [ 2025-06-01T21:04:11.5316439Z T=uint8_t, 2025-06-01T21:04:11.5316804Z accT=int16_t 2025-06-01T21:04:11.5317145Z ] 2025-06-01T21:04:11.5319437Z 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-06-01T21:04:11.5321766Z with 2025-06-01T21:04:11.5322057Z [ 2025-06-01T21:04:11.5322361Z T=uint8_t, 2025-06-01T21:04:11.5322744Z accT=int16_t 2025-06-01T21:04:11.5323126Z ] 2025-06-01T21:04:11.5324654Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:11.5326434Z with 2025-06-01T21:04:11.5326732Z [ 2025-06-01T21:04:11.5327033Z T=uint8_t, 2025-06-01T21:04:11.5327406Z accT=int16_t 2025-06-01T21:04:11.5327761Z ] 2025-06-01T21:04:11.5330219Z 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-06-01T21:04:11.5332852Z with 2025-06-01T21:04:11.5333196Z [ 2025-06-01T21:04:11.5333504Z T=uint8_t, 2025-06-01T21:04:11.5333873Z accT=int32_t, 2025-06-01T21:04:11.5334455Z inpType=uint8_t 2025-06-01T21:04:11.5334831Z ] 2025-06-01T21:04:11.5336615Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:11.5338306Z with 2025-06-01T21:04:11.5338612Z [ 2025-06-01T21:04:11.5338893Z T=uint8_t, 2025-06-01T21:04:11.5339258Z accT=int32_t 2025-06-01T21:04:11.5339597Z ] 2025-06-01T21:04:11.5341844Z 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-06-01T21:04:11.5344296Z with 2025-06-01T21:04:11.5344596Z [ 2025-06-01T21:04:11.5344899Z T=uint8_t, 2025-06-01T21:04:11.5345260Z accT=int32_t 2025-06-01T21:04:11.5345620Z ] 2025-06-01T21:04:11.5347074Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:11.5348764Z with 2025-06-01T21:04:11.5349060Z [ 2025-06-01T21:04:11.5349351Z T=uint8_t, 2025-06-01T21:04:11.5349703Z accT=int32_t 2025-06-01T21:04:11.5350038Z ] 2025-06-01T21:04:11.5352307Z 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-06-01T21:04:11.5354703Z with 2025-06-01T21:04:11.5355081Z [ 2025-06-01T21:04:11.5355404Z T=uint8_t, 2025-06-01T21:04:11.5355770Z accT=int16_t, 2025-06-01T21:04:11.5356168Z inpType=uint8_t 2025-06-01T21:04:11.5356537Z ] 2025-06-01T21:04:11.5357957Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:11.5359470Z with 2025-06-01T21:04:11.5359765Z [ 2025-06-01T21:04:11.5360047Z T=uint8_t, 2025-06-01T21:04:11.5360406Z accT=int16_t 2025-06-01T21:04:11.5360817Z ] 2025-06-01T21:04:11.5363058Z 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-06-01T21:04:11.5365402Z with 2025-06-01T21:04:11.5365709Z [ 2025-06-01T21:04:11.5366013Z T=uint8_t, 2025-06-01T21:04:11.5366410Z accT=int16_t 2025-06-01T21:04:11.5366769Z ] 2025-06-01T21:04:11.5369273Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:11.5370833Z with 2025-06-01T21:04:11.5371134Z [ 2025-06-01T21:04:11.5371413Z T=uint8_t, 2025-06-01T21:04:11.5371761Z accT=int16_t 2025-06-01T21:04:11.5372115Z ] 2025-06-01T21:04:11.5374237Z 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-06-01T21:04:11.5378351Z 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-06-01T21:04:11.5382112Z 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-06-01T21:04:11.5385375Z 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-06-01T21:04:11.5387487Z 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-06-01T21:04:11.5646073Z 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-06-01T21:04:11.5647670Z [1292/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GroupwiseConvAcc32Avx512.cc.obj 2025-06-01T21:04:11.5649542Z 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-06-01T21:04:11.5651442Z 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-06-01T21:04:11.5653293Z 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-06-01T21:04:11.5655117Z 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-06-01T21:04:11.5656884Z 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-06-01T21:04:11.5658728Z 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-06-01T21:04:11.5661363Z 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-06-01T21:04:11.5664335Z 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-06-01T21:04:11.5667696Z 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-06-01T21:04:11.5670265Z 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-06-01T21:04:11.5672158Z 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-06-01T21:04:11.5673992Z 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-06-01T21:04:11.5676425Z 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-06-01T21:04:11.5679133Z 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-06-01T21:04:11.5681839Z 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-06-01T21:04:11.5684539Z 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-06-01T21:04:11.5690359Z 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-06-01T21:04:11.5694008Z 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-06-01T21:04:11.5697521Z 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-06-01T21:04:11.5701141Z 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-06-01T21:04:11.5704552Z 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-06-01T21:04:11.5707986Z 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-06-01T21:04:11.5711305Z 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-06-01T21:04:11.5714740Z 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-06-01T21:04:11.5718900Z 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-06-01T21:04:11.5722164Z 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-06-01T21:04:11.5725280Z 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-06-01T21:04:11.5728431Z 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-06-01T21:04:11.5731340Z 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-06-01T21:04:11.5733790Z 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-06-01T21:04:11.5735842Z 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-06-01T21:04:11.5737859Z 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-06-01T21:04:11.5740426Z 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-06-01T21:04:11.5743607Z 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-06-01T21:04:11.5746805Z 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-06-01T21:04:11.5750105Z 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-06-01T21:04:11.5753382Z 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-06-01T21:04:11.5757103Z 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-06-01T21:04:11.5760611Z 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-06-01T21:04:11.5764303Z 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-06-01T21:04:11.5767708Z 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-06-01T21:04:11.5770726Z 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-06-01T21:04:11.5772676Z 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-06-01T21:04:11.5776431Z 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-06-01T21:04:11.5778419Z 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-06-01T21:04:11.5780282Z 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-06-01T21:04:11.5782094Z 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-06-01T21:04:11.5783686Z 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-06-01T21:04:11.5785607Z 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-06-01T21:04:11.5787344Z 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-06-01T21:04:11.5789556Z 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-06-01T21:04:11.5792753Z 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-06-01T21:04:11.5795042Z 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-06-01T21:04:11.5797015Z 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-06-01T21:04:11.5798938Z 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-06-01T21:04:11.5801329Z 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-06-01T21:04:11.5803206Z 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-06-01T21:04:11.5805011Z 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-06-01T21:04:11.5808414Z 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-06-01T21:04:11.5811829Z 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-06-01T21:04:11.5815024Z 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-06-01T21:04:11.5818071Z 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-06-01T21:04:11.5821242Z 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-06-01T21:04:11.5824707Z 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-06-01T21:04:11.5827422Z 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-06-01T21:04:11.5830139Z 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-06-01T21:04:11.5833611Z 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-06-01T21:04:11.5836517Z 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-06-01T21:04:11.5840031Z 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-06-01T21:04:11.5843318Z 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-06-01T21:04:11.5845485Z 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-06-01T21:04:11.5847749Z 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-06-01T21:04:11.5849901Z 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-06-01T21:04:11.5851893Z 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-06-01T21:04:11.5853681Z 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-06-01T21:04:11.5855371Z 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-06-01T21:04:11.5858457Z 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-06-01T21:04:11.5861815Z 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-06-01T21:04:11.5865357Z 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-06-01T21:04:11.5868952Z 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-06-01T21:04:11.5872526Z 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-06-01T21:04:11.5876092Z 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-06-01T21:04:11.5879496Z 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-06-01T21:04:11.5882931Z 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-06-01T21:04:11.5886424Z 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-06-01T21:04:11.5890008Z 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-06-01T21:04:11.5893356Z 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-06-01T21:04:11.5896665Z 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-06-01T21:04:11.5900139Z 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-06-01T21:04:11.5903864Z 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-06-01T21:04:11.5907205Z 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-06-01T21:04:11.5910558Z 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-06-01T21:04:11.5914057Z 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-06-01T21:04:11.5917613Z 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-06-01T21:04:11.5921058Z 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-06-01T21:04:11.5924435Z 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-06-01T21:04:11.5927930Z 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-06-01T21:04:11.5931196Z 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-06-01T21:04:11.5934863Z 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-06-01T21:04:11.5938499Z 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-06-01T21:04:11.5941585Z 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-06-01T21:04:11.5943303Z 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-06-01T21:04:11.5945468Z 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-06-01T21:04:11.5947714Z 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-06-01T21:04:11.5949759Z 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-06-01T21:04:11.5951999Z 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-06-01T21:04:11.5955387Z 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-06-01T21:04:11.5958842Z 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-06-01T21:04:11.5962519Z 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-06-01T21:04:11.5966226Z 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-06-01T21:04:11.5969476Z 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-06-01T21:04:11.5972293Z 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-06-01T21:04:11.5974323Z 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-06-01T21:04:11.5976782Z 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-06-01T21:04:11.5980144Z 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-06-01T21:04:11.5983548Z 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-06-01T21:04:11.5986882Z 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-06-01T21:04:11.5989362Z 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-06-01T21:04:11.5991469Z 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-06-01T21:04:11.6474524Z 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-06-01T21:04:11.6475879Z [1293/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackAWithQuantRowOffset.cc.obj 2025-06-01T21:04:11.6477853Z 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-06-01T21:04:11.6479247Z with 2025-06-01T21:04:11.6479569Z [ 2025-06-01T21:04:11.6479862Z T=uint8_t, 2025-06-01T21:04:11.6480222Z accT=int32_t, 2025-06-01T21:04:11.6480594Z inpType=uint8_t 2025-06-01T21:04:11.6480857Z ] 2025-06-01T21:04:11.6481634Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:11.6482995Z with 2025-06-01T21:04:11.6483283Z [ 2025-06-01T21:04:11.6483587Z T=uint8_t, 2025-06-01T21:04:11.6483901Z accT=int32_t 2025-06-01T21:04:11.6484231Z ] 2025-06-01T21:04:11.6486688Z 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-06-01T21:04:11.6489398Z with 2025-06-01T21:04:11.6489724Z [ 2025-06-01T21:04:11.6490033Z T=uint8_t, 2025-06-01T21:04:11.6490405Z accT=int32_t 2025-06-01T21:04:11.6490772Z ] 2025-06-01T21:04:11.6492358Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:11.6494072Z with 2025-06-01T21:04:11.6494370Z [ 2025-06-01T21:04:11.6494678Z T=uint8_t, 2025-06-01T21:04:11.6495019Z accT=int32_t 2025-06-01T21:04:11.6495391Z ] 2025-06-01T21:04:11.6498005Z 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-06-01T21:04:11.6500689Z with 2025-06-01T21:04:11.6501003Z [ 2025-06-01T21:04:11.6501300Z T=uint8_t, 2025-06-01T21:04:11.6501660Z accT=int32_t, 2025-06-01T21:04:11.6502056Z inpType=uint8_t 2025-06-01T21:04:11.6502446Z ] 2025-06-01T21:04:11.6503987Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:11.6506786Z with 2025-06-01T21:04:11.6506985Z [ 2025-06-01T21:04:11.6507157Z T=uint8_t, 2025-06-01T21:04:11.6507390Z accT=int32_t 2025-06-01T21:04:11.6507586Z ] 2025-06-01T21:04:11.6509046Z 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-06-01T21:04:11.6510549Z with 2025-06-01T21:04:11.6510807Z [ 2025-06-01T21:04:11.6511087Z T=uint8_t, 2025-06-01T21:04:11.6511377Z accT=int32_t 2025-06-01T21:04:11.6511621Z ] 2025-06-01T21:04:11.6512472Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:11.6513344Z with 2025-06-01T21:04:11.6513511Z [ 2025-06-01T21:04:11.6513681Z T=uint8_t, 2025-06-01T21:04:11.6513991Z accT=int32_t 2025-06-01T21:04:11.6514320Z ] 2025-06-01T21:04:11.6780686Z 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-06-01T21:04:11.6783035Z [1294/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackAWithRowOffset.cc.obj 2025-06-01T21:04:11.6785575Z 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-06-01T21:04:11.6787531Z with 2025-06-01T21:04:11.6787908Z [ 2025-06-01T21:04:11.6788196Z T=uint8_t, 2025-06-01T21:04:11.6788511Z accT=int32_t, 2025-06-01T21:04:11.6788877Z inpType=uint8_t 2025-06-01T21:04:11.6789232Z ] 2025-06-01T21:04:11.6790668Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:11.6791944Z with 2025-06-01T21:04:11.6792272Z [ 2025-06-01T21:04:11.6792563Z T=uint8_t, 2025-06-01T21:04:11.6792938Z accT=int32_t 2025-06-01T21:04:11.6793278Z ] 2025-06-01T21:04:11.6795227Z 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-06-01T21:04:11.6797211Z with 2025-06-01T21:04:11.6797685Z [ 2025-06-01T21:04:11.6797978Z T=uint8_t, 2025-06-01T21:04:11.6798321Z accT=int32_t 2025-06-01T21:04:11.6798673Z ] 2025-06-01T21:04:11.6799935Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:11.6801218Z with 2025-06-01T21:04:11.6801505Z [ 2025-06-01T21:04:11.6801782Z T=uint8_t, 2025-06-01T21:04:11.6802116Z accT=int32_t 2025-06-01T21:04:11.6802456Z ] 2025-06-01T21:04:11.6804360Z 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-06-01T21:04:11.6806365Z with 2025-06-01T21:04:11.6806641Z [ 2025-06-01T21:04:11.6806930Z T=uint8_t, 2025-06-01T21:04:11.6807280Z accT=int16_t, 2025-06-01T21:04:11.6807649Z inpType=uint8_t 2025-06-01T21:04:11.6808007Z ] 2025-06-01T21:04:11.6809200Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:11.6810517Z with 2025-06-01T21:04:11.6810814Z [ 2025-06-01T21:04:11.6811119Z T=uint8_t, 2025-06-01T21:04:11.6811471Z accT=int16_t 2025-06-01T21:04:11.6811809Z ] 2025-06-01T21:04:11.6814537Z 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-06-01T21:04:11.6816833Z with 2025-06-01T21:04:11.6817037Z [ 2025-06-01T21:04:11.6817236Z T=uint8_t, 2025-06-01T21:04:11.6817549Z accT=int16_t 2025-06-01T21:04:11.6818044Z ] 2025-06-01T21:04:11.6819787Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:11.6821008Z with 2025-06-01T21:04:11.6821270Z [ 2025-06-01T21:04:11.6821448Z T=uint8_t, 2025-06-01T21:04:11.6821707Z accT=int16_t 2025-06-01T21:04:11.6821949Z ] 2025-06-01T21:04:11.6823186Z 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-06-01T21:04:11.6824529Z with 2025-06-01T21:04:11.6824708Z [ 2025-06-01T21:04:11.6825038Z T=uint8_t, 2025-06-01T21:04:11.6825242Z accT=int32_t, 2025-06-01T21:04:11.6825455Z inpType=uint8_t 2025-06-01T21:04:11.6826153Z ] 2025-06-01T21:04:11.6827685Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:11.6829330Z with 2025-06-01T21:04:11.6829636Z [ 2025-06-01T21:04:11.6829940Z T=uint8_t, 2025-06-01T21:04:11.6830297Z accT=int32_t 2025-06-01T21:04:11.6830666Z ] 2025-06-01T21:04:11.6833242Z 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-06-01T21:04:11.6835799Z with 2025-06-01T21:04:11.6836105Z [ 2025-06-01T21:04:11.6836404Z T=uint8_t, 2025-06-01T21:04:11.6836775Z accT=int32_t 2025-06-01T21:04:11.6837114Z ] 2025-06-01T21:04:11.6838632Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:11.6840261Z with 2025-06-01T21:04:11.6840559Z [ 2025-06-01T21:04:11.6840855Z T=uint8_t, 2025-06-01T21:04:11.6841202Z accT=int32_t 2025-06-01T21:04:11.6841557Z ] 2025-06-01T21:04:11.6843937Z 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-06-01T21:04:11.6846427Z with 2025-06-01T21:04:11.6846722Z [ 2025-06-01T21:04:11.6847019Z T=uint8_t, 2025-06-01T21:04:11.6847394Z accT=int16_t, 2025-06-01T21:04:11.6847793Z inpType=uint8_t 2025-06-01T21:04:11.6848206Z ] 2025-06-01T21:04:11.6849695Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:11.6851306Z with 2025-06-01T21:04:11.6851615Z [ 2025-06-01T21:04:11.6851932Z T=uint8_t, 2025-06-01T21:04:11.6852303Z accT=int16_t 2025-06-01T21:04:11.6852655Z ] 2025-06-01T21:04:11.6855098Z 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-06-01T21:04:11.6857591Z with 2025-06-01T21:04:11.6857915Z [ 2025-06-01T21:04:11.6858209Z T=uint8_t, 2025-06-01T21:04:11.6858577Z accT=int16_t 2025-06-01T21:04:11.6858949Z ] 2025-06-01T21:04:11.6860431Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:11.6862305Z with 2025-06-01T21:04:11.6862623Z [ 2025-06-01T21:04:11.6862935Z T=uint8_t, 2025-06-01T21:04:11.6863304Z accT=int16_t 2025-06-01T21:04:11.6863676Z ] 2025-06-01T21:04:11.6865847Z 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-06-01T21:04:11.7241507Z 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-06-01T21:04:11.7244095Z [1295/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackMatrix.cc.obj 2025-06-01T21:04:11.7246837Z 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-06-01T21:04:11.7250751Z 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-06-01T21:04:11.7254633Z 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-06-01T21:04:11.7258005Z 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-06-01T21:04:11.7260315Z 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-06-01T21:04:11.7264930Z 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-06-01T21:04:11.7269047Z 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-06-01T21:04:11.7272880Z 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-06-01T21:04:11.7275792Z 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-06-01T21:04:11.7278034Z 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-06-01T21:04:11.7280193Z 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-06-01T21:04:11.7282143Z 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-06-01T21:04:11.7329340Z 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-06-01T21:04:11.7330702Z [1296/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackBMatrix.cc.obj 2025-06-01T21:04:11.7332928Z 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-06-01T21:04:11.7334497Z with 2025-06-01T21:04:11.7334682Z [ 2025-06-01T21:04:11.7334906Z T=int8_t, 2025-06-01T21:04:11.7335106Z accT=int32_t, 2025-06-01T21:04:11.7335401Z inpType=int8_t 2025-06-01T21:04:11.7335645Z ] 2025-06-01T21:04:11.7336613Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:11.7337587Z with 2025-06-01T21:04:11.7337821Z [ 2025-06-01T21:04:11.7337996Z T=int8_t, 2025-06-01T21:04:11.7338235Z accT=int32_t 2025-06-01T21:04:11.7338496Z ] 2025-06-01T21:04:11.7339871Z 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-06-01T21:04:11.7341685Z with 2025-06-01T21:04:11.7341995Z [ 2025-06-01T21:04:11.7342294Z T=int8_t, 2025-06-01T21:04:11.7342662Z accT=int32_t 2025-06-01T21:04:11.7343022Z ] 2025-06-01T21:04:11.7344455Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:11.7346020Z with 2025-06-01T21:04:11.7346334Z [ 2025-06-01T21:04:11.7346660Z T=int8_t, 2025-06-01T21:04:11.7347058Z accT=int32_t 2025-06-01T21:04:11.7347430Z ] 2025-06-01T21:04:11.7349687Z 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-06-01T21:04:11.7352108Z with 2025-06-01T21:04:11.7352442Z [ 2025-06-01T21:04:11.7352638Z T=int8_t, 2025-06-01T21:04:11.7352877Z accT=int16_t, 2025-06-01T21:04:11.7353104Z inpType=int8_t 2025-06-01T21:04:11.7353304Z ] 2025-06-01T21:04:11.7354133Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:11.7355236Z with 2025-06-01T21:04:11.7355529Z [ 2025-06-01T21:04:11.7355706Z T=int8_t, 2025-06-01T21:04:11.7355908Z accT=int16_t 2025-06-01T21:04:11.7356180Z ] 2025-06-01T21:04:11.7357785Z 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-06-01T21:04:11.7359788Z with 2025-06-01T21:04:11.7359968Z [ 2025-06-01T21:04:11.7360163Z T=int8_t, 2025-06-01T21:04:11.7360442Z accT=int16_t 2025-06-01T21:04:11.7360730Z ] 2025-06-01T21:04:11.7361627Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:11.7362903Z with 2025-06-01T21:04:11.7363222Z [ 2025-06-01T21:04:11.7363444Z T=int8_t, 2025-06-01T21:04:11.7363663Z accT=int16_t 2025-06-01T21:04:11.7363870Z ] 2025-06-01T21:04:11.7365622Z 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-06-01T21:04:11.7367335Z with 2025-06-01T21:04:11.7367504Z [ 2025-06-01T21:04:11.7367673Z T=int8_t, 2025-06-01T21:04:11.7367928Z accT=int32_t, 2025-06-01T21:04:11.7368217Z inpType=int8_t 2025-06-01T21:04:11.7368488Z ] 2025-06-01T21:04:11.7369330Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:11.7370324Z with 2025-06-01T21:04:11.7370758Z [ 2025-06-01T21:04:11.7371176Z T=int8_t, 2025-06-01T21:04:11.7371407Z accT=int32_t 2025-06-01T21:04:11.7371643Z ] 2025-06-01T21:04:11.7373171Z 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-06-01T21:04:11.7375120Z with 2025-06-01T21:04:11.7375428Z [ 2025-06-01T21:04:11.7375720Z T=int8_t, 2025-06-01T21:04:11.7376082Z accT=int32_t 2025-06-01T21:04:11.7376469Z ] 2025-06-01T21:04:11.7377940Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:11.7379473Z with 2025-06-01T21:04:11.7379753Z [ 2025-06-01T21:04:11.7380029Z T=int8_t, 2025-06-01T21:04:11.7380329Z accT=int32_t 2025-06-01T21:04:11.7380979Z ] 2025-06-01T21:04:11.7386159Z 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-06-01T21:04:11.7388699Z with 2025-06-01T21:04:11.7389022Z [ 2025-06-01T21:04:11.7389292Z T=int8_t, 2025-06-01T21:04:11.7389619Z accT=int16_t, 2025-06-01T21:04:11.7389894Z inpType=int8_t 2025-06-01T21:04:11.7390169Z ] 2025-06-01T21:04:11.7390940Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:11.7391812Z with 2025-06-01T21:04:11.7391989Z [ 2025-06-01T21:04:11.7392151Z T=int8_t, 2025-06-01T21:04:11.7392358Z accT=int16_t 2025-06-01T21:04:11.7392560Z ] 2025-06-01T21:04:11.7394052Z 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-06-01T21:04:11.7396837Z with 2025-06-01T21:04:11.7397158Z [ 2025-06-01T21:04:11.7397459Z T=int8_t, 2025-06-01T21:04:11.7397829Z accT=int16_t 2025-06-01T21:04:11.7398190Z ] 2025-06-01T21:04:11.7399652Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:11.7401276Z with 2025-06-01T21:04:11.7401576Z [ 2025-06-01T21:04:11.7401906Z T=int8_t, 2025-06-01T21:04:11.7402394Z accT=int16_t 2025-06-01T21:04:11.7402767Z ] 2025-06-01T21:04:11.7417895Z 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-06-01T21:04:11.7420119Z 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-06-01T21:04:11.7421554Z [1297/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackWeightsForConv.cc.obj 2025-06-01T21:04:11.7424644Z 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-06-01T21:04:11.7426431Z with 2025-06-01T21:04:11.7426646Z [ 2025-06-01T21:04:11.7426819Z T=int8_t, 2025-06-01T21:04:11.7427072Z accT=int32_t, 2025-06-01T21:04:11.7427302Z inpType=int8_t 2025-06-01T21:04:11.7427654Z ] 2025-06-01T21:04:11.7428556Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:11.7429404Z with 2025-06-01T21:04:11.7429579Z [ 2025-06-01T21:04:11.7429737Z T=int8_t, 2025-06-01T21:04:11.7429931Z accT=int32_t 2025-06-01T21:04:11.7430128Z ] 2025-06-01T21:04:11.7431707Z 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-06-01T21:04:11.7433012Z with 2025-06-01T21:04:11.7433269Z [ 2025-06-01T21:04:11.7433470Z T=int8_t, 2025-06-01T21:04:11.7433671Z accT=int32_t 2025-06-01T21:04:11.7458896Z ] 2025-06-01T21:04:11.7459840Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:11.7461198Z with 2025-06-01T21:04:11.7461451Z [ 2025-06-01T21:04:11.7461707Z T=int8_t, 2025-06-01T21:04:11.7462105Z accT=int32_t 2025-06-01T21:04:11.7462996Z ] 2025-06-01T21:04:11.8370755Z 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-06-01T21:04:11.8373352Z [1298/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\QuantUtils.cc.obj 2025-06-01T21:04:11.8871180Z [1299/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackWeightMatrixForGConv.cc.obj 2025-06-01T21:04:11.9436860Z [1300/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\TransposeUtils.cc.obj 2025-06-01T21:04:11.9612786Z [1301/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackWeightsForDirectConv.cc.obj 2025-06-01T21:04:12.1229146Z [1302/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\spmmUtils.cc.obj 2025-06-01T21:04:12.1314672Z [1303/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\RowWiseSparseAdagradFused.cc.obj 2025-06-01T21:04:12.1379106Z [1304/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\SparseAdagrad.cc.obj 2025-06-01T21:04:12.1817919Z [1305/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\FbgemmBfloat16ConvertAvx2.cc.obj 2025-06-01T21:04:12.1879271Z [1306/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\EmbeddingSpMDMAvx2.cc.obj 2025-06-01T21:04:12.1997556Z [1307/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\Utils.cc.obj 2025-06-01T21:04:12.2051659Z [1308/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\RefImplementations.cc.obj 2025-06-01T21:04:12.2066531Z [1309/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GenerateI8Depthwise.cc.obj 2025-06-01T21:04:12.3320070Z [1310/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\FbgemmFloat16ConvertAvx2.cc.obj 2025-06-01T21:04:12.3365511Z 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-06-01T21:04:12.3366996Z 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-06-01T21:04:12.3368060Z [1311/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\OptimizedKernelsAvx2.cc.obj 2025-06-01T21:04:12.4147782Z [1312/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\FbgemmI8DepthwiseAvx2.cc.obj 2025-06-01T21:04:12.4200334Z [1313/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\FbgemmI8Depthwise3DAvx2.cc.obj 2025-06-01T21:04:12.4294341Z [1314/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\PackDepthwiseConvMatrixAvx2.cc.obj 2025-06-01T21:04:12.4372575Z [1315/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\FbgemmSparseDenseInt8Avx2.cc.obj 2025-06-01T21:04:12.4435889Z [1316/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\FbgemmI8DepthwisePerChannelQuantAvx2.cc.obj 2025-06-01T21:04:12.4502589Z [1317/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\FbgemmSparseDenseAvx2.cc.obj 2025-06-01T21:04:12.5149541Z [1318/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\UtilsAvx2.cc.obj 2025-06-01T21:04:12.5248819Z [1319/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\spmmUtilsAvx2.cc.obj 2025-06-01T21:04:12.5891828Z [1320/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\QuantUtilsAvx2.cc.obj 2025-06-01T21:04:12.5892894Z 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-06-01T21:04:12.5894259Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\QuantUtilsAvx2.cc(2038): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:04:12.5895948Z 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-06-01T21:04:12.5897786Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\QuantUtilsAvx2.cc(2042): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:04:12.5899313Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\QuantUtilsAvx2.cc(2046): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:04:12.5900597Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\QuantUtilsAvx2.cc(2050): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:04:12.5902088Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\QuantUtilsAvx2.cc(2103): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:04:12.5903352Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\QuantUtilsAvx2.cc(2108): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:04:12.5904831Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\QuantUtilsAvx2.cc(2113): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:04:12.5906303Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\QuantUtilsAvx2.cc(2118): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:04:12.5907505Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\QuantUtilsAvx2.cc(2171): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:04:12.6669904Z 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-06-01T21:04:12.6671482Z [1321/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\FbgemmFloat16ConvertAvx512.cc.obj 2025-06-01T21:04:12.6828675Z [1322/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\EmbeddingSpMDMAvx512.cc.obj 2025-06-01T21:04:12.6932390Z [1323/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\FbgemmBfloat16ConvertAvx512.cc.obj 2025-06-01T21:04:12.7067841Z [1324/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\FbgemmSparseDenseAvx512.cc.obj 2025-06-01T21:04:12.7677642Z [1325/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\UtilsAvx512.cc.obj 2025-06-01T21:04:12.7714904Z [1326/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_autovec.dir\src\EmbeddingSpMDMAutovec.cc.obj 2025-06-01T21:04:12.7727929Z [1327/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\FbgemmSparseDenseInt8Avx512.cc.obj 2025-06-01T21:04:12.7874816Z [1328/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\FbgemmFP16UKernelsIntrinsicAvx2.cc.obj 2025-06-01T21:04:12.7957116Z [1329/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\FbgemmSparseDenseVectorInt8Avx512.cc.obj 2025-06-01T21:04:12.8193211Z [1330/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\QuantUtilsAvx512.cc.obj 2025-06-01T21:04:12.9058932Z [1331/7110] Linking CXX shared library bin\asmjit.dll 2025-06-01T21:04:12.9990729Z [1332/7110] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\algorithm.cc.obj 2025-06-01T21:04:13.0181249Z [1333/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\FbgemmFP16UKernelsIntrinsicAvx512.cc.obj 2025-06-01T21:04:13.0261908Z [1334/7110] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\allgather.cc.obj 2025-06-01T21:04:13.0449432Z [1335/7110] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\FbgemmFP16UKernelsIntrinsicAvx512_256.cc.obj 2025-06-01T21:04:13.0745818Z [1336/7110] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\allgatherv.cc.obj 2025-06-01T21:04:13.2031410Z [1337/7110] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\allreduce.cc.obj 2025-06-01T21:04:13.2252176Z [1338/7110] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\allreduce_local.cc.obj 2025-06-01T21:04:13.2715943Z [1339/7110] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\alltoall.cc.obj 2025-06-01T21:04:13.2867433Z [1340/7110] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\barrier.cc.obj 2025-06-01T21:04:13.2927491Z [1341/7110] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\alltoallv.cc.obj 2025-06-01T21:04:13.3134598Z [1342/7110] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\broadcast.cc.obj 2025-06-01T21:04:13.4452081Z [1343/7110] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\gather.cc.obj 2025-06-01T21:04:13.4525820Z [1344/7110] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\context.cc.obj 2025-06-01T21:04:13.5069651Z [1345/7110] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\types.cc.obj 2025-06-01T21:04:13.5197376Z [1346/7110] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\reduce.cc.obj 2025-06-01T21:04:13.5257716Z [1347/7110] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\gatherv.cc.obj 2025-06-01T21:04:13.5445395Z [1348/7110] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\scatter.cc.obj 2025-06-01T21:04:13.6970223Z [1349/7110] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\common\logging.cc.obj 2025-06-01T21:04:13.7340050Z [1350/7110] Building C object third_party\ittapi\CMakeFiles\ittnotify.dir\src\ittnotify\jitprofiling.c.obj 2025-06-01T21:04:13.7636283Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:04:13.7638046Z [1351/7110] Building C object third_party\ittapi\CMakeFiles\ittnotify.dir\src\ittnotify\ittnotify_static.c.obj 2025-06-01T21:04:13.7877871Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:04:13.7878738Z [1352/7110] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\rendezvous\store.cc.obj 2025-06-01T21:04:13.8078757Z [1353/7110] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\rendezvous\context.cc.obj 2025-06-01T21:04:13.8142946Z [1354/7110] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\rendezvous\hash_store.cc.obj 2025-06-01T21:04:13.8156184Z [1355/7110] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\rendezvous\file_store.cc.obj 2025-06-01T21:04:13.8609272Z [1356/7110] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\transport\buffer.cc.obj 2025-06-01T21:04:13.9140732Z [1357/7110] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\rendezvous\prefix_store.cc.obj 2025-06-01T21:04:13.9316781Z [1358/7110] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\common\utils.cc.obj 2025-06-01T21:04:13.9374046Z [1359/7110] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\transport\address.cc.obj 2025-06-01T21:04:13.9602837Z [1360/7110] Linking CXX static library lib\onnx_proto.lib 2025-06-01T21:04:14.0130700Z [1361/7110] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\transport\unbound_buffer.cc.obj 2025-06-01T21:04:14.0300560Z [1362/7110] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\transport\pair.cc.obj 2025-06-01T21:04:14.0567339Z [1363/7110] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\transport\device.cc.obj 2025-06-01T21:04:14.0684254Z [1364/7110] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\common\win.cc.obj 2025-06-01T21:04:14.0806625Z [1365/7110] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\transport\context.cc.obj 2025-06-01T21:04:14.1157574Z [1366/7110] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\common\assertions.cc.obj 2025-06-01T21:04:14.1970926Z [1367/7110] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\common\interned_strings.cc.obj 2025-06-01T21:04:14.3395194Z [1368/7110] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\common\status.cc.obj 2025-06-01T21:04:14.4103613Z [1369/7110] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\common\model_helpers.cc.obj 2025-06-01T21:04:14.4310047Z [1370/7110] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\common\ir_pb_converter.cc.obj 2025-06-01T21:04:14.4330912Z [1371/7110] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\attr_proto_util.cc.obj 2025-06-01T21:04:14.5466084Z [1372/7110] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\controlflow\defs.cc.obj 2025-06-01T21:04:14.6108207Z [1373/7110] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\controlflow\old.cc.obj 2025-06-01T21:04:14.7562755Z [1374/7110] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\controlflow\utils.cc.obj 2025-06-01T21:04:14.7849860Z [1375/7110] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\checker.cc.obj 2025-06-01T21:04:14.7894346Z [1376/7110] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\common\path.cc.obj 2025-06-01T21:04:14.8309993Z [1377/7110] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\function.cc.obj 2025-06-01T21:04:14.8559298Z [1378/7110] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\data_type_utils.cc.obj 2025-06-01T21:04:14.8722666Z [1379/7110] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\generator\defs.cc.obj 2025-06-01T21:04:14.9585701Z [1380/7110] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\generator\old.cc.obj 2025-06-01T21:04:15.0320775Z [1381/7110] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\generator\utils.cc.obj 2025-06-01T21:04:15.1801330Z [1382/7110] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\image\defs.cc.obj 2025-06-01T21:04:15.2109678Z [1383/7110] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\logical\defs.cc.obj 2025-06-01T21:04:15.2248581Z [1384/7110] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\logical\old.cc.obj 2025-06-01T21:04:15.2741409Z [1385/7110] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\math\defs.cc.obj 2025-06-01T21:04:15.3034994Z [1386/7110] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\math\utils.cc.obj 2025-06-01T21:04:15.3346769Z [1387/7110] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\math\old.cc.obj 2025-06-01T21:04:15.3983421Z [1388/7110] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\nn\defs.cc.obj 2025-06-01T21:04:15.5072068Z [1389/7110] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\nn\old.cc.obj 2025-06-01T21:04:15.6352911Z [1390/7110] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\object_detection\defs.cc.obj 2025-06-01T21:04:15.6454116Z [1391/7110] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\object_detection\old.cc.obj 2025-06-01T21:04:15.6502070Z [1392/7110] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\optional\defs.cc.obj 2025-06-01T21:04:15.6873859Z [1393/7110] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\printer.cc.obj 2025-06-01T21:04:15.7002142Z [1394/7110] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\optional\old.cc.obj 2025-06-01T21:04:15.7136392Z [1395/7110] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\parser.cc.obj 2025-06-01T21:04:15.8067245Z [1396/7110] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\quantization\defs.cc.obj 2025-06-01T21:04:15.9453021Z [1397/7110] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\quantization\old.cc.obj 2025-06-01T21:04:16.0540237Z [1398/7110] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\reduction\utils.cc.obj 2025-06-01T21:04:16.0926453Z [1399/7110] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\reduction\old.cc.obj 2025-06-01T21:04:16.1138838Z [1400/7110] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\rnn\old.cc.obj 2025-06-01T21:04:16.1270346Z [1401/7110] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\reduction\defs.cc.obj 2025-06-01T21:04:16.1371446Z [1402/7110] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\schema.cc.obj 2025-06-01T21:04:16.1677884Z [1403/7110] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\rnn\defs.cc.obj 2025-06-01T21:04:16.2643971Z [1404/7110] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\sequence\defs.cc.obj 2025-06-01T21:04:16.3598111Z [1405/7110] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\shape_inference.cc.obj 2025-06-01T21:04:16.4806229Z [1406/7110] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\tensor\defs.cc.obj 2025-06-01T21:04:16.5121369Z [1407/7110] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\tensor_proto_util.cc.obj 2025-06-01T21:04:16.5464057Z [1408/7110] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\tensor_util.cc.obj 2025-06-01T21:04:16.5619167Z [1409/7110] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\tensor\utils.cc.obj 2025-06-01T21:04:16.5808953Z [1410/7110] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\tensor\old.cc.obj 2025-06-01T21:04:16.6227114Z [1411/7110] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\text\defs.cc.obj 2025-06-01T21:04:16.6529940Z [1412/7110] Building RC object third_party\ideep\mkl-dnn\src\CMakeFiles\dnnl.dir\version.rc.res 2025-06-01T21:04:16.7141318Z Microsoft (R) Windows (R) Resource Compiler Version 10.0.10011.16384 2025-06-01T21:04:16.7141651Z 2025-06-01T21:04:16.7141658Z 2025-06-01T21:04:16.7141851Z Copyright (C) Microsoft Corporation. All rights reserved. 2025-06-01T21:04:16.7142174Z 2025-06-01T21:04:16.7142178Z 2025-06-01T21:04:16.7142182Z 2025-06-01T21:04:16.7142185Z 2025-06-01T21:04:16.7142499Z [1413/7110] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\traditionalml\defs.cc.obj 2025-06-01T21:04:16.8176758Z [1414/7110] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\traditionalml\old.cc.obj 2025-06-01T21:04:16.9088983Z [1415/7110] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\training\defs.cc.obj 2025-06-01T21:04:16.9475661Z [1416/7110] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\bfloat16.cpp.obj 2025-06-01T21:04:16.9525291Z [1417/7110] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\version_converter\helper.cc.obj 2025-06-01T21:04:16.9790623Z [1418/7110] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\version_converter\convert.cc.obj 2025-06-01T21:04:16.9858682Z [1419/7110] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\inliner\inliner.cc.obj 2025-06-01T21:04:17.4030890Z [1420/7110] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\shape_inference\implementation.cc.obj 2025-06-01T21:04:17.5100660Z [1421/7110] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\batch_normalization.cpp.obj 2025-06-01T21:04:17.6357708Z [1422/7110] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\binary.cpp.obj 2025-06-01T21:04:17.7848186Z [1423/7110] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\convolution.cpp.obj 2025-06-01T21:04:17.7957836Z [1424/7110] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\broadcast_strategy.cpp.obj 2025-06-01T21:04:17.7969182Z [1425/7110] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\dnnl_debug_autogenerated.cpp.obj 2025-06-01T21:04:17.8286579Z [1426/7110] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\cache_blob_id.cpp.obj 2025-06-01T21:04:17.8403996Z [1427/7110] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\dnnl_threadpool.cpp.obj 2025-06-01T21:04:17.9260403Z [1428/7110] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\concat.cpp.obj 2025-06-01T21:04:18.0205759Z [1429/7110] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\convolution_pd.cpp.obj 2025-06-01T21:04:18.1336587Z [1430/7110] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\experimental.cpp.obj 2025-06-01T21:04:18.1793354Z [1431/7110] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\float4.cpp.obj 2025-06-01T21:04:18.2543812Z [1432/7110] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\deconvolution.cpp.obj 2025-06-01T21:04:18.3019426Z [1433/7110] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\float8.cpp.obj 2025-06-01T21:04:18.3137424Z [1434/7110] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\fpmath_mode.cpp.obj 2025-06-01T21:04:18.4450721Z [1435/7110] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\dnnl_debug.cpp.obj 2025-06-01T21:04:18.6445594Z [1436/7110] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\eltwise.cpp.obj 2025-06-01T21:04:18.6622366Z [1437/7110] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\ittnotify.cpp.obj 2025-06-01T21:04:18.7168751Z [1438/7110] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\engine.cpp.obj 2025-06-01T21:04:19.0264136Z [1439/7110] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\gemm.cpp.obj 2025-06-01T21:04:19.0430287Z [1440/7110] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\group_normalization.cpp.obj 2025-06-01T21:04:19.1506216Z [1441/7110] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\inner_product.cpp.obj 2025-06-01T21:04:19.2168658Z [1442/7110] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\kernel_cache.cpp.obj 2025-06-01T21:04:19.3680971Z [1443/7110] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\layer_normalization.cpp.obj 2025-06-01T21:04:19.4862805Z [1444/7110] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory.cpp.obj 2025-06-01T21:04:19.5231889Z [1445/7110] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\lrn.cpp.obj 2025-06-01T21:04:19.6217393Z [1446/7110] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\matmul.cpp.obj 2025-06-01T21:04:19.8347040Z [1447/7110] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory_debug.cpp.obj 2025-06-01T21:04:19.9753182Z [1448/7110] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory_desc.cpp.obj 2025-06-01T21:04:20.1603095Z [1449/7110] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory_storage.cpp.obj 2025-06-01T21:04:20.2248469Z [1450/7110] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory_desc_wrapper.cpp.obj 2025-06-01T21:04:20.2876148Z [1451/7110] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory_tracking.cpp.obj 2025-06-01T21:04:20.3419989Z [1452/7110] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\pooling.cpp.obj 2025-06-01T21:04:20.3568938Z [1453/7110] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory_zero_pad.cpp.obj 2025-06-01T21:04:20.4223271Z [1454/7110] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\prelu.cpp.obj 2025-06-01T21:04:20.7321641Z [1455/7110] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive.cpp.obj 2025-06-01T21:04:20.8621063Z [1456/7110] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive_attr.cpp.obj 2025-06-01T21:04:21.1636754Z [1457/7110] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive_desc_iface.cpp.obj 2025-06-01T21:04:21.2563461Z [1458/7110] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive_hashing.cpp.obj 2025-06-01T21:04:21.2908334Z [1459/7110] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive_cache.cpp.obj 2025-06-01T21:04:21.2927466Z [1460/7110] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive_iface.cpp.obj 2025-06-01T21:04:21.3086045Z [1461/7110] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive_exec_types.cpp.obj 2025-06-01T21:04:21.3997190Z [1462/7110] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\query.cpp.obj 2025-06-01T21:04:21.5974394Z [1463/7110] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\reduction.cpp.obj 2025-06-01T21:04:21.7385373Z [1464/7110] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\reorder.cpp.obj 2025-06-01T21:04:21.9846123Z [1465/7110] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\resampling.cpp.obj 2025-06-01T21:04:21.9995627Z [1466/7110] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\rw_mutex.cpp.obj 2025-06-01T21:04:22.0546842Z [1467/7110] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\rnn.cpp.obj 2025-06-01T21:04:22.1630094Z [1468/7110] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\scratchpad.cpp.obj 2025-06-01T21:04:22.2527227Z [1469/7110] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\serialization.cpp.obj 2025-06-01T21:04:22.2651310Z [1470/7110] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\scratchpad_debug.cpp.obj 2025-06-01T21:04:22.4085931Z [1471/7110] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\shuffle.cpp.obj 2025-06-01T21:04:22.6708512Z [1472/7110] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\softmax.cpp.obj 2025-06-01T21:04:22.6803592Z [1473/7110] Building ASM_MASM object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\ittnotify\ittptmark64.asm.obj 2025-06-01T21:04:22.7914257Z Microsoft (R) Macro Assembler (x64) Version 14.29.30158.0 2025-06-01T21:04:22.7914781Z 2025-06-01T21:04:22.7915070Z Copyright (C) Microsoft Corporation. All rights reserved. 2025-06-01T21:04:22.7915662Z 2025-06-01T21:04:22.7915683Z 2025-06-01T21:04:22.7915690Z 2025-06-01T21:04:22.7916388Z Assembling: C:\actions-runner\_work\pytorch\pytorch\third_party\ideep\mkl-dnn\src\common\ittnotify\ittptmark64.asm 2025-06-01T21:04:22.7917278Z 2025-06-01T21:04:22.7917954Z [1474/7110] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\stream.cpp.obj 2025-06-01T21:04:22.8219862Z [1475/7110] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\stream_profiler.cpp.obj 2025-06-01T21:04:22.9027676Z [1476/7110] Building C object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\ittnotify\jitprofiling.c.obj 2025-06-01T21:04:22.9265709Z [1477/7110] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\sum.cpp.obj 2025-06-01T21:04:22.9385679Z [1478/7110] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\utils.cpp.obj 2025-06-01T21:04:22.9920651Z [1479/7110] Building C object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\ittnotify\ittnotify_static.c.obj 2025-06-01T21:04:23.2799063Z [1480/7110] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\verbose.cpp.obj 2025-06-01T21:04:23.6861354Z [1481/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\binary_injector_utils.cpp.obj 2025-06-01T21:04:23.6956005Z [1482/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\bfloat16.cpp.obj 2025-06-01T21:04:23.7782148Z [1483/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_batch_normalization_utils.cpp.obj 2025-06-01T21:04:23.9099067Z [1484/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_batch_normalization_list.cpp.obj 2025-06-01T21:04:23.9552148Z [1485/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_binary_list.cpp.obj 2025-06-01T21:04:23.9570175Z [1486/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_concat.cpp.obj 2025-06-01T21:04:24.2248542Z [1487/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_convolution_list.cpp.obj 2025-06-01T21:04:24.3796014Z [1488/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_deconvolution_list.cpp.obj 2025-06-01T21:04:24.5908272Z [1489/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_engine.cpp.obj 2025-06-01T21:04:24.8069934Z [1490/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_group_normalization_list.cpp.obj 2025-06-01T21:04:24.8659371Z [1491/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_eltwise_list.cpp.obj 2025-06-01T21:04:25.0140649Z [1492/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_inner_product_list.cpp.obj 2025-06-01T21:04:25.0345523Z [1493/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_lrn_list.cpp.obj 2025-06-01T21:04:25.1112063Z [1494/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_layer_normalization_list.cpp.obj 2025-06-01T21:04:25.3581757Z [1495/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_pooling_list.cpp.obj 2025-06-01T21:04:25.3825595Z [1496/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_prelu_list.cpp.obj 2025-06-01T21:04:25.6129406Z [1497/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_reduction_list.cpp.obj 2025-06-01T21:04:25.9451836Z [1498/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_resampling_list.cpp.obj 2025-06-01T21:04:25.9830862Z [1499/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_rnn_list.cpp.obj 2025-06-01T21:04:26.1310345Z [1500/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_shuffle_list.cpp.obj 2025-06-01T21:04:26.1400641Z [1501/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_sum.cpp.obj 2025-06-01T21:04:26.1594750Z [1502/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_softmax_list.cpp.obj 2025-06-01T21:04:26.3147969Z [1503/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\float16.cpp.obj 2025-06-01T21:04:26.3239945Z [1504/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_convolution.cpp.obj 2025-06-01T21:04:26.6206345Z [1505/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_convolution_utils.cpp.obj 2025-06-01T21:04:26.9459950Z [1506/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_inner_product_utils.cpp.obj 2025-06-01T21:04:27.0172568Z [1507/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_inner_product.cpp.obj 2025-06-01T21:04:27.1070773Z [1508/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_x8s8s32x_conv_zp_src_pad_comp.cpp.obj 2025-06-01T21:04:27.1626410Z [1509/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_x8s8s32x_convolution.cpp.obj 2025-06-01T21:04:27.1695140Z [1510/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_x8s8s32x_convolution_utils.cpp.obj 2025-06-01T21:04:27.3394391Z [1511/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\nchw_pooling.cpp.obj 2025-06-01T21:04:27.3595862Z [1512/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_x8s8s32x_inner_product.cpp.obj 2025-06-01T21:04:27.5746266Z [1513/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ncsp_batch_normalization.cpp.obj 2025-06-01T21:04:27.9267163Z [1514/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ncsp_group_normalization.cpp.obj 2025-06-01T21:04:28.0075675Z [1515/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\nhwc_pooling.cpp.obj 2025-06-01T21:04:28.0973631Z [1516/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\primitive_attr_postops.cpp.obj 2025-06-01T21:04:28.1119544Z [1517/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\platform.cpp.obj 2025-06-01T21:04:28.1909482Z [1518/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\nspc_batch_normalization.cpp.obj 2025-06-01T21:04:28.2522340Z [1519/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_binary.cpp.obj 2025-06-01T21:04:28.3207178Z [1520/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_batch_normalization.cpp.obj 2025-06-01T21:04:28.5718474Z [1521/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_convolution.cpp.obj 2025-06-01T21:04:28.8746516Z [1522/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_convolution_int8.cpp.obj 2025-06-01T21:04:28.9919075Z [1523/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_deconvolution.cpp.obj 2025-06-01T21:04:29.0614083Z [1524/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_group_normalization.cpp.obj 2025-06-01T21:04:29.1891349Z [1525/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_inner_product.cpp.obj 2025-06-01T21:04:29.2097597Z [1526/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_eltwise.cpp.obj 2025-06-01T21:04:29.2907007Z [1527/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_layer_normalization.cpp.obj 2025-06-01T21:04:29.2977373Z [1528/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_inner_product_int8.cpp.obj 2025-06-01T21:04:29.5261109Z [1529/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_lrn.cpp.obj 2025-06-01T21:04:29.9923772Z [1530/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_prelu.cpp.obj 2025-06-01T21:04:30.0069744Z [1531/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_reduction.cpp.obj 2025-06-01T21:04:30.0399857Z [1532/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_shuffle.cpp.obj 2025-06-01T21:04:30.0493223Z [1533/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_pooling.cpp.obj 2025-06-01T21:04:30.0779779Z [1534/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\scale_utils.cpp.obj 2025-06-01T21:04:30.2105393Z [1535/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_resampling.cpp.obj 2025-06-01T21:04:30.3256919Z [1536/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_softmax.cpp.obj 2025-06-01T21:04:30.4388974Z [1537/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\bf16\ref_gemm_bf16.cpp.obj 2025-06-01T21:04:30.5025539Z [1538/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\simple_concat.cpp.obj 2025-06-01T21:04:30.5816532Z [1539/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\f32\gemm_utils_f32.cpp.obj 2025-06-01T21:04:30.6226667Z [1540/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\f32\ref_gemm_f32.cpp.obj 2025-06-01T21:04:30.9166315Z [1541/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\zero_point_utils.cpp.obj 2025-06-01T21:04:31.0123108Z [1542/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\simple_layer_normalization.cpp.obj 2025-06-01T21:04:31.0473691Z [1543/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\simple_resampling.cpp.obj 2025-06-01T21:04:31.0941838Z [1544/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\simple_sum.cpp.obj 2025-06-01T21:04:31.3505485Z [1545/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\gemm.cpp.obj 2025-06-01T21:04:31.3597131Z [1546/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\gemm_pack.cpp.obj 2025-06-01T21:04:31.5202472Z [1547/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\s8x8s32\ref_gemm_s8x8s32.cpp.obj 2025-06-01T21:04:31.6241163Z [1548/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\s8x8s32\simple_gemm_s8s8s32.cpp.obj 2025-06-01T21:04:31.9275025Z [1549/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\cpu_matmul_list.cpp.obj 2025-06-01T21:04:32.0277996Z [1550/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\gemm_bf16_matmul.cpp.obj 2025-06-01T21:04:32.1494082Z [1551/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\gemm_f32_matmul.cpp.obj 2025-06-01T21:04:32.2135706Z [1552/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\gemm_x8s8s32x_matmul.cpp.obj 2025-06-01T21:04:32.3508703Z [1553/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\ref_matmul.cpp.obj 2025-06-01T21:04:32.3675657Z [1554/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\ref_matmul_int8.cpp.obj 2025-06-01T21:04:32.5075539Z [1555/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\ref_sparse_matmul.cpp.obj 2025-06-01T21:04:32.6564368Z [1556/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder.cpp.obj 2025-06-01T21:04:33.0226508Z [1557/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_comp_bf16_s8.cpp.obj 2025-06-01T21:04:33.0926239Z [1558/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_comp_f32_s8.cpp.obj 2025-06-01T21:04:33.2371417Z [1559/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_bf16.cpp.obj 2025-06-01T21:04:33.2972325Z [1560/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_comp_s8_s8.cpp.obj 2025-06-01T21:04:33.4376861Z [1561/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f16.cpp.obj 2025-06-01T21:04:33.4498408Z [1562/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f32_bf16.cpp.obj 2025-06-01T21:04:33.6381426Z [1563/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f32_f16.cpp.obj 2025-06-01T21:04:33.8236989Z [1564/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f32_f32.cpp.obj 2025-06-01T21:04:34.1769798Z [1565/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f32_fp8.cpp.obj 2025-06-01T21:04:34.2573323Z [1566/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f32_s32.cpp.obj 2025-06-01T21:04:34.3086512Z [1567/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f32_s8.cpp.obj 2025-06-01T21:04:34.4208705Z [1568/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f32_u8.cpp.obj 2025-06-01T21:04:34.4651944Z [1569/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_fp4.cpp.obj 2025-06-01T21:04:34.5209994Z [1570/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_fp8.cpp.obj 2025-06-01T21:04:34.7352936Z [1571/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_s32.cpp.obj 2025-06-01T21:04:35.0460065Z [1572/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_s4.cpp.obj 2025-06-01T21:04:35.2837237Z [1573/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_s8.cpp.obj 2025-06-01T21:04:35.3396089Z [1574/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_u4.cpp.obj 2025-06-01T21:04:35.4131432Z [1575/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_u8.cpp.obj 2025-06-01T21:04:35.4999622Z [1576/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\cell_gru.cpp.obj 2025-06-01T21:04:35.5018998Z [1577/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\brgemm_cell_common.cpp.obj 2025-06-01T21:04:35.5089983Z [1578/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\cell_common.cpp.obj 2025-06-01T21:04:35.7634666Z [1579/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\cell_gru_lbr.cpp.obj 2025-06-01T21:04:36.1416846Z [1580/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\ref_postgemm_gru.cpp.obj 2025-06-01T21:04:36.2187062Z [1581/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\jit_utils\linux_perf\linux_perf.cpp.obj 2025-06-01T21:04:36.3253385Z [1582/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\ref_postgemm_lstm.cpp.obj 2025-06-01T21:04:36.3459497Z [1583/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\ref_postgemm_gru_lbr.cpp.obj 2025-06-01T21:04:36.4104726Z [1584/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\ref_postgemm_lstm_projection.cpp.obj 2025-06-01T21:04:36.4626810Z [1585/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\rnn_utils.cpp.obj 2025-06-01T21:04:36.4949248Z [1586/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\ref_postgemm_rnn.cpp.obj 2025-06-01T21:04:36.6332280Z [1587/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\jit_utils\jit_utils.cpp.obj 2025-06-01T21:04:36.6952410Z [1588/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\ref_rnn.cpp.obj 2025-06-01T21:04:37.2164807Z [1589/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\amx_tile_configure.cpp.obj 2025-06-01T21:04:37.3593183Z [1590/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\brgemm\brgemm.cpp.obj 2025-06-01T21:04:37.4099594Z [1591/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\brgemm\brgemm_containers.cpp.obj 2025-06-01T21:04:37.4616195Z [1592/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\brgemm\brgemm_utils.cpp.obj 2025-06-01T21:04:37.4795631Z [1593/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\brgemm\jit_brdgmm_kernel.cpp.obj 2025-06-01T21:04:37.5404964Z [1594/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\brgemm\capi\brgemm_api.cpp.obj 2025-06-01T21:04:37.5934236Z [1595/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\brgemm\jit_brgemm_amx_uker.cpp.obj 2025-06-01T21:04:37.6565821Z [1596/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\brgemm\jit_brgemm_kernel.cpp.obj 2025-06-01T21:04:38.2358001Z [1597/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\cpu_barrier.cpp.obj 2025-06-01T21:04:38.3319183Z [1598/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\cpu_reducer.cpp.obj 2025-06-01T21:04:38.3707106Z [1599/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\cpu_isa_traits.cpp.obj 2025-06-01T21:04:38.4396428Z [1600/7110] 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-06-01T21:04:38.5097029Z [1601/7110] 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-06-01T21:04:38.5386489Z [1602/7110] 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-06-01T21:04:38.6030222Z [1603/7110] 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-06-01T21:04:38.6117520Z [1604/7110] 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-06-01T21:04:39.1825033Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:39.1826022Z [1605/7110] 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-06-01T21:04:39.2606748Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:39.2607668Z [1606/7110] 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-06-01T21:04:39.2659774Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:39.2660582Z [1607/7110] 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-06-01T21:04:39.3251457Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:39.3252268Z [1608/7110] 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-06-01T21:04:39.3836656Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:39.3838218Z [1609/7110] 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-06-01T21:04:39.4517910Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:39.4519328Z [1610/7110] 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-06-01T21:04:39.5226762Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:39.5227608Z [1611/7110] 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-06-01T21:04:39.5819065Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:39.5819918Z [1612/7110] 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-06-01T21:04:40.1869260Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:40.1870029Z [1613/7110] 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-06-01T21:04:40.2908102Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:40.2908890Z [1614/7110] 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-06-01T21:04:40.3399819Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:40.3400715Z [1615/7110] 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-06-01T21:04:40.4171190Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:40.4172014Z [1616/7110] 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-06-01T21:04:40.5037371Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:40.5038149Z [1617/7110] 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-06-01T21:04:40.5852307Z [1618/7110] 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-06-01T21:04:40.6593470Z [1619/7110] 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-06-01T21:04:40.7325134Z [1620/7110] 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-06-01T21:04:41.0325793Z [1621/7110] 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-06-01T21:04:41.1427383Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:41.1428300Z [1622/7110] 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-06-01T21:04:41.2497600Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:41.2498425Z [1623/7110] 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-06-01T21:04:41.3167629Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:41.3169088Z [1624/7110] 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-06-01T21:04:41.4150187Z [1625/7110] 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-06-01T21:04:41.4994028Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:41.4994796Z [1626/7110] 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-06-01T21:04:41.6334289Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:41.6335718Z [1627/7110] 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-06-01T21:04:41.7451117Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:41.7452659Z [1628/7110] 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-06-01T21:04:42.0152468Z [1629/7110] 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-06-01T21:04:42.1042918Z [1630/7110] 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-06-01T21:04:42.3520123Z [1631/7110] 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-06-01T21:04:42.4417133Z [1632/7110] 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-06-01T21:04:42.5266372Z [1633/7110] 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-06-01T21:04:42.5509513Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:42.5510297Z [1634/7110] 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-06-01T21:04:42.6230653Z [1635/7110] 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-06-01T21:04:42.6650628Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:42.6651375Z [1636/7110] 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-06-01T21:04:42.9520324Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:42.9521134Z [1637/7110] 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-06-01T21:04:43.0622206Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:43.0623115Z [1638/7110] 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-06-01T21:04:43.3675102Z [1639/7110] 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-06-01T21:04:43.3950111Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:43.3951418Z [1640/7110] 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-06-01T21:04:43.4760482Z [1641/7110] 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-06-01T21:04:43.5278872Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:43.5279584Z [1642/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\gemm_driver.cpp.obj 2025-06-01T21:04:43.5410512Z [1643/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\gemm_pack.cpp.obj 2025-06-01T21:04:43.5922499Z [1644/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\gemm_info.cpp.obj 2025-06-01T21:04:43.8387039Z [1645/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\gemv_driver.cpp.obj 2025-06-01T21:04:44.0537861Z [1646/7110] 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-06-01T21:04:44.3258051Z [1647/7110] 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-06-01T21:04:44.4588871Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:44.4589868Z [1648/7110] 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-06-01T21:04:44.4758993Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:44.4759807Z [1649/7110] 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-06-01T21:04:44.4893500Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:44.4894458Z [1650/7110] 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-06-01T21:04:44.4961571Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:44.4962411Z [1651/7110] 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-06-01T21:04:44.5541338Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:44.5542148Z [1652/7110] 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-06-01T21:04:44.7498389Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:44.7499188Z [1653/7110] 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-06-01T21:04:45.0103073Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:45.0103865Z [1654/7110] 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-06-01T21:04:45.3019342Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:45.3020192Z [1655/7110] 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-06-01T21:04:45.4321615Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:45.4322419Z [1656/7110] 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-06-01T21:04:45.4405609Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:45.4406478Z [1657/7110] 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-06-01T21:04:45.4583539Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:45.4584321Z [1658/7110] 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-06-01T21:04:45.4664210Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:45.4665024Z [1659/7110] 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-06-01T21:04:45.5362118Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:45.5363928Z [1660/7110] 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-06-01T21:04:45.6719062Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:45.6720513Z [1661/7110] 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-06-01T21:04:45.8764551Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:45.8765407Z [1662/7110] 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-06-01T21:04:46.2493442Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:46.2494523Z [1663/7110] 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-06-01T21:04:46.3028645Z [1664/7110] 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-06-01T21:04:46.3941692Z [1665/7110] 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-06-01T21:04:46.4557222Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:46.4558047Z [1666/7110] 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-06-01T21:04:46.4873692Z [1667/7110] 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-06-01T21:04:46.5431008Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:46.5431899Z [1668/7110] 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-06-01T21:04:46.6376253Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:46.6377087Z [1669/7110] 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-06-01T21:04:46.9058911Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:46.9059903Z [1670/7110] 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-06-01T21:04:47.2494296Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:47.2495863Z [1671/7110] 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-06-01T21:04:47.2783147Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:47.2784071Z [1672/7110] 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-06-01T21:04:47.3554962Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:47.3555840Z [1673/7110] 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-06-01T21:04:47.4501922Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:47.4502750Z [1674/7110] 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-06-01T21:04:47.4856388Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:47.4857214Z [1675/7110] 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-06-01T21:04:47.5330555Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:47.5331373Z [1676/7110] 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-06-01T21:04:47.6163795Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:47.6164716Z [1677/7110] 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-06-01T21:04:47.8318947Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:47.8320053Z [1678/7110] 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-06-01T21:04:48.1644795Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:48.1645722Z [1679/7110] 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-06-01T21:04:48.2665180Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:48.2666059Z [1680/7110] 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-06-01T21:04:48.2732978Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:48.2734477Z [1681/7110] 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-06-01T21:04:48.3625448Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:48.3626320Z [1682/7110] 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-06-01T21:04:48.4656493Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:48.4657285Z [1683/7110] 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-06-01T21:04:48.4806227Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:48.4807015Z [1684/7110] 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-06-01T21:04:48.5619565Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:48.5621025Z [1685/7110] 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-06-01T21:04:48.8199636Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:48.8200442Z [1686/7110] 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-06-01T21:04:49.1382477Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:49.1383320Z [1687/7110] 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-06-01T21:04:49.1924752Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:49.1925554Z [1688/7110] 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-06-01T21:04:49.2202940Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:49.2203861Z [1689/7110] 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-06-01T21:04:49.3511520Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:49.3512305Z [1690/7110] 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-06-01T21:04:49.3665564Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:49.3666382Z [1691/7110] 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-06-01T21:04:49.4792288Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:49.4793841Z [1692/7110] 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-06-01T21:04:49.5906918Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:49.5908023Z [1693/7110] 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-06-01T21:04:49.6599754Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:49.6600698Z [1694/7110] 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-06-01T21:04:50.0265885Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:50.0266709Z [1695/7110] 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-06-01T21:04:50.0690282Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:50.0691130Z [1696/7110] 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-06-01T21:04:50.0912253Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:50.0913754Z [1697/7110] 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-06-01T21:04:50.2665779Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:50.2667228Z [1698/7110] 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-06-01T21:04:50.2952797Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:50.2954314Z [1699/7110] 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-06-01T21:04:50.3640268Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:50.3641133Z [1700/7110] 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-06-01T21:04:50.4777343Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:50.4778669Z [1701/7110] 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-06-01T21:04:50.6037228Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:50.6038057Z [1702/7110] 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-06-01T21:04:51.0007088Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:51.0007896Z [1703/7110] 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-06-01T21:04:51.0355894Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:51.0356774Z [1704/7110] 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-06-01T21:04:51.1092092Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:51.1092943Z [1705/7110] 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-06-01T21:04:51.2804533Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:04:51.2805480Z [1706/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\injectors\injector_utils.cpp.obj 2025-06-01T21:04:51.3727595Z [1707/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm_bf16_inner_product.cpp.obj 2025-06-01T21:04:51.4142216Z [1708/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm_bf16_convolution.cpp.obj 2025-06-01T21:04:51.5407796Z [1709/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\injectors\jit_uni_binary_injector.cpp.obj 2025-06-01T21:04:51.6316411Z [1710/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\injectors\jit_uni_eltwise_injector.cpp.obj 2025-06-01T21:04:52.0274187Z [1711/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\injectors\jit_uni_postops_injector.cpp.obj 2025-06-01T21:04:52.0863998Z [1712/7110] 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-06-01T21:04:52.1034473Z [1713/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\ip_convolution.cpp.obj 2025-06-01T21:04:52.3893919Z [1714/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx2_conv_kernel_f32.cpp.obj 2025-06-01T21:04:52.3918894Z [1715/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx2_1x1_convolution.cpp.obj 2025-06-01T21:04:52.4344679Z [1716/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx2_convolution.cpp.obj 2025-06-01T21:04:52.5453279Z [1717/7110] 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-06-01T21:04:52.7161246Z [1718/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_common_1x1_convolution.cpp.obj 2025-06-01T21:04:53.1177380Z [1719/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_common_convolution.cpp.obj 2025-06-01T21:04:53.1237719Z [1720/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_common_conv_kernel.cpp.obj 2025-06-01T21:04:53.1695027Z [1721/7110] 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-06-01T21:04:53.4303624Z [1722/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_amx_convolution.cpp.obj 2025-06-01T21:04:53.4483847Z [1723/7110] 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-06-01T21:04:53.4822495Z [1724/7110] 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-06-01T21:04:53.5008979Z [1725/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_amx_deconvolution.cpp.obj 2025-06-01T21:04:53.7341420Z [1726/7110] 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-06-01T21:04:54.1730104Z [1727/7110] 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-06-01T21:04:54.2302940Z [1728/7110] 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-06-01T21:04:54.3012592Z [1729/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_bf16_convolution.cpp.obj 2025-06-01T21:04:54.3743506Z [1730/7110] 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-06-01T21:04:54.4351918Z [1731/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_fp8cvt.cpp.obj 2025-06-01T21:04:54.4559673Z [1732/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_fp16cvt.cpp.obj 2025-06-01T21:04:54.4685721Z [1733/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_resampling.cpp.obj 2025-06-01T21:04:54.6929648Z [1734/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_scale_precompute.cpp.obj 2025-06-01T21:04:55.1976484Z [1735/7110] 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-06-01T21:04:55.2750377Z [1736/7110] 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-06-01T21:04:55.2995144Z [1737/7110] 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-06-01T21:04:55.4012965Z [1738/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_sparse_decompress_kernel.cpp.obj 2025-06-01T21:04:55.4534040Z [1739/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_x8s8s32x_deconvolution.cpp.obj 2025-06-01T21:04:55.4774145Z [1740/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_x8s8s32x_convolution.cpp.obj 2025-06-01T21:04:55.5518891Z [1741/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brdgmm_dw_conv.cpp.obj 2025-06-01T21:04:55.7728823Z [1742/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_1x1_conv.cpp.obj 2025-06-01T21:04:56.2669527Z [1743/7110] 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-06-01T21:04:56.3101492Z [1744/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv_bwd.cpp.obj 2025-06-01T21:04:56.3211040Z [1745/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv.cpp.obj 2025-06-01T21:04:56.5355035Z [1746/7110] 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-06-01T21:04:56.5503048Z [1747/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv_bwd_utils.cpp.obj 2025-06-01T21:04:56.5561615Z [1748/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv_bwd_w.cpp.obj 2025-06-01T21:04:56.6255058Z [1749/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv_bwd_strided.cpp.obj 2025-06-01T21:04:56.7968215Z [1750/7110] 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-06-01T21:04:57.3378484Z [1751/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv_trans_kernel.cpp.obj 2025-06-01T21:04:57.3612070Z [1752/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv_utils.cpp.obj 2025-06-01T21:04:57.3812674Z [1753/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_deconv.cpp.obj 2025-06-01T21:04:57.5894753Z [1754/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_post_ops.cpp.obj 2025-06-01T21:04:57.5915514Z [1755/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_inner_product.cpp.obj 2025-06-01T21:04:57.6029912Z [1756/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_inner_product_utils.cpp.obj 2025-06-01T21:04:57.6295633Z [1757/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_primitive_conf.cpp.obj 2025-06-01T21:04:57.7512281Z [1758/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_transpose_utils.cpp.obj 2025-06-01T21:04:58.3565807Z [1759/7110] 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-06-01T21:04:58.4046894Z [1760/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_gemm_x8s8s32x_convolution_utils.cpp.obj 2025-06-01T21:04:58.4346293Z [1761/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_gemm_inner_product_utils.cpp.obj 2025-06-01T21:04:58.4942886Z [1762/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_generator.cpp.obj 2025-06-01T21:04:58.5991722Z [1763/7110] 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-06-01T21:04:58.6511531Z [1764/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_sse41_1x1_convolution.cpp.obj 2025-06-01T21:04:58.6634553Z [1765/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_sse41_conv_kernel_f32.cpp.obj 2025-06-01T21:04:58.8323747Z [1766/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_sse41_convolution.cpp.obj 2025-06-01T21:04:59.3211646Z [1767/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_transpose_utils.cpp.obj 2025-06-01T21:04:59.4725005Z [1768/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_batch_normalization.cpp.obj 2025-06-01T21:04:59.4903197Z [1769/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_batch_normalization_s8.cpp.obj 2025-06-01T21:04:59.6146352Z [1770/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_binary_kernel.cpp.obj 2025-06-01T21:04:59.6240046Z [1771/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_binary.cpp.obj 2025-06-01T21:04:59.6318582Z [1772/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_convert_xf16.cpp.obj 2025-06-01T21:04:59.7020085Z [1773/7110] 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-06-01T21:04:59.7862648Z [1774/7110] 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-06-01T21:05:00.3916551Z [1775/7110] 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-06-01T21:05:00.5080728Z [1776/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_dw_convolution.cpp.obj 2025-06-01T21:05:00.5754481Z [1777/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_eltwise.cpp.obj 2025-06-01T21:05:00.6122518Z [1778/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_eltwise_int.cpp.obj 2025-06-01T21:05:00.7212954Z [1779/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_i8i8_pooling.cpp.obj 2025-06-01T21:05:00.8583430Z [1780/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_group_normalization.cpp.obj 2025-06-01T21:05:00.9239745Z [1781/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_layer_normalization.cpp.obj 2025-06-01T21:05:00.9450283Z [1782/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_instance_normalization.cpp.obj 2025-06-01T21:05:01.3415117Z [1783/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_ncsp_convolution.cpp.obj 2025-06-01T21:05:01.5864873Z [1784/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_pool_kernel.cpp.obj 2025-06-01T21:05:01.6274492Z [1785/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_reduction.cpp.obj 2025-06-01T21:05:01.6471045Z [1786/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_reduction_kernel.cpp.obj 2025-06-01T21:05:01.6893284Z [1787/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_pooling.cpp.obj 2025-06-01T21:05:01.8867641Z [1788/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_reorder_utils.cpp.obj 2025-06-01T21:05:01.9336618Z [1789/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_reorder.cpp.obj 2025-06-01T21:05:01.9504127Z [1790/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_reorder_direct_copy.cpp.obj 2025-06-01T21:05:02.4427599Z [1791/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_resampling.cpp.obj 2025-06-01T21:05:02.5483425Z [1792/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_resampling_kernel.cpp.obj 2025-06-01T21:05:02.6632072Z [1793/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_softmax.cpp.obj 2025-06-01T21:05:02.7230717Z [1794/7110] 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-06-01T21:05:02.7773218Z [1795/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_tbb_batch_normalization.cpp.obj 2025-06-01T21:05:02.9783806Z [1796/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_x8s8s32x_convolution.cpp.obj 2025-06-01T21:05:02.9899737Z [1797/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_x8s8s32x_1x1_convolution.cpp.obj 2025-06-01T21:05:02.9986509Z [1798/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_x8s8s32x_conv_kernel.cpp.obj 2025-06-01T21:05:03.5796487Z [1799/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_x8s8s32x_deconvolution.cpp.obj 2025-06-01T21:05:03.6212527Z [1800/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_xf16_sum.cpp.obj 2025-06-01T21:05:03.6663152Z [1801/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\lrn\jit_avx512_common_lrn.cpp.obj 2025-06-01T21:05:03.7459003Z [1802/7110] 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-06-01T21:05:03.8639363Z [1803/7110] 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-06-01T21:05:03.9995592Z [1804/7110] 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-06-01T21:05:04.0363626Z [1805/7110] 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-06-01T21:05:04.0873003Z [1806/7110] 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-06-01T21:05:04.6094803Z [1807/7110] 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-06-01T21:05:04.6820708Z [1808/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\lrn\jit_uni_lrn.cpp.obj 2025-06-01T21:05:04.7682945Z [1809/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\lrn\jit_uni_lrn_kernel.cpp.obj 2025-06-01T21:05:04.8365019Z [1810/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\matmul\brgemm_matmul.cpp.obj 2025-06-01T21:05:04.8863386Z [1811/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\matmul\brgemm_matmul_copy_utils.cpp.obj 2025-06-01T21:05:05.0343163Z [1812/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\matmul\brgemm_matmul_reorders.cpp.obj 2025-06-01T21:05:05.1822737Z [1813/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\matmul\jit_uni_sparse_matmul.cpp.obj 2025-06-01T21:05:05.1915013Z [1814/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\matmul\brgemm_matmul_utils.cpp.obj 2025-06-01T21:05:05.6618781Z [1815/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\prelu\jit_prelu_backward.cpp.obj 2025-06-01T21:05:05.7099084Z [1816/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\prelu\jit_prelu_base_kernel.cpp.obj 2025-06-01T21:05:05.7710763Z [1817/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\prelu\jit_prelu_forward.cpp.obj 2025-06-01T21:05:05.8057430Z [1818/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\prelu\jit_prelu_utils.cpp.obj 2025-06-01T21:05:05.8144884Z [1819/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\prelu\jit_prelu_reduction_kernel.cpp.obj 2025-06-01T21:05:06.1063991Z [1820/7110] 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-06-01T21:05:06.2559453Z [1821/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\rnn\brgemm_cell_common_bwd.cpp.obj 2025-06-01T21:05:06.2652648Z [1822/7110] 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-06-01T21:05:06.6976107Z [1823/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\rnn\brgemm_cell_common_utils.cpp.obj 2025-06-01T21:05:06.7070490Z [1824/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\rnn\brgemm_cell_common_reorders.cpp.obj 2025-06-01T21:05:06.7404565Z [1825/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\rnn\brgemm_cell_common_fwd.cpp.obj 2025-06-01T21:05:06.8134293Z [1826/7110] 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-06-01T21:05:06.8363058Z [1827/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\rnn\jit_diff_weights_peephole.cpp.obj 2025-06-01T21:05:07.1191083Z [1828/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\rnn\jit_gates_reduction.cpp.obj 2025-06-01T21:05:07.3115610Z [1829/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\rnn\rnn_brgemm_utils.cpp.obj 2025-06-01T21:05:07.3215637Z [1830/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\shuffle\jit_uni_shuffle.cpp.obj 2025-06-01T21:05:07.6609307Z [1831/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\allocator.cpp.obj 2025-06-01T21:05:07.7988323Z [1832/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\backend.cpp.obj 2025-06-01T21:05:07.8006898Z [1833/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\shuffle\jit_uni_shuffle_kernel.cpp.obj 2025-06-01T21:05:07.8357038Z [1834/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\constant_tensor_cache.cpp.obj 2025-06-01T21:05:07.8567799Z [1835/7110] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\utils\jit_io_helper.cpp.obj 2025-06-01T21:05:08.1492657Z [1836/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\graph.cpp.obj 2025-06-01T21:05:08.2879586Z [1837/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\logical_tensor.cpp.obj 2025-06-01T21:05:08.3191639Z [1838/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\op.cpp.obj 2025-06-01T21:05:08.5186588Z [1839/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\op_def_constraint.cpp.obj 2025-06-01T21:05:08.7084923Z [1840/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\partition_hashing.cpp.obj 2025-06-01T21:05:08.7589373Z [1841/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\op_schema.cpp.obj 2025-06-01T21:05:08.9041822Z [1842/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\partition.cpp.obj 2025-06-01T21:05:08.9113491Z [1843/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\partition_cache.cpp.obj 2025-06-01T21:05:09.1497855Z [1844/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\shape_infer.cpp.obj 2025-06-01T21:05:09.2218936Z [1845/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\partition_impl.cpp.obj 2025-06-01T21:05:09.2849290Z [1846/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\tensor.cpp.obj 2025-06-01T21:05:09.4170093Z [1847/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\value.cpp.obj 2025-06-01T21:05:09.6937903Z [1848/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\fake\CMakeFiles\dnnl_graph_backend_fake.dir\fake_backend.cpp.obj 2025-06-01T21:05:09.9206422Z [1849/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\common.cpp.obj 2025-06-01T21:05:10.0008410Z [1850/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\dnnl_partition_impl.cpp.obj 2025-06-01T21:05:10.0544506Z [1851/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\dnnl_backend.cpp.obj 2025-06-01T21:05:10.1184816Z [1852/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\dnnl_shape_infer.cpp.obj 2025-06-01T21:05:10.2133325Z [1853/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\layout_id_mgr.cpp.obj 2025-06-01T21:05:10.3131753Z [1854/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\fusion_info.cpp.obj 2025-06-01T21:05:10.5396614Z [1855/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\layout_propagator.cpp.obj 2025-06-01T21:05:10.7398401Z [1856/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\op_executable.cpp.obj 2025-06-01T21:05:10.8736420Z [1857/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\platform.cpp.obj 2025-06-01T21:05:11.1152628Z [1858/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\batch_norm.cpp.obj 2025-06-01T21:05:11.1267225Z [1859/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\subgraph.cpp.obj 2025-06-01T21:05:11.2801365Z [1860/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\binary.cpp.obj 2025-06-01T21:05:11.2941368Z [1861/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\concat.cpp.obj 2025-06-01T21:05:11.4323491Z [1862/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\conv.cpp.obj 2025-06-01T21:05:11.5777335Z [1863/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\conv_base.cpp.obj 2025-06-01T21:05:11.7862768Z [1864/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\conv_transpose.cpp.obj 2025-06-01T21:05:11.9779226Z [1865/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\dummy.cpp.obj 2025-06-01T21:05:12.1725644Z [1866/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\eltwise.cpp.obj 2025-06-01T21:05:12.1965308Z [1867/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\gen_index.cpp.obj 2025-06-01T21:05:12.3322745Z [1868/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\group_norm.cpp.obj 2025-06-01T21:05:12.3433451Z [1869/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\kernel_base.cpp.obj 2025-06-01T21:05:12.4944512Z [1870/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\large_partition.cpp.obj 2025-06-01T21:05:12.6925638Z [1871/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\layer_norm.cpp.obj 2025-06-01T21:05:12.9396544Z [1872/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\log_softmax.cpp.obj 2025-06-01T21:05:13.0454207Z [1873/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\matmul.cpp.obj 2025-06-01T21:05:13.1687730Z [1874/7110] 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-06-01T21:05:13.2386791Z [1875/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\mqa_decomp.cpp.obj 2025-06-01T21:05:13.3773391Z [1876/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\pool.cpp.obj 2025-06-01T21:05:13.4346648Z [1877/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\prelu.cpp.obj 2025-06-01T21:05:13.5873746Z [1878/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\quantize.cpp.obj 2025-06-01T21:05:13.8617636Z [1879/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\reduction.cpp.obj 2025-06-01T21:05:14.1079856Z [1880/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\resampling.cpp.obj 2025-06-01T21:05:14.1566203Z [1881/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\reorder.cpp.obj 2025-06-01T21:05:14.2033625Z [1882/7110] 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-06-01T21:05:14.3296857Z [1883/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\sdp_decomp.cpp.obj 2025-06-01T21:05:14.4700344Z [1884/7110] 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-06-01T21:05:14.4922928Z [1885/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\sdp_primitive.cpp.obj 2025-06-01T21:05:14.8146522Z [1886/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\select.cpp.obj 2025-06-01T21:05:14.9921875Z [1887/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\shuffle.cpp.obj 2025-06-01T21:05:15.2363345Z [1888/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\softmax.cpp.obj 2025-06-01T21:05:15.2520495Z [1889/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\sum.cpp.obj 2025-06-01T21:05:15.3594262Z [1890/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\compile_ops.cpp.obj 2025-06-01T21:05:15.3833287Z [1891/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\constant_propagation.cpp.obj 2025-06-01T21:05:15.4294976Z [1892/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\insert_ops.cpp.obj 2025-06-01T21:05:15.4561959Z [1893/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\layout_propagation.cpp.obj 2025-06-01T21:05:15.8062984Z [1894/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\lower.cpp.obj 2025-06-01T21:05:16.1333749Z [1895/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\memory_planning.cpp.obj 2025-06-01T21:05:16.3233170Z [1896/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\utils.cpp.obj 2025-06-01T21:05:16.3439065Z [1897/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\transform.cpp.obj 2025-06-01T21:05:16.3787497Z [1898/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\bn_fusion.cpp.obj 2025-06-01T21:05:16.4718381Z [1899/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\binary_fusion.cpp.obj 2025-06-01T21:05:16.5611002Z [1900/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\concat_fusion.cpp.obj 2025-06-01T21:05:16.5789173Z [1901/7110] 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-06-01T21:05:16.8987172Z [1902/7110] 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-06-01T21:05:17.1863763Z [1903/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\convtranspose_fusion.cpp.obj 2025-06-01T21:05:17.3714322Z [1904/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\interpolate_fusion.cpp.obj 2025-06-01T21:05:17.4083864Z [1905/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\eltwise_fusion.cpp.obj 2025-06-01T21:05:17.4107491Z [1906/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\groupnorm_fusion.cpp.obj 2025-06-01T21:05:17.4549341Z [1907/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\layernorm_fusion.cpp.obj 2025-06-01T21:05:17.6898470Z [1908/7110] 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-06-01T21:05:17.7209560Z [1909/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\mlp.cpp.obj 2025-06-01T21:05:18.0432988Z [1910/7110] 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-06-01T21:05:18.3294238Z [1911/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\quantize_fusion.cpp.obj 2025-06-01T21:05:18.3675800Z [1912/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\reduction_fusion.cpp.obj 2025-06-01T21:05:18.4818669Z [1913/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\sdp.cpp.obj 2025-06-01T21:05:18.4912733Z [1914/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\reorder_fusion.cpp.obj 2025-06-01T21:05:18.5412225Z [1915/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\shuffle_fusion.cpp.obj 2025-06-01T21:05:18.5534657Z [1916/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\ocl_usm_utils.cpp.obj 2025-06-01T21:05:18.6540944Z [1917/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\debug.cpp.obj 2025-06-01T21:05:18.6733132Z [1918/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\id.cpp.obj 2025-06-01T21:05:18.7221211Z [1919/7110] 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-06-01T21:05:18.7235872Z [1920/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\alloc.cpp.obj 2025-06-01T21:05:18.7352838Z [1921/7110] 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-06-01T21:05:19.0684040Z [1922/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\sum_fusion.cpp.obj 2025-06-01T21:05:19.2663509Z [1923/7110] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_api.dir\src\ThreadUtil.cpp.obj 2025-06-01T21:05:19.2664975Z C:\actions-runner\_work\pytorch\pytorch\third_party\kineto\libkineto\src\ThreadUtil.cpp(21): warning C4005: 'WIN32_LEAN_AND_MEAN': macro redefinition 2025-06-01T21:05:19.2666151Z C:\actions-runner\_work\pytorch\pytorch\third_party\kineto\libkineto\src\ThreadUtil.cpp: note: see previous definition of 'WIN32_LEAN_AND_MEAN' 2025-06-01T21:05:19.2667207Z C:\actions-runner\_work\pytorch\pytorch\third_party\kineto\libkineto\src\ThreadUtil.cpp(22): warning C4005: 'NOGDI': macro redefinition 2025-06-01T21:05:19.3521266Z C:\actions-runner\_work\pytorch\pytorch\third_party\kineto\libkineto\src\ThreadUtil.cpp: note: see previous definition of 'NOGDI' 2025-06-01T21:05:19.3522608Z [1924/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\pm\nested_matcher.cpp.obj 2025-06-01T21:05:19.3903876Z [1925/7110] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_api.dir\src\libkineto_api.cpp.obj 2025-06-01T21:05:19.4588745Z [1926/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\utils.cpp.obj 2025-06-01T21:05:19.4613659Z [1927/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\pm\pass_base.cpp.obj 2025-06-01T21:05:19.6030304Z [1928/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\pm\pbuilder.cpp.obj 2025-06-01T21:05:19.6222081Z [1929/7110] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\AbstractConfig.cpp.obj 2025-06-01T21:05:19.6664527Z [1930/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\verbose.cpp.obj 2025-06-01T21:05:19.6735739Z [1931/7110] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\ApproximateClock.cpp.obj 2025-06-01T21:05:19.7399561Z [1932/7110] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\pm\pass_manager.cpp.obj 2025-06-01T21:05:19.7496675Z [1933/7110] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiActivityProfiler.cpp.obj 2025-06-01T21:05:19.8345663Z [1934/7110] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\DaemonConfigLoader.cpp.obj 2025-06-01T21:05:19.8774466Z [1935/7110] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\ActivityProfilerController.cpp.obj 2025-06-01T21:05:19.8840600Z [1936/7110] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\ActivityProfilerProxy.cpp.obj 2025-06-01T21:05:19.9022324Z [1937/7110] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\Demangle.cpp.obj 2025-06-01T21:05:19.9306676Z [1938/7110] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\ActivityType.cpp.obj 2025-06-01T21:05:19.9821360Z [1939/7110] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiActivityApi.cpp.obj 2025-06-01T21:05:19.9974935Z [1940/7110] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\ConfigLoader.cpp.obj 2025-06-01T21:05:19.9985385Z [1941/7110] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\IpcFabricConfigClient.cpp.obj 2025-06-01T21:05:20.0055575Z [1942/7110] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\Config.cpp.obj 2025-06-01T21:05:20.1430510Z [1943/7110] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\DeviceUtil.cpp.obj 2025-06-01T21:05:20.2030139Z [1944/7110] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\GenericTraceActivity.cpp.obj 2025-06-01T21:05:20.2089575Z [1945/7110] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\DeviceProperties.cpp.obj 2025-06-01T21:05:20.2198477Z [1946/7110] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\LoggingAPI.cpp.obj 2025-06-01T21:05:20.2356457Z [1947/7110] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\ILoggerObserver.cpp.obj 2025-06-01T21:05:20.2368710Z [1948/7110] Linking CXX static library lib\mimalloc.lib 2025-06-01T21:05:20.2829116Z [1949/7110] Building CXX object c10\CMakeFiles\c10.dir\core\AutogradState.cpp.obj 2025-06-01T21:05:20.3263244Z [1950/7110] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\init.cpp.obj 2025-06-01T21:05:20.3624375Z [1951/7110] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\Logger.cpp.obj 2025-06-01T21:05:20.4131907Z [1952/7110] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\output_csv.cpp.obj 2025-06-01T21:05:20.5152514Z [1953/7110] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\output_json.cpp.obj 2025-06-01T21:05:20.6861447Z [1954/7110] Building CXX object c10\CMakeFiles\c10.dir\core\Allocator.cpp.obj 2025-06-01T21:05:20.6910922Z [1955/7110] Building CXX object c10\CMakeFiles\c10.dir\core\CopyBytes.cpp.obj 2025-06-01T21:05:20.7642759Z [1956/7110] Building CXX object c10\CMakeFiles\c10.dir\core\ConstantSymNodeImpl.cpp.obj 2025-06-01T21:05:20.7735920Z [1957/7110] Building CXX object c10\CMakeFiles\c10.dir\core\CPUAllocator.cpp.obj 2025-06-01T21:05:20.8427483Z [1958/7110] Building CXX object c10\CMakeFiles\c10.dir\core\DefaultDtype.cpp.obj 2025-06-01T21:05:20.8711175Z [1959/7110] Building CXX object c10\CMakeFiles\c10.dir\core\Device.cpp.obj 2025-06-01T21:05:20.8937877Z [1960/7110] Building CXX object c10\CMakeFiles\c10.dir\core\DeviceType.cpp.obj 2025-06-01T21:05:20.9235351Z [1961/7110] Building CXX object c10\CMakeFiles\c10.dir\core\GradMode.cpp.obj 2025-06-01T21:05:20.9797131Z [1962/7110] Building CXX object c10\CMakeFiles\c10.dir\core\DispatchKey.cpp.obj 2025-06-01T21:05:21.1302886Z [1963/7110] Building CXX object c10\CMakeFiles\c10.dir\core\DispatchKeySet.cpp.obj 2025-06-01T21:05:21.1482084Z [1964/7110] Building CXX object c10\CMakeFiles\c10.dir\core\InferenceMode.cpp.obj 2025-06-01T21:05:21.2535445Z [1965/7110] Building CXX object c10\CMakeFiles\c10.dir\core\GeneratorImpl.cpp.obj 2025-06-01T21:05:21.3403554Z [1966/7110] Building CXX object c10\CMakeFiles\c10.dir\core\SafePyObject.cpp.obj 2025-06-01T21:05:21.4031377Z [1967/7110] Building CXX object c10\CMakeFiles\c10.dir\core\RefcountedDeleter.cpp.obj 2025-06-01T21:05:21.4542145Z [1968/7110] Building CXX object c10\CMakeFiles\c10.dir\core\Scalar.cpp.obj 2025-06-01T21:05:21.5402364Z [1969/7110] Building CXX object c10\CMakeFiles\c10.dir\core\ScalarType.cpp.obj 2025-06-01T21:05:21.6165774Z [1970/7110] Building CXX object c10\CMakeFiles\c10.dir\core\Storage.cpp.obj 2025-06-01T21:05:21.6666383Z [1971/7110] Building CXX object c10\CMakeFiles\c10.dir\core\Stream.cpp.obj 2025-06-01T21:05:21.7740857Z [1972/7110] Building CXX object c10\CMakeFiles\c10.dir\core\StorageImpl.cpp.obj 2025-06-01T21:05:21.8559809Z [1973/7110] Building CXX object c10\CMakeFiles\c10.dir\core\SymBool.cpp.obj 2025-06-01T21:05:21.9293825Z [1974/7110] Building CXX object c10\CMakeFiles\c10.dir\core\SymFloat.cpp.obj 2025-06-01T21:05:21.9867049Z [1975/7110] Building CXX object c10\CMakeFiles\c10.dir\core\SymInt.cpp.obj 2025-06-01T21:05:22.0778879Z [1976/7110] Building CXX object c10\CMakeFiles\c10.dir\core\SymIntArrayRef.cpp.obj 2025-06-01T21:05:22.1581317Z [1977/7110] Building CXX object c10\CMakeFiles\c10.dir\core\SymNodeImpl.cpp.obj 2025-06-01T21:05:22.2328197Z [1978/7110] Building CXX object c10\CMakeFiles\c10.dir\core\SymbolicShapeMeta.cpp.obj 2025-06-01T21:05:22.3134273Z [1979/7110] Building CXX object c10\CMakeFiles\c10.dir\core\TensorImpl.cpp.obj 2025-06-01T21:05:22.3923388Z [1980/7110] Building CXX object c10\CMakeFiles\c10.dir\core\TensorOptions.cpp.obj 2025-06-01T21:05:22.4851850Z [1981/7110] Building CXX object c10\CMakeFiles\c10.dir\core\WrapDimMinimal.cpp.obj 2025-06-01T21:05:22.5094489Z [1982/7110] Building CXX object c10\CMakeFiles\c10.dir\core\impl\DeviceGuardImplInterface.cpp.obj 2025-06-01T21:05:22.5185077Z [1983/7110] Building CXX object c10\CMakeFiles\c10.dir\core\UndefinedTensorImpl.cpp.obj 2025-06-01T21:05:22.5197556Z [1984/7110] Building CXX object c10\CMakeFiles\c10.dir\core\impl\COWDeleter.cpp.obj 2025-06-01T21:05:22.5286262Z [1985/7110] Building CXX object c10\CMakeFiles\c10.dir\core\impl\HermeticPyObjectTLS.cpp.obj 2025-06-01T21:05:22.5724793Z [1986/7110] Building CXX object c10\CMakeFiles\c10.dir\core\impl\COW.cpp.obj 2025-06-01T21:05:22.6386901Z [1987/7110] Building CXX object c10\CMakeFiles\c10.dir\core\impl\GPUTrace.cpp.obj 2025-06-01T21:05:22.7519882Z [1988/7110] Building CXX object c10\CMakeFiles\c10.dir\core\impl\LocalDispatchKeySet.cpp.obj 2025-06-01T21:05:22.9274950Z [1989/7110] Building CXX object c10\CMakeFiles\c10.dir\core\impl\SizesAndStrides.cpp.obj 2025-06-01T21:05:22.9755925Z [1990/7110] Building CXX object c10\CMakeFiles\c10.dir\core\impl\PythonDispatcherTLS.cpp.obj 2025-06-01T21:05:22.9893333Z [1991/7110] Building CXX object c10\CMakeFiles\c10.dir\core\impl\TorchDispatchModeTLS.cpp.obj 2025-06-01T21:05:23.0370601Z [1992/7110] Building CXX object c10\CMakeFiles\c10.dir\core\impl\PyObjectSlot.cpp.obj 2025-06-01T21:05:23.0490057Z 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-06-01T21:05:23.0490920Z [1993/7110] Building CXX object c10\CMakeFiles\c10.dir\core\impl\alloc_cpu.cpp.obj 2025-06-01T21:05:23.0665378Z [1994/7110] Building CXX object c10\CMakeFiles\c10.dir\core\impl\PyInterpreter.cpp.obj 2025-06-01T21:05:23.1278703Z [1995/7110] Building CXX object c10\CMakeFiles\c10.dir\core\thread_pool.cpp.obj 2025-06-01T21:05:23.1900840Z [1996/7110] Building CXX object c10\CMakeFiles\c10.dir\mobile\CPUCachingAllocator.cpp.obj 2025-06-01T21:05:23.3143493Z [1997/7110] Building CXX object c10\CMakeFiles\c10.dir\util\Bfloat16.cpp.obj 2025-06-01T21:05:23.3507323Z [1998/7110] Building CXX object c10\CMakeFiles\c10.dir\util\C++17.cpp.obj 2025-06-01T21:05:23.3579219Z [1999/7110] Building CXX object c10\CMakeFiles\c10.dir\mobile\CPUProfilingAllocator.cpp.obj 2025-06-01T21:05:23.4155628Z [2000/7110] Building CXX object c10\CMakeFiles\c10.dir\util\DeadlockDetection.cpp.obj 2025-06-01T21:05:23.4551868Z [2001/7110] Building CXX object c10\CMakeFiles\c10.dir\util\DynamicCounter.cpp.obj 2025-06-01T21:05:23.4614380Z [2002/7110] Building CXX object c10\CMakeFiles\c10.dir\util\ApproximateClock.cpp.obj 2025-06-01T21:05:23.6122825Z [2003/7110] Building CXX object c10\CMakeFiles\c10.dir\util\Float8_e4m3fnuz.cpp.obj 2025-06-01T21:05:23.6393491Z [2004/7110] Building CXX object c10\CMakeFiles\c10.dir\util\Float8_e4m3fn.cpp.obj 2025-06-01T21:05:23.6465701Z [2005/7110] Building CXX object c10\CMakeFiles\c10.dir\util\Exception.cpp.obj 2025-06-01T21:05:23.7024861Z [2006/7110] Building CXX object c10\CMakeFiles\c10.dir\util\Float8_e5m2.cpp.obj 2025-06-01T21:05:23.7114565Z [2007/7110] Building CXX object c10\CMakeFiles\c10.dir\util\Float8_e5m2fnuz.cpp.obj 2025-06-01T21:05:23.7687944Z [2008/7110] Building CXX object c10\CMakeFiles\c10.dir\util\Float8_e8m0fnu.cpp.obj 2025-06-01T21:05:23.8266718Z [2009/7110] Building CXX object c10\CMakeFiles\c10.dir\util\Gauge.cpp.obj 2025-06-01T21:05:23.9183861Z [2010/7110] Building CXX object c10\CMakeFiles\c10.dir\util\Half.cpp.obj 2025-06-01T21:05:23.9557921Z [2011/7110] Building CXX object c10\CMakeFiles\c10.dir\util\Backtrace.cpp.obj 2025-06-01T21:05:23.9620781Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:05:23.9621611Z [2012/7110] Building CXX object c10\CMakeFiles\c10.dir\util\LeftRight.cpp.obj 2025-06-01T21:05:23.9894840Z [2013/7110] Building CXX object c10\CMakeFiles\c10.dir\util\Metaprogramming.cpp.obj 2025-06-01T21:05:24.0248462Z [2014/7110] Building CXX object c10\CMakeFiles\c10.dir\util\ParallelGuard.cpp.obj 2025-06-01T21:05:24.0575338Z [2015/7110] Building CXX object c10\CMakeFiles\c10.dir\util\MathConstants.cpp.obj 2025-06-01T21:05:24.0954305Z [2016/7110] Building CXX object c10\CMakeFiles\c10.dir\util\Optional.cpp.obj 2025-06-01T21:05:24.1262033Z [2017/7110] Building CXX object c10\CMakeFiles\c10.dir\util\Logging.cpp.obj 2025-06-01T21:05:24.1694649Z [2018/7110] Building CXX object c10\CMakeFiles\c10.dir\util\NetworkFlow.cpp.obj 2025-06-01T21:05:24.2863014Z [2019/7110] Building CXX object c10\CMakeFiles\c10.dir\util\SmallVector.cpp.obj 2025-06-01T21:05:24.3671635Z [2020/7110] Building CXX object c10\CMakeFiles\c10.dir\util\TypeCast.cpp.obj 2025-06-01T21:05:24.3721465Z [2021/7110] Building CXX object c10\CMakeFiles\c10.dir\util\TypeList.cpp.obj 2025-06-01T21:05:24.3865721Z [2022/7110] Building CXX object c10\CMakeFiles\c10.dir\util\TypeTraits.cpp.obj 2025-06-01T21:05:24.4141997Z [2023/7110] Building CXX object c10\CMakeFiles\c10.dir\util\Type_demangle.cpp.obj 2025-06-01T21:05:24.4216929Z [2024/7110] Building CXX object c10\CMakeFiles\c10.dir\util\Type_no_demangle.cpp.obj 2025-06-01T21:05:24.4968438Z [2025/7110] Building CXX object c10\CMakeFiles\c10.dir\util\ThreadLocalDebugInfo.cpp.obj 2025-06-01T21:05:24.5958684Z [2026/7110] Building CXX object c10\CMakeFiles\c10.dir\util\flags_use_gflags.cpp.obj 2025-06-01T21:05:24.6049765Z [2027/7110] Building CXX object c10\CMakeFiles\c10.dir\util\UniqueVoidPtr.cpp.obj 2025-06-01T21:05:24.6811068Z [2028/7110] Building CXX object c10\CMakeFiles\c10.dir\util\StringUtil.cpp.obj 2025-06-01T21:05:24.6984272Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:05:24.6985780Z [2029/7110] Building CXX object c10\CMakeFiles\c10.dir\util\WaitCounter.cpp.obj 2025-06-01T21:05:24.7114885Z [2030/7110] Building CXX object c10\CMakeFiles\c10.dir\util\complex_math.cpp.obj 2025-06-01T21:05:24.7453196Z [2031/7110] Building CXX object c10\CMakeFiles\c10.dir\util\error.cpp.obj 2025-06-01T21:05:24.8970711Z [2032/7110] Building CXX object c10\CMakeFiles\c10.dir\util\env.cpp.obj 2025-06-01T21:05:24.9359449Z [2033/7110] Building CXX object c10\CMakeFiles\c10.dir\util\flags_use_no_gflags.cpp.obj 2025-06-01T21:05:24.9777700Z [2034/7110] Building CXX object c10\CMakeFiles\c10.dir\util\Unicode.cpp.obj 2025-06-01T21:05:25.0260237Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:05:25.0261779Z [2035/7110] Building CXX object c10\CMakeFiles\c10.dir\util\int128.cpp.obj 2025-06-01T21:05:25.0370085Z [2036/7110] Building CXX object c10\CMakeFiles\c10.dir\util\intrusive_ptr.cpp.obj 2025-06-01T21:05:25.1435419Z [2037/7110] Building CXX object c10\CMakeFiles\c10.dir\util\numa.cpp.obj 2025-06-01T21:05:25.1730193Z [2038/7110] Building CXX object c10\CMakeFiles\c10.dir\util\signal_handler.cpp.obj 2025-06-01T21:05:25.1742472Z [2039/7110] Building CXX object c10\CMakeFiles\c10.dir\util\thread_name.cpp.obj 2025-06-01T21:05:25.1794078Z [2040/7110] Building C object sleef\src\libm\CMakeFiles\sleefavx512fnofma.dir\sleefsimdsp.c.obj 2025-06-01T21:05:25.1975749Z [2041/7110] Building C object sleef\src\libm\CMakeFiles\sleefavx512fnofma.dir\sleefsimddp.c.obj 2025-06-01T21:05:25.2759342Z [2042/7110] Building C object sleef\src\libm\CMakeFiles\sleefdetavx512fnofma.dir\sleefsimdsp.c.obj 2025-06-01T21:05:25.2922674Z [2043/7110] Building C object sleef\src\libm\CMakeFiles\sleefavx512f.dir\sleefsimdsp.c.obj 2025-06-01T21:05:25.2967544Z [2044/7110] Building C object sleef\src\libm\CMakeFiles\sleefdetavx512fnofma.dir\sleefsimddp.c.obj 2025-06-01T21:05:25.3050201Z [2045/7110] Building C object sleef\src\libm\CMakeFiles\sleefdetavx512f.dir\sleefsimdsp.c.obj 2025-06-01T21:05:25.3354620Z [2046/7110] Building C object sleef\src\libm\CMakeFiles\sleefavx512f.dir\sleefsimddp.c.obj 2025-06-01T21:05:25.4001813Z [2047/7110] Building C object sleef\src\libm\CMakeFiles\sleefavx2.dir\sleefsimdsp.c.obj 2025-06-01T21:05:25.4306125Z [2048/7110] Building C object sleef\src\libm\CMakeFiles\sleefdetavx2.dir\sleefsimdsp.c.obj 2025-06-01T21:05:25.4387278Z [2049/7110] Building CXX object c10\CMakeFiles\c10.dir\util\typeid.cpp.obj 2025-06-01T21:05:25.4399791Z [2050/7110] Building C object sleef\src\libm\CMakeFiles\sleefdetavx2.dir\sleefsimddp.c.obj 2025-06-01T21:05:25.4516070Z [2051/7110] Building C object sleef\src\libm\CMakeFiles\sleefdetavx512f.dir\sleefsimddp.c.obj 2025-06-01T21:05:25.4565055Z [2052/7110] Building C object sleef\src\libm\CMakeFiles\sleefavx2.dir\sleefsimddp.c.obj 2025-06-01T21:05:25.4901444Z [2053/7110] Building C object sleef\src\libm\CMakeFiles\sleefavx2128.dir\sleefsimdsp.c.obj 2025-06-01T21:05:25.5564178Z [2054/7110] Building C object sleef\src\libm\CMakeFiles\sleefdetavx2128.dir\sleefsimdsp.c.obj 2025-06-01T21:05:25.5773952Z [2055/7110] Building C object sleef\src\libm\CMakeFiles\sleefdetavx2128.dir\sleefsimddp.c.obj 2025-06-01T21:05:25.5843805Z [2056/7110] Building C object sleef\src\libm\CMakeFiles\sleefdetfma4.dir\sleefsimdsp.c.obj 2025-06-01T21:05:25.6035564Z [2057/7110] Building C object sleef\src\libm\CMakeFiles\sleeffma4.dir\sleefsimdsp.c.obj 2025-06-01T21:05:25.6099820Z [2058/7110] Building C object sleef\src\libm\CMakeFiles\sleeffma4.dir\sleefsimddp.c.obj 2025-06-01T21:05:25.6147678Z [2059/7110] Building C object sleef\src\libm\CMakeFiles\sleefavx2128.dir\sleefsimddp.c.obj 2025-06-01T21:05:25.6411572Z [2060/7110] Building CXX object c10\CMakeFiles\c10.dir\util\tempfile.cpp.obj 2025-06-01T21:05:25.6651792Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:05:25.6653413Z [2061/7110] Building C object sleef\src\libm\CMakeFiles\sleefdetfma4.dir\sleefsimddp.c.obj 2025-06-01T21:05:25.6943745Z [2062/7110] Building C object sleef\src\libm\CMakeFiles\sleefdetavx.dir\sleefsimdsp.c.obj 2025-06-01T21:05:25.7239119Z [2063/7110] Building C object sleef\src\libm\CMakeFiles\sleefavx.dir\sleefsimddp.c.obj 2025-06-01T21:05:25.7344239Z [2064/7110] Building C object sleef\src\libm\CMakeFiles\sleefavx.dir\sleefsimdsp.c.obj 2025-06-01T21:05:25.7362886Z [2065/7110] Building C object sleef\src\libm\CMakeFiles\sleefdetavx.dir\sleefsimddp.c.obj 2025-06-01T21:05:25.7517937Z [2066/7110] Building C object sleef\src\libm\CMakeFiles\sleefsse4.dir\sleefsimdsp.c.obj 2025-06-01T21:05:25.7665553Z [2067/7110] Building C object sleef\src\libm\CMakeFiles\sleefdetsse4.dir\sleefsimdsp.c.obj 2025-06-01T21:05:25.8137706Z [2068/7110] Building C object sleef\src\libm\CMakeFiles\sleefdetsse4.dir\sleefsimddp.c.obj 2025-06-01T21:05:25.8438887Z [2069/7110] Building C object sleef\src\libm\CMakeFiles\sleefsse4.dir\sleefsimddp.c.obj 2025-06-01T21:05:25.8511169Z [2070/7110] Building C object sleef\src\libm\CMakeFiles\sleefdetsse2.dir\sleefsimdsp.c.obj 2025-06-01T21:05:25.8916253Z [2071/7110] Building C object sleef\src\libm\CMakeFiles\sleefpurec_scalar.dir\sleefsimdsp.c.obj 2025-06-01T21:05:25.8960000Z [2072/7110] Building C object sleef\src\libm\CMakeFiles\sleefsse2.dir\sleefsimddp.c.obj 2025-06-01T21:05:25.9084934Z [2073/7110] Building C object sleef\src\libm\CMakeFiles\sleefsse2.dir\sleefsimdsp.c.obj 2025-06-01T21:05:25.9224321Z [2074/7110] Building C object sleef\src\libm\CMakeFiles\sleefdetpurec_scalar.dir\sleefsimdsp.c.obj 2025-06-01T21:05:25.9273726Z [2075/7110] Building C object sleef\src\libm\CMakeFiles\sleefdetpurec_scalar.dir\sleefsimddp.c.obj 2025-06-01T21:05:25.9339214Z [2076/7110] Building C object sleef\src\libm\CMakeFiles\sleefdetsse2.dir\sleefsimddp.c.obj 2025-06-01T21:05:25.9751742Z [2077/7110] Building C object sleef\src\libm\CMakeFiles\sleefpurecfma_scalar.dir\sleefsimdsp.c.obj 2025-06-01T21:05:25.9849381Z [2078/7110] Building C object sleef\src\libm\CMakeFiles\sleefpurec_scalar.dir\sleefsimddp.c.obj 2025-06-01T21:05:25.9909050Z [2079/7110] Building C object sleef\src\libm\CMakeFiles\sleefdetpurecfma_scalar.dir\sleefsimdsp.c.obj 2025-06-01T21:05:26.0062834Z [2080/7110] Building C object sleef\src\libm\CMakeFiles\sleef.dir\rempitab.c.obj 2025-06-01T21:05:26.0208812Z [2081/7110] Building C object sleef\src\libm\CMakeFiles\dispscalar_obj.dir\dispscalar.c.obj 2025-06-01T21:05:26.0565738Z [2082/7110] Building C object sleef\src\libm\CMakeFiles\sleefpurecfma_scalar.dir\sleefsimddp.c.obj 2025-06-01T21:05:26.0608600Z [2083/7110] Building C object sleef\src\libm\CMakeFiles\sleefdetpurecfma_scalar.dir\sleefsimddp.c.obj 2025-06-01T21:05:26.0651808Z [2084/7110] Linking CXX static library lib\XNNPACK.lib 2025-06-01T21:05:26.0816091Z [2085/7110] Building C object sleef\src\libm\CMakeFiles\dispsse_obj.dir\dispsse.c.obj 2025-06-01T21:05:26.0832701Z [2086/7110] Building C object sleef\src\common\CMakeFiles\common.dir\common.c.obj 2025-06-01T21:05:26.0842708Z [2087/7110] Linking C static library lib\libittnotify.lib 2025-06-01T21:05:26.1154710Z [2088/7110] Linking CXX static library lib\gloo.lib 2025-06-01T21:05:26.1581118Z [2089/7110] Building C object sleef\src\libm\CMakeFiles\dispavx_obj.dir\dispavx.c.obj 2025-06-01T21:05:26.1927323Z [2090/7110] Linking CXX static library lib\kineto.lib 2025-06-01T21:05:26.2342223Z [2091/7110] Linking C static library sleef\lib\sleef.lib 2025-06-01T21:05:26.6107806Z [2092/7110] Building CXX object third_party\googletest\googletest\CMakeFiles\gtest.dir\src\gtest-all.cc.obj 2025-06-01T21:05:26.6832274Z [2093/7110] Linking CXX static library lib\onnx.lib 2025-06-01T21:05:26.7723119Z [2094/7110] Linking CXX shared library bin\fbgemm.dll 2025-06-01T21:05:26.8820124Z [2095/7110] Generating C:/actions-runner/_work/pytorch/pytorch/torch/utils/data/datapipes/datapipe.pyi 2025-06-01T21:05:26.8923848Z [2096/7110] Linking CXX shared library bin\c10.dll 2025-06-01T21:05:26.9495808Z [2097/7110] Linking CXX static library lib\gtest.lib 2025-06-01T21:05:27.2485117Z [2098/7110] Building CXX object third_party\googletest\googlemock\CMakeFiles\gmock.dir\src\gmock-all.cc.obj 2025-06-01T21:05:27.2524283Z [2099/7110] Regenerating version file... 2025-06-01T21:05:27.2623842Z [2100/7110] Building CXX object third_party\googletest\googletest\CMakeFiles\gtest_main.dir\src\gtest_main.cc.obj 2025-06-01T21:05:27.3293759Z [2101/7110] Building CXX object third_party\googletest\googlemock\CMakeFiles\gmock.dir\__\googletest\src\gtest-all.cc.obj 2025-06-01T21:05:27.6073435Z [2102/7110] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\benchmark_name.cc.obj 2025-06-01T21:05:27.8280717Z [2103/7110] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\benchmark_api_internal.cc.obj 2025-06-01T21:05:27.9728774Z [2104/7110] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\benchmark.cc.obj 2025-06-01T21:05:27.9757581Z [2105/7110] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\benchmark_register.cc.obj 2025-06-01T21:05:28.1374860Z [2106/7110] Generating sources 2025-06-01T21:05:28.2680791Z [2107/7110] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\benchmark_runner.cc.obj 2025-06-01T21:05:28.3192302Z [2108/7110] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\check.cc.obj 2025-06-01T21:05:28.4924563Z [2109/7110] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\colorprint.cc.obj 2025-06-01T21:05:28.5491285Z [2110/7110] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\counter.cc.obj 2025-06-01T21:05:28.5880446Z [2111/7110] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\commandlineflags.cc.obj 2025-06-01T21:05:28.7399471Z [2112/7110] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\complexity.cc.obj 2025-06-01T21:05:28.7958761Z [2113/7110] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\console_reporter.cc.obj 2025-06-01T21:05:29.0590594Z [2114/7110] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\csv_reporter.cc.obj 2025-06-01T21:05:29.1009427Z [2115/7110] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\perf_counters.cc.obj 2025-06-01T21:05:29.1232490Z [2116/7110] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\json_reporter.cc.obj 2025-06-01T21:05:29.2813655Z [2117/7110] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\reporter.cc.obj 2025-06-01T21:05:29.3304661Z [2118/7110] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\statistics.cc.obj 2025-06-01T21:05:29.5521968Z [2119/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\any_lite.cc.obj 2025-06-01T21:05:29.5863884Z [2120/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\arena.cc.obj 2025-06-01T21:05:29.8049945Z [2121/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\generated_enum_util.cc.obj 2025-06-01T21:05:29.8633389Z [2122/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\extension_set.cc.obj 2025-06-01T21:05:30.0477591Z [2123/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\generated_message_table_driven_lite.cc.obj 2025-06-01T21:05:30.1253140Z [2124/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\generated_message_util.cc.obj 2025-06-01T21:05:30.2850602Z [2125/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\implicit_weak_message.cc.obj 2025-06-01T21:05:30.3509900Z [2126/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\io\coded_stream.cc.obj 2025-06-01T21:05:30.5559959Z [2127/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\io\strtod.cc.obj 2025-06-01T21:05:30.5723563Z [2128/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\io\io_win32.cc.obj 2025-06-01T21:05:31.0878990Z [2129/7110] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\string_util.cc.obj 2025-06-01T21:05:31.1659315Z [2130/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\io\zero_copy_stream.cc.obj 2025-06-01T21:05:31.1672958Z [2131/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\io\zero_copy_stream_impl.cc.obj 2025-06-01T21:05:31.3720154Z [2132/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\io\zero_copy_stream_impl_lite.cc.obj 2025-06-01T21:05:31.4167670Z [2133/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\parse_context.cc.obj 2025-06-01T21:05:31.4239016Z [2134/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\message_lite.cc.obj 2025-06-01T21:05:31.5090190Z [2135/7110] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\timers.cc.obj 2025-06-01T21:05:31.6482559Z [2136/7110] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\sysinfo.cc.obj 2025-06-01T21:05:31.6553521Z [2137/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\bytestream.cc.obj 2025-06-01T21:05:31.7387371Z [2138/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\repeated_field.cc.obj 2025-06-01T21:05:31.7546592Z [2139/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\int128.cc.obj 2025-06-01T21:05:32.4229376Z [2140/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\stringpiece.cc.obj 2025-06-01T21:05:32.4245171Z [2141/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\common.cc.obj 2025-06-01T21:05:32.4257330Z [2142/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\statusor.cc.obj 2025-06-01T21:05:32.4269899Z [2143/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\stringprintf.cc.obj 2025-06-01T21:05:32.4283279Z [2144/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\status.cc.obj 2025-06-01T21:05:32.4876964Z [2145/7110] Building RC object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\version.rc.res 2025-06-01T21:05:32.5179425Z Microsoft (R) Windows (R) Resource Compiler Version 10.0.10011.16384 2025-06-01T21:05:32.5181318Z 2025-06-01T21:05:32.5181362Z 2025-06-01T21:05:32.5181750Z Copyright (C) Microsoft Corporation. All rights reserved. 2025-06-01T21:05:32.5182270Z 2025-06-01T21:05:32.5182316Z 2025-06-01T21:05:32.5182322Z 2025-06-01T21:05:32.5182327Z 2025-06-01T21:05:32.5182544Z [2146/7110] Linking CXX static library lib\dnnl.lib 2025-06-01T21:05:32.6708654Z [2147/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\structurally_valid.cc.obj 2025-06-01T21:05:32.6831059Z [2148/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\strutil.cc.obj 2025-06-01T21:05:32.6852404Z [2149/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\time.cc.obj 2025-06-01T21:05:32.7205694Z [2150/7110] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\wire_format_lite.cc.obj 2025-06-01T21:05:32.7881056Z [2151/7110] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\init.c.obj 2025-06-01T21:05:32.7894671Z [2152/7110] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\info.c.obj 2025-06-01T21:05:32.8183141Z [2153/7110] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\api.c.obj 2025-06-01T21:05:32.8573235Z [2154/7110] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\vendor.c.obj 2025-06-01T21:05:32.8753577Z [2155/7110] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\uarch.c.obj 2025-06-01T21:05:32.8856583Z [2156/7110] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\cache.c.obj 2025-06-01T21:05:32.9104201Z [2157/7110] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\name.c.obj 2025-06-01T21:05:32.9703869Z [2158/7110] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\isa.c.obj 2025-06-01T21:05:32.9714259Z [2159/7110] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\cache\descriptor.c.obj 2025-06-01T21:05:32.9865034Z [2160/7110] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\init.c.obj 2025-06-01T21:05:33.0162356Z [2161/7110] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\log.c.obj 2025-06-01T21:05:33.0208009Z [2162/7110] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\topology.c.obj 2025-06-01T21:05:33.0582017Z [2163/7110] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\cache\init.c.obj 2025-06-01T21:05:33.0793680Z [2164/7110] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\cache\deterministic.c.obj 2025-06-01T21:05:33.0993778Z [2165/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-scalar-u2.c.obj 2025-06-01T21:05:33.1227285Z [2166/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-scalar-u3.c.obj 2025-06-01T21:05:33.1385904Z [2167/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-fmagic-u1.c.obj 2025-06-01T21:05:33.1726668Z [2168/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-fmagic-u2.c.obj 2025-06-01T21:05:33.1981295Z [2169/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-fmagic-u4.c.obj 2025-06-01T21:05:33.2187364Z [2170/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-fmagic-u3.c.obj 2025-06-01T21:05:33.2245718Z [2171/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-imagic-u1.c.obj 2025-06-01T21:05:33.2406933Z [2172/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-imagic-u2.c.obj 2025-06-01T21:05:33.2608391Z [2173/7110] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\windows\init.c.obj 2025-06-01T21:05:33.2925149Z [2174/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qu8-vcvt\gen\f16-qu8-vcvt-scalar-imagic-u1.c.obj 2025-06-01T21:05:33.3156823Z [2175/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-imagic-u3.c.obj 2025-06-01T21:05:33.3203864Z [2176/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qu8-vcvt\gen\f16-qu8-vcvt-scalar-imagic-u3.c.obj 2025-06-01T21:05:33.3257347Z [2177/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qu8-vcvt\gen\f16-qu8-vcvt-scalar-imagic-u2.c.obj 2025-06-01T21:05:33.3396160Z [2178/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-scalar-u1.c.obj 2025-06-01T21:05:33.3618767Z [2179/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-scalar-u3-acc3.c.obj 2025-06-01T21:05:33.3932665Z [2180/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-scalar-u4-acc2.c.obj 2025-06-01T21:05:33.4121636Z [2181/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-scalar-u1.c.obj 2025-06-01T21:05:33.4185761Z [2182/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-scalar-u4-acc4.c.obj 2025-06-01T21:05:33.4491812Z [2183/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-scalar-u2-acc2.c.obj 2025-06-01T21:05:33.4649766Z [2184/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-scalar-u3-acc3.c.obj 2025-06-01T21:05:33.4758196Z [2185/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-scalar-u4-acc2.c.obj 2025-06-01T21:05:33.4810160Z [2186/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-scalar-u4-acc4.c.obj 2025-06-01T21:05:33.5161411Z [2187/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-scalar-u1.c.obj 2025-06-01T21:05:33.5217210Z [2188/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-scalar-u3-acc3.c.obj 2025-06-01T21:05:33.5554814Z [2189/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-scalar-u4-acc2.c.obj 2025-06-01T21:05:33.5718231Z [2190/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-conv-hwc\f32-conv-hwc-3x3s2p1c3x4-scalar-1x1.c.obj 2025-06-01T21:05:33.5734008Z [2191/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-scalar-u4-acc4.c.obj 2025-06-01T21:05:33.5997895Z [2192/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-conv-hwc\f32-conv-hwc-3x3s2p0p1c3x4-scalar-1x1.c.obj 2025-06-01T21:05:33.6312700Z [2193/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l1c1s1r-minmax-scalar.c.obj 2025-06-01T21:05:33.6408758Z [2194/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l1c1s1r-minmax-scalar-acc2.c.obj 2025-06-01T21:05:33.6817368Z [2195/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l1c1s1r-scalar.c.obj 2025-06-01T21:05:33.6871138Z [2196/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l1c1s1r-scalar-acc2.c.obj 2025-06-01T21:05:33.7163221Z [2197/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l4c1s1r-minmax-scalar.c.obj 2025-06-01T21:05:33.7229962Z [2198/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l4c1s1r-scalar-acc2.c.obj 2025-06-01T21:05:33.7636713Z [2199/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l4c1s1r-scalar.c.obj 2025-06-01T21:05:33.7866156Z [2200/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3f3m3l1c1s1r-scalar.c.obj 2025-06-01T21:05:33.7914873Z [2201/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3f3m3l1c1s1r-scalar-acc2.c.obj 2025-06-01T21:05:33.7973720Z [2202/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p1c-minmax-scalar.c.obj 2025-06-01T21:05:33.8268306Z [2203/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p1c-scalar.c.obj 2025-06-01T21:05:33.8327939Z [2204/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p2c-minmax-scalar-acc2.c.obj 2025-06-01T21:05:33.8781362Z [2205/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p2c-minmax-scalar.c.obj 2025-06-01T21:05:33.9085445Z [2206/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p2c-scalar.c.obj 2025-06-01T21:05:33.9188356Z [2207/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p2c-scalar-acc2.c.obj 2025-06-01T21:05:33.9561597Z [2208/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p1c-scalar.c.obj 2025-06-01T21:05:33.9728604Z [2209/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p1c-minmax-scalar.c.obj 2025-06-01T21:05:33.9785807Z [2210/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p2c-minmax-scalar-acc2.c.obj 2025-06-01T21:05:33.9798019Z [2211/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p2c-minmax-scalar.c.obj 2025-06-01T21:05:34.0156106Z [2212/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p2c-scalar-acc2.c.obj 2025-06-01T21:05:34.0334416Z [2213/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p2c-scalar.c.obj 2025-06-01T21:05:34.0722569Z [2214/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l1c1s1r-minmax-scalar-acc2.c.obj 2025-06-01T21:05:34.0858157Z [2215/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l1c1s1r-minmax-scalar.c.obj 2025-06-01T21:05:34.0912975Z [2216/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l1c1s1r-scalar-acc2.c.obj 2025-06-01T21:05:34.0962512Z [2217/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l1c1s1r-scalar.c.obj 2025-06-01T21:05:34.1283944Z [2218/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l1c1s1r-minmax-scalar-acc2.c.obj 2025-06-01T21:05:34.1492745Z [2219/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l1c1s1r-minmax-scalar.c.obj 2025-06-01T21:05:34.1966611Z [2220/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l1c1s1r-scalar.c.obj 2025-06-01T21:05:34.2014926Z [2221/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l1c1s1r-scalar-acc2.c.obj 2025-06-01T21:05:34.2161667Z [2222/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l1c1s1r-minmax-scalar.c.obj 2025-06-01T21:05:34.2211837Z [2223/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l1c1s1r-minmax-scalar-acc2.c.obj 2025-06-01T21:05:34.2550007Z [2224/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l1c1s1r-scalar-acc2.c.obj 2025-06-01T21:05:34.2721653Z [2225/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l1c1s1r-scalar.c.obj 2025-06-01T21:05:34.3167514Z [2226/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p1c-minmax-scalar.c.obj 2025-06-01T21:05:34.3325686Z [2227/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p2c-minmax-scalar.c.obj 2025-06-01T21:05:34.3345838Z [2228/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p1c-scalar.c.obj 2025-06-01T21:05:34.3421326Z [2229/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p2c-minmax-scalar-acc2.c.obj 2025-06-01T21:05:34.3664427Z [2230/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p2c-scalar-acc2.c.obj 2025-06-01T21:05:34.4311233Z [2231/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p1c-minmax-scalar.c.obj 2025-06-01T21:05:34.4357453Z [2232/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p2c-scalar.c.obj 2025-06-01T21:05:34.4407128Z [2233/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p1c-scalar.c.obj 2025-06-01T21:05:34.4552528Z [2234/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p2c-minmax-scalar-acc2.c.obj 2025-06-01T21:05:34.4765404Z [2235/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p2c-minmax-scalar.c.obj 2025-06-01T21:05:34.4956307Z [2236/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p2c-scalar-acc2.c.obj 2025-06-01T21:05:34.5526724Z [2237/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p2c-scalar.c.obj 2025-06-01T21:05:34.5585158Z [2238/7110] 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-06-01T21:05:34.5693360Z [2239/7110] 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-06-01T21:05:34.6037522Z [2240/7110] 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-06-01T21:05:34.6085387Z [2241/7110] 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-06-01T21:05:34.6265329Z [2242/7110] 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-06-01T21:05:34.6630407Z [2243/7110] 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-06-01T21:05:34.6711317Z [2244/7110] 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-06-01T21:05:34.6802455Z [2245/7110] 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-06-01T21:05:34.7196435Z [2246/7110] 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-06-01T21:05:34.7454698Z [2247/7110] 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-06-01T21:05:34.7732510Z [2248/7110] 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-06-01T21:05:34.7826165Z [2249/7110] 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-06-01T21:05:34.7943024Z [2250/7110] 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-06-01T21:05:34.8154365Z [2251/7110] 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-06-01T21:05:34.8402339Z [2252/7110] 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-06-01T21:05:34.8506757Z [2253/7110] 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-06-01T21:05:34.8869090Z [2254/7110] 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-06-01T21:05:34.9060901Z [2255/7110] 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-06-01T21:05:34.9275146Z [2256/7110] 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-06-01T21:05:34.9333476Z [2257/7110] 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-06-01T21:05:34.9625924Z [2258/7110] 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-06-01T21:05:34.9869949Z [2259/7110] 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-06-01T21:05:34.9944852Z [2260/7110] 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-06-01T21:05:35.0194805Z [2261/7110] 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-06-01T21:05:35.0460282Z [2262/7110] 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-06-01T21:05:35.0510515Z [2263/7110] 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-06-01T21:05:35.0849431Z [2264/7110] 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-06-01T21:05:35.1085487Z [2265/7110] 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-06-01T21:05:35.1338513Z [2266/7110] 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-06-01T21:05:35.1393485Z [2267/7110] 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-06-01T21:05:35.1734616Z [2268/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-bitcast-u2.c.obj 2025-06-01T21:05:35.1787204Z [2269/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-bitcast-u3.c.obj 2025-06-01T21:05:35.2145967Z [2270/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-fabsf-u1.c.obj 2025-06-01T21:05:35.2160193Z [2271/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-bitcast-u1.c.obj 2025-06-01T21:05:35.2382455Z [2272/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-fabsf-u3.c.obj 2025-06-01T21:05:35.2481330Z [2273/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-fabsf-u4.c.obj 2025-06-01T21:05:35.2923006Z [2274/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x2-relu-scalar.c.obj 2025-06-01T21:05:35.3353589Z [2275/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ibilinear-chw\gen\f32-ibilinear-chw-scalar-p2.c.obj 2025-06-01T21:05:35.3364157Z [2276/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-2x4-minmax-scalar.c.obj 2025-06-01T21:05:35.3471531Z [2277/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x4-minmax-scalar.c.obj 2025-06-01T21:05:35.3519034Z [2278/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x4-minmax-scalar.c.obj 2025-06-01T21:05:35.3755750Z [2279/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ibilinear\gen\f32-ibilinear-scalar-c1.c.obj 2025-06-01T21:05:35.3812415Z [2280/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ibilinear-chw\gen\f32-ibilinear-chw-scalar-p1.c.obj 2025-06-01T21:05:35.4315131Z [2281/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ibilinear\gen\f32-ibilinear-scalar-c4.c.obj 2025-06-01T21:05:35.4439456Z [2282/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ppmm\gen\f32-ppmm-2x4-minmax-scalar.c.obj 2025-06-01T21:05:35.4492008Z [2283/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ppmm\gen\f32-ppmm-3x3-minmax-scalar.c.obj 2025-06-01T21:05:35.4714246Z [2284/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ppmm\gen\f32-ppmm-4x2-minmax-scalar.c.obj 2025-06-01T21:05:35.4726890Z [2285/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ppmm\gen\f32-ppmm-4x4-minmax-scalar.c.obj 2025-06-01T21:05:35.4823148Z [2286/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x2-relu-scalar.c.obj 2025-06-01T21:05:35.5594672Z [2287/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-2x4-minmax-scalar.c.obj 2025-06-01T21:05:35.5810966Z [2288/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-4x2-minmax-scalar.c.obj 2025-06-01T21:05:35.5916020Z [2289/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-1x4-relu-scalar.c.obj 2025-06-01T21:05:35.6018535Z [2290/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-1x4-scalar.c.obj 2025-06-01T21:05:35.6061121Z [2291/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-2x4-minmax-scalar.c.obj 2025-06-01T21:05:35.6656812Z [2292/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-2x4-relu-scalar.c.obj 2025-06-01T21:05:35.6921082Z [2293/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-2x4-scalar.c.obj 2025-06-01T21:05:35.7005400Z [2294/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x2-minmax-scalar.c.obj 2025-06-01T21:05:35.7121605Z [2295/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x2-scalar.c.obj 2025-06-01T21:05:35.7257175Z [2296/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x2-relu-scalar.c.obj 2025-06-01T21:05:35.7435604Z [2297/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x4-relu-scalar.c.obj 2025-06-01T21:05:35.7963946Z [2298/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x4-scalar.c.obj 2025-06-01T21:05:35.8025945Z [2299/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-spmm\gen\f32-qc8w-spmm-1x1-minmax-scalar.c.obj 2025-06-01T21:05:35.8037051Z [2300/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-spmm\gen\f32-qc8w-spmm-2x1-minmax-scalar.c.obj 2025-06-01T21:05:35.8124656Z [2301/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-spmm\gen\f32-qc8w-spmm-4x1-minmax-scalar.c.obj 2025-06-01T21:05:35.8440116Z [2302/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-spmm\gen\f32-qc8w-spmm-8x2-minmax-scalar.c.obj 2025-06-01T21:05:35.8490620Z [2303/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-spmm\gen\f32-qc8w-spmm-8x1-minmax-scalar.c.obj 2025-06-01T21:05:35.9039579Z [2304/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-fmagic-u1.c.obj 2025-06-01T21:05:35.9119345Z [2305/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-fmagic-u3.c.obj 2025-06-01T21:05:35.9381777Z [2306/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-fmagic-u4.c.obj 2025-06-01T21:05:35.9394558Z [2307/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-fmagic-u2.c.obj 2025-06-01T21:05:35.9406056Z [2308/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-spmm\gen\f32-qc8w-spmm-8x4-minmax-scalar.c.obj 2025-06-01T21:05:35.9527483Z [2309/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-imagic-u2.c.obj 2025-06-01T21:05:36.0180867Z [2310/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-imagic-u3.c.obj 2025-06-01T21:05:36.0395807Z [2311/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-lrintf-u2.c.obj 2025-06-01T21:05:36.0484219Z [2312/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-lrintf-u3.c.obj 2025-06-01T21:05:36.0500576Z [2313/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-lrintf-u1.c.obj 2025-06-01T21:05:36.0570000Z [2314/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-fmagic-u2.c.obj 2025-06-01T21:05:36.0630544Z [2315/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-fmagic-u1.c.obj 2025-06-01T21:05:36.1218932Z [2316/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-fmagic-u3.c.obj 2025-06-01T21:05:36.1391485Z [2317/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-fmagic-u4.c.obj 2025-06-01T21:05:36.1552021Z [2318/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-imagic-u3.c.obj 2025-06-01T21:05:36.1606862Z [2319/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-imagic-u2.c.obj 2025-06-01T21:05:36.1794073Z [2320/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-lrintf-u2.c.obj 2025-06-01T21:05:36.2159733Z [2321/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-lrintf-u1.c.obj 2025-06-01T21:05:36.2265156Z [2322/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-lrintf-u3.c.obj 2025-06-01T21:05:36.2347161Z [2323/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-scalar-rr2-lut64-p2-u1.c.obj 2025-06-01T21:05:36.2585132Z [2324/7110] 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-06-01T21:05:36.2631426Z [2325/7110] 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-06-01T21:05:36.2797043Z [2326/7110] 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-06-01T21:05:36.3138392Z [2327/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-scalar-rr2-p5-u1.c.obj 2025-06-01T21:05:36.3719826Z [2328/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-scalar-u3-acc3.c.obj 2025-06-01T21:05:36.3732988Z [2329/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-scalar-u2-acc2.c.obj 2025-06-01T21:05:36.3894684Z [2330/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-scalar-rr2-p5-u4-acc4.c.obj 2025-06-01T21:05:36.3938883Z [2331/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-scalar-u1.c.obj 2025-06-01T21:05:36.4004516Z [2332/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-scalar-rr2-p5-u2-acc2.c.obj 2025-06-01T21:05:36.4294092Z [2333/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-scalar-u4-acc2.c.obj 2025-06-01T21:05:36.4767668Z [2334/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-scalar-u2-acc2.c.obj 2025-06-01T21:05:36.4779187Z [2335/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-scalar-u1.c.obj 2025-06-01T21:05:36.5027314Z [2336/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-scalar-u4-acc2.c.obj 2025-06-01T21:05:36.5085534Z [2337/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-scalar-u4-acc4.c.obj 2025-06-01T21:05:36.5136096Z [2338/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-scalar-u3-acc3.c.obj 2025-06-01T21:05:36.5213762Z [2339/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-scalar-u1.c.obj 2025-06-01T21:05:36.5783407Z [2340/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-scalar-u2-acc2.c.obj 2025-06-01T21:05:36.6112552Z [2341/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-scalar-u4-acc2.c.obj 2025-06-01T21:05:36.6126207Z [2342/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-scalar-u3-acc3.c.obj 2025-06-01T21:05:36.6180649Z [2343/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-scalar-u3-acc3.c.obj 2025-06-01T21:05:36.6194738Z [2344/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-scalar-u1.c.obj 2025-06-01T21:05:36.6251430Z [2345/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-scalar-u2-acc2.c.obj 2025-06-01T21:05:36.6754676Z [2346/7110] 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-06-01T21:05:36.6805237Z [2347/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-scalar-u4-acc2.c.obj 2025-06-01T21:05:36.7087169Z [2348/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-1x1-minmax-scalar.c.obj 2025-06-01T21:05:36.7098381Z [2349/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-1x1-minmax-scalar-pipelined.c.obj 2025-06-01T21:05:36.7282228Z [2350/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-2x1-minmax-scalar-pipelined.c.obj 2025-06-01T21:05:36.7634623Z [2351/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-2x1-minmax-scalar.c.obj 2025-06-01T21:05:36.7685693Z [2352/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-4x1-minmax-scalar.c.obj 2025-06-01T21:05:36.7822714Z [2353/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-8x1-minmax-scalar-pipelined.c.obj 2025-06-01T21:05:36.7836985Z [2354/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-4x1-minmax-scalar-pipelined.c.obj 2025-06-01T21:05:36.8160066Z [2355/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vadd-scalar-u1.c.obj 2025-06-01T21:05:36.8216432Z [2356/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vadd-scalar-u2.c.obj 2025-06-01T21:05:36.8463004Z [2357/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vadd-scalar-u4.c.obj 2025-06-01T21:05:36.8921506Z [2358/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vaddc-scalar-u4.c.obj 2025-06-01T21:05:36.8935800Z [2359/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vaddc-scalar-u1.c.obj 2025-06-01T21:05:36.9003718Z [2360/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdiv-scalar-u1.c.obj 2025-06-01T21:05:36.9019785Z [2361/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vaddc-scalar-u2.c.obj 2025-06-01T21:05:36.9239291Z [2362/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdiv-scalar-u4.c.obj 2025-06-01T21:05:36.9337738Z [2363/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdiv-scalar-u8.c.obj 2025-06-01T21:05:36.9893240Z [2364/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdivc-scalar-u1.c.obj 2025-06-01T21:05:36.9955828Z [2365/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdivc-scalar-u4.c.obj 2025-06-01T21:05:37.0156633Z [2366/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdivc-scalar-u8.c.obj 2025-06-01T21:05:37.0218009Z [2367/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmax-scalar-u1.c.obj 2025-06-01T21:05:37.0430120Z [2368/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmax-scalar-u4.c.obj 2025-06-01T21:05:37.0494889Z [2369/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmax-scalar-u2.c.obj 2025-06-01T21:05:37.0564275Z [2370/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmaxc-scalar-u1.c.obj 2025-06-01T21:05:37.1049720Z [2371/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmaxc-scalar-u4.c.obj 2025-06-01T21:05:37.1104057Z [2372/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmaxc-scalar-u2.c.obj 2025-06-01T21:05:37.1267754Z [2373/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmin-scalar-u2.c.obj 2025-06-01T21:05:37.1370841Z [2374/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmin-scalar-u1.c.obj 2025-06-01T21:05:37.1565902Z [2375/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vminc-scalar-u1.c.obj 2025-06-01T21:05:37.1656855Z [2376/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vminc-scalar-u2.c.obj 2025-06-01T21:05:37.1707138Z [2377/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmin-scalar-u4.c.obj 2025-06-01T21:05:37.2202735Z [2378/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vminc-scalar-u4.c.obj 2025-06-01T21:05:37.2419006Z [2379/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmul-scalar-u2.c.obj 2025-06-01T21:05:37.2431941Z [2380/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmul-scalar-u4.c.obj 2025-06-01T21:05:37.2481620Z [2381/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmul-scalar-u1.c.obj 2025-06-01T21:05:37.2589623Z [2382/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmulc-scalar-u1.c.obj 2025-06-01T21:05:37.2761604Z [2383/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmulc-scalar-u2.c.obj 2025-06-01T21:05:37.2778674Z [2384/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmulc-scalar-u4.c.obj 2025-06-01T21:05:37.3268962Z [2385/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-scalar-u1.c.obj 2025-06-01T21:05:37.3556548Z [2386/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-scalar-u1.c.obj 2025-06-01T21:05:37.3618277Z [2387/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-scalar-u2.c.obj 2025-06-01T21:05:37.3812611Z [2388/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-scalar-u2.c.obj 2025-06-01T21:05:37.3910882Z [2389/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-scalar-u4.c.obj 2025-06-01T21:05:37.3971314Z [2390/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-scalar-u4.c.obj 2025-06-01T21:05:37.4114071Z [2391/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrdivc-scalar-u1.c.obj 2025-06-01T21:05:37.4432244Z [2392/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrdivc-scalar-u4.c.obj 2025-06-01T21:05:37.4635664Z [2393/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrdivc-scalar-u8.c.obj 2025-06-01T21:05:37.4733718Z [2394/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-scalar-u1.c.obj 2025-06-01T21:05:37.5022886Z [2395/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-scalar-u2.c.obj 2025-06-01T21:05:37.5082100Z [2396/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrsubc-scalar-u1.c.obj 2025-06-01T21:05:37.5140525Z [2397/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-scalar-u4.c.obj 2025-06-01T21:05:37.5154369Z [2398/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrsubc-scalar-u2.c.obj 2025-06-01T21:05:37.5507136Z [2399/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrsubc-scalar-u4.c.obj 2025-06-01T21:05:37.5746472Z [2400/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiff-scalar-u1.c.obj 2025-06-01T21:05:37.5869576Z [2401/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiff-scalar-u2.c.obj 2025-06-01T21:05:37.6100972Z [2402/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiff-scalar-u4.c.obj 2025-06-01T21:05:37.6222831Z [2403/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiffc-scalar-u2.c.obj 2025-06-01T21:05:37.6428769Z [2404/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiffc-scalar-u1.c.obj 2025-06-01T21:05:37.6513090Z [2405/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiffc-scalar-u4.c.obj 2025-06-01T21:05:37.6794167Z [2406/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsub-scalar-u1.c.obj 2025-06-01T21:05:37.6874388Z [2407/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsub-scalar-u4.c.obj 2025-06-01T21:05:37.6988859Z [2408/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsub-scalar-u2.c.obj 2025-06-01T21:05:37.7233289Z [2409/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsubc-scalar-u1.c.obj 2025-06-01T21:05:37.7289216Z [2410/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsubc-scalar-u2.c.obj 2025-06-01T21:05:37.7557324Z [2411/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vclamp\gen\f32-vclamp-scalar-u1.c.obj 2025-06-01T21:05:37.7860081Z [2412/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsubc-scalar-u4.c.obj 2025-06-01T21:05:37.8005249Z [2413/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-scalar-u1.c.obj 2025-06-01T21:05:37.8064643Z [2414/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vclamp\gen\f32-vclamp-scalar-u2.c.obj 2025-06-01T21:05:37.8133257Z [2415/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-scalar-u2.c.obj 2025-06-01T21:05:37.8291916Z [2416/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-scalar-u8.c.obj 2025-06-01T21:05:37.8595032Z [2417/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-lut16-p3-u1.c.obj 2025-06-01T21:05:37.8654583Z [2418/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-lut16-p3-u3.c.obj 2025-06-01T21:05:37.9273702Z [2419/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-lut16-p3-u5.c.obj 2025-06-01T21:05:37.9285907Z [2420/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-lut16-p3-u6.c.obj 2025-06-01T21:05:37.9298487Z [2421/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-p6-u2.c.obj 2025-06-01T21:05:37.9361329Z [2422/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-p6-u1.c.obj 2025-06-01T21:05:37.9414401Z [2423/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-p6-u3.c.obj 2025-06-01T21:05:37.9622671Z [2424/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-p6-u4.c.obj 2025-06-01T21:05:37.9682581Z [2425/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-p6-u5.c.obj 2025-06-01T21:05:38.0418481Z [2426/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-p6-u6.c.obj 2025-06-01T21:05:38.0432459Z [2427/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vhswish\gen\f32-vhswish-scalar-u1.c.obj 2025-06-01T21:05:38.0544916Z [2428/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlog\gen\f32-vlog-scalar-log.c.obj 2025-06-01T21:05:38.0598225Z [2429/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vhswish\gen\f32-vhswish-scalar-u2.c.obj 2025-06-01T21:05:38.0710784Z [2430/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-scalar-u2.c.obj 2025-06-01T21:05:38.0725573Z [2431/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-scalar-u1.c.obj 2025-06-01T21:05:38.0779454Z [2432/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vgelu\gen\f32-vgelu-scalar.c.obj 2025-06-01T21:05:38.1653103Z [2433/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-scalar-u2.c.obj 2025-06-01T21:05:38.1696974Z [2434/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vmulcaddc\gen\f32-vmulcaddc-c2-minmax-scalar-2x.c.obj 2025-06-01T21:05:38.1747899Z [2435/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-scalar-u1.c.obj 2025-06-01T21:05:38.1932044Z [2436/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndd-scalar-libm-u2.c.obj 2025-06-01T21:05:38.2007196Z [2437/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndne-scalar-libm-u2.c.obj 2025-06-01T21:05:38.2020096Z [2438/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-scalar-u4.c.obj 2025-06-01T21:05:38.2364484Z [2439/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vmulcaddc\gen\f32-vmulcaddc-c4-minmax-scalar-2x.c.obj 2025-06-01T21:05:38.2842006Z [2440/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndz-scalar-libm-u2.c.obj 2025-06-01T21:05:38.2858684Z [2441/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-scalar-rsqrt-u2.c.obj 2025-06-01T21:05:38.3004241Z [2442/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndu-scalar-libm-u2.c.obj 2025-06-01T21:05:38.3123590Z [2443/7110] 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-06-01T21:05:38.3165215Z [2444/7110] 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-06-01T21:05:38.3439443Z [2445/7110] 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-06-01T21:05:38.3500067Z [2446/7110] 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-06-01T21:05:38.3955975Z [2447/7110] 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-06-01T21:05:38.4136048Z [2448/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-scalar-rr2-p5-div-u2.c.obj 2025-06-01T21:05:38.4182805Z [2449/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-scalar-rr2-p5-div-u1.c.obj 2025-06-01T21:05:38.4377537Z [2450/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-scalar-sqrt-u2.c.obj 2025-06-01T21:05:38.4626270Z [2451/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-scalar-sqrt-u4.c.obj 2025-06-01T21:05:38.4714209Z [2452/7110] 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-06-01T21:05:38.4983927Z [2453/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-scalar-rr2-p5-div-u4.c.obj 2025-06-01T21:05:38.5284950Z [2454/7110] 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-06-01T21:05:38.5360399Z [2455/7110] 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-06-01T21:05:38.5665753Z [2456/7110] 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-06-01T21:05:38.5747912Z [2457/7110] 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-06-01T21:05:38.6007318Z [2458/7110] 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-06-01T21:05:38.6024608Z [2459/7110] 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-06-01T21:05:38.6403149Z [2460/7110] 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-06-01T21:05:38.6610160Z [2461/7110] 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-06-01T21:05:38.6667047Z [2462/7110] 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-06-01T21:05:38.7064274Z [2463/7110] 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-06-01T21:05:38.7300001Z [2464/7110] 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-06-01T21:05:38.7441507Z [2465/7110] 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-06-01T21:05:38.7492949Z [2466/7110] 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-06-01T21:05:38.7848657Z [2467/7110] 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-06-01T21:05:38.8099109Z [2468/7110] 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-06-01T21:05:38.8304894Z [2469/7110] 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-06-01T21:05:38.8360502Z [2470/7110] 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-06-01T21:05:38.8633401Z [2471/7110] 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-06-01T21:05:38.8685112Z [2472/7110] 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-06-01T21:05:38.8790140Z [2473/7110] 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-06-01T21:05:38.9075934Z [2474/7110] 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-06-01T21:05:38.9390581Z [2475/7110] 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-06-01T21:05:38.9619136Z [2476/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:05:38.9680194Z [2477/7110] 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-06-01T21:05:38.9830713Z [2478/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:05:38.9876240Z [2479/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:05:39.0081079Z [2480/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:05:39.0210254Z [2481/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:05:39.0526869Z [2482/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:05:39.0805920Z [2483/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:05:39.0918263Z [2484/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:05:39.1108223Z [2485/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:05:39.1315386Z [2486/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:05:39.1372045Z [2487/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:05:39.1429181Z [2488/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:05:39.1659002Z [2489/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:05:39.1945884Z [2490/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:05:39.2240436Z [2491/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:05:39.2528414Z [2492/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:05:39.2538349Z [2493/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:05:39.2679513Z [2494/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:05:39.2761258Z [2495/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:05:39.2930703Z [2496/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:05:39.3114026Z [2497/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:05:39.3372828Z [2498/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:05:39.3704744Z [2499/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:05:39.3837048Z [2500/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:05:39.4015388Z [2501/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:05:39.4082200Z [2502/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:05:39.4351791Z [2503/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p1c-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:05:39.4498582Z [2504/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p1c-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:05:39.4819518Z [2505/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p1c-minmax-rndnu-scalar.c.obj 2025-06-01T21:05:39.4933842Z [2506/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p2c-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:05:39.4985811Z [2507/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:05:39.5068267Z [2508/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p2c-minmax-rndnu-scalar.c.obj 2025-06-01T21:05:39.5305540Z [2509/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p4c-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:05:39.5596763Z [2510/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p4c-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:05:39.6131694Z [2511/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p4c-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:05:39.6143662Z [2512/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p4c-minmax-rndnu-scalar.c.obj 2025-06-01T21:05:39.6238112Z [2513/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p1c-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:05:39.6253472Z [2514/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p2c-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:05:39.6323381Z [2515/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p2c-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:05:39.6695278Z [2516/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p4c-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:05:39.7056110Z [2517/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p4c-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:05:39.7108762Z [2518/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-scalar-u2.c.obj 2025-06-01T21:05:39.7272750Z [2519/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-scalar-u3.c.obj 2025-06-01T21:05:39.7283754Z [2520/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p4c-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:05:39.7357976Z [2521/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x8c4-gemm-goi-scalar.c.obj 2025-06-01T21:05:39.7372435Z [2522/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x8c4-gemm-gio-scalar.c.obj 2025-06-01T21:05:39.7681698Z [2523/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x8c8-gemm-gio-scalar.c.obj 2025-06-01T21:05:39.8093519Z [2524/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x8c8-gemm-goi-scalar.c.obj 2025-06-01T21:05:39.8146108Z [2525/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x16c4-gemm-gio-scalar.c.obj 2025-06-01T21:05:39.8321703Z [2526/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x16c4-gemm-goi-scalar.c.obj 2025-06-01T21:05:39.8492023Z [2527/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x32c4-gemm-gio-scalar.c.obj 2025-06-01T21:05:39.8562046Z [2528/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x32c4-gemm-goi-scalar.c.obj 2025-06-01T21:05:39.8701904Z [2529/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x64c4-gemm-gio-scalar.c.obj 2025-06-01T21:05:39.9141126Z [2530/7110] 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-06-01T21:05:39.9190493Z [2531/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x16c8-gemm-gio-scalar.c.obj 2025-06-01T21:05:39.9298307Z [2532/7110] 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-06-01T21:05:39.9313666Z [2533/7110] 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-06-01T21:05:39.9566382Z [2534/7110] 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-06-01T21:05:39.9651192Z [2535/7110] 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-06-01T21:05:39.9765109Z [2536/7110] 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-06-01T21:05:40.0242876Z [2537/7110] 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-06-01T21:05:40.0538030Z [2538/7110] 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-06-01T21:05:40.0549750Z [2539/7110] 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-06-01T21:05:40.0660889Z [2540/7110] 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-06-01T21:05:40.0990861Z [2541/7110] 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-06-01T21:05:40.1169403Z [2542/7110] 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-06-01T21:05:40.1277100Z [2543/7110] 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-06-01T21:05:40.1408857Z [2544/7110] 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-06-01T21:05:40.1604592Z [2545/7110] 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-06-01T21:05:40.1784917Z [2546/7110] 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-06-01T21:05:40.1838441Z [2547/7110] 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-06-01T21:05:40.2089839Z [2548/7110] 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-06-01T21:05:40.2403502Z [2549/7110] 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-06-01T21:05:40.2573874Z [2550/7110] 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-06-01T21:05:40.2643845Z [2551/7110] 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-06-01T21:05:40.2965083Z [2552/7110] 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-06-01T21:05:40.3019445Z [2553/7110] 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-06-01T21:05:40.3132380Z [2554/7110] 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-06-01T21:05:40.3223158Z [2555/7110] 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-06-01T21:05:40.3696959Z [2556/7110] 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-06-01T21:05:40.3824880Z [2557/7110] 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-06-01T21:05:40.4084413Z [2558/7110] 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-06-01T21:05:40.4187301Z [2559/7110] 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-06-01T21:05:40.4271891Z [2560/7110] 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-06-01T21:05:40.4320047Z [2561/7110] 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-06-01T21:05:40.4588161Z [2562/7110] 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-06-01T21:05:40.4896112Z [2563/7110] 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-06-01T21:05:40.4985063Z [2564/7110] 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-06-01T21:05:40.5216267Z [2565/7110] 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-06-01T21:05:40.5377200Z [2566/7110] 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-06-01T21:05:40.5475910Z [2567/7110] 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-06-01T21:05:40.5492920Z [2568/7110] 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-06-01T21:05:40.5642207Z [2569/7110] 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-06-01T21:05:40.6143511Z [2570/7110] 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-06-01T21:05:40.6301164Z [2571/7110] 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-06-01T21:05:40.6408426Z [2572/7110] 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-06-01T21:05:40.6617999Z [2573/7110] 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-06-01T21:05:40.6701769Z [2574/7110] 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-06-01T21:05:40.6863994Z [2575/7110] 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-06-01T21:05:40.7410265Z [2576/7110] 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-06-01T21:05:40.7426804Z [2577/7110] 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-06-01T21:05:40.7543831Z [2578/7110] 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-06-01T21:05:40.7672028Z [2579/7110] 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-06-01T21:05:40.7951290Z [2580/7110] 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-06-01T21:05:40.7965990Z [2581/7110] 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-06-01T21:05:40.8379154Z [2582/7110] 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-06-01T21:05:40.8727452Z [2583/7110] 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-06-01T21:05:40.8771896Z [2584/7110] 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-06-01T21:05:40.9074858Z [2585/7110] 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-06-01T21:05:40.9187577Z [2586/7110] 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-06-01T21:05:40.9290625Z [2587/7110] 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-06-01T21:05:40.9339185Z [2588/7110] 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-06-01T21:05:40.9888354Z [2589/7110] 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-06-01T21:05:41.0110298Z [2590/7110] 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-06-01T21:05:41.0434479Z [2591/7110] 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-06-01T21:05:41.0484069Z [2592/7110] 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-06-01T21:05:41.0728951Z [2593/7110] 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-06-01T21:05:41.0776708Z [2594/7110] 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-06-01T21:05:41.0889073Z [2595/7110] 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-06-01T21:05:41.1134808Z [2596/7110] 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-06-01T21:05:41.1365007Z [2597/7110] 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-06-01T21:05:41.1862977Z [2598/7110] 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-06-01T21:05:41.1930123Z [2599/7110] 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-06-01T21:05:41.2064937Z [2600/7110] 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-06-01T21:05:41.2269328Z [2601/7110] 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-06-01T21:05:41.2458362Z [2602/7110] 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-06-01T21:05:41.2546235Z [2603/7110] 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-06-01T21:05:41.3059919Z [2604/7110] 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-06-01T21:05:41.3109487Z [2605/7110] 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-06-01T21:05:41.3245330Z [2606/7110] 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-06-01T21:05:41.3330196Z [2607/7110] 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-06-01T21:05:41.3637981Z [2608/7110] 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-06-01T21:05:41.4001722Z [2609/7110] 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-06-01T21:05:41.4080603Z [2610/7110] 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-06-01T21:05:41.4113193Z [2611/7110] 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-06-01T21:05:41.4389150Z [2612/7110] 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-06-01T21:05:41.4456699Z [2613/7110] 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-06-01T21:05:41.4693049Z [2614/7110] 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-06-01T21:05:41.4808432Z [2615/7110] 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-06-01T21:05:41.4819327Z [2616/7110] 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-06-01T21:05:41.5020462Z [2617/7110] 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-06-01T21:05:41.8390853Z [2618/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\AccumulateType.cpp.obj 2025-06-01T21:05:41.9990480Z [2619/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Dispatch.cpp.obj 2025-06-01T21:05:42.1304416Z [2620/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\DeviceAccelerator.cpp.obj 2025-06-01T21:05:42.2623277Z [2621/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Context.cpp.obj 2025-06-01T21:05:42.2763893Z [2622/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\CPUGeneratorImpl.cpp.obj 2025-06-01T21:05:42.4868138Z [2623/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ConjugateFallback.cpp.obj 2025-06-01T21:05:42.5004856Z [2624/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\FuncTorchTLS.cpp.obj 2025-06-01T21:05:42.7219719Z [2625/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\EmptyTensor.cpp.obj 2025-06-01T21:05:43.1815764Z [2626/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ExpandUtils.cpp.obj 2025-06-01T21:05:43.2025378Z [2627/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\DynamicLibrary.cpp.obj 2025-06-01T21:05:43.5654801Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:05:43.5655757Z [2628/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\FunctionalStorageImpl.cpp.obj 2025-06-01T21:05:43.6051985Z [2629/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\FunctionalTensorWrapper.cpp.obj 2025-06-01T21:05:43.8356468Z [2630/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\FunctionalizeFallbackKernel.cpp.obj 2025-06-01T21:05:44.0228276Z [2631/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\LegacyVmapMode.cpp.obj 2025-06-01T21:05:44.2277406Z [2632/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\LegacyBatchedTensorImpl.cpp.obj 2025-06-01T21:05:44.8462913Z [2633/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\CachedTensorUtils.cpp.obj 2025-06-01T21:05:44.8701863Z [2634/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\MemoryOverlap.cpp.obj 2025-06-01T21:05:44.9549542Z [2635/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\DLConvertor.cpp.obj 2025-06-01T21:05:44.9568371Z [2636/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\MapAllocator.cpp.obj 2025-06-01T21:05:45.0239545Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:05:45.0260593Z [2637/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ParallelNative.cpp.obj 2025-06-01T21:05:45.5774273Z [2638/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\FunctionalInverses.cpp.obj 2025-06-01T21:05:45.9277458Z [2639/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\NamedTensorUtils.cpp.obj 2025-06-01T21:05:46.0081013Z [2640/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ParallelCommon.cpp.obj 2025-06-01T21:05:46.4595724Z [2641/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\PythonTorchFunctionTLS.cpp.obj 2025-06-01T21:05:46.4706884Z [2642/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\SavedTensorHooks.cpp.obj 2025-06-01T21:05:46.4887871Z [2643/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ParallelOpenMP.cpp.obj 2025-06-01T21:05:46.5595575Z [2644/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\SequenceNumber.cpp.obj 2025-06-01T21:05:46.5767339Z [2645/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ParallelThreadPoolNative.cpp.obj 2025-06-01T21:05:46.6734079Z [2646/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\LegacyBatchedFallback.cpp.obj 2025-06-01T21:05:47.1541627Z [2647/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\LegacyBatchingRegistrations.cpp.obj 2025-06-01T21:05:47.2226867Z [2648/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\LegacyVmapTransforms.cpp.obj 2025-06-01T21:05:47.3396144Z [2649/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\TensorGeometry.cpp.obj 2025-06-01T21:05:47.5153103Z [2650/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ScalarOps.cpp.obj 2025-06-01T21:05:47.9027047Z [2651/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\TensorMeta.cpp.obj 2025-06-01T21:05:48.2081485Z [2652/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\TensorIndexing.cpp.obj 2025-06-01T21:05:48.2469665Z [2653/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\NestedTensorImpl.cpp.obj 2025-06-01T21:05:48.2795170Z [2654/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\TensorIterator.cpp.obj 2025-06-01T21:05:48.5448921Z [2655/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\TensorNames.cpp.obj 2025-06-01T21:05:48.7657444Z [2656/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ThreadLocalPythonObjects.cpp.obj 2025-06-01T21:05:48.9955751Z [2657/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\StorageUtils.cpp.obj 2025-06-01T21:05:49.6710874Z [2658/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Version.cpp.obj 2025-06-01T21:05:49.8478872Z [2659/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\VmapModeRegistrations.cpp.obj 2025-06-01T21:05:49.9701065Z [2660/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\SparseTensorImpl.cpp.obj 2025-06-01T21:05:50.0032054Z [2661/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\SparseCsrTensorImpl.cpp.obj 2025-06-01T21:05:50.0089740Z [2662/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\cpu\FlushDenormal.cpp.obj 2025-06-01T21:05:50.0726731Z [2663/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\cpu\Utils.cpp.obj 2025-06-01T21:05:50.4302549Z [2664/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\CPUGuardImpl.cpp.obj 2025-06-01T21:05:50.5734264Z [2665/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\CUDAHooksInterface.cpp.obj 2025-06-01T21:05:50.5971088Z [2666/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\HIPHooksInterface.cpp.obj 2025-06-01T21:05:50.6302568Z [2667/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Utils.cpp.obj 2025-06-01T21:05:51.0346674Z [2668/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\HPUHooksInterface.cpp.obj 2025-06-01T21:05:51.1471052Z [2669/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\MAIAHooksInterface.cpp.obj 2025-06-01T21:05:51.1627564Z [2670/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\IPUHooksInterface.cpp.obj 2025-06-01T21:05:51.2360506Z [2671/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\MPSHooksInterface.cpp.obj 2025-06-01T21:05:51.3121237Z [2672/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\TensorUtils.cpp.obj 2025-06-01T21:05:51.5469764Z [2673/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\MetaGuardImpl.cpp.obj 2025-06-01T21:05:51.6409820Z [2674/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\MTIAHooksInterface.cpp.obj 2025-06-01T21:05:51.7415161Z [2675/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\PrivateUse1HooksInterface.cpp.obj 2025-06-01T21:05:51.7861262Z [2676/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\XPUHooksInterface.cpp.obj 2025-06-01T21:05:51.8837299Z [2677/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ThreadLocalState.cpp.obj 2025-06-01T21:05:52.5194979Z [2678/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\ADInterpreters.cpp.obj 2025-06-01T21:05:52.5728333Z [2679/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ZeroTensorFallback.cpp.obj 2025-06-01T21:05:53.3042593Z [2680/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\autocast_mode.cpp.obj 2025-06-01T21:05:55.2651375Z [2681/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesActivation.cpp.obj 2025-06-01T21:05:55.4358392Z [2682/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesConvolution.cpp.obj 2025-06-01T21:05:55.4989986Z [2683/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesBinaryOps.cpp.obj 2025-06-01T21:05:55.6151547Z [2684/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesDynamic.cpp.obj 2025-06-01T21:05:55.7331679Z [2685/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesDecompositions.cpp.obj 2025-06-01T21:05:56.2093682Z [2686/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesFactory.cpp.obj 2025-06-01T21:05:56.2769838Z [2687/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesHelper.cpp.obj 2025-06-01T21:05:57.2433837Z [2688/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesIndexing.cpp.obj 2025-06-01T21:05:59.1626515Z [2689/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesLoss.cpp.obj 2025-06-01T21:05:59.2474260Z [2690/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesLinearAlgebra.cpp.obj 2025-06-01T21:05:59.4057124Z [2691/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesNorm.cpp.obj 2025-06-01T21:05:59.4741474Z [2692/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesModules.cpp.obj 2025-06-01T21:05:59.5124805Z [2693/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesPooling.cpp.obj 2025-06-01T21:05:59.9684994Z [2694/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesReduceOps.cpp.obj 2025-06-01T21:06:00.0038274Z [2695/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesRandomness.cpp.obj 2025-06-01T21:06:00.5735257Z [2696/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchedTensorImpl.cpp.obj 2025-06-01T21:06:01.0506516Z [2697/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesScatterOps.cpp.obj 2025-06-01T21:06:01.1914266Z [2698/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\FunctionalizeInterpreter.cpp.obj 2025-06-01T21:06:01.2038917Z [2699/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\Interpreter.cpp.obj 2025-06-01T21:06:02.4582960Z [2700/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\PlumbingHelper.cpp.obj 2025-06-01T21:06:02.9115815Z [2701/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesViews.cpp.obj 2025-06-01T21:06:02.9767777Z [2702/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchedFallback.cpp.obj 2025-06-01T21:06:03.0268764Z [2703/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesUnaryOps.cpp.obj 2025-06-01T21:06:03.2686322Z [2704/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\DynamicLayer.cpp.obj 2025-06-01T21:06:03.3852645Z [2705/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\ATenGeneral.cpp.obj 2025-06-01T21:06:03.6448221Z [2706/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\TensorWrapper.cpp.obj 2025-06-01T21:06:04.0847267Z [2707/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\CachingHostAllocator.cpp.obj 2025-06-01T21:06:04.1437471Z [2708/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\record_function.cpp.obj 2025-06-01T21:06:04.1587588Z [2709/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\VmapInterpreter.cpp.obj 2025-06-01T21:06:04.4619948Z [2710/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\BackendSelectFallbackKernel.cpp.obj 2025-06-01T21:06:04.6334994Z [2711/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\LegacyBatchingRegistrations.cpp.obj 2025-06-01T21:06:04.7163505Z [2712/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\DeprecatedTypePropertiesRegistry.cpp.obj 2025-06-01T21:06:04.7293832Z [2713/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\LegacyVmapTransforms.cpp.obj 2025-06-01T21:06:04.9169889Z [2714/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Dimname.cpp.obj 2025-06-01T21:06:04.9766506Z [2715/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\DeprecatedTypeProperties.cpp.obj 2025-06-01T21:06:05.0385265Z [2716/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\PyTorchOperatorHacks.cpp.obj 2025-06-01T21:06:05.1995363Z [2717/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Dict.cpp.obj 2025-06-01T21:06:05.2812965Z [2718/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\GeneratorForPrivateuseone.cpp.obj 2025-06-01T21:06:05.6033944Z [2719/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Generator.cpp.obj 2025-06-01T21:06:05.6464289Z [2720/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Formatting.cpp.obj 2025-06-01T21:06:05.7131534Z [2721/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\NestedIntSymNodeImpl.cpp.obj 2025-06-01T21:06:05.8459426Z [2722/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\NamedTensor.cpp.obj 2025-06-01T21:06:05.9047528Z [2723/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\List.cpp.obj 2025-06-01T21:06:06.0092952Z [2724/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Range.cpp.obj 2025-06-01T21:06:06.0264312Z [2725/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\MetaFallbackKernel.cpp.obj 2025-06-01T21:06:06.0687454Z [2726/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\NamedRegistrations.cpp.obj 2025-06-01T21:06:06.5659276Z [2727/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\VmapModeRegistrations.cpp.obj 2025-06-01T21:06:06.5734782Z [2728/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Vitals.cpp.obj 2025-06-01T21:06:06.6109668Z [2729/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\PythonFallbackKernel.cpp.obj 2025-06-01T21:06:06.7839761Z [2730/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\PythonOpRegistrationTrampoline.cpp.obj 2025-06-01T21:06:06.8356144Z [2731/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Tensor.cpp.obj 2025-06-01T21:06:06.8776506Z [2732/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\VariableHooksInterface.cpp.obj 2025-06-01T21:06:06.9623195Z [2733/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\TorchDispatchUtils.cpp.obj 2025-06-01T21:06:07.0735582Z [2734/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\VariableFallbackKernel.cpp.obj 2025-06-01T21:06:07.0805405Z [2735/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\blob.cpp.obj 2025-06-01T21:06:07.4946753Z [2736/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\dispatch\ObservedOperators.cpp.obj 2025-06-01T21:06:07.5861875Z [2737/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\adaption.cpp.obj 2025-06-01T21:06:07.6491603Z [2738/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\boxing\KernelFunction.cpp.obj 2025-06-01T21:06:07.7883576Z [2739/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\class_type.cpp.obj 2025-06-01T21:06:07.8493013Z [2740/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\dispatch\DispatchKeyExtractor.cpp.obj 2025-06-01T21:06:07.9077840Z [2741/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\custom_class.cpp.obj 2025-06-01T21:06:07.9733036Z [2742/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\dispatch\Dispatcher.cpp.obj 2025-06-01T21:06:08.1910615Z [2743/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\interned_strings.cpp.obj 2025-06-01T21:06:08.2002448Z [2744/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\dispatch\OperatorEntry.cpp.obj 2025-06-01T21:06:08.4751875Z [2745/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\dynamic_type.cpp.obj 2025-06-01T21:06:08.6343644Z [2746/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\function_schema.cpp.obj 2025-06-01T21:06:08.6419166Z [2747/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\operator_name.cpp.obj 2025-06-01T21:06:08.7135975Z [2748/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\register_symbols.cpp.obj 2025-06-01T21:06:08.7552543Z [2749/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\ivalue.cpp.obj 2025-06-01T21:06:08.9043945Z [2750/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\op_registration\infer_schema.cpp.obj 2025-06-01T21:06:08.9195701Z [2751/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\library.cpp.obj 2025-06-01T21:06:09.0361746Z [2752/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\op_registration\op_registration.cpp.obj 2025-06-01T21:06:09.2209544Z [2753/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\error_report.cpp.obj 2025-06-01T21:06:09.4112275Z [2754/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\lexer.cpp.obj 2025-06-01T21:06:09.4331610Z [2755/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\tensor_type.cpp.obj 2025-06-01T21:06:09.5358883Z [2756/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\type_factory.cpp.obj 2025-06-01T21:06:09.5414808Z [2757/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\strtod.cpp.obj 2025-06-01T21:06:09.6750301Z [2758/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\type.cpp.obj 2025-06-01T21:06:09.7850862Z [2759/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\union_type.cpp.obj 2025-06-01T21:06:10.0155450Z [2760/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\function_schema_parser.cpp.obj 2025-06-01T21:06:10.1453664Z [2761/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\schema_type_parser.cpp.obj 2025-06-01T21:06:10.4068308Z [2762/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\source_range.cpp.obj 2025-06-01T21:06:10.5621338Z [2763/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AdaptiveAveragePooling.cpp.obj 2025-06-01T21:06:10.6287339Z [2764/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AdaptiveAveragePooling3d.cpp.obj 2025-06-01T21:06:10.6489698Z [2765/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AdaptiveMaxPooling2d.cpp.obj 2025-06-01T21:06:10.7189745Z [2766/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AdaptiveMaxPooling3d.cpp.obj 2025-06-01T21:06:10.7486408Z [2767/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Activation.cpp.obj 2025-06-01T21:06:11.0212581Z [2768/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AffineGridGenerator.cpp.obj 2025-06-01T21:06:11.2751023Z [2769/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AmpKernels.cpp.obj 2025-06-01T21:06:11.3743489Z [2770/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AutogradComposite.cpp.obj 2025-06-01T21:06:11.6441976Z [2771/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AveragePool2d.cpp.obj 2025-06-01T21:06:11.7314453Z [2772/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AveragePool3d.cpp.obj 2025-06-01T21:06:11.7632284Z [2773/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\BatchLinearAlgebraKernel.cpp.obj 2025-06-01T21:06:11.7734368Z [2774/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\BatchLinearAlgebra.cpp.obj 2025-06-01T21:06:11.8952473Z [2775/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\BlasKernel.cpp.obj 2025-06-01T21:06:11.9368199Z [2776/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\BinaryOps.cpp.obj 2025-06-01T21:06:12.1145734Z [2777/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Blas.cpp.obj 2025-06-01T21:06:12.4463282Z [2778/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Bucketization.cpp.obj 2025-06-01T21:06:12.7455058Z [2779/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ChanelShuffle.cpp.obj 2025-06-01T21:06:12.7958867Z [2780/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ComparisonUtils.cpp.obj 2025-06-01T21:06:12.8098185Z [2781/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\CPUFallback.cpp.obj 2025-06-01T21:06:12.8820965Z [2782/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Col2Im.cpp.obj 2025-06-01T21:06:13.0230624Z [2783/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Constraints.cpp.obj 2025-06-01T21:06:13.1155990Z [2784/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\CPUBlas.cpp.obj 2025-06-01T21:06:13.4239098Z [2785/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Convolution.cpp.obj 2025-06-01T21:06:13.4943766Z [2786/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ConvolutionMM2d.cpp.obj 2025-06-01T21:06:13.8186862Z [2787/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ConvolutionTBC.cpp.obj 2025-06-01T21:06:13.8850396Z [2788/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ConvolutionMM3d.cpp.obj 2025-06-01T21:06:13.8864666Z [2789/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\DispatchStub.cpp.obj 2025-06-01T21:06:13.9007858Z [2790/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Correlation.cpp.obj 2025-06-01T21:06:13.9830919Z [2791/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Copy.cpp.obj 2025-06-01T21:06:14.1211389Z [2792/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Cross.cpp.obj 2025-06-01T21:06:14.1868501Z [2793/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\DilatedMaxPool2d.cpp.obj 2025-06-01T21:06:14.4491345Z [2794/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\DilatedMaxPool3d.cpp.obj 2025-06-01T21:06:14.8800328Z [2795/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Dropout.cpp.obj 2025-06-01T21:06:14.9147246Z [2796/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Distance.cpp.obj 2025-06-01T21:06:14.9788788Z [2797/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Embedding.cpp.obj 2025-06-01T21:06:15.1330015Z [2798/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Distributions.cpp.obj 2025-06-01T21:06:15.1615200Z [2799/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\EmbeddingBag.cpp.obj 2025-06-01T21:06:15.1781020Z [2800/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Fill.cpp.obj 2025-06-01T21:06:15.2588634Z [2801/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ForeachOpsKernels.cpp.obj 2025-06-01T21:06:15.3960935Z [2802/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\FractionalMaxPool2d.cpp.obj 2025-06-01T21:06:15.9080625Z [2803/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\FractionalMaxPool3d.cpp.obj 2025-06-01T21:06:15.9833430Z [2804/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\FunctionOfAMatrixUtils.cpp.obj 2025-06-01T21:06:15.9907436Z [2805/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\FusedAdagrad.cpp.obj 2025-06-01T21:06:16.1774176Z [2806/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\FusedSGD.cpp.obj 2025-06-01T21:06:16.2009301Z [2807/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\GatedLinearUnit.cpp.obj 2025-06-01T21:06:16.2194672Z [2808/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\FusedAdam.cpp.obj 2025-06-01T21:06:16.3415836Z [2809/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\GridSampler.cpp.obj 2025-06-01T21:06:16.4726644Z [2810/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Histogram.cpp.obj 2025-06-01T21:06:16.9500406Z [2811/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Im2Col.cpp.obj 2025-06-01T21:06:17.0158928Z [2812/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\IndexingUtils.cpp.obj 2025-06-01T21:06:17.0297049Z [2813/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Integration.cpp.obj 2025-06-01T21:06:17.1071832Z [2814/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Lerp.cpp.obj 2025-06-01T21:06:17.2054680Z [2815/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LegacyBatching.cpp.obj 2025-06-01T21:06:17.2208868Z [2816/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Itertools.cpp.obj 2025-06-01T21:06:17.4698583Z [2817/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Linear.cpp.obj 2025-06-01T21:06:17.8272098Z [2818/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LinearAlgebra.cpp.obj 2025-06-01T21:06:18.0544327Z [2819/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LossCTC.cpp.obj 2025-06-01T21:06:18.0678250Z [2820/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Loss.cpp.obj 2025-06-01T21:06:18.0758518Z [2821/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LossMultiLabelMargin.cpp.obj 2025-06-01T21:06:18.1369584Z [2822/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LossMultiMargin.cpp.obj 2025-06-01T21:06:18.3071358Z [2823/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LossNLL2d.cpp.obj 2025-06-01T21:06:18.4322892Z [2824/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LossNLL.cpp.obj 2025-06-01T21:06:18.5433884Z [2825/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\MaxPooling.cpp.obj 2025-06-01T21:06:18.8106114Z [2826/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\MaxUnpooling.cpp.obj 2025-06-01T21:06:18.9821072Z [2827/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\MetaTensor.cpp.obj 2025-06-01T21:06:19.0642052Z [2828/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Memory.cpp.obj 2025-06-01T21:06:19.1731766Z [2829/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\NNPACK.cpp.obj 2025-06-01T21:06:19.2119989Z [2830/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\NaiveConvolutionTranspose2d.cpp.obj 2025-06-01T21:06:19.3812648Z [2831/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\NaiveConvolutionTranspose3d.cpp.obj 2025-06-01T21:06:19.4830914Z [2832/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\NaiveDilatedConvolution.cpp.obj 2025-06-01T21:06:19.6116459Z [2833/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\NamedTensor.cpp.obj 2025-06-01T21:06:19.8733824Z [2834/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\NegateFallback.cpp.obj 2025-06-01T21:06:20.1192295Z [2835/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Onehot.cpp.obj 2025-06-01T21:06:20.1324097Z [2836/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Normalization.cpp.obj 2025-06-01T21:06:20.2236505Z [2837/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\PadNd.cpp.obj 2025-06-01T21:06:20.2589421Z [2838/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\PackedSequence.cpp.obj 2025-06-01T21:06:20.4704705Z [2839/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\PointwiseOps.cpp.obj 2025-06-01T21:06:20.4854576Z [2840/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\PixelShuffle.cpp.obj 2025-06-01T21:06:20.6985836Z [2841/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Pooling.cpp.obj 2025-06-01T21:06:20.8899998Z [2842/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Pow.cpp.obj 2025-06-01T21:06:21.2657637Z [2843/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\RangeFactories.cpp.obj 2025-06-01T21:06:21.3191092Z [2844/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ReduceAllOps.cpp.obj 2025-06-01T21:06:21.3586601Z [2845/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\QuantizedLinear.cpp.obj 2025-06-01T21:06:21.6060091Z [2846/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ReflectionPad.cpp.obj 2025-06-01T21:06:21.6195711Z [2847/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\RNN.cpp.obj 2025-06-01T21:06:21.6355033Z [2848/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ReduceOps.cpp.obj 2025-06-01T21:06:21.6930620Z [2849/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Repeat.cpp.obj 2025-06-01T21:06:21.9433659Z [2850/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ReplicationPadding.cpp.obj 2025-06-01T21:06:22.3310643Z [2851/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\RowwisePrune.cpp.obj 2025-06-01T21:06:22.3351706Z [2852/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Resize.cpp.obj 2025-06-01T21:06:22.4521773Z [2853/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Scalar.cpp.obj 2025-06-01T21:06:22.6615002Z [2854/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SegmentReduce.cpp.obj 2025-06-01T21:06:22.7126103Z [2855/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SobolEngineOps.cpp.obj 2025-06-01T21:06:22.7793420Z [2856/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SoftMax.cpp.obj 2025-06-01T21:06:22.8861252Z [2857/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SobolEngineOpsUtils.cpp.obj 2025-06-01T21:06:23.0864950Z [2858/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Sorting.cpp.obj 2025-06-01T21:06:23.4375404Z [2859/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SpectralOps.cpp.obj 2025-06-01T21:06:23.5355924Z [2860/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SummaryOps.cpp.obj 2025-06-01T21:06:23.8967217Z [2861/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorCompare.cpp.obj 2025-06-01T21:06:24.0349672Z [2862/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorFactories.cpp.obj 2025-06-01T21:06:24.0788943Z [2863/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorIteratorReduce.cpp.obj 2025-06-01T21:06:24.4510017Z [2864/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorProperties.cpp.obj 2025-06-01T21:06:24.7875965Z [2865/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorShape.cpp.obj 2025-06-01T21:06:24.9741978Z [2866/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorTransformations.cpp.obj 2025-06-01T21:06:25.0404339Z [2867/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TestOps.cpp.obj 2025-06-01T21:06:25.1820788Z [2868/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TriangularOps.cpp.obj 2025-06-01T21:06:25.4315673Z [2869/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Unfold2d.cpp.obj 2025-06-01T21:06:25.4767034Z [2870/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TypeProperties.cpp.obj 2025-06-01T21:06:25.7803249Z [2871/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SparseTensorUtils.cpp.obj 2025-06-01T21:06:26.0333881Z [2872/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UnaryOps.cpp.obj 2025-06-01T21:06:26.2188733Z [2873/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorAdvancedIndexing.cpp.obj 2025-06-01T21:06:26.2385768Z [2874/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UnfoldBackward.cpp.obj 2025-06-01T21:06:26.3110341Z [2875/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Unfold3d.cpp.obj 2025-06-01T21:06:26.3352255Z [2876/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorConversions.cpp.obj 2025-06-01T21:06:26.5048666Z [2877/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSample.cpp.obj 2025-06-01T21:06:26.5213859Z [2878/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Unique.cpp.obj 2025-06-01T21:06:26.9120214Z [2879/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleBicubic2d.cpp.obj 2025-06-01T21:06:27.0549757Z [2880/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleBilinear2d.cpp.obj 2025-06-01T21:06:27.3805338Z [2881/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleLinear1d.cpp.obj 2025-06-01T21:06:27.4229823Z [2882/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleNearest2d.cpp.obj 2025-06-01T21:06:27.4382645Z [2883/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleNearest3d.cpp.obj 2025-06-01T21:06:27.4558079Z [2884/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleNearest1d.cpp.obj 2025-06-01T21:06:27.5054040Z [2885/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\VariableMethodStubs.cpp.obj 2025-06-01T21:06:27.6149488Z [2886/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleTrilinear3d.cpp.obj 2025-06-01T21:06:28.0153950Z [2887/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\WeightNorm.cpp.obj 2025-06-01T21:06:28.0591457Z [2888/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\group_norm.cpp.obj 2025-06-01T21:06:28.3673312Z [2889/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\prim_native_functions.cpp.obj 2025-06-01T21:06:28.4573818Z [2890/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\layer_norm.cpp.obj 2025-06-01T21:06:28.6007637Z [2891/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\library.cpp.obj 2025-06-01T21:06:28.6374829Z [2892/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\fbgemm_utils.cpp.obj 2025-06-01T21:06:28.7702009Z [2893/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\qlinear.cpp.obj 2025-06-01T21:06:28.9151668Z [2894/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\verbose_wrapper.cpp.obj 2025-06-01T21:06:29.1661290Z [2895/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\qlinear_dynamic.cpp.obj 2025-06-01T21:06:29.4768375Z [2896/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\qlinear_prepack.cpp.obj 2025-06-01T21:06:29.6833296Z [2897/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\qlinear_unpack.cpp.obj 2025-06-01T21:06:29.7927938Z [2898/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\ParamUtils.cpp.obj 2025-06-01T21:06:29.8127942Z [2899/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\FlattenIndicesKernel.cpp.obj 2025-06-01T21:06:30.0198293Z [2900/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SoftMax.cpp.obj 2025-06-01T21:06:30.2972737Z [2901/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseBinaryOpIntersectionKernel.cpp.obj 2025-06-01T21:06:30.5879508Z [2902/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseBlas.cpp.obj 2025-06-01T21:06:30.8064199Z [2903/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseBlasImpl.cpp.obj 2025-06-01T21:06:30.9428383Z [2904/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseCsrTensor.cpp.obj 2025-06-01T21:06:30.9833138Z [2905/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseCsrTensorMath.cpp.obj 2025-06-01T21:06:31.1121815Z [2906/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseFactories.cpp.obj 2025-06-01T21:06:31.4322516Z [2907/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseMatMul.cpp.obj 2025-06-01T21:06:31.5104670Z [2908/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\qlinear_deserialize.cpp.obj 2025-06-01T21:06:31.6408332Z [2909/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseTensor.cpp.obj 2025-06-01T21:06:31.8564704Z [2910/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseTensorMath.cpp.obj 2025-06-01T21:06:31.8875068Z [2911/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\qlinear_serialize.cpp.obj 2025-06-01T21:06:31.9968364Z [2912/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseUnaryOps.cpp.obj 2025-06-01T21:06:32.0899450Z [2913/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\ValidateCompressedIndicesKernel.cpp.obj 2025-06-01T21:06:34.5897880Z [2914/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorAliases.cpp.obj 2025-06-01T21:06:34.9232742Z [2915/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorBackward.cpp.obj 2025-06-01T21:06:34.9501957Z [2916/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorBinaryOps.cpp.obj 2025-06-01T21:06:35.1316081Z [2917/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorFactories.cpp.obj 2025-06-01T21:06:35.1708110Z [2918/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorMath.cpp.obj 2025-06-01T21:06:35.3166163Z [2919/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorMatmul.cpp.obj 2025-06-01T21:06:35.4344009Z [2920/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\AffineQuantizerBase.cpp.obj 2025-06-01T21:06:35.4845961Z [2921/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorTransformerFunctions.cpp.obj 2025-06-01T21:06:35.5164125Z [2922/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorUnaryOps.cpp.obj 2025-06-01T21:06:35.6642524Z [2923/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorUtils.cpp.obj 2025-06-01T21:06:35.8571802Z [2924/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\AffineQuantizer.cpp.obj 2025-06-01T21:06:35.9985241Z [2925/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\ACLUtils.cpp.obj 2025-06-01T21:06:37.1561307Z [2926/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\AdaptiveAveragePooling.cpp.obj 2025-06-01T21:06:38.2767188Z [2927/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\AveragePool2d.cpp.obj 2025-06-01T21:06:38.4673788Z [2928/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\Copy.cpp.obj 2025-06-01T21:06:38.6493332Z [2929/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\FakeQuantPerChannelAffine.cpp.obj 2025-06-01T21:06:38.7292611Z [2930/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\FakeQuantPerTensorAffine.cpp.obj 2025-06-01T21:06:38.8896278Z [2931/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\TensorAdvancedIndexing.cpp.obj 2025-06-01T21:06:38.9564004Z [2932/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\TensorCompare.cpp.obj 2025-06-01T21:06:39.0026137Z [2933/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\QTensor.cpp.obj 2025-06-01T21:06:39.0823229Z [2934/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\TensorFactories.cpp.obj 2025-06-01T21:06:39.3360242Z [2935/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\AveragePool3d.cpp.obj 2025-06-01T21:06:39.6513175Z [2936/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\BinaryOps.cpp.obj 2025-06-01T21:06:39.6807101Z [2937/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\ChannelShuffle.cpp.obj 2025-06-01T21:06:39.7401744Z [2938/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\RuyUtils.cpp.obj 2025-06-01T21:06:39.7899563Z [2939/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\IntReprQuant.cpp.obj 2025-06-01T21:06:40.0534999Z [2940/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\MakePerTensorQuantizedTensor.cpp.obj 2025-06-01T21:06:40.0985913Z [2941/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\Normalization.cpp.obj 2025-06-01T21:06:40.1513176Z [2942/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\Pooling.cpp.obj 2025-06-01T21:06:40.2523107Z [2943/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\LinearUnpackImpl.cpp.obj 2025-06-01T21:06:40.4909518Z [2944/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\ReduceOps.cpp.obj 2025-06-01T21:06:40.7788189Z [2945/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\Sorting.cpp.obj 2025-06-01T21:06:40.8458065Z [2946/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\TensorOperators.cpp.obj 2025-06-01T21:06:40.9191386Z [2947/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\TensorShape.cpp.obj 2025-06-01T21:06:40.9433792Z [2948/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\init_qnnpack.cpp.obj 2025-06-01T21:06:41.1291505Z [2949/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\UpSampleBilinear2d.cpp.obj 2025-06-01T21:06:41.2312250Z [2950/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\UpSampleNearest2d.cpp.obj 2025-06-01T21:06:41.2473272Z [2951/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\UpSampleNearest3d.cpp.obj 2025-06-01T21:06:41.8559728Z [2952/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\fused_obs_fake_quant.cpp.obj 2025-06-01T21:06:41.9549409Z [2953/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\fbgemm_utils.cpp.obj 2025-06-01T21:06:42.0017039Z [2954/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qclamp.cpp.obj 2025-06-01T21:06:42.5059021Z [2955/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qconv.cpp.obj 2025-06-01T21:06:42.5676017Z [2956/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qconv_dynamic.cpp.obj 2025-06-01T21:06:42.6329893Z [2957/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qconv_prepack.cpp.obj 2025-06-01T21:06:42.9900982Z [2958/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qelu.cpp.obj 2025-06-01T21:06:43.1998156Z [2959/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qembeddingbag.cpp.obj 2025-06-01T21:06:43.6613174Z [2960/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\XnnpackUtils.cpp.obj 2025-06-01T21:06:43.6768252Z [2961/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qgelu.cpp.obj 2025-06-01T21:06:43.7414742Z [2962/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qembeddingbag_prepack.cpp.obj 2025-06-01T21:06:43.8583782Z [2963/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qembeddingbag_unpack.cpp.obj 2025-06-01T21:06:44.0317480Z [2964/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qhardsigmoid.cpp.obj 2025-06-01T21:06:44.3027536Z [2965/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qhardswish.cpp.obj 2025-06-01T21:06:45.1275028Z [2966/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qlinear_dynamic.cpp.obj 2025-06-01T21:06:45.1597578Z [2967/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qconv_unpack_impl.cpp.obj 2025-06-01T21:06:45.1851821Z [2968/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qlinear.cpp.obj 2025-06-01T21:06:45.2182977Z [2969/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qlinear_prepack.cpp.obj 2025-06-01T21:06:45.3847744Z [2970/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qdropout.cpp.obj 2025-06-01T21:06:45.4020159Z [2971/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qmul.cpp.obj 2025-06-01T21:06:45.4323434Z [2972/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qnormalization.cpp.obj 2025-06-01T21:06:46.2033467Z [2973/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qtanh.cpp.obj 2025-06-01T21:06:46.2320494Z [2974/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qsigmoid.cpp.obj 2025-06-01T21:06:46.2838544Z [2975/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qrelu.cpp.obj 2025-06-01T21:06:46.3596589Z [2976/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkl\MklAllocationHelper.cpp.obj 2025-06-01T21:06:46.5484233Z [2977/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\library.cpp.obj 2025-06-01T21:06:46.5665260Z [2978/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qthreshold.cpp.obj 2025-06-01T21:06:46.9190018Z [2979/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\qconv_unpack.cpp.obj 2025-06-01T21:06:47.1384673Z [2980/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkl\LinearAlgebra.cpp.obj 2025-06-01T21:06:47.3791889Z [2981/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qmatmul.cpp.obj 2025-06-01T21:06:47.4492366Z [2982/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkl\SparseBlasImpl.cpp.obj 2025-06-01T21:06:47.6618983Z [2983/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkl\SpectralOps.cpp.obj 2025-06-01T21:06:47.9912729Z [2984/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkl\SparseCsrLinearAlgebra.cpp.obj 2025-06-01T21:06:48.1741268Z [2985/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\BinaryOps.cpp.obj 2025-06-01T21:06:48.4015828Z [2986/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Conv.cpp.obj 2025-06-01T21:06:48.5779339Z [2987/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qsoftmax.cpp.obj 2025-06-01T21:06:48.5921894Z [2988/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Copy.cpp.obj 2025-06-01T21:06:48.9430505Z [2989/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Gelu.cpp.obj 2025-06-01T21:06:49.1627086Z [2990/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\IDeepRegistration.cpp.obj 2025-06-01T21:06:49.6032381Z [2991/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\MKLDNNCommon.cpp.obj 2025-06-01T21:06:49.7592915Z [2992/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Linear.cpp.obj 2025-06-01T21:06:49.9026785Z [2993/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Matmul.cpp.obj 2025-06-01T21:06:49.9211376Z [2994/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\qlinear_unpack.cpp.obj 2025-06-01T21:06:50.0819507Z [2995/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\MkldnnTensorMath.cpp.obj 2025-06-01T21:06:50.2675314Z [2996/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\MKLDNNConversions.cpp.obj 2025-06-01T21:06:50.3978632Z [2997/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Normalization.cpp.obj 2025-06-01T21:06:51.0122987Z [2998/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\ConvPrepack.cpp.obj 2025-06-01T21:06:51.0366525Z [2999/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Pooling.cpp.obj 2025-06-01T21:06:51.5363521Z [3000/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Relu.cpp.obj 2025-06-01T21:06:51.5770721Z [3001/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\SoftMax.cpp.obj 2025-06-01T21:06:52.1304212Z [3002/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\TensorShape.cpp.obj 2025-06-01T21:06:52.1689032Z [3003/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\TensorFactories.cpp.obj 2025-06-01T21:06:52.7160840Z [3004/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\UnaryOps.cpp.obj 2025-06-01T21:06:52.7616739Z [3005/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Utils.cpp.obj 2025-06-01T21:06:53.1761336Z [3006/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\transformers\sdp_utils_cpp.cpp.obj 2025-06-01T21:06:53.2395974Z [3007/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\transformers\attention.cpp.obj 2025-06-01T21:06:53.2624788Z [3008/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\OpContext.cpp.obj 2025-06-01T21:06:53.3927193Z [3009/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Prelu.cpp.obj 2025-06-01T21:06:53.7487045Z [3010/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\RNN.cpp.obj 2025-06-01T21:06:53.7670911Z [3011/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\utils\Factory.cpp.obj 2025-06-01T21:06:53.7914637Z [3012/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\transformers\transformer.cpp.obj 2025-06-01T21:06:53.9155041Z [3013/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\RegisterMkldnnOpContextClass.cpp.obj 2025-06-01T21:06:54.1655919Z [3014/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\Activation.cpp.obj 2025-06-01T21:06:54.1767191Z [3015/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\AveragePooling.cpp.obj 2025-06-01T21:06:54.1909704Z [3016/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\ChannelShuffle.cpp.obj 2025-06-01T21:06:54.2097947Z [3017/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\Init.cpp.obj 2025-06-01T21:06:54.2412678Z [3018/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\Shim.cpp.obj 2025-06-01T21:06:54.4193800Z [3019/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\Convolution.cpp.obj 2025-06-01T21:06:54.7872954Z [3020/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\Linear.cpp.obj 2025-06-01T21:06:54.8901368Z [3021/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\MaxPooling.cpp.obj 2025-06-01T21:06:54.9505603Z [3022/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\OpContext.cpp.obj 2025-06-01T21:06:55.2848034Z [3023/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\RegisterOpContextClass.cpp.obj 2025-06-01T21:06:55.6779484Z [3024/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Operators_0.cpp.obj 2025-06-01T21:06:55.9271234Z [3025/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Operators_1.cpp.obj 2025-06-01T21:06:56.3135851Z [3026/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Operators_3.cpp.obj 2025-06-01T21:06:56.3359303Z [3027/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Operators_4.cpp.obj 2025-06-01T21:06:56.3690635Z [3028/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterBackendSelect.cpp.obj 2025-06-01T21:06:56.4432617Z [3029/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\CompositeViewCopyKernels.cpp.obj 2025-06-01T21:06:56.4521844Z [3030/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Operators_2.cpp.obj 2025-06-01T21:06:56.5414443Z [3031/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Functions.cpp.obj 2025-06-01T21:06:57.4171549Z [3032/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCompositeImplicitAutogradNestedTensor_0.cpp.obj 2025-06-01T21:06:57.5917753Z [3033/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCompositeExplicitAutograd_0.cpp.obj 2025-06-01T21:06:57.9295291Z [3034/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCompositeExplicitAutogradNonFunctional_0.cpp.obj 2025-06-01T21:06:58.0403454Z [3035/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCompositeImplicitAutograd_0.cpp.obj 2025-06-01T21:06:58.2374032Z [3036/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCPU_0.cpp.obj 2025-06-01T21:06:58.3272424Z [3037/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCPU_1.cpp.obj 2025-06-01T21:06:58.3607014Z [3038/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCPU_3.cpp.obj 2025-06-01T21:06:58.4439383Z [3039/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCPU_2.cpp.obj 2025-06-01T21:06:59.1664857Z [3040/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterFunctionalization_1.cpp.obj 2025-06-01T21:06:59.3968561Z [3041/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterFunctionalization_0.cpp.obj 2025-06-01T21:06:59.6125296Z [3042/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterMkldnnCPU_0.cpp.obj 2025-06-01T21:06:59.6157284Z [3043/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterNestedTensorHPU_0.cpp.obj 2025-06-01T21:06:59.6202257Z [3044/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterNestedTensorCPU_0.cpp.obj 2025-06-01T21:06:59.6320874Z [3045/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterFunctionalization_2.cpp.obj 2025-06-01T21:06:59.8110332Z [3046/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterFunctionalization_3.cpp.obj 2025-06-01T21:06:59.8409057Z [3047/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterMeta_0.cpp.obj 2025-06-01T21:07:00.4215289Z [3048/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterNestedTensorMeta_0.cpp.obj 2025-06-01T21:07:00.6320375Z [3049/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterNestedTensorXPU_0.cpp.obj 2025-06-01T21:07:00.7959323Z [3050/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterQuantizedMeta_0.cpp.obj 2025-06-01T21:07:00.8199824Z [3051/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSchema.cpp.obj 2025-06-01T21:07:00.8346305Z [3052/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterQuantizedCPU_0.cpp.obj 2025-06-01T21:07:00.9680382Z [3053/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseCPU_0.cpp.obj 2025-06-01T21:07:01.1923412Z [3054/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseCsrMeta_0.cpp.obj 2025-06-01T21:07:01.1963143Z [3055/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseCsrCPU_0.cpp.obj 2025-06-01T21:07:01.3524898Z [3056/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\ATenOpList.cpp.obj 2025-06-01T21:07:01.4359916Z [3057/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\UfuncCPU_add.cpp.obj 2025-06-01T21:07:01.4995191Z [3058/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseCsrXPU_0.cpp.obj 2025-06-01T21:07:01.7175471Z [3059/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseMeta_0.cpp.obj 2025-06-01T21:07:01.8573506Z [3060/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseXPU_0.cpp.obj 2025-06-01T21:07:01.8619026Z [3061/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterZeroTensor_0.cpp.obj 2025-06-01T21:07:01.9218675Z [3062/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\nnapi\nnapi_model_loader.cpp.obj 2025-06-01T21:07:02.1347884Z [3063/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\quantized\QTensorImpl.cpp.obj 2025-06-01T21:07:02.1882447Z [3064/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\TensorMethods.cpp.obj 2025-06-01T21:07:02.3192408Z [3065/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\nnapi\nnapi_wrapper.cpp.obj 2025-06-01T21:07:02.5676141Z [3066/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\UfuncCPUKernel_add.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:02.8392078Z [3067/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\spherical_bessel_j0.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:02.8842006Z [3068/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\scaled_modified_bessel_k1.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:03.0086599Z [3069/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\scaled_modified_bessel_k0.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:03.0999787Z [3070/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\kernels\QuantizedOpKernels.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:03.6787831Z [3071/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\layer_norm_kernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:03.8313033Z [3072/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\int8mm_kernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:03.9783625Z [3073/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\int4mm_kernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:04.1244150Z [3074/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\group_norm_kernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:04.2683990Z [3075/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\batch_norm_kernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:04.3419174Z [3076/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\airy_ai.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:04.4848325Z [3077/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\WeightNormKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:04.8751460Z [3078/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\quantized\Quantizer.cpp.obj 2025-06-01T21:07:04.9367263Z [3079/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UpSampleMoreKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:05.0818903Z [3080/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\nnapi\nnapi_bind.cpp.obj 2025-06-01T21:07:05.0849375Z [3081/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\Unfold2d.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:05.1967434Z [3082/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UpSampleKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:05.2728959Z [3083/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\nnapi\nnapi_register.cpp.obj 2025-06-01T21:07:05.2903045Z [3084/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UnfoldBackwardKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:05.6208373Z [3085/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SumKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:05.6854536Z [3086/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UnaryOpsKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:05.8402229Z [3087/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SparseFactories.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:05.9958066Z [3088/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SortingKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:06.0554588Z [3089/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\TensorCompareKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:06.0824256Z [3090/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\StackKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:06.1626279Z [3091/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SpmmReduceKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:06.2990616Z [3092/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SoftMaxKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:06.5688583Z [3093/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\RenormKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:06.7576861Z [3094/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReducedPrecisionFloatGemvFastPathKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:06.7648020Z [3095/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ScatterGatherKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:06.8197190Z [3096/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SampledAddmmKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:06.8681785Z [3097/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\RangeFactoriesKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:06.9711286Z [3098/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PowKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:07.1071426Z [3099/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReduceOpsKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:07.1336387Z [3100/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReduceAllOpsKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:07.1809515Z [3101/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PointwiseOpsKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:07.5496778Z [3102/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PixelShuffleKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:07.7806186Z [3103/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PaddingKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:07.8078827Z [3104/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\NativeMultiheadAttnKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:07.9549803Z [3105/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxUnpoolKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:07.9727747Z [3106/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MultinomialKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:08.0688624Z [3107/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxPooling.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:08.1379394Z [3108/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\LinearAlgebraKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:08.2531289Z [3109/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxPoolKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:08.2595313Z [3110/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\LerpKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:08.5248228Z [3111/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\IndexKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:08.6589939Z [3112/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\GridSamplerKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:08.8274047Z [3113/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\HistogramKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:08.8640060Z [3114/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FunctionOfAMatrixUtilsKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:08.9055142Z [3115/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedSGDKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:09.0485171Z [3116/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedAdamKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:09.1118102Z [3117/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedAdagradKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:09.1675220Z [3118/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FillKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:09.3328271Z [3119/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FlashAttentionKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:09.7998648Z [3120/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DistributionKernels.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:09.8150574Z [3121/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DistanceOpsKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:09.8151684Z 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-06-01T21:07:09.8153295Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(177): note: see reference to class template instantiation 'at::vec::VecReduceAllSIMD' being compiled 2025-06-01T21:07:09.8155155Z with 2025-06-01T21:07:09.8155333Z [ 2025-06-01T21:07:09.8155528Z scalar_t=float, 2025-06-01T21:07:09.8156062Z Op=at::vec::DEFAULT::Vectorized (const at::vec::DEFAULT::Vectorized &,const at::vec::DEFAULT::Vectorized &) 2025-06-01T21:07:09.8156603Z ] 2025-06-01T21:07:09.8157719Z 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-06-01T21:07:09.8159009Z with 2025-06-01T21:07:09.8159202Z [ 2025-06-01T21:07:09.8159409Z scalar_t=float, 2025-06-01T21:07:09.8161624Z ReduceOp=at::vec::DEFAULT::Vectorized (const at::vec::DEFAULT::Vectorized &,const at::vec::DEFAULT::Vectorized &), 2025-06-01T21:07:09.8163172Z Op=at::vec::DEFAULT::Vectorized (const at::vec::DEFAULT::Vectorized &,const at::vec::DEFAULT::Vectorized &) 2025-06-01T21:07:09.8164097Z ] 2025-06-01T21:07:09.8169026Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(177): note: see reference to function template instantiation 'scalar_t at::vec::map2_reduce_all::run_parallel_pdist::::()::,data_t(const data_t &,const data_t &),0>(const MapOp &,ReduceOp (__cdecl &),const scalar_t *,const scalar_t *,int64_t)' being compiled 2025-06-01T21:07:09.8173503Z with 2025-06-01T21:07:09.8173688Z [ 2025-06-01T21:07:09.8173878Z scalar_t=scalar_t, 2025-06-01T21:07:09.8174171Z data_t=at::vec::DEFAULT::Vectorized, 2025-06-01T21:07:09.8174941Z MapOp=at::native::`anonymous-namespace'::Dist::run_parallel_pdist::::()::, 2025-06-01T21:07:09.8176194Z ReduceOp=at::vec::DEFAULT::Vectorized (const at::vec::DEFAULT::Vectorized &,const at::vec::DEFAULT::Vectorized &) 2025-06-01T21:07:09.8176757Z ] 2025-06-01T21:07:09.8179443Z 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-06-01T21:07:09.8181167Z with 2025-06-01T21:07:09.8181403Z [ 2025-06-01T21:07:09.8181588Z scalar_t=scalar_t 2025-06-01T21:07:09.8181802Z ] 2025-06-01T21:07:09.8183257Z 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-06-01T21:07:09.8185820Z with 2025-06-01T21:07:09.8185991Z [ 2025-06-01T21:07:09.8186167Z scalar_t=scalar_t 2025-06-01T21:07:09.8186382Z ] 2025-06-01T21:07:09.8187514Z 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-06-01T21:07:09.8188854Z with 2025-06-01T21:07:09.8189016Z [ 2025-06-01T21:07:09.8189196Z scalar_t=scalar_t 2025-06-01T21:07:09.8190079Z ] 2025-06-01T21:07:09.8497482Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(420): note: see reference to function template instantiation 'void at::native::`anonymous-namespace'::Dist::apply_pdist(at::Tensor &,const at::Tensor &,const scalar_t)' being compiled 2025-06-01T21:07:09.8498793Z with 2025-06-01T21:07:09.8498975Z [ 2025-06-01T21:07:09.8499161Z scalar_t=scalar_t 2025-06-01T21:07:09.8499381Z ] 2025-06-01T21:07:09.8500504Z 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-06-01T21:07:09.8501834Z [3122/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ChannelShuffleKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:09.9114024Z [3123/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CrossKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:09.9625049Z [3124/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DepthwiseConvKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:10.0264148Z [3125/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CopyKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:10.1811642Z [3126/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ComplexKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:10.3610849Z [3127/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\BlasKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:10.4013116Z [3128/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CatKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:10.5861837Z [3129/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\BinaryOpsKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:10.5862984Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp(537): warning C4333: '>>': right shift by too large amount, data loss 2025-06-01T21:07:10.5864551Z 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-06-01T21:07:10.7796519Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp(537): 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-06-01T21:07:10.7798368Z [3130/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\mkl\SparseBlas.cpp.obj 2025-06-01T21:07:10.8821255Z [3131/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AvgPoolKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:10.9206105Z [3132/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\Activation.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:10.9909049Z [3133/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AmpGradScalerKernels.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:11.0206711Z [3134/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AdaptiveAvgPoolKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:11.0984198Z [3135/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AdaptiveMaxPoolKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:11.3332076Z [3136/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\serialize\crc.cc.obj 2025-06-01T21:07:11.3460617Z [3137/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\vulkan\Context.cpp.obj 2025-06-01T21:07:11.3548561Z [3138/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\serialize\istream_adapter.cc.obj 2025-06-01T21:07:11.4091036Z [3139/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\serialize\file_adapter.cc.obj 2025-06-01T21:07:11.4401753Z [3140/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\metal\Context.cpp.obj 2025-06-01T21:07:11.4477366Z [3141/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\serialize\read_adapter_interface.cc.obj 2025-06-01T21:07:11.4880759Z [3142/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\serialize\inline_container.cc.obj 2025-06-01T21:07:11.5276646Z [3143/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\utils\threadpool\thread_pool_guard.cpp.obj 2025-06-01T21:07:11.5289986Z [3144/7110] Building C object caffe2\CMakeFiles\torch_cpu.dir\__\third_party\miniz-3.0.2\miniz.c.obj 2025-06-01T21:07:11.6832245Z C:\actions-runner\_work\pytorch\pytorch\third_party\miniz-3.0.2\miniz.c(3137): warning C4005: 'WIN32_LEAN_AND_MEAN': macro redefinition 2025-06-01T21:07:11.6833860Z command line(1): note: see previous definition of 'WIN32_LEAN_AND_MEAN' 2025-06-01T21:07:11.6835342Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:07:11.6837000Z [3145/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\utils\string_utils.cc.obj 2025-06-01T21:07:11.8824801Z [3146/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\utils\threadpool\pthreadpool-cpp.cc.obj 2025-06-01T21:07:11.8999735Z [3147/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\utils\threadpool\ThreadPool.cc.obj 2025-06-01T21:07:12.0310285Z [3148/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\utils\proto_wrap.cc.obj 2025-06-01T21:07:12.1874558Z [3149/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\core\common.cc.obj 2025-06-01T21:07:12.6103862Z [3150/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\ViewFuncs.cpp.obj 2025-06-01T21:07:13.7223757Z [3151/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\TraceType_0.cpp.obj 2025-06-01T21:07:13.9545420Z [3152/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\TraceType_1.cpp.obj 2025-06-01T21:07:15.0568679Z [3153/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\TraceType_2.cpp.obj 2025-06-01T21:07:15.3343487Z [3154/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\Functions.cpp.obj 2025-06-01T21:07:15.3856102Z [3155/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\TraceType_3.cpp.obj 2025-06-01T21:07:15.4124606Z [3156/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\VariableType_1.cpp.obj 2025-06-01T21:07:15.5325768Z [3157/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\VariableType_0.cpp.obj 2025-06-01T21:07:15.7457104Z [3158/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\VariableType_2.cpp.obj 2025-06-01T21:07:15.8126266Z [3159/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\VariableType_3.cpp.obj 2025-06-01T21:07:15.8814929Z [3160/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\VariableType_4.cpp.obj 2025-06-01T21:07:16.4250393Z [3161/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\TraceType_4.cpp.obj 2025-06-01T21:07:16.4603681Z [3162/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_torch\generated\c_shim_cpu.cpp.obj 2025-06-01T21:07:16.8464591Z [3163/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\ADInplaceOrViewType_0.cpp.obj 2025-06-01T21:07:16.8877356Z [3164/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\anomaly_mode.cpp.obj 2025-06-01T21:07:16.9073969Z [3165/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\ADInplaceOrViewType_1.cpp.obj 2025-06-01T21:07:16.9202917Z [3166/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\generated\RegisterAutogradLazy.cpp.obj 2025-06-01T21:07:17.1580735Z [3167/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\generated\RegisterLazy.cpp.obj 2025-06-01T21:07:17.4022134Z [3168/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\autograd.cpp.obj 2025-06-01T21:07:17.4064791Z [3169/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\autograd_meta.cpp.obj 2025-06-01T21:07:17.9194580Z [3170/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\cpp_hook.cpp.obj 2025-06-01T21:07:17.9688612Z [3171/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\autograd_not_implemented_fallback.cpp.obj 2025-06-01T21:07:17.9970489Z [3172/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\engine.cpp.obj 2025-06-01T21:07:18.1158270Z [3173/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\forward_grad.cpp.obj 2025-06-01T21:07:19.1076132Z [3174/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\functions\utils.cpp.obj 2025-06-01T21:07:19.3620606Z [3175/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\generated\LazyNativeFunctions.cpp.obj 2025-06-01T21:07:20.1617740Z [3176/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\input_metadata.cpp.obj 2025-06-01T21:07:20.3810519Z [3177/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\jit_decomp_interface.cpp.obj 2025-06-01T21:07:20.5297240Z [3178/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\custom_function.cpp.obj 2025-06-01T21:07:20.9455908Z [3179/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\function.cpp.obj 2025-06-01T21:07:21.0145290Z [3180/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\functions\accumulate_grad.cpp.obj 2025-06-01T21:07:21.3204460Z [3181/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\profiler_kineto.cpp.obj 2025-06-01T21:07:21.4060850Z [3182/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\utils\warnings.cpp.obj 2025-06-01T21:07:21.5023512Z [3183/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\functions\tensor.cpp.obj 2025-06-01T21:07:21.5311502Z [3184/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\profiler_legacy.cpp.obj 2025-06-01T21:07:21.5483237Z [3185/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\functions\basic_ops.cpp.obj 2025-06-01T21:07:21.6128866Z [3186/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\record_function_ops.cpp.obj 2025-06-01T21:07:21.6530555Z [3187/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\input_buffer.cpp.obj 2025-06-01T21:07:22.0519795Z [3188/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\saved_variable.cpp.obj 2025-06-01T21:07:22.5312464Z [3189/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\variable_info.cpp.obj 2025-06-01T21:07:22.6194324Z [3190/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\dynamo\compiled_autograd.cpp.obj 2025-06-01T21:07:22.7009830Z [3191/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_runner\model_container_runner_cpu.cpp.obj 2025-06-01T21:07:22.9497999Z [3192/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_torch\mkldnn_tensor.cpp.obj 2025-06-01T21:07:22.9544205Z [3193/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_runner\model_container_runner.cpp.obj 2025-06-01T21:07:22.9585935Z [3194/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_package\model_package_loader.cpp.obj 2025-06-01T21:07:23.3102838Z [3195/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_torch\oss_proxy_executor.cpp.obj 2025-06-01T21:07:23.6672265Z [3196/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_torch\shim_cpu.cpp.obj 2025-06-01T21:07:23.8170674Z [3197/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_torch\shim_common.cpp.obj 2025-06-01T21:07:23.9684463Z [3198/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_torch\tensor_converter.cpp.obj 2025-06-01T21:07:24.2624898Z [3199/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\api\module.cpp.obj 2025-06-01T21:07:24.4588278Z [3200/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\api\object.cpp.obj 2025-06-01T21:07:24.8042049Z [3201/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\backends\backend_debug_handler.cpp.obj 2025-06-01T21:07:24.9695658Z [3202/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\variable.cpp.obj 2025-06-01T21:07:24.9730034Z [3203/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\backends\backend_debug_info.cpp.obj 2025-06-01T21:07:25.1129778Z [3204/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\backends\backend_detail.cpp.obj 2025-06-01T21:07:25.2559632Z [3205/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\backends\backend_interface.cpp.obj 2025-06-01T21:07:25.6796944Z [3206/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\backends\backend_resolver.cpp.obj 2025-06-01T21:07:26.6367965Z [3207/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\api\function_impl.cpp.obj 2025-06-01T21:07:26.6855910Z [3208/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\inductor_ops.cpp.obj 2025-06-01T21:07:27.7987704Z [3209/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\builtin_functions.cpp.obj 2025-06-01T21:07:27.8197253Z [3210/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\canonicalize_modified_loop.cpp.obj 2025-06-01T21:07:28.0683728Z [3211/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\edit_distance.cpp.obj 2025-06-01T21:07:28.6092508Z [3212/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\codegen.cpp.obj 2025-06-01T21:07:28.7866672Z [3213/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\executor.cpp.obj 2025-06-01T21:07:28.8181318Z [3214/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\compiler.cpp.obj 2025-06-01T21:07:28.8763734Z [3215/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\fallback.cpp.obj 2025-06-01T21:07:28.9772361Z [3216/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\interface.cpp.obj 2025-06-01T21:07:28.9942255Z [3217/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\convert_to_ssa.cpp.obj 2025-06-01T21:07:29.2129003Z [3218/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\exit_transforms.cpp.obj 2025-06-01T21:07:29.2207772Z [3219/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\name_mangler.cpp.obj 2025-06-01T21:07:29.3974028Z [3220/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\kernel_cache.cpp.obj 2025-06-01T21:07:29.4594671Z [3221/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\parser.cpp.obj 2025-06-01T21:07:29.8000438Z [3222/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\inline_loop_condition.cpp.obj 2025-06-01T21:07:30.1047812Z [3223/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\schema_matching.cpp.obj 2025-06-01T21:07:30.2041197Z [3224/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\script_type_parser.cpp.obj 2025-06-01T21:07:30.2797318Z [3225/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\ir_emitter.cpp.obj 2025-06-01T21:07:30.3331894Z [3226/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\sugared_value.cpp.obj 2025-06-01T21:07:30.4107643Z [3227/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\tracer.cpp.obj 2025-06-01T21:07:30.5675843Z [3228/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\versioned_symbols.cpp.obj 2025-06-01T21:07:30.6210423Z [3229/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\alias_analysis.cpp.obj 2025-06-01T21:07:30.8613168Z [3230/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\attributes.cpp.obj 2025-06-01T21:07:31.3214313Z [3231/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\graph_utils.cpp.obj 2025-06-01T21:07:31.4959658Z [3232/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\irparser.cpp.obj 2025-06-01T21:07:31.5349277Z [3233/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\ir.cpp.obj 2025-06-01T21:07:31.5761600Z [3234/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\node_hashing.cpp.obj 2025-06-01T21:07:31.5979806Z [3235/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\scope.cpp.obj 2025-06-01T21:07:31.7743927Z [3236/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\subgraph_matcher.cpp.obj 2025-06-01T21:07:32.0155021Z [3237/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\type_hashing.cpp.obj 2025-06-01T21:07:32.4570065Z [3238/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\jit_log.cpp.obj 2025-06-01T21:07:32.5652698Z [3239/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\jit_opt_limit.cpp.obj 2025-06-01T21:07:32.5865476Z [3240/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\compatibility\runtime_compatibility.cpp.obj 2025-06-01T21:07:32.7656668Z [3241/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\compatibility\model_compatibility.cpp.obj 2025-06-01T21:07:32.8481684Z [3242/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\function.cpp.obj 2025-06-01T21:07:33.2711442Z [3243/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\import.cpp.obj 2025-06-01T21:07:33.6717871Z [3244/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\nnc\registry.cpp.obj 2025-06-01T21:07:33.7540890Z [3245/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\module.cpp.obj 2025-06-01T21:07:33.8684947Z [3246/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\nnc\backend.cpp.obj 2025-06-01T21:07:33.9652520Z [3247/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\constants.cpp.obj 2025-06-01T21:07:34.0393014Z [3248/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\observer.cpp.obj 2025-06-01T21:07:34.4417346Z [3249/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\interpreter.cpp.obj 2025-06-01T21:07:34.7702358Z [3250/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\parse_bytecode.cpp.obj 2025-06-01T21:07:34.9097427Z [3251/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\parse_operators.cpp.obj 2025-06-01T21:07:35.0062224Z [3252/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\prim_ops_registery.cpp.obj 2025-06-01T21:07:35.2421103Z [3253/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\nnc\context.cpp.obj 2025-06-01T21:07:35.3099934Z [3254/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\flatbuffer_loader.cpp.obj 2025-06-01T21:07:35.6320309Z [3255/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\quantization.cpp.obj 2025-06-01T21:07:36.0046633Z [3256/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\type_parser.cpp.obj 2025-06-01T21:07:36.0443863Z [3257/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\operator_upgraders\utils.cpp.obj 2025-06-01T21:07:36.0820866Z [3258/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\upgrader_mobile.cpp.obj 2025-06-01T21:07:36.1513904Z [3259/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\promoted_prim_ops.cpp.obj 2025-06-01T21:07:36.3311024Z [3260/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\operator_upgraders\version_map.cpp.obj 2025-06-01T21:07:36.3896273Z [3261/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\nnc\aot_compiler.cpp.obj 2025-06-01T21:07:36.4317271Z [3262/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\operator_upgraders\upgraders.cpp.obj 2025-06-01T21:07:36.5013042Z [3263/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\operator_upgraders\upgraders_entry.cpp.obj 2025-06-01T21:07:36.6893959Z [3264/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\register_ops_common_utils.cpp.obj 2025-06-01T21:07:37.2065818Z [3265/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\annotate_warns.cpp.obj 2025-06-01T21:07:37.2707834Z [3266/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\add_if_then_else.cpp.obj 2025-06-01T21:07:37.6088381Z [3267/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\canonicalize_graph_fuser_ops.cpp.obj 2025-06-01T21:07:37.6203169Z [3268/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\canonicalize.cpp.obj 2025-06-01T21:07:37.6931029Z [3269/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\check_strict_fusion.cpp.obj 2025-06-01T21:07:38.4145323Z [3270/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\common_subexpression_elimination.cpp.obj 2025-06-01T21:07:38.7664908Z [3271/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\concat_opt.cpp.obj 2025-06-01T21:07:38.8001909Z [3272/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\constant_pooling.cpp.obj 2025-06-01T21:07:38.8390067Z [3273/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\constant_propagation.cpp.obj 2025-06-01T21:07:39.6716508Z [3274/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\create_autodiff_subgraphs.cpp.obj 2025-06-01T21:07:39.7127209Z [3275/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\bailout_graph.cpp.obj 2025-06-01T21:07:39.9642523Z [3276/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\create_functional_graphs.cpp.obj 2025-06-01T21:07:39.9846923Z [3277/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\dead_code_elimination.cpp.obj 2025-06-01T21:07:40.0610413Z [3278/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\dbr_quantization\remove_redundant_aliases.cpp.obj 2025-06-01T21:07:40.1551543Z [3279/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\batch_mm.cpp.obj 2025-06-01T21:07:40.4847393Z [3280/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\clear_profiling.cpp.obj 2025-06-01T21:07:40.7181369Z [3281/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\device_type_analysis.cpp.obj 2025-06-01T21:07:40.7459137Z [3282/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\clear_undefinedness.cpp.obj 2025-06-01T21:07:40.7784511Z [3283/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\decompose_ops.cpp.obj 2025-06-01T21:07:41.0278953Z [3284/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\eliminate_no_ops.cpp.obj 2025-06-01T21:07:41.1385368Z [3285/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\dtype_analysis.cpp.obj 2025-06-01T21:07:41.2207533Z [3286/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\erase_number_types.cpp.obj 2025-06-01T21:07:41.2874315Z [3287/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\fixup_trace_scope_blocks.cpp.obj 2025-06-01T21:07:41.6765621Z [3288/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\fold_conv_bn.cpp.obj 2025-06-01T21:07:41.9475322Z [3289/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\fold_linear_bn.cpp.obj 2025-06-01T21:07:41.9851628Z [3290/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_concat_linear.cpp.obj 2025-06-01T21:07:42.1467289Z [3291/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_conv_add_relu_fusion.cpp.obj 2025-06-01T21:07:42.3672230Z [3292/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_conv_folding.cpp.obj 2025-06-01T21:07:42.3882714Z [3293/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_graph_optimizations.cpp.obj 2025-06-01T21:07:42.4769789Z [3294/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_linear_folding.cpp.obj 2025-06-01T21:07:42.7966685Z [3295/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_linear_transpose.cpp.obj 2025-06-01T21:07:43.0846073Z [3296/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\fuse_linear.cpp.obj 2025-06-01T21:07:43.3267755Z [3297/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\fuse_relu.cpp.obj 2025-06-01T21:07:43.5282632Z [3298/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\graph_rewrite_helper.cpp.obj 2025-06-01T21:07:44.0281762Z [3299/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\hoist_conv_packed_params.cpp.obj 2025-06-01T21:07:44.2904855Z [3300/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\inline_autodiff_subgraphs.cpp.obj 2025-06-01T21:07:44.4585553Z [3301/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\inline_fork_wait.cpp.obj 2025-06-01T21:07:44.5427668Z [3302/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\freeze_module.cpp.obj 2025-06-01T21:07:44.6421922Z [3303/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\inline_forked_closures.cpp.obj 2025-06-01T21:07:45.2828629Z [3304/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\inliner.cpp.obj 2025-06-01T21:07:45.5095672Z [3305/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\inplace_check.cpp.obj 2025-06-01T21:07:45.6327956Z [3306/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\integer_value_refinement.cpp.obj 2025-06-01T21:07:45.8010979Z [3307/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\lift_closures.cpp.obj 2025-06-01T21:07:46.0113096Z [3308/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_ops_to_mkldnn.cpp.obj 2025-06-01T21:07:46.1025423Z [3309/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\graph_fuser.cpp.obj 2025-06-01T21:07:46.1860256Z [3310/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\guard_elimination.cpp.obj 2025-06-01T21:07:46.6572108Z [3311/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\loop_unrolling.cpp.obj 2025-06-01T21:07:46.7306965Z [3312/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\lower_grad_of.cpp.obj 2025-06-01T21:07:46.8935079Z [3313/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\lower_tuples.cpp.obj 2025-06-01T21:07:47.2717512Z [3314/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\normalize_ops.cpp.obj 2025-06-01T21:07:47.8777363Z [3315/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\pass_manager.cpp.obj 2025-06-01T21:07:47.8847336Z [3316/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\peephole.cpp.obj 2025-06-01T21:07:48.0281024Z [3317/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\peephole_alias_sensitive.cpp.obj 2025-06-01T21:07:48.0706962Z [3318/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\insert_guards.cpp.obj 2025-06-01T21:07:48.3970857Z [3319/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\peephole_dict_idioms.cpp.obj 2025-06-01T21:07:48.8965603Z [3320/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\liveness.cpp.obj 2025-06-01T21:07:49.0122501Z [3321/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\peephole_list_idioms.cpp.obj 2025-06-01T21:07:49.0286947Z [3322/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\peephole_non_tensor.cpp.obj 2025-06-01T21:07:49.1944812Z [3323/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\prepack_folding.cpp.obj 2025-06-01T21:07:49.2411111Z [3324/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\dedup_module_uses.cpp.obj 2025-06-01T21:07:49.5695472Z [3325/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\quantization_type.cpp.obj 2025-06-01T21:07:49.9768797Z [3326/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\metal_rewrite.cpp.obj 2025-06-01T21:07:50.0188905Z [3327/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\mkldnn_rewrite.cpp.obj 2025-06-01T21:07:50.2164994Z [3328/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\fusion_passes.cpp.obj 2025-06-01T21:07:50.2236140Z [3329/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\helper.cpp.obj 2025-06-01T21:07:50.2336551Z [3330/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\insert_observers.cpp.obj 2025-06-01T21:07:50.3820547Z [3331/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\insert_quant_dequant.cpp.obj 2025-06-01T21:07:51.1360938Z [3332/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\remove_dropout.cpp.obj 2025-06-01T21:07:51.2081850Z [3333/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\refine_tuple_types.cpp.obj 2025-06-01T21:07:51.3626156Z [3334/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\remove_exceptions.cpp.obj 2025-06-01T21:07:51.3874585Z [3335/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\remove_mutation.cpp.obj 2025-06-01T21:07:51.4262384Z [3336/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\remove_expands.cpp.obj 2025-06-01T21:07:51.4855958Z [3337/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\remove_redundant_profiles.cpp.obj 2025-06-01T21:07:52.1594552Z [3338/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\finalize.cpp.obj 2025-06-01T21:07:52.3117327Z [3339/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\replacement_of_old_operators.cpp.obj 2025-06-01T21:07:52.3672406Z [3340/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\requires_grad_analysis.cpp.obj 2025-06-01T21:07:52.4786157Z [3341/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\restore_mutation.cpp.obj 2025-06-01T21:07:52.5637009Z [3342/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\subgraph_rewrite.cpp.obj 2025-06-01T21:07:52.5952393Z [3343/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\shape_analysis.cpp.obj 2025-06-01T21:07:53.3152072Z [3344/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\register_packed_params.cpp.obj 2025-06-01T21:07:53.3303259Z [3345/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\symbolic_shape_analysis.cpp.obj 2025-06-01T21:07:53.4442451Z [3346/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\symbolic_shape_cache.cpp.obj 2025-06-01T21:07:53.7066262Z [3347/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\utils\memory_dag.cpp.obj 2025-06-01T21:07:53.7369900Z [3348/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\update_differentiable_graph_requires_grad.cpp.obj 2025-06-01T21:07:54.3782841Z [3349/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\utils\op_registry.cpp.obj 2025-06-01T21:07:54.5221867Z [3350/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\utils\optimization_utils.cpp.obj 2025-06-01T21:07:54.6453156Z [3351/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\utils\subgraph_utils.cpp.obj 2025-06-01T21:07:54.8767139Z [3352/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\value_refinement_utils.cpp.obj 2025-06-01T21:07:54.9338048Z [3353/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\python\utf8_decoding_ignore.cpp.obj 2025-06-01T21:07:54.9417569Z [3354/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\variadic_ops.cpp.obj 2025-06-01T21:07:54.9902664Z [3355/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\python\update_graph_executor_opt.cpp.obj 2025-06-01T21:07:55.0837784Z [3356/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\specialize_autogradzero.cpp.obj 2025-06-01T21:07:56.0331390Z [3357/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\symbolic_shape_runtime_fusion.cpp.obj 2025-06-01T21:07:56.0714052Z [3358/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\argument_spec.cpp.obj 2025-06-01T21:07:56.1667746Z [3359/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\autodiff.cpp.obj 2025-06-01T21:07:56.2435158Z [3360/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\tensorexpr_fuser.cpp.obj 2025-06-01T21:07:56.2770134Z 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-06-01T21:07:56.2772210Z 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-06-01T21:07:56.2773468Z [3361/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\decomposition_registry.cpp.obj 2025-06-01T21:07:56.2977444Z [3362/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\decomposition_registry_util.cpp.obj 2025-06-01T21:07:56.4508185Z [3363/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\instruction.cpp.obj 2025-06-01T21:07:56.5771082Z [3364/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\jit_exception.cpp.obj 2025-06-01T21:07:56.9089621Z [3365/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\logging.cpp.obj 2025-06-01T21:07:57.5094687Z [3366/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\interpreter\preprocess_graph.cpp.obj 2025-06-01T21:07:57.7999601Z [3367/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\print_handler.cpp.obj 2025-06-01T21:07:58.1141673Z [3368/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\vulkan_rewrite.cpp.obj 2025-06-01T21:07:58.2694962Z [3369/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\xnnpack_rewrite.cpp.obj 2025-06-01T21:07:59.7175477Z [3370/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\graph_executor.cpp.obj 2025-06-01T21:07:59.9940678Z [3371/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\interpreter\frame.cpp.obj 2025-06-01T21:08:00.0880836Z [3372/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\jit_trace.cpp.obj 2025-06-01T21:08:00.1003744Z [3373/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\interpreter.cpp.obj 2025-06-01T21:08:00.4696921Z [3374/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\operator.cpp.obj 2025-06-01T21:08:00.4903071Z [3375/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\slice_indices_adjust.cpp.obj 2025-06-01T21:08:00.8394843Z [3376/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\script_profile.cpp.obj 2025-06-01T21:08:01.2027489Z [3377/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\serialized_shape_function_registry.cpp.obj 2025-06-01T21:08:01.5278479Z [3378/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\profiling_graph_executor_impl.cpp.obj 2025-06-01T21:08:01.6939289Z [3379/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\fusion.cpp.obj 2025-06-01T21:08:01.7415937Z [3380/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\profiling_record.cpp.obj 2025-06-01T21:08:01.9249852Z [3381/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\register_ops_utils.cpp.obj 2025-06-01T21:08:01.9676231Z [3382/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\impl.cpp.obj 2025-06-01T21:08:02.3718756Z [3383/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\memory_planner.cpp.obj 2025-06-01T21:08:02.9800179Z [3384/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\passes.cpp.obj 2025-06-01T21:08:03.1595793Z [3385/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\symbolic_script.cpp.obj 2025-06-01T21:08:03.5735503Z [3386/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\symbolic_shape_registry.cpp.obj 2025-06-01T21:08:03.8596193Z [3387/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\simple_graph_executor_impl.cpp.obj 2025-06-01T21:08:04.1773498Z [3388/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\symbolic_shape_registry_util.cpp.obj 2025-06-01T21:08:04.7631935Z [3389/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\generated_ops.cpp.obj 2025-06-01T21:08:04.7864716Z [3390/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\callstack_debug_info_serialization.cpp.obj 2025-06-01T21:08:05.2065078Z [3391/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\import_export_helpers.cpp.obj 2025-06-01T21:08:05.4685079Z [3392/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\native_ops.cpp.obj 2025-06-01T21:08:05.5959477Z [3393/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\vararg_functions.cpp.obj 2025-06-01T21:08:05.7262284Z [3394/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\te_wrapper.cpp.obj 2025-06-01T21:08:05.9035630Z [3395/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\import_read.cpp.obj 2025-06-01T21:08:06.0721225Z [3396/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\import_source.cpp.obj 2025-06-01T21:08:06.2061673Z [3397/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\ops.cpp.obj 2025-06-01T21:08:06.3333150Z [3398/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\pickle.cpp.obj 2025-06-01T21:08:06.7847866Z [3399/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\python_print.cpp.obj 2025-06-01T21:08:06.9365577Z [3400/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\source_range_serialization.cpp.obj 2025-06-01T21:08:07.0908872Z [3401/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\type_name_uniquer.cpp.obj 2025-06-01T21:08:07.5984665Z [3402/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\import.cpp.obj 2025-06-01T21:08:09.2353225Z [3403/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\pickler.cpp.obj 2025-06-01T21:08:09.8487006Z [3404/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\block_codegen.cpp.obj 2025-06-01T21:08:09.9409397Z [3405/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\unpickler.cpp.obj 2025-06-01T21:08:10.0112110Z [3406/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\bounds_inference.cpp.obj 2025-06-01T21:08:10.3263559Z [3407/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\bounds_overlap.cpp.obj 2025-06-01T21:08:10.4778417Z [3408/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\codegen.cpp.obj 2025-06-01T21:08:10.5729392Z [3409/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\external_functions_registry.cpp.obj 2025-06-01T21:08:10.6211376Z [3410/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\cpp_codegen.cpp.obj 2025-06-01T21:08:10.6941511Z [3411/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\intrinsic_symbols.cpp.obj 2025-06-01T21:08:10.9792714Z [3412/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\eval.cpp.obj 2025-06-01T21:08:11.7649656Z [3413/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir.cpp.obj 2025-06-01T21:08:12.7824451Z [3414/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\expr.cpp.obj 2025-06-01T21:08:13.4166497Z [3415/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\external_functions_codegen.cpp.obj 2025-06-01T21:08:13.4648202Z [3416/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\external_functions_core.cpp.obj 2025-06-01T21:08:13.8431772Z [3417/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\external_functions.cpp.obj 2025-06-01T21:08:14.2209898Z [3418/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\graph_opt.cpp.obj 2025-06-01T21:08:14.2813161Z [3419/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\hash_provider.cpp.obj 2025-06-01T21:08:14.3973780Z [3420/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\llvm_codegen.cpp.obj 2025-06-01T21:08:14.4589256Z [3421/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\llvm_jit.cpp.obj 2025-06-01T21:08:14.5701413Z [3422/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir_cloner.cpp.obj 2025-06-01T21:08:15.3783586Z [3423/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir_mutator.cpp.obj 2025-06-01T21:08:16.4008916Z [3424/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir_printer.cpp.obj 2025-06-01T21:08:17.0223951Z [3425/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir_verifier.cpp.obj 2025-06-01T21:08:17.0989213Z [3426/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir_simplifier.cpp.obj 2025-06-01T21:08:17.0991474Z 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-06-01T21:08:17.0993116Z with 2025-06-01T21:08:17.0993506Z [ 2025-06-01T21:08:17.0993779Z T=int 2025-06-01T21:08:17.0994120Z ] 2025-06-01T21:08:17.0995893Z 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-06-01T21:08:17.3797459Z with 2025-06-01T21:08:17.3797868Z [ 2025-06-01T21:08:17.3798195Z T=int 2025-06-01T21:08:17.3798535Z ] 2025-06-01T21:08:17.3799409Z [3427/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir_visitor.cpp.obj 2025-06-01T21:08:17.9695879Z [3428/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\loopnest_randomization.cpp.obj 2025-06-01T21:08:18.1306816Z [3429/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\kernel.cpp.obj 2025-06-01T21:08:18.1640650Z [3430/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\loopnest.cpp.obj 2025-06-01T21:08:19.2092378Z [3431/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\lowerings.cpp.obj 2025-06-01T21:08:19.9141989Z [3432/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\mem_dependency_checker.cpp.obj 2025-06-01T21:08:19.9144302Z 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-06-01T21:08:19.9145875Z with 2025-06-01T21:08:19.9146147Z [ 2025-06-01T21:08:19.9146405Z T=int 2025-06-01T21:08:19.9146675Z ] 2025-06-01T21:08:20.7729411Z 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-06-01T21:08:20.7731867Z with 2025-06-01T21:08:20.7732182Z [ 2025-06-01T21:08:20.7732467Z T=int 2025-06-01T21:08:20.7732794Z ] 2025-06-01T21:08:20.7733656Z [3433/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\matmul.cpp.obj 2025-06-01T21:08:20.8668375Z [3434/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\conv2d.cpp.obj 2025-06-01T21:08:21.0630353Z [3435/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\misc.cpp.obj 2025-06-01T21:08:21.7558739Z [3436/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\norm.cpp.obj 2025-06-01T21:08:21.8227251Z [3437/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\reduction.cpp.obj 2025-06-01T21:08:21.8354150Z [3438/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\quantization.cpp.obj 2025-06-01T21:08:21.9145478Z [3439/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\pointwise.cpp.obj 2025-06-01T21:08:22.1373848Z [3440/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\tensor.cpp.obj 2025-06-01T21:08:22.2188355Z [3441/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\types.cpp.obj 2025-06-01T21:08:22.7739980Z [3442/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\unique_name_manager.cpp.obj 2025-06-01T21:08:23.0113086Z [3443/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\testing\file_check.cpp.obj 2025-06-01T21:08:23.0408948Z [3444/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\reduction.cpp.obj 2025-06-01T21:08:23.0942444Z [3445/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\testing\hooks_for_testing.cpp.obj 2025-06-01T21:08:23.3504284Z [3446/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\backend\backend_interface.cpp.obj 2025-06-01T21:08:23.3802414Z [3447/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\backend\backend_device.cpp.obj 2025-06-01T21:08:23.4282811Z [3448/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\config.cpp.obj 2025-06-01T21:08:23.7552761Z [3449/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\softmax.cpp.obj 2025-06-01T21:08:23.9947306Z [3450/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\backend\lowering_context.cpp.obj 2025-06-01T21:08:24.0980492Z [3451/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\hash.cpp.obj 2025-06-01T21:08:24.1835558Z [3452/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\debug_util.cpp.obj 2025-06-01T21:08:24.4354566Z [3453/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\registerizer.cpp.obj 2025-06-01T21:08:24.4356858Z 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-06-01T21:08:24.4358491Z with 2025-06-01T21:08:24.4358801Z [ 2025-06-01T21:08:24.4359101Z T=int 2025-06-01T21:08:24.4359421Z ] 2025-06-01T21:08:24.4361366Z 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-06-01T21:08:24.4562168Z with 2025-06-01T21:08:24.4562535Z [ 2025-06-01T21:08:24.4563133Z T=int 2025-06-01T21:08:24.4563449Z ] 2025-06-01T21:08:24.4564260Z [3454/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\helpers.cpp.obj 2025-06-01T21:08:24.5151374Z [3455/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\ir.cpp.obj 2025-06-01T21:08:24.6063718Z [3456/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\ir_dump_util.cpp.obj 2025-06-01T21:08:24.7568887Z [3457/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\multi_wait.cpp.obj 2025-06-01T21:08:24.8999910Z [3458/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\ir_metadata.cpp.obj 2025-06-01T21:08:25.0650483Z [3459/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\permutation_util.cpp.obj 2025-06-01T21:08:25.1656312Z [3460/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\ir_util.cpp.obj 2025-06-01T21:08:25.2757287Z [3461/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\lazy_graph_executor.cpp.obj 2025-06-01T21:08:25.3059600Z [3462/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\metrics.cpp.obj 2025-06-01T21:08:25.5908358Z [3463/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\ops\arithmetic_ir_ops.cpp.obj 2025-06-01T21:08:25.7153868Z [3464/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\ops\utils.cpp.obj 2025-06-01T21:08:25.8252296Z [3465/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\thread_pool.cpp.obj 2025-06-01T21:08:25.8517284Z [3466/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\shape.cpp.obj 2025-06-01T21:08:26.1483287Z [3467/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\monitor\counters.cpp.obj 2025-06-01T21:08:26.2133025Z [3468/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\monitor\events.cpp.obj 2025-06-01T21:08:26.2345658Z [3469/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\tensor_impl.cpp.obj 2025-06-01T21:08:26.3121478Z [3470/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\tensor.cpp.obj 2025-06-01T21:08:26.4005328Z [3471/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\tensor_util.cpp.obj 2025-06-01T21:08:26.7725845Z [3472/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\trie.cpp.obj 2025-06-01T21:08:27.1058333Z [3473/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\mtia\profiler\MTIAMemoryProfiler.cpp.obj 2025-06-01T21:08:27.2615614Z [3474/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\combined_traceback.cpp.obj 2025-06-01T21:08:27.2756212Z [3475/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\collection.cpp.obj 2025-06-01T21:08:27.3494353Z [3476/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\data_flow.cpp.obj 2025-06-01T21:08:27.4095510Z [3477/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\kineto_client_interface.cpp.obj 2025-06-01T21:08:27.4972636Z [3478/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\kineto_shim.cpp.obj 2025-06-01T21:08:27.7119306Z [3479/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\perf.cpp.obj 2025-06-01T21:08:27.7962477Z [3480/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\orchestration\observer.cpp.obj 2025-06-01T21:08:28.1437471Z [3481/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\orchestration\python_tracer.cpp.obj 2025-06-01T21:08:28.2061719Z [3482/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\stubs\base.cpp.obj 2025-06-01T21:08:28.2560745Z [3483/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\orchestration\vulkan.cpp.obj 2025-06-01T21:08:28.2622673Z [3484/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\unwind\unwind_fb.cpp.obj 2025-06-01T21:08:28.4193455Z [3485/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\standalone\itt_observer.cpp.obj 2025-06-01T21:08:28.5222383Z [3486/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\unwind\unwind.cpp.obj 2025-06-01T21:08:28.5945000Z [3487/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\utils\cpp_stacktraces.cpp.obj 2025-06-01T21:08:28.6103823Z [3488/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\standalone\nvtx_observer.cpp.obj 2025-06-01T21:08:28.6716970Z [3489/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\standalone\privateuse1_observer.cpp.obj 2025-06-01T21:08:28.8262210Z [3490/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\shape_inference.cpp.obj 2025-06-01T21:08:28.8519482Z [3491/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\standalone\execution_trace_observer.cpp.obj 2025-06-01T21:08:29.4963578Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:08:29.4964769Z [3492/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\util.cpp.obj 2025-06-01T21:08:29.5542089Z [3493/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\utils\schema_info.cpp.obj 2025-06-01T21:08:29.6772056Z [3494/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\utils\variadic.cpp.obj 2025-06-01T21:08:30.0105664Z [3495/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\remove_inplace_ops.cpp.obj 2025-06-01T21:08:30.0215568Z [3496/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\lower_graph.cpp.obj 2025-06-01T21:08:30.6369231Z [3497/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\utils\check_alias_annotation.cpp.obj 2025-06-01T21:08:30.6789366Z [3498/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\register_c10_ops.cpp.obj 2025-06-01T21:08:31.3592181Z [3499/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\graph\TensorMeta.cpp.obj 2025-06-01T21:08:31.4150432Z [3500/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\graph\GraphSignature.cpp.obj 2025-06-01T21:08:31.9794551Z [3501/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\PlacementUtils.cpp.obj 2025-06-01T21:08:31.9871422Z [3502/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\Placement.cpp.obj 2025-06-01T21:08:32.0602109Z [3503/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\utils\tensor_flatten.cpp.obj 2025-06-01T21:08:32.2721857Z [3504/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\cuda\interface.cpp.obj 2025-06-01T21:08:32.5089969Z [3505/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\autocast.cpp.obj 2025-06-01T21:08:32.5233472Z [3506/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\common\FileUtil.cpp.obj 2025-06-01T21:08:32.6106932Z [3507/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\config.cpp.obj 2025-06-01T21:08:33.1039470Z [3508/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\debug_info.cpp.obj 2025-06-01T21:08:33.2441945Z [3509/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\dynamic_ir.cpp.obj 2025-06-01T21:08:33.5089782Z [3510/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\register_prim_ops.cpp.obj 2025-06-01T21:08:33.6785915Z [3511/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ops\generic.cpp.obj 2025-06-01T21:08:33.7148835Z [3512/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\register_special_ops.cpp.obj 2025-06-01T21:08:33.7274712Z [3513/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ops\device_data.cpp.obj 2025-06-01T21:08:33.7654822Z [3514/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\tensor_aten_ops.cpp.obj 2025-06-01T21:08:33.7947423Z [3515/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\register_prim_ops_fulljit.cpp.obj 2025-06-01T21:08:34.8201272Z [3516/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_autograd_functions.cpp.obj 2025-06-01T21:08:34.8539312Z [3517/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_node.cpp.obj 2025-06-01T21:08:34.8650525Z [3518/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_lowering_context.cpp.obj 2025-06-01T21:08:36.0184350Z [3519/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\train\export_data.cpp.obj 2025-06-01T21:08:36.0441433Z [3520/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_backend_impl.cpp.obj 2025-06-01T21:08:36.0602278Z [3521/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_eager_fallback.cpp.obj 2025-06-01T21:08:36.4783677Z [3522/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_node_lowering.cpp.obj 2025-06-01T21:08:36.6693260Z [3523/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\import_data.cpp.obj 2025-06-01T21:08:37.4208597Z [3524/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\utils\out_types.cpp.obj 2025-06-01T21:08:37.4839633Z [3525/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_native_functions.cpp.obj 2025-06-01T21:08:37.8625547Z [3526/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\TraceTypeManual.cpp.obj 2025-06-01T21:08:37.9649136Z [3527/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\itt_wrapper.cpp.obj 2025-06-01T21:08:38.2715119Z [3528/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\stubs\itt.cpp.obj 2025-06-01T21:08:38.3406458Z [3529/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\train\optim\sgd.cpp.obj 2025-06-01T21:08:38.3988477Z [3530/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\train\random.cpp.obj 2025-06-01T21:08:39.2075642Z [3531/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\jit.cpp.obj 2025-06-01T21:08:39.3347121Z [3532/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\compatibility\backport.cpp.obj 2025-06-01T21:08:39.4958489Z [3533/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\train\sequential.cpp.obj 2025-06-01T21:08:39.5376842Z [3534/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\compatibility\backport_manager.cpp.obj 2025-06-01T21:08:39.6538753Z [3535/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\onnx.cpp.obj 2025-06-01T21:08:39.7752161Z [3536/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\FunctionsManual.cpp.obj 2025-06-01T21:08:39.9344995Z [3537/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\flatbuffer_serializer.cpp.obj 2025-06-01T21:08:40.2192780Z [3538/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\utils\byte_order.cpp.obj 2025-06-01T21:08:40.5131578Z [3539/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Backoff.cpp.obj 2025-06-01T21:08:40.6770788Z [3540/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\export_bytecode.cpp.obj 2025-06-01T21:08:40.8178820Z [3541/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\api\module_save.cpp.obj 2025-06-01T21:08:40.9528189Z [3542/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\VariableTypeManual.cpp.obj 2025-06-01T21:08:41.8202230Z [3543/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\control_collectives\StoreCollectives.cpp.obj 2025-06-01T21:08:42.3496612Z [3544/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\FileStore.cpp.obj 2025-06-01T21:08:43.1927161Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:08:43.1928373Z [3545/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\export.cpp.obj 2025-06-01T21:08:43.2628147Z [3546/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\export_module.cpp.obj 2025-06-01T21:08:43.5822373Z [3547/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\cpu\fused_kernel.cpp.obj 2025-06-01T21:08:43.9352233Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:08:43.9353369Z [3548/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\DMAConnectivity.cpp.obj 2025-06-01T21:08:44.0072820Z [3549/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Backend.cpp.obj 2025-06-01T21:08:44.2246088Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:08:44.2247076Z [3550/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\ParamCommsUtils.cpp.obj 2025-06-01T21:08:44.3026249Z [3551/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\ProcessGroupMPI.cpp.obj 2025-06-01T21:08:44.5967496Z [3552/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\PrefixStore.cpp.obj 2025-06-01T21:08:45.1385026Z [3553/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Functional.cpp.obj 2025-06-01T21:08:45.6396795Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:08:45.6398343Z [3554/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Store.cpp.obj 2025-06-01T21:08:46.0678341Z [3555/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\GlooDeviceFactory.cpp.obj 2025-06-01T21:08:46.5016059Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:08:46.5017162Z [3556/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\GroupRegistry.cpp.obj 2025-06-01T21:08:47.2885669Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:08:47.2886664Z [3557/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Ops.cpp.obj 2025-06-01T21:08:48.1095696Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:08:48.1096891Z [3558/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\TCPStoreLibUvBackend.cpp.obj 2025-06-01T21:08:48.1308750Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:08:48.1310640Z [3559/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\ProcessGroupGloo.cpp.obj 2025-06-01T21:08:48.2296309Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:08:48.2297273Z [3560/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\ProcessGroup.cpp.obj 2025-06-01T21:08:48.6101972Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:08:48.6102945Z [3561/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\ProcessGroupWrapper.cpp.obj 2025-06-01T21:08:48.6767048Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:08:48.6768851Z [3562/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\SymmetricMemory.cpp.obj 2025-06-01T21:08:48.7511680Z [3563/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\debug.cpp.obj 2025-06-01T21:08:49.2425342Z [3564/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\logging.cpp.obj 2025-06-01T21:08:49.8441305Z [3565/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\TCPStore.cpp.obj 2025-06-01T21:08:50.1588876Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:08:50.1590497Z [3566/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\TCPStoreBackend.cpp.obj 2025-06-01T21:08:50.8823590Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:08:50.8825764Z [3567/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\sequence_num.cpp.obj 2025-06-01T21:08:51.2192508Z [3568/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Utils.cpp.obj 2025-06-01T21:08:51.3194188Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:08:51.3195209Z [3569/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\socket.cpp.obj 2025-06-01T21:08:51.7498461Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:08:51.7499472Z [3570/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\control_plane\Handlers.cpp.obj 2025-06-01T21:08:52.2109005Z [3571/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\quantization\quantization.cpp.obj 2025-06-01T21:08:52.3430799Z [3572/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\comm.cpp.obj 2025-06-01T21:08:52.4362357Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:08:52.4363289Z [3573/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\cuda.cpp.obj 2025-06-01T21:08:52.4951872Z [3574/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\control_plane\WorkerServer.cpp.obj 2025-06-01T21:08:52.5415901Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:08:52.5417036Z [3575/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\default_comm_hooks.cpp.obj 2025-06-01T21:08:52.9078695Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:08:52.9080451Z [3576/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\logger.cpp.obj 2025-06-01T21:08:53.2781447Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:08:53.2782735Z 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-06-01T21:08:53.2783680Z [3577/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\enum.cpp.obj 2025-06-01T21:08:53.3855095Z [3578/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\reducer.cpp.obj 2025-06-01T21:08:54.2835833Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:08:54.2836731Z [3579/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\imethod.cpp.obj 2025-06-01T21:08:54.9503025Z [3580/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\mps.cpp.obj 2025-06-01T21:08:55.0999858Z [3581/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Work.cpp.obj 2025-06-01T21:08:55.7531677Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:08:55.7532667Z [3582/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\data\datasets\mnist.cpp.obj 2025-06-01T21:08:56.0616691Z [3583/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\data\samplers\random.cpp.obj 2025-06-01T21:08:56.1253581Z [3584/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\data\samplers\distributed.cpp.obj 2025-06-01T21:08:56.2783640Z [3585/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\data\samplers\stream.cpp.obj 2025-06-01T21:08:56.3383075Z [3586/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\data\samplers\sequential.cpp.obj 2025-06-01T21:08:57.1436683Z [3587/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\serialize.cpp.obj 2025-06-01T21:08:58.5173944Z [3588/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\init.cpp.obj 2025-06-01T21:08:59.0780148Z [3589/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\module.cpp.obj 2025-06-01T21:08:59.3771784Z [3590/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\_functions.cpp.obj 2025-06-01T21:08:59.6783216Z [3591/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\activation.cpp.obj 2025-06-01T21:08:59.9120020Z [3592/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\adaptive.cpp.obj 2025-06-01T21:09:00.0000036Z [3593/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\batchnorm.cpp.obj 2025-06-01T21:09:00.1766966Z [3594/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\normalization.cpp.obj 2025-06-01T21:09:00.7695698Z [3595/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\instancenorm.cpp.obj 2025-06-01T21:09:02.1884335Z [3596/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\conv.cpp.obj 2025-06-01T21:09:02.7661062Z [3597/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\dropout.cpp.obj 2025-06-01T21:09:03.3068127Z [3598/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\distance.cpp.obj 2025-06-01T21:09:03.4689994Z [3599/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\embedding.cpp.obj 2025-06-01T21:09:03.6675802Z [3600/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\fold.cpp.obj 2025-06-01T21:09:03.8128969Z [3601/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\loss.cpp.obj 2025-06-01T21:09:03.8505450Z [3602/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\linear.cpp.obj 2025-06-01T21:09:04.5183769Z [3603/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\padding.cpp.obj 2025-06-01T21:09:05.7603832Z [3604/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\pixelshuffle.cpp.obj 2025-06-01T21:09:06.5667459Z [3605/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\pooling.cpp.obj 2025-06-01T21:09:07.1218171Z [3606/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\rnn.cpp.obj 2025-06-01T21:09:07.3039822Z [3607/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\upsampling.cpp.obj 2025-06-01T21:09:07.3748280Z [3608/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\activation.cpp.obj 2025-06-01T21:09:07.5264144Z [3609/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\container\functional.cpp.obj 2025-06-01T21:09:07.6014265Z [3610/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\transformer.cpp.obj 2025-06-01T21:09:08.1253552Z [3611/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\adaptive.cpp.obj 2025-06-01T21:09:09.3035598Z [3612/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\batchnorm.cpp.obj 2025-06-01T21:09:10.2162849Z [3613/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\embedding.cpp.obj 2025-06-01T21:09:10.6756916Z [3614/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\instancenorm.cpp.obj 2025-06-01T21:09:10.8068834Z [3615/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\normalization.cpp.obj 2025-06-01T21:09:10.9764611Z [3616/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\conv.cpp.obj 2025-06-01T21:09:11.0906652Z [3617/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\dropout.cpp.obj 2025-06-01T21:09:11.1509712Z [3618/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\linear.cpp.obj 2025-06-01T21:09:11.6590519Z [3619/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\padding.cpp.obj 2025-06-01T21:09:12.8193338Z [3620/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\pooling.cpp.obj 2025-06-01T21:09:13.7184149Z [3621/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\rnn.cpp.obj 2025-06-01T21:09:14.2622616Z [3622/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\vision.cpp.obj 2025-06-01T21:09:14.4940455Z [3623/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\transformer.cpp.obj 2025-06-01T21:09:14.7836861Z [3624/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\adam.cpp.obj 2025-06-01T21:09:14.8360264Z [3625/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\adagrad.cpp.obj 2025-06-01T21:09:15.1176127Z [3626/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\adamw.cpp.obj 2025-06-01T21:09:15.5970510Z [3627/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\lbfgs.cpp.obj 2025-06-01T21:09:15.7326313Z [3628/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\schedulers\lr_scheduler.cpp.obj 2025-06-01T21:09:15.7785965Z [3629/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\schedulers\step_lr.cpp.obj 2025-06-01T21:09:16.2334188Z [3630/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\schedulers\reduce_on_plateau_scheduler.cpp.obj 2025-06-01T21:09:16.2952084Z [3631/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\optimizer.cpp.obj 2025-06-01T21:09:16.4102813Z [3632/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\xpu.cpp.obj 2025-06-01T21:09:16.8836560Z [3633/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\UfuncCPUKernel_add.cpp.AVX2.cpp.obj 2025-06-01T21:09:16.8837643Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:16.8838819Z 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-06-01T21:09:17.1394382Z 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-06-01T21:09:17.1396888Z 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-06-01T21:09:17.1399011Z [3634/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\spherical_bessel_j0.cpp.AVX2.cpp.obj 2025-06-01T21:09:17.1400714Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:17.1402913Z 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-06-01T21:09:17.4686039Z 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-06-01T21:09:17.4687399Z 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-06-01T21:09:17.4688445Z [3635/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\rmsprop.cpp.obj 2025-06-01T21:09:17.5124477Z [3636/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\kernels\QuantizedOpKernels.cpp.AVX2.cpp.obj 2025-06-01T21:09:17.5125612Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:17.5126845Z 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-06-01T21:09:17.5991270Z 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-06-01T21:09:17.5993999Z 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-06-01T21:09:17.5995152Z [3637/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\scaled_modified_bessel_k1.cpp.AVX2.cpp.obj 2025-06-01T21:09:17.5996230Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:17.5997387Z 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-06-01T21:09:17.8534694Z 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-06-01T21:09:17.8536265Z 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-06-01T21:09:17.8537442Z [3638/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\scaled_modified_bessel_k0.cpp.AVX2.cpp.obj 2025-06-01T21:09:17.8538464Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:17.8539769Z 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-06-01T21:09:17.8804187Z 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-06-01T21:09:17.8805549Z 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-06-01T21:09:17.8806564Z [3639/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\serialize.cpp.obj 2025-06-01T21:09:18.3065821Z [3640/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\sgd.cpp.obj 2025-06-01T21:09:18.5028210Z [3641/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\int8mm_kernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:18.5029253Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:18.5030441Z 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-06-01T21:09:18.5825153Z 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-06-01T21:09:18.5826477Z 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-06-01T21:09:18.5827721Z [3642/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\layer_norm_kernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:18.5828801Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:18.5830195Z 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-06-01T21:09:18.7087069Z 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-06-01T21:09:18.7090066Z 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-06-01T21:09:18.7091186Z [3643/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\int4mm_kernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:18.7092244Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:18.7093528Z 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-06-01T21:09:19.0203460Z 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-06-01T21:09:19.0205944Z 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-06-01T21:09:19.0207868Z [3644/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\airy_ai.cpp.AVX2.cpp.obj 2025-06-01T21:09:19.0209704Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:19.0211920Z 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-06-01T21:09:19.1434964Z 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-06-01T21:09:19.1436492Z 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-06-01T21:09:19.1437630Z [3645/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\group_norm_kernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:19.1438626Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:19.1439795Z 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-06-01T21:09:19.1629271Z 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-06-01T21:09:19.1631620Z 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-06-01T21:09:19.1633722Z [3646/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\batch_norm_kernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:19.1636107Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:19.1638428Z 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-06-01T21:09:19.1791641Z 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-06-01T21:09:19.1793005Z 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-06-01T21:09:19.1794417Z [3647/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\serialize\input-archive.cpp.obj 2025-06-01T21:09:19.1874688Z [3648/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\WeightNormKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:19.1876004Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:19.1877302Z 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-06-01T21:09:19.5272506Z 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-06-01T21:09:19.5273899Z 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-06-01T21:09:19.5274958Z [3649/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\serialize\output-archive.cpp.obj 2025-06-01T21:09:19.5703017Z [3650/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UpSampleMoreKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:19.5704160Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:19.5705335Z 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-06-01T21:09:19.8598349Z 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-06-01T21:09:19.8599670Z 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-06-01T21:09:19.8600716Z [3651/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SumKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:19.8601765Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:19.8603070Z 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-06-01T21:09:19.8693518Z 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-06-01T21:09:19.8695057Z 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-06-01T21:09:19.8696256Z [3652/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\Unfold2d.cpp.AVX2.cpp.obj 2025-06-01T21:09:19.8697314Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:19.8698642Z 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-06-01T21:09:19.8914292Z 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-06-01T21:09:19.8916554Z 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-06-01T21:09:19.8918763Z [3653/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UpSampleKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:19.8920593Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:19.8922871Z 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-06-01T21:09:20.1025583Z 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-06-01T21:09:20.1027816Z 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-06-01T21:09:20.1028996Z [3654/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UnfoldBackwardKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:20.1030132Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:20.1031300Z 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-06-01T21:09:20.3489550Z 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-06-01T21:09:20.3490999Z 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-06-01T21:09:20.3492141Z [3655/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\TensorCompareKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:20.3493296Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:20.3494548Z 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-06-01T21:09:20.4844096Z 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-06-01T21:09:20.4845488Z 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-06-01T21:09:20.4846617Z [3656/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UnaryOpsKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:20.5361191Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:20.5362670Z 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-06-01T21:09:20.5364034Z 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-06-01T21:09:20.5365281Z 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-06-01T21:09:20.5366343Z [3657/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\StackKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:20.5367572Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:20.5368819Z 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-06-01T21:09:20.6186820Z 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-06-01T21:09:20.6189239Z 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-06-01T21:09:20.6191469Z [3658/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SortingKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:20.6193338Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:20.6195557Z 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-06-01T21:09:20.6386168Z 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-06-01T21:09:20.6387861Z 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-06-01T21:09:20.6388977Z [3659/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SparseFactories.cpp.AVX2.cpp.obj 2025-06-01T21:09:20.6389973Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:20.6391240Z 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-06-01T21:09:20.7486994Z 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-06-01T21:09:20.7489522Z 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-06-01T21:09:20.7491635Z [3660/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SpmmReduceKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:20.7493614Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:20.7496127Z 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-06-01T21:09:20.9303796Z 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-06-01T21:09:20.9306306Z 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-06-01T21:09:20.9308229Z [3661/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SoftMaxKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:20.9310168Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:20.9312485Z 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-06-01T21:09:21.1341925Z 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-06-01T21:09:21.1343829Z 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-06-01T21:09:21.1345073Z [3662/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ScatterGatherKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:21.1346340Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:21.1347772Z 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-06-01T21:09:21.1824136Z 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-06-01T21:09:21.1825412Z 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-06-01T21:09:21.1826678Z [3663/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\RenormKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:21.1827674Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:21.1828997Z 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-06-01T21:09:21.2473385Z 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-06-01T21:09:21.2474945Z 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-06-01T21:09:21.2476218Z [3664/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReducedPrecisionFloatGemvFastPathKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:21.2477552Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:21.2478935Z 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-06-01T21:09:21.4555027Z 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-06-01T21:09:21.4557499Z 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-06-01T21:09:21.4559565Z [3665/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\RangeFactoriesKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:21.4561569Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:21.4563859Z 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-06-01T21:09:21.4738234Z 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-06-01T21:09:21.4739990Z 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-06-01T21:09:21.4741202Z [3666/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SampledAddmmKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:21.4742410Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:21.4743917Z 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-06-01T21:09:21.6299792Z 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-06-01T21:09:21.6302269Z 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-06-01T21:09:21.6304308Z [3667/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PowKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:21.6306134Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:21.6308440Z 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-06-01T21:09:21.7336455Z 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-06-01T21:09:21.7337923Z 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-06-01T21:09:21.7339258Z [3668/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReduceAllOpsKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:21.7340357Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:21.7341799Z 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-06-01T21:09:21.7493153Z 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-06-01T21:09:21.7495659Z 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-06-01T21:09:21.7497812Z [3669/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReduceOpsKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:21.7499780Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:21.7502110Z 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-06-01T21:09:21.8321672Z 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-06-01T21:09:21.8323837Z 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-06-01T21:09:21.8325567Z [3670/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PointwiseOpsKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:21.8326906Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:21.8328250Z 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-06-01T21:09:21.9754957Z 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-06-01T21:09:21.9756359Z 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-06-01T21:09:21.9757465Z [3671/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PixelShuffleKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:21.9758573Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:21.9761214Z 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-06-01T21:09:22.2931651Z 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-06-01T21:09:22.2933006Z 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-06-01T21:09:22.2934109Z [3672/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PaddingKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:22.2935241Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:22.2936463Z 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-06-01T21:09:22.5096340Z 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-06-01T21:09:22.5097660Z 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-06-01T21:09:22.5098872Z [3673/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\NativeMultiheadAttnKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:22.5099943Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:22.5101211Z 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-06-01T21:09:22.5802609Z 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-06-01T21:09:22.5804261Z 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-06-01T21:09:22.5805526Z [3674/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MultinomialKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:22.5806835Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:22.5808093Z 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-06-01T21:09:22.6546807Z 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-06-01T21:09:22.6548495Z 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-06-01T21:09:22.6549783Z [3675/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxUnpoolKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:22.6550999Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:22.6552152Z 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-06-01T21:09:22.6692334Z 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-06-01T21:09:22.6694648Z 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-06-01T21:09:22.6696519Z [3676/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\LerpKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:22.6698353Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:22.6700417Z 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-06-01T21:09:22.7623727Z 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-06-01T21:09:22.7626700Z 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-06-01T21:09:22.7627848Z [3677/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxPooling.cpp.AVX2.cpp.obj 2025-06-01T21:09:22.7628911Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:22.7631331Z 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-06-01T21:09:22.8269344Z 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-06-01T21:09:22.8271338Z 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-06-01T21:09:22.8273178Z [3678/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\LinearAlgebraKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:22.8274981Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:22.8277106Z 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-06-01T21:09:22.8679379Z 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-06-01T21:09:22.8680666Z 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-06-01T21:09:22.8681777Z [3679/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxPoolKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:22.8683165Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:22.8684511Z 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-06-01T21:09:23.0763434Z 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-06-01T21:09:23.0764949Z 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-06-01T21:09:23.0766042Z [3680/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\IndexKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:23.0767182Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:23.0768336Z 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-06-01T21:09:23.3069156Z 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-06-01T21:09:23.3071738Z 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-06-01T21:09:23.3073852Z [3681/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\GridSamplerKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:23.3075892Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:23.3078239Z 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-06-01T21:09:23.4576286Z 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-06-01T21:09:23.4577585Z 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-06-01T21:09:23.4578724Z [3682/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FunctionOfAMatrixUtilsKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:23.5255669Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:23.5257628Z [3683/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\HistogramKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:23.6209175Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:23.6210484Z [3684/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedSGDKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:23.6211487Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:23.6212660Z 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-06-01T21:09:23.7295539Z 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-06-01T21:09:23.7296850Z 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-06-01T21:09:23.7298011Z [3685/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedAdamKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:23.7298987Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:23.7300236Z 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-06-01T21:09:23.7729618Z 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-06-01T21:09:23.7731035Z 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-06-01T21:09:23.7733300Z [3686/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FillKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:23.7734445Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:23.7735718Z 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-06-01T21:09:23.7867816Z 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-06-01T21:09:23.7869108Z 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-06-01T21:09:23.7870319Z [3687/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedAdagradKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:23.7871429Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:23.7872933Z 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-06-01T21:09:24.0565991Z 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-06-01T21:09:24.0568602Z 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-06-01T21:09:24.0570746Z [3688/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FlashAttentionKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:24.0572947Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:24.0575204Z 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-06-01T21:09:24.4971060Z 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-06-01T21:09:24.4972495Z 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-06-01T21:09:24.4974511Z [3689/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ChannelShuffleKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:24.4975801Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:24.4976963Z 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-06-01T21:09:24.5702771Z 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-06-01T21:09:24.5704101Z 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-06-01T21:09:24.5705197Z [3690/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DistanceOpsKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:24.5706206Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:24.5707389Z 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-06-01T21:09:24.5708703Z 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-06-01T21:09:24.5709944Z 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-06-01T21:09:24.5711202Z 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-06-01T21:09:24.5712479Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(177): note: see reference to class template instantiation 'at::vec::VecReduceAllSIMD' being compiled 2025-06-01T21:09:24.5713302Z with 2025-06-01T21:09:24.5713501Z [ 2025-06-01T21:09:24.5713727Z scalar_t=float, 2025-06-01T21:09:24.5714282Z Op=at::vec::AVX2::Vectorized (const at::vec::AVX2::Vectorized &,const at::vec::AVX2::Vectorized &) 2025-06-01T21:09:24.5714789Z ] 2025-06-01T21:09:24.5715914Z 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-06-01T21:09:24.5717073Z with 2025-06-01T21:09:24.5717249Z [ 2025-06-01T21:09:24.5717469Z scalar_t=float, 2025-06-01T21:09:24.5718027Z ReduceOp=at::vec::AVX2::Vectorized (const at::vec::AVX2::Vectorized &,const at::vec::AVX2::Vectorized &), 2025-06-01T21:09:24.5719054Z Op=at::vec::AVX2::Vectorized (const at::vec::AVX2::Vectorized &,const at::vec::AVX2::Vectorized &) 2025-06-01T21:09:24.5719552Z ] 2025-06-01T21:09:24.5721466Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(177): note: see reference to function template instantiation 'scalar_t at::vec::map2_reduce_all::run_parallel_pdist::::()::,data_t(const data_t &,const data_t &),0>(const MapOp &,ReduceOp (__cdecl &),const scalar_t *,const scalar_t *,int64_t)' being compiled 2025-06-01T21:09:24.5723414Z with 2025-06-01T21:09:24.5723592Z [ 2025-06-01T21:09:24.5723910Z scalar_t=scalar_t, 2025-06-01T21:09:24.5724187Z data_t=at::vec::AVX2::Vectorized, 2025-06-01T21:09:24.5724947Z MapOp=at::native::`anonymous-namespace'::Dist::run_parallel_pdist::::()::, 2025-06-01T21:09:24.5725994Z ReduceOp=at::vec::AVX2::Vectorized (const at::vec::AVX2::Vectorized &,const at::vec::AVX2::Vectorized &) 2025-06-01T21:09:24.5726563Z ] 2025-06-01T21:09:24.5728073Z 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-06-01T21:09:24.5729721Z with 2025-06-01T21:09:24.5729903Z [ 2025-06-01T21:09:24.5730096Z scalar_t=scalar_t 2025-06-01T21:09:24.5730319Z ] 2025-06-01T21:09:24.5732305Z 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-06-01T21:09:24.5737687Z with 2025-06-01T21:09:24.5738068Z [ 2025-06-01T21:09:24.5738397Z scalar_t=scalar_t 2025-06-01T21:09:24.5738791Z ] 2025-06-01T21:09:24.5740783Z 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-06-01T21:09:24.5742973Z with 2025-06-01T21:09:24.5743298Z [ 2025-06-01T21:09:24.5743657Z scalar_t=scalar_t 2025-06-01T21:09:24.5744091Z ] 2025-06-01T21:09:24.5782756Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(420): note: see reference to function template instantiation 'void at::native::`anonymous-namespace'::Dist::apply_pdist(at::Tensor &,const at::Tensor &,const scalar_t)' being compiled 2025-06-01T21:09:24.5784053Z with 2025-06-01T21:09:24.5784256Z [ 2025-06-01T21:09:24.5784482Z scalar_t=scalar_t 2025-06-01T21:09:24.5784727Z ] 2025-06-01T21:09:24.5785665Z 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-06-01T21:09:24.5786974Z [3691/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DistributionKernels.cpp.AVX2.cpp.obj 2025-06-01T21:09:24.5788001Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:24.5789364Z 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-06-01T21:09:24.5893221Z 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-06-01T21:09:24.5894507Z 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-06-01T21:09:24.5895682Z [3692/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DepthwiseConvKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:24.6462463Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:24.6463771Z [3693/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CrossKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:24.6480650Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:24.6481649Z [3694/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CopyKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:24.6482668Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:24.6484023Z 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-06-01T21:09:24.7852085Z 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-06-01T21:09:24.7853418Z 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-06-01T21:09:24.7854565Z [3695/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ComplexKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:24.7855563Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:24.7856728Z 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-06-01T21:09:25.0917197Z 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-06-01T21:09:25.0918504Z 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-06-01T21:09:25.0919572Z [3696/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CatKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:25.0920533Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:25.0923294Z 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-06-01T21:09:25.1067550Z 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-06-01T21:09:25.1069791Z 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-06-01T21:09:25.1072086Z [3697/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\BlasKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:25.3521344Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:25.3522587Z [3698/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\BinaryOpsKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:25.3523762Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:25.3525170Z 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-06-01T21:09:25.5369758Z 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-06-01T21:09:25.5372120Z 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-06-01T21:09:25.5374303Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp(537): warning C4333: '>>': right shift by too large amount, data loss 2025-06-01T21:09:25.5376093Z [3699/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\Activation.cpp.AVX2.cpp.obj 2025-06-01T21:09:25.5377885Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:25.5380018Z 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-06-01T21:09:25.6472488Z 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-06-01T21:09:25.6473787Z 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-06-01T21:09:25.6474883Z [3700/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AdaptiveMaxPoolKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:25.6475930Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:25.6477092Z 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-06-01T21:09:25.6806632Z 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-06-01T21:09:25.6808047Z 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-06-01T21:09:25.6809099Z [3701/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AvgPoolKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:25.6810124Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:25.6811402Z 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-06-01T21:09:25.7115834Z 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-06-01T21:09:25.7118405Z 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-06-01T21:09:25.7120548Z [3702/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AdaptiveAvgPoolKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:25.7122856Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:25.7125589Z 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-06-01T21:09:25.7253300Z 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-06-01T21:09:25.7255327Z 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-06-01T21:09:25.7257063Z [3703/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AmpGradScalerKernels.cpp.AVX2.cpp.obj 2025-06-01T21:09:25.7258751Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:25.7260658Z 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-06-01T21:09:25.8058967Z 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-06-01T21:09:25.8060434Z 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-06-01T21:09:25.8061592Z [3704/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\UfuncCPUKernel_add.cpp.AVX512.cpp.obj 2025-06-01T21:09:26.0929877Z [3705/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\spherical_bessel_j0.cpp.AVX512.cpp.obj 2025-06-01T21:09:26.2413586Z [3706/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\scaled_modified_bessel_k1.cpp.AVX512.cpp.obj 2025-06-01T21:09:26.3083857Z [3707/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\kernels\QuantizedOpKernels.cpp.AVX512.cpp.obj 2025-06-01T21:09:26.3930880Z [3708/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\scaled_modified_bessel_k0.cpp.AVX512.cpp.obj 2025-06-01T21:09:26.7613021Z [3709/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\int8mm_kernel.cpp.AVX512.cpp.obj 2025-06-01T21:09:26.8600174Z [3710/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\layer_norm_kernel.cpp.AVX512.cpp.obj 2025-06-01T21:09:26.8763711Z [3711/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\int4mm_kernel.cpp.AVX512.cpp.obj 2025-06-01T21:09:26.9332155Z [3712/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\group_norm_kernel.cpp.AVX512.cpp.obj 2025-06-01T21:09:26.9547733Z [3713/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\airy_ai.cpp.AVX512.cpp.obj 2025-06-01T21:09:27.0304782Z [3714/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\WeightNormKernel.cpp.AVX512.cpp.obj 2025-06-01T21:09:27.2911276Z [3715/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\batch_norm_kernel.cpp.AVX512.cpp.obj 2025-06-01T21:09:27.4150103Z [3716/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UpSampleMoreKernel.cpp.AVX512.cpp.obj 2025-06-01T21:09:27.6420835Z [3717/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\Unfold2d.cpp.AVX512.cpp.obj 2025-06-01T21:09:27.8055405Z [3718/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SumKernel.cpp.AVX512.cpp.obj 2025-06-01T21:09:27.8799582Z [3719/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UpSampleKernel.cpp.AVX512.cpp.obj 2025-06-01T21:09:28.0180469Z [3720/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UnfoldBackwardKernel.cpp.AVX512.cpp.obj 2025-06-01T21:09:28.0840638Z [3721/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\TensorCompareKernel.cpp.AVX512.cpp.obj 2025-06-01T21:09:28.0948999Z [3722/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UnaryOpsKernel.cpp.AVX512.cpp.obj 2025-06-01T21:09:28.2788672Z [3723/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\StackKernel.cpp.AVX512.cpp.obj 2025-06-01T21:09:28.2947099Z [3724/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SparseFactories.cpp.AVX512.cpp.obj 2025-06-01T21:09:28.5496923Z [3725/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SortingKernel.cpp.AVX512.cpp.obj 2025-06-01T21:09:28.5903170Z [3726/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SpmmReduceKernel.cpp.AVX512.cpp.obj 2025-06-01T21:09:28.7450226Z [3727/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\RenormKernel.cpp.AVX512.cpp.obj 2025-06-01T21:09:28.8482159Z [3728/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SoftMaxKernel.cpp.AVX512.cpp.obj 2025-06-01T21:09:28.9905902Z [3729/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReducedPrecisionFloatGemvFastPathKernel.cpp.AVX512.cpp.obj 2025-06-01T21:09:29.1269240Z [3730/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ScatterGatherKernel.cpp.AVX512.cpp.obj 2025-06-01T21:09:29.1878605Z [3731/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SampledAddmmKernel.cpp.AVX512.cpp.obj 2025-06-01T21:09:29.2803048Z [3732/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\RangeFactoriesKernel.cpp.AVX512.cpp.obj 2025-06-01T21:09:29.4122437Z [3733/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PowKernel.cpp.AVX512.cpp.obj 2025-06-01T21:09:29.5066247Z [3734/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReduceOpsKernel.cpp.AVX512.cpp.obj 2025-06-01T21:09:29.5594046Z [3735/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PointwiseOpsKernel.cpp.AVX512.cpp.obj 2025-06-01T21:09:29.7384800Z [3736/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PixelShuffleKernel.cpp.AVX512.cpp.obj 2025-06-01T21:09:29.7701412Z [3737/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReduceAllOpsKernel.cpp.AVX512.cpp.obj 2025-06-01T21:09:30.1488926Z [3738/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PaddingKernel.cpp.AVX512.cpp.obj 2025-06-01T21:09:30.2213129Z [3739/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\NativeMultiheadAttnKernel.cpp.AVX512.cpp.obj 2025-06-01T21:09:30.3973159Z [3740/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxUnpoolKernel.cpp.AVX512.cpp.obj 2025-06-01T21:09:30.4501870Z [3741/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MultinomialKernel.cpp.AVX512.cpp.obj 2025-06-01T21:09:30.4721775Z [3742/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxPooling.cpp.AVX512.cpp.obj 2025-06-01T21:09:30.5888566Z [3743/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\LerpKernel.cpp.AVX512.cpp.obj 2025-06-01T21:09:30.7406577Z [3744/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxPoolKernel.cpp.AVX512.cpp.obj 2025-06-01T21:09:30.7531380Z [3745/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\LinearAlgebraKernel.cpp.AVX512.cpp.obj 2025-06-01T21:09:30.8651215Z [3746/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\IndexKernel.cpp.AVX512.cpp.obj 2025-06-01T21:09:31.1463069Z [3747/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\GridSamplerKernel.cpp.AVX512.cpp.obj 2025-06-01T21:09:31.2486881Z [3748/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\HistogramKernel.cpp.AVX512.cpp.obj 2025-06-01T21:09:31.4342721Z [3749/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FunctionOfAMatrixUtilsKernel.cpp.AVX512.cpp.obj 2025-06-01T21:09:31.4913365Z [3750/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedSGDKernel.cpp.AVX512.cpp.obj 2025-06-01T21:09:31.5156342Z [3751/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedAdamKernel.cpp.AVX512.cpp.obj 2025-06-01T21:09:31.5995042Z [3752/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedAdagradKernel.cpp.AVX512.cpp.obj 2025-06-01T21:09:31.6422353Z [3753/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FillKernel.cpp.AVX512.cpp.obj 2025-06-01T21:09:31.9518120Z [3754/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FlashAttentionKernel.cpp.AVX512.cpp.obj 2025-06-01T21:09:32.1291032Z [3755/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DistanceOpsKernel.cpp.AVX512.cpp.obj 2025-06-01T21:09:32.1293148Z 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-06-01T21:09:32.1295489Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(177): note: see reference to class template instantiation 'at::vec::VecReduceAllSIMD' being compiled 2025-06-01T21:09:32.1297057Z with 2025-06-01T21:09:32.1297396Z [ 2025-06-01T21:09:32.1297709Z scalar_t=float, 2025-06-01T21:09:32.1298674Z Op=at::vec::AVX512::Vectorized (const at::vec::AVX512::Vectorized &,const at::vec::AVX512::Vectorized &) 2025-06-01T21:09:32.1299683Z ] 2025-06-01T21:09:32.1301569Z 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-06-01T21:09:32.1303510Z with 2025-06-01T21:09:32.1303816Z [ 2025-06-01T21:09:32.1304131Z scalar_t=float, 2025-06-01T21:09:32.1305158Z ReduceOp=at::vec::AVX512::Vectorized (const at::vec::AVX512::Vectorized &,const at::vec::AVX512::Vectorized &), 2025-06-01T21:09:32.1306806Z Op=at::vec::AVX512::Vectorized (const at::vec::AVX512::Vectorized &,const at::vec::AVX512::Vectorized &) 2025-06-01T21:09:32.1307790Z ] 2025-06-01T21:09:32.1311231Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(177): note: see reference to function template instantiation 'scalar_t at::vec::map2_reduce_all::run_parallel_pdist::::()::,data_t(const data_t &,const data_t &),0>(const MapOp &,ReduceOp (__cdecl &),const scalar_t *,const scalar_t *,int64_t)' being compiled 2025-06-01T21:09:32.1315166Z with 2025-06-01T21:09:32.1315454Z [ 2025-06-01T21:09:32.1315719Z scalar_t=scalar_t, 2025-06-01T21:09:32.1316178Z data_t=at::vec::AVX512::Vectorized, 2025-06-01T21:09:32.1317841Z MapOp=at::native::`anonymous-namespace'::Dist::run_parallel_pdist::::()::, 2025-06-01T21:09:32.1319883Z ReduceOp=at::vec::AVX512::Vectorized (const at::vec::AVX512::Vectorized &,const at::vec::AVX512::Vectorized &) 2025-06-01T21:09:32.1320946Z ] 2025-06-01T21:09:32.1323686Z 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-06-01T21:09:32.1326789Z with 2025-06-01T21:09:32.1327110Z [ 2025-06-01T21:09:32.1327417Z scalar_t=scalar_t 2025-06-01T21:09:32.1327804Z ] 2025-06-01T21:09:32.1330590Z 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-06-01T21:09:32.1333696Z with 2025-06-01T21:09:32.1334001Z [ 2025-06-01T21:09:32.1334323Z scalar_t=scalar_t 2025-06-01T21:09:32.1334720Z ] 2025-06-01T21:09:32.1336662Z 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-06-01T21:09:32.1338961Z with 2025-06-01T21:09:32.1339262Z [ 2025-06-01T21:09:32.1339578Z scalar_t=scalar_t 2025-06-01T21:09:32.1339972Z ] 2025-06-01T21:09:32.2180235Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(420): note: see reference to function template instantiation 'void at::native::`anonymous-namespace'::Dist::apply_pdist(at::Tensor &,const at::Tensor &,const scalar_t)' being compiled 2025-06-01T21:09:32.2181550Z with 2025-06-01T21:09:32.2181755Z [ 2025-06-01T21:09:32.2181942Z scalar_t=scalar_t 2025-06-01T21:09:32.2182156Z ] 2025-06-01T21:09:32.2183083Z 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-06-01T21:09:32.2184469Z [3756/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DistributionKernels.cpp.AVX512.cpp.obj 2025-06-01T21:09:32.4000776Z [3757/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ChannelShuffleKernel.cpp.AVX512.cpp.obj 2025-06-01T21:09:32.4326035Z [3758/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CopyKernel.cpp.AVX512.cpp.obj 2025-06-01T21:09:32.4489930Z [3759/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CrossKernel.cpp.AVX512.cpp.obj 2025-06-01T21:09:32.5018622Z [3760/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DepthwiseConvKernel.cpp.AVX512.cpp.obj 2025-06-01T21:09:32.6772320Z [3761/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\BlasKernel.cpp.AVX512.cpp.obj 2025-06-01T21:09:32.7382139Z [3762/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ComplexKernel.cpp.AVX512.cpp.obj 2025-06-01T21:09:32.7999340Z [3763/7110] Building CXX object caffe2\CMakeFiles\torch.dir\__\empty.cpp.obj 2025-06-01T21:09:32.9955901Z [3764/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\BinaryOpsKernel.cpp.AVX512.cpp.obj 2025-06-01T21:09:33.1018828Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp(537): warning C4333: '>>': right shift by too large amount, data loss 2025-06-01T21:09:33.1020107Z [3765/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CatKernel.cpp.AVX512.cpp.obj 2025-06-01T21:09:33.2191381Z [3766/7110] Building CXX object caffe2\torch\lib\libshm_windows\CMakeFiles\shm.dir\core.cpp.obj 2025-06-01T21:09:33.4377572Z [3767/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\Activation.cpp.AVX512.cpp.obj 2025-06-01T21:09:33.4608424Z [3768/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AvgPoolKernel.cpp.AVX512.cpp.obj 2025-06-01T21:09:33.5313635Z [3769/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AdaptiveMaxPoolKernel.cpp.AVX512.cpp.obj 2025-06-01T21:09:33.5356049Z [3770/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AdaptiveAvgPoolKernel.cpp.AVX512.cpp.obj 2025-06-01T21:09:33.5641954Z [3771/7110] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AmpGradScalerKernels.cpp.AVX512.cpp.obj 2025-06-01T21:09:33.9701034Z [3772/7110] Building CXX object test_edge_op_registration\CMakeFiles\unbox_lib.dir\__\out\RegisterCPUCustomOps.cpp.obj 2025-06-01T21:09:34.2059498Z [3773/7110] Building CXX object test_edge_op_registration\CMakeFiles\unbox_lib.dir\custom_ops.cpp.obj 2025-06-01T21:09:34.4586352Z [3774/7110] Building CXX object test_jit\CMakeFiles\jitbackend_test.dir\test_backend_lib.cpp.obj 2025-06-01T21:09:34.6136748Z [3775/7110] Building CXX object test_jit\CMakeFiles\backend_with_compiler.dir\test_backend_compiler_preprocess.cpp.obj 2025-06-01T21:09:34.6294607Z [3776/7110] Building CXX object test_jit\CMakeFiles\backend_with_compiler.dir\test_backend_compiler_lib.cpp.obj 2025-06-01T21:09:34.9499964Z [3777/7110] Building CXX object test_jit\CMakeFiles\backend_with_compiler.dir\__\__\__\torch\csrc\jit\mobile\profiler_edge.cpp.obj 2025-06-01T21:09:35.6732455Z [3778/7110] Building CXX object test_edge_op_registration\CMakeFiles\unbox_lib.dir\__\out\RegisterCodegenUnboxedKernelsEverything.cpp.obj 2025-06-01T21:09:35.8316385Z [3779/7110] Building CXX object test_edge_op_registration\CMakeFiles\unbox_lib.dir\operator_registry.cpp.obj 2025-06-01T21:09:37.1802627Z [3780/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_variable_methods.cpp.obj 2025-06-01T21:09:37.4553507Z [3781/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_torch_functions_0.cpp.obj 2025-06-01T21:09:38.1274510Z [3782/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_functions_1.cpp.obj 2025-06-01T21:09:38.2109457Z [3783/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_functions_0.cpp.obj 2025-06-01T21:09:38.3097027Z [3784/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_functions_3.cpp.obj 2025-06-01T21:09:38.3611944Z [3785/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_functions_2.cpp.obj 2025-06-01T21:09:38.5826007Z [3786/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_functions_4.cpp.obj 2025-06-01T21:09:38.7988984Z [3787/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_torch_functions_1.cpp.obj 2025-06-01T21:09:39.1023336Z [3788/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_torch_functions_2.cpp.obj 2025-06-01T21:09:39.4175570Z [3789/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_nn_functions.cpp.obj 2025-06-01T21:09:39.5015251Z [3790/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_fft_functions.cpp.obj 2025-06-01T21:09:39.6018827Z [3791/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_linalg_functions.cpp.obj 2025-06-01T21:09:39.6818451Z [3792/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_nested_functions.cpp.obj 2025-06-01T21:09:39.8114075Z [3793/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_sparse_functions.cpp.obj 2025-06-01T21:09:39.9530393Z [3794/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\DataLoader.cpp.obj 2025-06-01T21:09:40.1444864Z [3795/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_special_functions.cpp.obj 2025-06-01T21:09:40.1539213Z [3796/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_return_types.cpp.obj 2025-06-01T21:09:40.4727319Z [3797/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_enum_tag.cpp.obj 2025-06-01T21:09:40.6816074Z [3798/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\DeviceAccelerator.cpp.obj 2025-06-01T21:09:40.9190375Z [3799/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Device.cpp.obj 2025-06-01T21:09:40.9771075Z [3800/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Dtype.cpp.obj 2025-06-01T21:09:41.6461019Z [3801/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Layout.cpp.obj 2025-06-01T21:09:41.7462759Z [3802/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\MemoryFormat.cpp.obj 2025-06-01T21:09:42.0949747Z [3803/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\QScheme.cpp.obj 2025-06-01T21:09:42.8631714Z [3804/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\python_dimname.cpp.obj 2025-06-01T21:09:43.3030624Z [3805/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Size.cpp.obj 2025-06-01T21:09:43.8280412Z [3806/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\DynamicTypes.cpp.obj 2025-06-01T21:09:43.9385516Z [3807/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Generator.cpp.obj 2025-06-01T21:09:44.1217916Z [3808/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Exceptions.cpp.obj 2025-06-01T21:09:44.9544176Z [3809/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Module.cpp.obj 2025-06-01T21:09:45.4194678Z [3810/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\PyInterpreter.cpp.obj 2025-06-01T21:09:47.0650751Z [3811/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Storage.cpp.obj 2025-06-01T21:09:47.5765607Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:09:47.5766642Z [3812/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\StorageMethods.cpp.obj 2025-06-01T21:09:47.6627361Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:09:47.6628580Z [3813/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Stream.cpp.obj 2025-06-01T21:09:47.7996131Z [3814/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Event.cpp.obj 2025-06-01T21:09:48.0094331Z [3815/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\StorageSharing.cpp.obj 2025-06-01T21:09:48.6290216Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:09:48.6291863Z [3816/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\TypeInfo.cpp.obj 2025-06-01T21:09:48.8890236Z [3817/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\profiler_python.cpp.obj 2025-06-01T21:09:49.0514541Z [3818/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\api\src\python\init.cpp.obj 2025-06-01T21:09:49.0719570Z [3819/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_anomaly_mode.cpp.obj 2025-06-01T21:09:49.8198687Z [3820/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_cpp_function.cpp.obj 2025-06-01T21:09:50.7264878Z [3821/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\functions\init.cpp.obj 2025-06-01T21:09:51.6146685Z [3822/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\init.cpp.obj 2025-06-01T21:09:51.6851519Z [3823/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_saved_variable_hooks.cpp.obj 2025-06-01T21:09:52.7408166Z [3824/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_engine.cpp.obj 2025-06-01T21:09:52.9001234Z [3825/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_hook.cpp.obj 2025-06-01T21:09:53.0283037Z [3826/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_function.cpp.obj 2025-06-01T21:09:53.3323172Z [3827/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_legacy_variable.cpp.obj 2025-06-01T21:09:54.2298429Z [3828/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\cache_entry.cpp.obj 2025-06-01T21:09:54.2957634Z [3829/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\cpp_shim.cpp.obj 2025-06-01T21:09:54.7095850Z [3830/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_nested_functions_manual.cpp.obj 2025-06-01T21:09:54.9009977Z [3831/7110] Building C object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\cpython_defs.c.obj 2025-06-01T21:09:55.1623408Z C:\actions-runner\_work\pytorch\pytorch\torch/csrc/utils/python_compat.h(40): warning C4273: '_PyWeakref_ClearRef': inconsistent dll linkage 2025-06-01T21:09:55.1625324Z C:\Jenkins\Miniconda3\include\weakrefobject.h(67): note: see previous definition of '_PyWeakref_ClearRef' 2025-06-01T21:09:55.1644676Z [3832/7110] Building C object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\eval_frame.c.obj 2025-06-01T21:09:55.4326719Z C:\actions-runner\_work\pytorch\pytorch\torch/csrc/utils/python_compat.h(40): warning C4273: '_PyWeakref_ClearRef': inconsistent dll linkage 2025-06-01T21:09:55.4327637Z C:\Jenkins\Miniconda3\include\weakrefobject.h(67): note: see previous definition of '_PyWeakref_ClearRef' 2025-06-01T21:09:55.4328453Z [3833/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_torch_functions_manual.cpp.obj 2025-06-01T21:09:55.4561109Z [3834/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_variable_indexing.cpp.obj 2025-06-01T21:09:55.5481086Z [3835/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_variable.cpp.obj 2025-06-01T21:09:55.7921506Z [3836/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\eval_frame_cpp.cpp.obj 2025-06-01T21:09:55.9894738Z [3837/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\extra_state.cpp.obj 2025-06-01T21:09:56.1888353Z [3838/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\framelocals_mapping.cpp.obj 2025-06-01T21:09:56.3956443Z [3839/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\fx\node.cpp.obj 2025-06-01T21:09:56.5974931Z [3840/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\utils.cpp.obj 2025-06-01T21:09:56.7154454Z [3841/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\python_compiled_autograd.cpp.obj 2025-06-01T21:09:56.7339264Z [3842/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\init.cpp.obj 2025-06-01T21:09:57.8772849Z [3843/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\export\pybind.cpp.obj 2025-06-01T21:09:57.9123998Z [3844/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\inductor\aoti_runner\pybind.cpp.obj 2025-06-01T21:09:57.9272941Z [3845/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\inductor\aoti_package\pybind.cpp.obj 2025-06-01T21:09:59.0425311Z [3846/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\inductor\resize_storage_bytes.cpp.obj 2025-06-01T21:09:59.1274542Z [3847/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\inductor\static_cuda_launcher.cpp.obj 2025-06-01T21:09:59.7299291Z [3848/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\guards.cpp.obj 2025-06-01T21:09:59.8042073Z [3849/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\mps\Module.cpp.obj 2025-06-01T21:09:59.8479359Z [3850/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\functorch\init.cpp.obj 2025-06-01T21:09:59.9446691Z [3851/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\mtia\Module.cpp.obj 2025-06-01T21:10:00.9882843Z [3852/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\cast_all_constant_to_floating.cpp.obj 2025-06-01T21:10:01.0301853Z [3853/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\deduplicate_initializers.cpp.obj 2025-06-01T21:10:01.3518929Z [3854/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\inductor\aoti_eager\kernel_meta_info.cpp.obj 2025-06-01T21:10:01.4260689Z [3855/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\inductor\aoti_eager\kernel_holder.cpp.obj 2025-06-01T21:10:02.6213420Z [3856/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\eliminate_unused_items.cpp.obj 2025-06-01T21:10:02.7385536Z [3857/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\constant_map.cpp.obj 2025-06-01T21:10:03.0543638Z [3858/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\backends\backend_init.cpp.obj 2025-06-01T21:10:03.5150142Z [3859/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\constant_fold.cpp.obj 2025-06-01T21:10:03.7962263Z [3860/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\init.cpp.obj 2025-06-01T21:10:03.8109361Z [3861/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\list_model_parameters.cpp.obj 2025-06-01T21:10:04.0976022Z [3862/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx.cpp.obj 2025-06-01T21:10:04.1237231Z [3863/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\function_substitution.cpp.obj 2025-06-01T21:10:04.8324180Z [3864/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\eval_peephole.cpp.obj 2025-06-01T21:10:04.8599733Z [3865/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\helper.cpp.obj 2025-06-01T21:10:04.9314315Z [3866/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\preprocess_for_onnx.cpp.obj 2025-06-01T21:10:04.9914270Z [3867/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\peephole.cpp.obj 2025-06-01T21:10:05.2287764Z [3868/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\prepare_division_for_onnx.cpp.obj 2025-06-01T21:10:05.2895199Z [3869/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\scalar_type_analysis.cpp.obj 2025-06-01T21:10:05.5710069Z [3870/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\onnx_log.cpp.obj 2025-06-01T21:10:05.9757224Z [3871/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\remove_inplace_ops_for_onnx.cpp.obj 2025-06-01T21:10:06.1736692Z [3872/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\function_extraction.cpp.obj 2025-06-01T21:10:06.3459243Z [3873/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\naming.cpp.obj 2025-06-01T21:10:06.4042054Z [3874/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\fixup_onnx_controlflow.cpp.obj 2025-06-01T21:10:07.1033570Z [3875/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\pattern_conversion\autograd_function_process.cpp.obj 2025-06-01T21:10:07.2729099Z [3876/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\unpack_quantized_weights.cpp.obj 2025-06-01T21:10:07.3347056Z [3877/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\pattern_conversion\common.cpp.obj 2025-06-01T21:10:07.5417447Z [3878/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\pattern_conversion\pattern_encapsulation.cpp.obj 2025-06-01T21:10:07.6408792Z [3879/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\pattern_conversion\pattern_conversion.cpp.obj 2025-06-01T21:10:09.1381885Z [3880/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\shape_type_inference.cpp.obj 2025-06-01T21:10:09.4626029Z [3881/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\pybind_utils.cpp.obj 2025-06-01T21:10:10.9373752Z [3882/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_arg_flatten.cpp.obj 2025-06-01T21:10:11.2397500Z [3883/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_dict.cpp.obj 2025-06-01T21:10:11.3060240Z [3884/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_custom_class.cpp.obj 2025-06-01T21:10:11.4354294Z [3885/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_interpreter.cpp.obj 2025-06-01T21:10:11.6927876Z [3886/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_ir.cpp.obj 2025-06-01T21:10:11.7744048Z [3887/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\frontend\tree_views.cpp.obj 2025-06-01T21:10:12.7772129Z [3888/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_tree_views.cpp.obj 2025-06-01T21:10:12.9570418Z [3889/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_list.cpp.obj 2025-06-01T21:10:13.2851394Z [3890/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_tracer.cpp.obj 2025-06-01T21:10:14.1473015Z [3891/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\monitor\python_init.cpp.obj 2025-06-01T21:10:14.3842946Z [3892/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\multiprocessing\init.cpp.obj 2025-06-01T21:10:15.0965510Z [3893/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\script_init.cpp.obj 2025-06-01T21:10:15.1722525Z [3894/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\frontend\concrete_module_type.cpp.obj 2025-06-01T21:10:15.1723712Z C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\xstddef(185): warning C4996: 'pybind11::handle::operator ==': Use obj1.is(obj2) instead 2025-06-01T21:10:15.1725748Z C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\xutility(4697): note: see reference to function template instantiation 'bool std::equal_to::operator ()(_Ty1,_Ty2) noexcept(false) const' being compiled 2025-06-01T21:10:15.1726945Z with 2025-06-01T21:10:15.1727160Z [ 2025-06-01T21:10:15.1727364Z _Ty1=const pybind11::object &, 2025-06-01T21:10:15.1727674Z _Ty2=const pybind11::object & 2025-06-01T21:10:15.1727930Z ] 2025-06-01T21:10:15.1729096Z C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\xutility(4714): note: see reference to function template instantiation 'bool std::equal<_InIt1,_InIt2,std::equal_to>(const _InIt1,const _InIt1,const _InIt2,_Pr)' being compiled 2025-06-01T21:10:15.1730132Z with 2025-06-01T21:10:15.1730308Z [ 2025-06-01T21:10:15.1730545Z _InIt1=const pybind11::object *, 2025-06-01T21:10:15.1730885Z _InIt2=const pybind11::object *, 2025-06-01T21:10:15.1731162Z _Pr=std::equal_to 2025-06-01T21:10:15.1731466Z ] 2025-06-01T21:10:15.1732812Z C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vector(1847): note: see reference to function template instantiation 'bool std::equal(const _InIt1,const _InIt1,const _InIt2)' being compiled 2025-06-01T21:10:15.1734154Z with 2025-06-01T21:10:15.1734341Z [ 2025-06-01T21:10:15.1734609Z _InIt1=const pybind11::object *, 2025-06-01T21:10:15.1734906Z _InIt2=const pybind11::object * 2025-06-01T21:10:15.1735246Z ] 2025-06-01T21:10:15.2883113Z 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-06-01T21:10:15.2885093Z [3895/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_sugared_value.cpp.obj 2025-06-01T21:10:15.7140075Z [3896/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\runtime\static\init.cpp.obj 2025-06-01T21:10:16.3375361Z [3897/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\profiler\python\combined_traceback.cpp.obj 2025-06-01T21:10:16.7267940Z [3898/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\tensorexpr\tensorexpr_init.cpp.obj 2025-06-01T21:10:18.2865972Z [3899/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\onnx\init.cpp.obj 2025-06-01T21:10:18.5582180Z [3900/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\profiler\python\init.cpp.obj 2025-06-01T21:10:18.8725344Z [3901/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\serialization.cpp.obj 2025-06-01T21:10:19.0195003Z [3902/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\tensor\python_tensor.cpp.obj 2025-06-01T21:10:19.3959407Z [3903/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\device_lazy_init.cpp.obj 2025-06-01T21:10:19.4117443Z [3904/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\object_ptr.cpp.obj 2025-06-01T21:10:19.5766077Z [3905/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\init.cpp.obj 2025-06-01T21:10:19.6542412Z [3906/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\invalid_arguments.cpp.obj 2025-06-01T21:10:20.2800249Z [3907/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\throughput_benchmark.cpp.obj 2025-06-01T21:10:20.4415113Z [3908/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils.cpp.obj 2025-06-01T21:10:20.6422172Z [3909/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\pyobject_preservation.cpp.obj 2025-06-01T21:10:20.7630884Z [3910/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\python_symnode.cpp.obj 2025-06-01T21:10:20.7996495Z [3911/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\pybind.cpp.obj 2025-06-01T21:10:21.5927329Z [3912/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\structseq.cpp.obj 2025-06-01T21:10:21.8812754Z [3913/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_dtypes.cpp.obj 2025-06-01T21:10:21.8883684Z [3914/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_layouts.cpp.obj 2025-06-01T21:10:22.6817368Z [3915/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_memoryformats.cpp.obj 2025-06-01T21:10:22.7595776Z [3916/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\nested.cpp.obj 2025-06-01T21:10:23.0153410Z [3917/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_qschemes.cpp.obj 2025-06-01T21:10:23.0634349Z [3918/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\python_arg_parser.cpp.obj 2025-06-01T21:10:23.3157873Z [3919/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\python_dispatch.cpp.obj 2025-06-01T21:10:24.2571590Z [3920/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_types.cpp.obj 2025-06-01T21:10:24.2852214Z [3921/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\disable_torch_function.cpp.obj 2025-06-01T21:10:24.3809526Z [3922/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_apply.cpp.obj 2025-06-01T21:10:24.3983242Z [3923/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\verbose.cpp.obj 2025-06-01T21:10:25.3198795Z [3924/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\instruction_counter\Module.cpp.obj 2025-06-01T21:10:25.3384195Z [3925/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cpu\Module.cpp.obj 2025-06-01T21:10:25.5971021Z [3926/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_list.cpp.obj 2025-06-01T21:10:25.6773672Z [3927/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\lazy\python\python_util.cpp.obj 2025-06-01T21:10:26.4188117Z [3928/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\itt.cpp.obj 2025-06-01T21:10:26.4380610Z [3929/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_numpy.cpp.obj 2025-06-01T21:10:26.5147061Z [3930/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_new.cpp.obj 2025-06-01T21:10:26.5298452Z [3931/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-scalar-u1.c.obj 2025-06-01T21:10:26.5551608Z [3932/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-scalar-u2.c.obj 2025-06-01T21:10:26.6230348Z [3933/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-scalar-u2.c.obj 2025-06-01T21:10:26.6349907Z [3934/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-scalar-u2.c.obj 2025-06-01T21:10:26.6579288Z [3935/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-scalar-u2.c.obj 2025-06-01T21:10:26.7371406Z [3936/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-scalar-andxor-u1.c.obj 2025-06-01T21:10:26.7517108Z [3937/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-scalar-andxor-u2.c.obj 2025-06-01T21:10:26.7755964Z [3938/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-scalar-select-u1.c.obj 2025-06-01T21:10:26.8816357Z [3939/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-scalar-select-u2.c.obj 2025-06-01T21:10:26.8894741Z [3940/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vmul\gen\qs8-vmul-minmax-fp32-scalar-u1.c.obj 2025-06-01T21:10:26.8994228Z [3941/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vmul\gen\qs8-vmul-minmax-fp32-scalar-u2.c.obj 2025-06-01T21:10:26.9915297Z [3942/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vmulc\gen\qs8-vmulc-minmax-fp32-scalar-u2.c.obj 2025-06-01T21:10:27.0232050Z [3943/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vmulc\gen\qs8-vmulc-minmax-fp32-scalar-u1.c.obj 2025-06-01T21:10:27.0432709Z [3944/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:10:27.1152934Z [3945/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:10:27.1754524Z [3946/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:10:27.1822815Z [3947/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:10:27.2257817Z [3948/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:10:27.2925098Z [3949/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:10:27.2981652Z [3950/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:10:27.3414325Z [3951/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:10:27.4028078Z [3952/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:10:27.4234664Z [3953/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:10:27.4489506Z [3954/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:10:27.5204708Z [3955/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:10:27.5439158Z [3956/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:10:27.5801720Z [3957/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:10:27.6452944Z [3958/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:10:27.6908231Z [3959/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:10:27.7071599Z [3960/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:10:27.7599465Z [3961/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:10:27.8162168Z [3962/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:10:27.8219450Z [3963/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:10:27.8763932Z [3964/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:10:27.9457736Z [3965/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:10:27.9513114Z [3966/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:10:27.9908233Z [3967/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:10:28.0652639Z [3968/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:10:28.0707810Z [3969/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:10:28.1014159Z [3970/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:10:28.1830988Z [3971/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p1c-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:10:28.1889234Z [3972/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p1c-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:10:28.2225666Z [3973/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p1c-minmax-rndnu-scalar.c.obj 2025-06-01T21:10:28.3056654Z [3974/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p2c-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:10:28.3119826Z [3975/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p2c-minmax-rndnu-scalar.c.obj 2025-06-01T21:10:28.3397505Z [3976/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p4c-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:10:28.3646332Z [3977/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\lazy\python\init.cpp.obj 2025-06-01T21:10:28.4220463Z [3978/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p4c-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:10:28.4278959Z [3979/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p4c-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:10:28.4554401Z [3980/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p4c-minmax-rndnu-scalar.c.obj 2025-06-01T21:10:28.4809917Z [3981/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p1c-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:10:28.5336417Z [3982/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p2c-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:10:28.5497268Z [3983/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p2c-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:10:28.5675177Z [3984/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p4c-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:10:28.6416511Z [3985/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p4c-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:10:28.6587994Z [3986/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-scalar-u3.c.obj 2025-06-01T21:10:28.6742572Z [3987/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p4c-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:10:28.6807155Z [3988/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-scalar-u2.c.obj 2025-06-01T21:10:28.7740295Z [3989/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x2-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:10:28.8021738Z [3990/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x2-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:10:28.8371476Z [3991/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x2-minmax-rndnu-scalar.c.obj 2025-06-01T21:10:28.8640621Z [3992/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:10:28.8901582Z [3993/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:10:28.9362257Z [3994/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\__\test\cpp\jit\torch_python_test.cpp.obj 2025-06-01T21:10:28.9427634Z [3995/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4-minmax-rndnu-scalar.c.obj 2025-06-01T21:10:28.9742167Z [3996/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x2-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:10:28.9852989Z [3997/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x2-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:10:29.0304984Z [3998/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x2-minmax-rndnu-scalar.c.obj 2025-06-01T21:10:29.0758138Z [3999/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:10:29.0773574Z [4000/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:10:29.1025549Z [4001/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:10:29.1245793Z [4002/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4-minmax-rndnu-scalar.c.obj 2025-06-01T21:10:29.1816852Z [4003/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x2-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:10:29.2054313Z [4004/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x2-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:10:29.2101566Z [4005/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x2-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:10:29.2228268Z [4006/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x2-minmax-rndnu-scalar.c.obj 2025-06-01T21:10:29.3002460Z [4007/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:10:29.3320410Z [4008/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4-minmax-rndnu-scalar.c.obj 2025-06-01T21:10:29.3374066Z [4009/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:10:29.3539165Z [4010/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x2-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:10:29.3664649Z [4011/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x2-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:10:29.4398574Z [4012/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x2-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:10:29.4615801Z [4013/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:10:29.4672058Z [4014/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x2-minmax-rndnu-scalar.c.obj 2025-06-01T21:10:29.4822824Z [4015/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:10:29.4964133Z [4016/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:10:29.5618687Z [4017/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4-minmax-rndnu-scalar.c.obj 2025-06-01T21:10:29.5958591Z [4018/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x2-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:10:29.6123535Z [4019/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x2-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:10:29.6330946Z [4020/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:10:29.7071597Z [4021/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x2-minmax-rndnu-scalar.c.obj 2025-06-01T21:10:29.7264505Z [4022/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:10:29.7781625Z [4023/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4-minmax-rndnu-scalar.c.obj 2025-06-01T21:10:29.9266527Z [4024/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x2-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:10:29.9444436Z [4025/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x2-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:10:29.9733268Z [4026/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\distributed\c10d\python_comm_hook.cpp.obj 2025-06-01T21:10:29.9782940Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:10:29.9784218Z [4027/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x2-minmax-rndnu-scalar.c.obj 2025-06-01T21:10:30.0079678Z [4028/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:10:30.0812730Z [4029/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:10:30.3362142Z [4030/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:10:30.4068336Z [4031/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4-minmax-rndnu-scalar.c.obj 2025-06-01T21:10:30.4312911Z [4032/7110] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\distributed\c10d\init.cpp.obj 2025-06-01T21:10:30.4520027Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:10:30.4521102Z [4033/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x2-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:10:31.4353011Z [4034/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x2-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:10:31.4672672Z [4035/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x2-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:10:31.5193755Z [4036/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x2-minmax-rndnu-scalar.c.obj 2025-06-01T21:10:31.5469466Z [4037/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:10:31.5682848Z [4038/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:10:31.5840657Z [4039/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4-minmax-rndnu-scalar.c.obj 2025-06-01T21:10:31.5976991Z [4040/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x2-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:10:31.6025752Z [4041/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x2-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:10:31.6340107Z [4042/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x2-minmax-rndnu-scalar.c.obj 2025-06-01T21:10:31.6506100Z [4043/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x2-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:10:31.6774146Z [4044/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:10:31.7126540Z [4045/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:10:31.7296131Z [4046/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-scalar-u2.c.obj 2025-06-01T21:10:31.7308486Z [4047/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4-minmax-rndnu-scalar.c.obj 2025-06-01T21:10:31.7363214Z [4048/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-scalar-u1.c.obj 2025-06-01T21:10:31.7514197Z [4049/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:10:31.7918298Z [4050/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-scalar-u2.c.obj 2025-06-01T21:10:31.7974764Z [4051/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-scalar-u2.c.obj 2025-06-01T21:10:31.8187907Z [4052/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-scalar-u2.c.obj 2025-06-01T21:10:31.8301904Z [4053/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-scalar-andxor-u1.c.obj 2025-06-01T21:10:31.8428010Z [4054/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-scalar-andxor-u2.c.obj 2025-06-01T21:10:31.8533250Z [4055/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-scalar-select-u1.c.obj 2025-06-01T21:10:31.9048472Z [4056/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vmul\gen\qu8-vmul-minmax-fp32-scalar-u2.c.obj 2025-06-01T21:10:31.9060762Z [4057/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-scalar-select-u2.c.obj 2025-06-01T21:10:31.9310688Z [4058/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\s8-ibilinear\gen\s8-ibilinear-scalar-c2.c.obj 2025-06-01T21:10:31.9325207Z [4059/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vmul\gen\qu8-vmul-minmax-fp32-scalar-u1.c.obj 2025-06-01T21:10:31.9381391Z [4060/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vmulc\gen\qu8-vmulc-minmax-fp32-scalar-u1.c.obj 2025-06-01T21:10:31.9505375Z [4061/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vmulc\gen\qu8-vmulc-minmax-fp32-scalar-u2.c.obj 2025-06-01T21:10:31.9822301Z [4062/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\s8-ibilinear\gen\s8-ibilinear-scalar-c4.c.obj 2025-06-01T21:10:31.9968285Z [4063/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\u8-ibilinear\gen\u8-ibilinear-scalar-c2.c.obj 2025-06-01T21:10:31.9979546Z [4064/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-scalar-u1.c.obj 2025-06-01T21:10:32.0039647Z [4065/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-scalar-u2.c.obj 2025-06-01T21:10:32.0079955Z [4066/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-scalar-u8.c.obj 2025-06-01T21:10:32.0151306Z [4067/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-scalar-u16.c.obj 2025-06-01T21:10:32.0164811Z [4068/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\u8-ibilinear\gen\u8-ibilinear-scalar-c4.c.obj 2025-06-01T21:10:32.1019971Z [4069/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x2-gemm-goi-scalar-u2.c.obj 2025-06-01T21:10:32.1119507Z [4070/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x2-gemm-goi-scalar-u4.c.obj 2025-06-01T21:10:32.1181350Z [4071/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x16-gemm-goi-scalar-u4.c.obj 2025-06-01T21:10:32.1230408Z [4072/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x32-gemm-goi-scalar-u4.c.obj 2025-06-01T21:10:32.1242779Z [4073/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x4-gemm-goi-scalar-u4.c.obj 2025-06-01T21:10:32.1310026Z [4074/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x8-gemm-goi-scalar-u4.c.obj 2025-06-01T21:10:32.1395980Z [4075/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x8c8-gemm-gio-scalar.c.obj 2025-06-01T21:10:32.1993230Z [4076/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-1x2-scalar-int.c.obj 2025-06-01T21:10:32.2148019Z [4077/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-2x1-scalar-int.c.obj 2025-06-01T21:10:32.2205099Z [4078/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-4x1-scalar-int.c.obj 2025-06-01T21:10:32.2345067Z [4079/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-4x2-scalar-int.c.obj 2025-06-01T21:10:32.2357640Z [4080/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-4x4-scalar-int.c.obj 2025-06-01T21:10:32.2416026Z [4081/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-1x4-scalar-int.c.obj 2025-06-01T21:10:32.2427258Z [4082/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-2x2-scalar-int.c.obj 2025-06-01T21:10:32.2977856Z [4083/7110] 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-06-01T21:10:32.3220302Z [4084/7110] 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-06-01T21:10:32.3263850Z [4085/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-1x2-scalar-int.c.obj 2025-06-01T21:10:32.3354109Z [4086/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-1x4-scalar-int.c.obj 2025-06-01T21:10:32.3368222Z [4087/7110] 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-06-01T21:10:32.3449266Z [4088/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-2x2-scalar-int.c.obj 2025-06-01T21:10:32.3568504Z [4089/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-2x1-scalar-int.c.obj 2025-06-01T21:10:32.3888248Z [4090/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-4x1-scalar-int.c.obj 2025-06-01T21:10:32.4204756Z [4091/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-4x2-scalar-int.c.obj 2025-06-01T21:10:32.4336062Z [4092/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-1x4-scalar.c.obj 2025-06-01T21:10:32.4420088Z [4093/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-2x1-scalar.c.obj 2025-06-01T21:10:32.4543583Z [4094/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-2x4-scalar.c.obj 2025-06-01T21:10:32.4663804Z [4095/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-4x4-scalar-int.c.obj 2025-06-01T21:10:32.4790349Z [4096/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-2x2-scalar.c.obj 2025-06-01T21:10:32.5028999Z [4097/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-4x2-scalar.c.obj 2025-06-01T21:10:32.5120977Z [4098/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-4x1-scalar.c.obj 2025-06-01T21:10:32.5257000Z [4099/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-4x4-scalar.c.obj 2025-06-01T21:10:32.6384301Z [4100/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-4c1s1r-gemm-scalar-float.c.obj 2025-06-01T21:10:32.6395474Z [4101/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-2c2s1r-gemm-scalar-int.c.obj 2025-06-01T21:10:32.6442589Z [4102/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-2c1s1r-gemm-scalar-int.c.obj 2025-06-01T21:10:32.6453274Z [4103/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-2c1s1r-gemm-scalar-float.c.obj 2025-06-01T21:10:32.6500577Z [4104/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-4c1s1r-gemm-scalar-int.c.obj 2025-06-01T21:10:32.6798849Z [4105/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-2c2s1r-gemm-scalar-float.c.obj 2025-06-01T21:10:32.7009417Z [4106/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-4c4s1r-gemm-scalar-float.c.obj 2025-06-01T21:10:32.7443271Z [4107/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-4c4s1r-gemm-scalar-int.c.obj 2025-06-01T21:10:32.7525446Z [4108/7110] 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-06-01T21:10:32.7595513Z [4109/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x4-gemm-gio-scalar.c.obj 2025-06-01T21:10:32.7653024Z [4110/7110] 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-06-01T21:10:32.7710785Z [4111/7110] 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-06-01T21:10:32.7918002Z [4112/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-gio-scalar.c.obj 2025-06-01T21:10:32.8185930Z [4113/7110] 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-06-01T21:10:32.8537475Z [4114/7110] 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-06-01T21:10:32.8583615Z [4115/7110] 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-06-01T21:10:32.8789029Z [4116/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packx\x32-packx-2x-scalar.c.obj 2025-06-01T21:10:32.8913468Z [4117/7110] 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-06-01T21:10:32.8925143Z [4118/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x32-gemm-gio-scalar.c.obj 2025-06-01T21:10:32.9162468Z [4119/7110] 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-06-01T21:10:32.9222140Z [4120/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packx\x32-packx-3x-scalar.c.obj 2025-06-01T21:10:32.9274832Z [4121/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packx\x32-packx-4x-scalar.c.obj 2025-06-01T21:10:32.9287214Z [4122/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-gio-scalar.c.obj 2025-06-01T21:10:32.9675274Z [4123/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-1x2-scalar-float.c.obj 2025-06-01T21:10:32.9872760Z [4124/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-1x4-scalar-float.c.obj 2025-06-01T21:10:33.0135738Z [4125/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-1x2-scalar-int.c.obj 2025-06-01T21:10:33.0148646Z [4126/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-2x1-scalar-float.c.obj 2025-06-01T21:10:33.0201419Z [4127/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-2x1-scalar-int.c.obj 2025-06-01T21:10:33.0262339Z [4128/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-1x4-scalar-int.c.obj 2025-06-01T21:10:33.0365623Z [4129/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-2x2-scalar-float.c.obj 2025-06-01T21:10:33.0527502Z [4130/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-2x2-scalar-int.c.obj 2025-06-01T21:10:33.0801502Z [4131/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-2x4-scalar-float.c.obj 2025-06-01T21:10:33.1126183Z [4132/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x1-scalar-float.c.obj 2025-06-01T21:10:33.1184069Z [4133/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x2-scalar-float.c.obj 2025-06-01T21:10:33.1291561Z [4134/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-scalar-float.c.obj 2025-06-01T21:10:33.1380005Z [4135/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x2-scalar-int.c.obj 2025-06-01T21:10:33.1502084Z [4136/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x1-scalar-int.c.obj 2025-06-01T21:10:33.1778004Z [4137/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-scalar-int.c.obj 2025-06-01T21:10:33.1885268Z [4138/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-2c1s1r-gemm-scalar-float.c.obj 2025-06-01T21:10:33.2059597Z [4139/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-2c1s1r-gemm-scalar-int.c.obj 2025-06-01T21:10:33.2444410Z [4140/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-2c2s1r-gemm-scalar-float.c.obj 2025-06-01T21:10:33.2490054Z [4141/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-4c1s1r-gemm-scalar-int.c.obj 2025-06-01T21:10:33.2544115Z [4142/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-4c1s1r-gemm-scalar-float.c.obj 2025-06-01T21:10:33.2598472Z [4143/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-2c2s1r-gemm-scalar-int.c.obj 2025-06-01T21:10:33.2678369Z [4144/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-4c4s1r-gemm-scalar-float.c.obj 2025-06-01T21:10:33.2868234Z [4145/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-4c4s1r-gemm-scalar-int.c.obj 2025-06-01T21:10:33.3209195Z [4146/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-1x2-scalar-float.c.obj 2025-06-01T21:10:33.3350372Z [4147/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-1x2-scalar-int.c.obj 2025-06-01T21:10:33.3405046Z [4148/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x1-scalar-float.c.obj 2025-06-01T21:10:33.3574027Z [4149/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x1-scalar-int.c.obj 2025-06-01T21:10:33.3735745Z [4150/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x2-scalar-int.c.obj 2025-06-01T21:10:33.3791219Z [4151/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x2-scalar-float.c.obj 2025-06-01T21:10:33.3804533Z [4152/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x1-scalar-float.c.obj 2025-06-01T21:10:33.4125731Z [4153/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x1-scalar-int.c.obj 2025-06-01T21:10:33.4286920Z [4154/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x2-scalar-float.c.obj 2025-06-01T21:10:33.4548465Z [4155/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-conv-hwc2chw\f32-conv-hwc2chw-3x3s2p1c3x4-sse-1x1.c.obj 2025-06-01T21:10:33.4759744Z [4156/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p4c-minmax-sse-acc2.c.obj 2025-06-01T21:10:33.4852899Z [4157/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p4c-minmax-sse.c.obj 2025-06-01T21:10:33.5125115Z [4158/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p4c-minmax-sse-acc2.c.obj 2025-06-01T21:10:33.5257470Z [4159/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p8c-minmax-sse-acc2.c.obj 2025-06-01T21:10:33.5332328Z [4160/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p4c-minmax-sse.c.obj 2025-06-01T21:10:33.5425405Z [4161/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p8c-minmax-sse-acc2.c.obj 2025-06-01T21:10:33.5744791Z [4162/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l4c4s4r-minmax-sse-acc2.c.obj 2025-06-01T21:10:33.5895163Z [4163/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l4c4s4r-minmax-sse.c.obj 2025-06-01T21:10:33.6013271Z [4164/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l8c4s4r-minmax-sse-acc2.c.obj 2025-06-01T21:10:33.6289930Z [4165/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l8c4s4r-minmax-sse.c.obj 2025-06-01T21:10:33.6376204Z [4166/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c4s4r-minmax-sse-acc2.c.obj 2025-06-01T21:10:33.6571886Z [4167/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l4c4s4r-minmax-sse-acc2.c.obj 2025-06-01T21:10:33.6674628Z [4168/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c4s4r-minmax-sse.c.obj 2025-06-01T21:10:33.7048192Z [4169/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l4c4s4r-minmax-sse.c.obj 2025-06-01T21:10:33.7108981Z [4170/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l8c4s4r-minmax-sse-acc2.c.obj 2025-06-01T21:10:33.7259981Z [4171/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l8c4s4r-minmax-sse.c.obj 2025-06-01T21:10:33.7467806Z [4172/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l16c4s4r-minmax-sse-acc2.c.obj 2025-06-01T21:10:33.7641145Z [4173/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l16c4s4r-minmax-sse.c.obj 2025-06-01T21:10:33.7917115Z [4174/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l4c4s4r-minmax-sse-acc2.c.obj 2025-06-01T21:10:33.8044488Z [4175/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l4c4s4r-minmax-sse.c.obj 2025-06-01T21:10:33.8535993Z [4176/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l8c4s4r-minmax-sse.c.obj 2025-06-01T21:10:33.8689572Z [4177/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p4c-minmax-sse-acc2.c.obj 2025-06-01T21:10:33.8702586Z [4178/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l8c4s4r-minmax-sse-acc2.c.obj 2025-06-01T21:10:33.8754272Z [4179/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p4c-minmax-sse.c.obj 2025-06-01T21:10:33.9008623Z [4180/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p8c-minmax-sse-acc2.c.obj 2025-06-01T21:10:33.9158918Z [4181/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l16c4s4r-minmax-sse-acc2.c.obj 2025-06-01T21:10:33.9293152Z [4182/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p4c-minmax-sse-acc2.c.obj 2025-06-01T21:10:33.9658941Z [4183/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p4c-minmax-sse.c.obj 2025-06-01T21:10:33.9822386Z [4184/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p8c-minmax-sse-acc2.c.obj 2025-06-01T21:10:33.9845706Z [4185/7110] 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-06-01T21:10:33.9950695Z [4186/7110] 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-06-01T21:10:34.0114627Z [4187/7110] 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-06-01T21:10:34.0377904Z [4188/7110] 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-06-01T21:10:34.0700018Z [4189/7110] 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-06-01T21:10:34.0857507Z [4190/7110] 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-06-01T21:10:34.1092469Z [4191/7110] 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-06-01T21:10:34.1168535Z [4192/7110] 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-06-01T21:10:34.1365309Z [4193/7110] 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-06-01T21:10:34.1556402Z [4194/7110] 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-06-01T21:10:34.1680506Z [4195/7110] 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-06-01T21:10:34.1823407Z [4196/7110] 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-06-01T21:10:34.2421219Z [4197/7110] 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-06-01T21:10:34.2470848Z [4198/7110] 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-06-01T21:10:34.2567036Z [4199/7110] 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-06-01T21:10:34.2626073Z [4200/7110] 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-06-01T21:10:34.2676239Z [4201/7110] 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-06-01T21:10:34.2789440Z [4202/7110] 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-06-01T21:10:34.2891316Z [4203/7110] 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-06-01T21:10:34.3811145Z [4204/7110] 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-06-01T21:10:34.3885489Z [4205/7110] 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-06-01T21:10:34.3976413Z [4206/7110] 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-06-01T21:10:34.3991349Z [4207/7110] 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-06-01T21:10:34.4038279Z [4208/7110] 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-06-01T21:10:34.4205126Z [4209/7110] 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-06-01T21:10:34.4257508Z [4210/7110] 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-06-01T21:10:34.5108516Z [4211/7110] 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-06-01T21:10:34.5277808Z [4212/7110] 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-06-01T21:10:34.5290379Z [4213/7110] 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-06-01T21:10:34.5341865Z [4214/7110] 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-06-01T21:10:34.5448506Z [4215/7110] 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-06-01T21:10:34.5513661Z [4216/7110] 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-06-01T21:10:34.6101272Z [4217/7110] 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-06-01T21:10:34.6553585Z [4218/7110] 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-06-01T21:10:34.6565157Z [4219/7110] 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-06-01T21:10:34.6654881Z [4220/7110] 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-06-01T21:10:34.6709782Z [4221/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-1x8s4-minmax-sse.c.obj 2025-06-01T21:10:34.6812487Z [4222/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-1x8-minmax-sse-dup.c.obj 2025-06-01T21:10:34.7218437Z [4223/7110] 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-06-01T21:10:34.7442482Z [4224/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-3x8-minmax-sse-dup.c.obj 2025-06-01T21:10:34.7945457Z [4225/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-3x8-minmax-sse-load1.c.obj 2025-06-01T21:10:34.8199010Z [4226/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-3x8s4-minmax-sse.c.obj 2025-06-01T21:10:34.8212477Z [4227/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x8-minmax-sse-dup.c.obj 2025-06-01T21:10:34.8402865Z [4228/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x8s4-minmax-sse.c.obj 2025-06-01T21:10:34.8453257Z [4229/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x8-minmax-sse-load1.c.obj 2025-06-01T21:10:34.8576871Z [4230/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x8-minmax-sse-dup.c.obj 2025-06-01T21:10:34.9094807Z [4231/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x8s4-minmax-sse.c.obj 2025-06-01T21:10:34.9387062Z [4232/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x2c4-minmax-sse.c.obj 2025-06-01T21:10:34.9536386Z [4233/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x8-minmax-sse-load1.c.obj 2025-06-01T21:10:34.9877830Z [4234/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x8-minmax-sse-load1.c.obj 2025-06-01T21:10:34.9997569Z [4235/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x8-minmax-sse-dup.c.obj 2025-06-01T21:10:35.0205009Z [4236/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x8s4-minmax-sse.c.obj 2025-06-01T21:10:35.0331294Z [4237/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x8s4-minmax-sse.c.obj 2025-06-01T21:10:35.0498139Z [4238/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x8-minmax-sse-dup.c.obj 2025-06-01T21:10:35.0982108Z [4239/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-3x8-minmax-sse-dup.c.obj 2025-06-01T21:10:35.1227206Z [4240/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-3x8s4-minmax-sse.c.obj 2025-06-01T21:10:35.1484201Z [4241/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-3x8-minmax-sse-load1.c.obj 2025-06-01T21:10:35.1634270Z [4242/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x8s4-minmax-sse.c.obj 2025-06-01T21:10:35.1646244Z [4243/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x8-minmax-sse-dup.c.obj 2025-06-01T21:10:35.1745281Z [4244/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x8-minmax-sse-dup.c.obj 2025-06-01T21:10:35.2044615Z [4245/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x8-minmax-sse-load1.c.obj 2025-06-01T21:10:35.2367136Z [4246/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x8s4-minmax-sse.c.obj 2025-06-01T21:10:35.2638388Z [4247/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x8-minmax-sse-load1.c.obj 2025-06-01T21:10:35.2716588Z [4248/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x8-minmax-sse-dup.c.obj 2025-06-01T21:10:35.2775479Z [4249/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ibilinear-chw\gen\f32-ibilinear-chw-sse-p4.c.obj 2025-06-01T21:10:35.2964392Z [4250/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x8s4-minmax-sse.c.obj 2025-06-01T21:10:35.3262351Z [4251/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x8-minmax-sse-load1.c.obj 2025-06-01T21:10:35.3429855Z [4252/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-1x8-minmax-sse-dup.c.obj 2025-06-01T21:10:35.3855223Z [4253/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-3x8-minmax-sse-load1.c.obj 2025-06-01T21:10:35.3867173Z [4254/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-1x8s4-minmax-sse.c.obj 2025-06-01T21:10:35.3974879Z [4255/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ibilinear\gen\f32-ibilinear-sse-c4.c.obj 2025-06-01T21:10:35.4028275Z [4256/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-3x8-minmax-sse-dup.c.obj 2025-06-01T21:10:35.4050796Z [4257/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-3x8s4-minmax-sse.c.obj 2025-06-01T21:10:35.4367879Z [4258/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x8-minmax-sse-dup.c.obj 2025-06-01T21:10:35.5170939Z [4259/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x8-minmax-sse-load1.c.obj 2025-06-01T21:10:35.5268447Z [4260/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x2c4-minmax-sse.c.obj 2025-06-01T21:10:35.5410191Z [4261/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x8s4-minmax-sse.c.obj 2025-06-01T21:10:35.5471828Z [4262/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x8-minmax-sse-load1.c.obj 2025-06-01T21:10:35.5541484Z [4263/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x8-minmax-sse-dup.c.obj 2025-06-01T21:10:35.5671196Z [4264/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x8-minmax-sse-dup.c.obj 2025-06-01T21:10:35.5849842Z [4265/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x8s4-minmax-sse.c.obj 2025-06-01T21:10:35.6302504Z [4266/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ppmm\gen\f32-ppmm-4x8-minmax-sse.c.obj 2025-06-01T21:10:35.6484018Z [4267/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-sse-c32.c.obj 2025-06-01T21:10:35.6625507Z [4268/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x8s4-minmax-sse.c.obj 2025-06-01T21:10:35.6639094Z [4269/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-sse-u4.c.obj 2025-06-01T21:10:35.6733003Z [4270/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-sse-c64.c.obj 2025-06-01T21:10:35.6860028Z [4271/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-sse-u8-acc2.c.obj 2025-06-01T21:10:35.6956952Z [4272/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-sse-u12-acc3.c.obj 2025-06-01T21:10:35.7318451Z [4273/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-sse-u16-acc2.c.obj 2025-06-01T21:10:35.7642359Z [4274/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-sse-u8-acc2.c.obj 2025-06-01T21:10:35.7686110Z [4275/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-sse-u12-acc3.c.obj 2025-06-01T21:10:35.7733631Z [4276/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-sse-u4.c.obj 2025-06-01T21:10:35.7779752Z [4277/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-sse-u16-acc2.c.obj 2025-06-01T21:10:35.8000458Z [4278/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-sse-u4.c.obj 2025-06-01T21:10:35.8128661Z [4279/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-sse-u16-acc4.c.obj 2025-06-01T21:10:35.8243297Z [4280/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-sse-u8-acc2.c.obj 2025-06-01T21:10:35.8705559Z [4281/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-sse-u12-acc3.c.obj 2025-06-01T21:10:35.8761003Z [4282/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-sse-u4.c.obj 2025-06-01T21:10:35.8813279Z [4283/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-sse-u16-acc2.c.obj 2025-06-01T21:10:35.8829565Z [4284/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-sse-u8-acc2.c.obj 2025-06-01T21:10:35.9099004Z [4285/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-sse-u12-acc3.c.obj 2025-06-01T21:10:35.9201125Z [4286/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-sse-u16-acc2.c.obj 2025-06-01T21:10:35.9255186Z [4287/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-4x1-minmax-sse.c.obj 2025-06-01T21:10:35.9815247Z [4288/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-8x1-minmax-sse.c.obj 2025-06-01T21:10:35.9890663Z [4289/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-16x1-minmax-sse.c.obj 2025-06-01T21:10:35.9964005Z [4290/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vaddc-sse-u4.c.obj 2025-06-01T21:10:36.0090818Z [4291/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vadd-sse-u4.c.obj 2025-06-01T21:10:36.0300495Z [4292/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdiv-sse-u4.c.obj 2025-06-01T21:10:36.0318184Z [4293/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmax-sse-u4.c.obj 2025-06-01T21:10:36.0380546Z [4294/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdivc-sse-u4.c.obj 2025-06-01T21:10:36.1081599Z [4295/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmaxc-sse-u4.c.obj 2025-06-01T21:10:36.1169843Z [4296/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vminc-sse-u4.c.obj 2025-06-01T21:10:36.1230851Z [4297/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmul-sse-u4.c.obj 2025-06-01T21:10:36.1406223Z [4298/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmulc-sse-u4.c.obj 2025-06-01T21:10:36.1451071Z [4299/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmin-sse-u4.c.obj 2025-06-01T21:10:36.1606366Z [4300/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrsubc-sse-u4.c.obj 2025-06-01T21:10:36.1619126Z [4301/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrdivc-sse-u4.c.obj 2025-06-01T21:10:36.2315056Z [4302/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiffc-sse-u4.c.obj 2025-06-01T21:10:36.2382607Z [4303/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsub-sse-u4.c.obj 2025-06-01T21:10:36.2436454Z [4304/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiff-sse-u4.c.obj 2025-06-01T21:10:36.2619928Z [4305/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsubc-sse-u4.c.obj 2025-06-01T21:10:36.2635279Z [4306/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-sse-u12.c.obj 2025-06-01T21:10:36.2697357Z [4307/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-sse-u4.c.obj 2025-06-01T21:10:36.2759775Z [4308/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vclamp\gen\f32-vclamp-sse-u4.c.obj 2025-06-01T21:10:36.3380312Z [4309/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-sse-u16.c.obj 2025-06-01T21:10:36.3491644Z [4310/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vhswish\gen\f32-vhswish-sse-u4.c.obj 2025-06-01T21:10:36.3622386Z [4311/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-sse-u4.c.obj 2025-06-01T21:10:36.3675825Z [4312/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vmulcaddc\gen\f32-vmulcaddc-c8-minmax-sse-2x.c.obj 2025-06-01T21:10:36.3722217Z [4313/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-sse-u4.c.obj 2025-06-01T21:10:36.3826041Z [4314/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-sse-rsqrt-u4.c.obj 2025-06-01T21:10:36.4149459Z [4315/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-sse-u8.c.obj 2025-06-01T21:10:36.4532998Z [4316/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-sse-rsqrt-u4.c.obj 2025-06-01T21:10:36.4575161Z [4317/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-sse-rsqrt-u16.c.obj 2025-06-01T21:10:36.4667030Z [4318/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-sse-sqrt-u4.c.obj 2025-06-01T21:10:36.4737048Z [4319/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-sse-sqrt-u8.c.obj 2025-06-01T21:10:36.4785757Z [4320/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packx\x32-packx-4x-sse.c.obj 2025-06-01T21:10:36.4850066Z [4321/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-sse-sqrt-u16.c.obj 2025-06-01T21:10:36.5353765Z [4322/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-sse-rsqrt-u8.c.obj 2025-06-01T21:10:36.5525256Z [4323/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int16-u8.c.obj 2025-06-01T21:10:36.5656577Z [4324/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int16-u24.c.obj 2025-06-01T21:10:36.5710943Z [4325/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int32-u8.c.obj 2025-06-01T21:10:36.5730922Z [4326/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int16-u16.c.obj 2025-06-01T21:10:36.5802539Z [4327/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int32-u16.c.obj 2025-06-01T21:10:36.6350254Z [4328/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int32-u32.c.obj 2025-06-01T21:10:36.6572630Z [4329/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vunary\gen\f16-vabs-sse2-u8.c.obj 2025-06-01T21:10:36.6770723Z [4330/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse2-u24.c.obj 2025-06-01T21:10:36.6818482Z [4331/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse2-u8.c.obj 2025-06-01T21:10:36.6951464Z [4332/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vunary\gen\f16-vneg-sse2-u8.c.obj 2025-06-01T21:10:36.7279900Z [4333/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse2-u32.c.obj 2025-06-01T21:10:36.7495110Z [4334/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse2-u16.c.obj 2025-06-01T21:10:36.7655124Z [4335/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse2-u8.c.obj 2025-06-01T21:10:36.7669735Z [4336/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int32-u24.c.obj 2025-06-01T21:10:36.7761527Z [4337/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-sse2-u8.c.obj 2025-06-01T21:10:36.7812973Z [4338/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse2-u24.c.obj 2025-06-01T21:10:36.8127477Z [4339/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-sse2-u16.c.obj 2025-06-01T21:10:36.8236566Z [4340/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-sse2-u24.c.obj 2025-06-01T21:10:36.8484023Z [4341/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-sse2-rr2-p5-u4.c.obj 2025-06-01T21:10:36.8690872Z [4342/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-sse2-rr2-p5-u8-acc2.c.obj 2025-06-01T21:10:36.8750658Z [4343/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-sse2-rr2-p5-u16-acc4.c.obj 2025-06-01T21:10:36.9017586Z [4344/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-sse2-u4.c.obj 2025-06-01T21:10:36.9076198Z [4345/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-sse2-u4.c.obj 2025-06-01T21:10:36.9298104Z [4346/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse2-rr2-lut16-p3-u4.c.obj 2025-06-01T21:10:36.9369015Z [4347/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-sse2-u4.c.obj 2025-06-01T21:10:36.9479938Z [4348/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse2-rr2-lut16-p3-u8.c.obj 2025-06-01T21:10:36.9802440Z [4349/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse2-rr2-lut16-p3-u16.c.obj 2025-06-01T21:10:36.9884481Z [4350/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse2-rr2-p6-u4.c.obj 2025-06-01T21:10:37.0097389Z [4351/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse2-rr2-p6-u8.c.obj 2025-06-01T21:10:37.0265204Z [4352/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse2-rr2-p6-u12.c.obj 2025-06-01T21:10:37.0454364Z [4353/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-sse2-u4.c.obj 2025-06-01T21:10:37.0470538Z [4354/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse2-rr2-p6-u16.c.obj 2025-06-01T21:10:37.0743076Z [4355/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-sse2-u8.c.obj 2025-06-01T21:10:37.0977997Z [4356/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndd-sse2-u4.c.obj 2025-06-01T21:10:37.0991096Z [4357/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndne-sse2-u4.c.obj 2025-06-01T21:10:37.1398983Z [4358/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndu-sse2-u4.c.obj 2025-06-01T21:10:37.1477256Z [4359/7110] 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-06-01T21:10:37.1555922Z [4360/7110] 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-06-01T21:10:37.1606365Z [4361/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndz-sse2-u4.c.obj 2025-06-01T21:10:37.1770534Z [4362/7110] 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-06-01T21:10:37.2136072Z [4363/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse2-rr2-p5-div-u8.c.obj 2025-06-01T21:10:37.2193853Z [4364/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse2-rr2-p5-div-u4.c.obj 2025-06-01T21:10:37.2499572Z [4365/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse2-rr2-p5-div-u12.c.obj 2025-06-01T21:10:37.2651026Z [4366/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vtanh\gen\f32-vtanh-sse2-rational-9-8-nr.c.obj 2025-06-01T21:10:37.2710007Z [4367/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse2-rr2-p5-div-u16.c.obj 2025-06-01T21:10:37.2880240Z [4368/7110] 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-06-01T21:10:37.3141652Z [4369/7110] 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-06-01T21:10:37.3439364Z [4370/7110] 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-06-01T21:10:37.3800565Z [4371/7110] 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-06-01T21:10:37.4001477Z [4372/7110] 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-06-01T21:10:37.4119494Z [4373/7110] 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-06-01T21:10:37.4244980Z [4374/7110] 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-06-01T21:10:37.4265018Z [4375/7110] 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-06-01T21:10:37.4679673Z [4376/7110] 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-06-01T21:10:37.4993883Z [4377/7110] 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-06-01T21:10:37.5039516Z [4378/7110] 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-06-01T21:10:37.5302398Z [4379/7110] 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-06-01T21:10:37.5436813Z [4380/7110] 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-06-01T21:10:37.5502602Z [4381/7110] 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-06-01T21:10:37.5597618Z [4382/7110] 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-06-01T21:10:37.6174735Z [4383/7110] 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-06-01T21:10:37.6296806Z [4384/7110] 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-06-01T21:10:37.6420898Z [4385/7110] 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-06-01T21:10:37.6495605Z [4386/7110] 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-06-01T21:10:37.6543985Z [4387/7110] 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-06-01T21:10:37.6891537Z [4388/7110] 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-06-01T21:10:37.6940048Z [4389/7110] 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-06-01T21:10:37.7435910Z [4390/7110] 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-06-01T21:10:37.7539212Z [4391/7110] 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-06-01T21:10:37.7648573Z [4392/7110] 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-06-01T21:10:37.7820991Z [4393/7110] 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-06-01T21:10:37.7943988Z [4394/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l8c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-06-01T21:10:37.8182308Z [4395/7110] 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-06-01T21:10:37.8232346Z [4396/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-06-01T21:10:37.8562864Z [4397/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l8c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-06-01T21:10:37.8740629Z [4398/7110] 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-06-01T21:10:37.9057425Z [4399/7110] 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-06-01T21:10:37.9148178Z [4400/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l8c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-06-01T21:10:37.9161880Z [4401/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-06-01T21:10:37.9470363Z [4402/7110] 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-06-01T21:10:37.9562108Z [4403/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-06-01T21:10:37.9743267Z [4404/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p8c-minmax-fp32-sse2-mul16.c.obj 2025-06-01T21:10:38.0280590Z [4405/7110] 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-06-01T21:10:38.0300985Z [4406/7110] 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-06-01T21:10:38.0313479Z [4407/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-sse2-mul16.c.obj 2025-06-01T21:10:38.0370375Z [4408/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p8c-minmax-fp32-sse2-mul16.c.obj 2025-06-01T21:10:38.0599499Z [4409/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-sse2-mul16.c.obj 2025-06-01T21:10:38.0689283Z [4410/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse2-u8.c.obj 2025-06-01T21:10:38.1103799Z [4411/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse2-u16.c.obj 2025-06-01T21:10:38.1350414Z [4412/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse2-u24.c.obj 2025-06-01T21:10:38.1400049Z [4413/7110] 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-06-01T21:10:38.1639562Z [4414/7110] 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-06-01T21:10:38.1641447Z [4415/7110] 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-06-01T21:10:38.1745960Z [4416/7110] 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-06-01T21:10:38.2151306Z [4417/7110] 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-06-01T21:10:38.2283205Z [4418/7110] 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-06-01T21:10:38.2483627Z [4419/7110] 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-06-01T21:10:38.2738442Z [4420/7110] 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-06-01T21:10:38.2859547Z [4421/7110] 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-06-01T21:10:38.2936176Z [4422/7110] 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-06-01T21:10:38.2987597Z [4423/7110] 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-06-01T21:10:38.3507571Z [4424/7110] 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-06-01T21:10:38.3566623Z [4425/7110] 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-06-01T21:10:38.3651284Z [4426/7110] 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-06-01T21:10:38.4060376Z [4427/7110] 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-06-01T21:10:38.4136143Z [4428/7110] 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-06-01T21:10:38.4192287Z [4429/7110] 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-06-01T21:10:38.4299019Z [4430/7110] 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-06-01T21:10:38.4827871Z [4431/7110] 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-06-01T21:10:38.4936119Z [4432/7110] 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-06-01T21:10:38.5387810Z [4433/7110] 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-06-01T21:10:38.5543414Z [4434/7110] 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-06-01T21:10:38.5555080Z [4435/7110] 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-06-01T21:10:38.5682352Z [4436/7110] 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-06-01T21:10:38.5765828Z [4437/7110] 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-06-01T21:10:38.6212915Z [4438/7110] 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-06-01T21:10:38.6266313Z [4439/7110] 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-06-01T21:10:38.6719518Z [4440/7110] 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-06-01T21:10:38.6907459Z [4441/7110] 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-06-01T21:10:38.7124151Z [4442/7110] 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-06-01T21:10:38.7153565Z [4443/7110] 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-06-01T21:10:38.7550377Z [4444/7110] 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-06-01T21:10:38.7599725Z [4445/7110] 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-06-01T21:10:38.7690423Z [4446/7110] 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-06-01T21:10:38.7993901Z [4447/7110] 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-06-01T21:10:38.8166822Z [4448/7110] 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-06-01T21:10:38.8472511Z [4449/7110] 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-06-01T21:10:38.8522111Z [4450/7110] 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-06-01T21:10:38.8876615Z [4451/7110] 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-06-01T21:10:38.8926097Z [4452/7110] 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-06-01T21:10:38.9046157Z [4453/7110] 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-06-01T21:10:38.9237844Z [4454/7110] 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-06-01T21:10:38.9498447Z [4455/7110] 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-06-01T21:10:38.9712094Z [4456/7110] 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-06-01T21:10:38.9764377Z [4457/7110] 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-06-01T21:10:39.0054024Z [4458/7110] 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-06-01T21:10:39.0107095Z [4459/7110] 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-06-01T21:10:39.0245387Z [4460/7110] 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-06-01T21:10:39.0590126Z [4461/7110] 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-06-01T21:10:39.0897678Z [4462/7110] 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-06-01T21:10:39.0908695Z [4463/7110] 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-06-01T21:10:39.0958635Z [4464/7110] 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-06-01T21:10:39.1210972Z [4465/7110] 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-06-01T21:10:39.1383803Z [4466/7110] 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-06-01T21:10:39.1477914Z [4467/7110] 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-06-01T21:10:39.2206977Z [4468/7110] 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-06-01T21:10:39.2219909Z [4469/7110] 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-06-01T21:10:39.2275219Z [4470/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse2-mul16-ld64-u24.c.obj 2025-06-01T21:10:39.2556734Z [4471/7110] 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-06-01T21:10:39.2662310Z [4472/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse2-mul16-ld64-u16.c.obj 2025-06-01T21:10:39.2680762Z [4473/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse2-mul16-ld64-u32.c.obj 2025-06-01T21:10:39.2740551Z [4474/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse2-mul16-ld64-u16.c.obj 2025-06-01T21:10:39.3293685Z [4475/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-sse2-u16.c.obj 2025-06-01T21:10:39.3342018Z [4476/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse2-mul16-ld64-u32.c.obj 2025-06-01T21:10:39.3520592Z [4477/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse2-mul16-ld64-u24.c.obj 2025-06-01T21:10:39.3839306Z [4478/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-sse2-u16.c.obj 2025-06-01T21:10:39.3906746Z [4479/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l8c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-06-01T21:10:39.4058457Z [4480/7110] 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-06-01T21:10:39.4400917Z [4481/7110] 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-06-01T21:10:39.4460073Z [4482/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l16c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-06-01T21:10:39.4475717Z [4483/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l8c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-06-01T21:10:39.4567969Z [4484/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l16c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-06-01T21:10:39.5087166Z [4485/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l8c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-06-01T21:10:39.5347427Z [4486/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p16c-minmax-fp32-sse2-mul16.c.obj 2025-06-01T21:10:39.5492703Z [4487/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l16c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-06-01T21:10:39.5574950Z [4488/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse2-u16.c.obj 2025-06-01T21:10:39.5629103Z [4489/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse2-u8.c.obj 2025-06-01T21:10:39.5646147Z [4490/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p16c-minmax-fp32-sse2-mul16.c.obj 2025-06-01T21:10:39.5699527Z [4491/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse2-u24.c.obj 2025-06-01T21:10:39.6497704Z [4492/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2-minmax-fp32-sse2-ld64.c.obj 2025-06-01T21:10:39.6607360Z [4493/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2-minmax-fp32-sse2-ld128.c.obj 2025-06-01T21:10:39.6929605Z [4494/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-06-01T21:10:39.7087431Z [4495/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2-minmax-fp32-sse2-ld128.c.obj 2025-06-01T21:10:39.7202312Z [4496/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2-minmax-fp32-sse2-ld64.c.obj 2025-06-01T21:10:39.7316796Z [4497/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-06-01T21:10:39.7477556Z [4498/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c8-minmax-fp32-sse2-ld128.c.obj 2025-06-01T21:10:39.7733427Z [4499/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-06-01T21:10:39.7813822Z [4500/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-06-01T21:10:39.8330881Z [4501/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c8-minmax-fp32-sse2-ld64.c.obj 2025-06-01T21:10:39.8424446Z [4502/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c8-minmax-fp32-sse2-ld128.c.obj 2025-06-01T21:10:39.8821535Z [4503/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2-minmax-fp32-sse2-ld128.c.obj 2025-06-01T21:10:39.8914847Z [4504/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-06-01T21:10:39.8983772Z [4505/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-06-01T21:10:39.9083772Z [4506/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2-minmax-fp32-sse2-ld64.c.obj 2025-06-01T21:10:39.9185283Z [4507/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c8-minmax-fp32-sse2-ld128.c.obj 2025-06-01T21:10:39.9662868Z [4508/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2-minmax-fp32-sse2-ld64.c.obj 2025-06-01T21:10:40.0058379Z [4509/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2-minmax-fp32-sse2-ld128.c.obj 2025-06-01T21:10:40.0200091Z [4510/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2-minmax-fp32-sse2-ld128.c.obj 2025-06-01T21:10:40.0289595Z [4511/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-06-01T21:10:40.0349858Z [4512/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-06-01T21:10:40.0361129Z [4513/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2-minmax-fp32-sse2-ld64.c.obj 2025-06-01T21:10:40.0567769Z [4514/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-06-01T21:10:40.0779412Z [4515/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-06-01T21:10:40.1168124Z [4516/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c8-minmax-fp32-sse2-ld128.c.obj 2025-06-01T21:10:40.1479194Z [4517/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2-minmax-fp32-sse2-ld64.c.obj 2025-06-01T21:10:40.1523844Z [4518/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-06-01T21:10:40.1755030Z [4519/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2-minmax-fp32-sse2-ld128.c.obj 2025-06-01T21:10:40.1803256Z [4520/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-06-01T21:10:40.1859964Z [4521/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c8-minmax-fp32-sse2-ld64.c.obj 2025-06-01T21:10:40.2461955Z [4522/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c8-minmax-fp32-sse2-ld128.c.obj 2025-06-01T21:10:40.2533365Z [4523/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2-minmax-fp32-sse2-ld128.c.obj 2025-06-01T21:10:40.2682702Z [4524/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-06-01T21:10:40.2815310Z [4525/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2-minmax-fp32-sse2-ld64.c.obj 2025-06-01T21:10:40.2867497Z [4526/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-06-01T21:10:40.3060561Z [4527/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c8-minmax-fp32-sse2-ld128.c.obj 2025-06-01T21:10:40.3384847Z [4528/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2-minmax-fp32-sse2-ld64.c.obj 2025-06-01T21:10:40.3544797Z [4529/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2-minmax-fp32-sse2-ld128.c.obj 2025-06-01T21:10:40.3612534Z [4530/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-06-01T21:10:40.3880432Z [4531/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-sse2-u64-acc2.c.obj 2025-06-01T21:10:40.3892211Z [4532/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-sse2-u16.c.obj 2025-06-01T21:10:40.3946620Z [4533/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-06-01T21:10:40.4155266Z [4534/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-sse2-u64-acc4.c.obj 2025-06-01T21:10:40.4436718Z [4535/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-sse2-mul16-ld64-u16.c.obj 2025-06-01T21:10:40.4664554Z [4536/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-sse2-u16.c.obj 2025-06-01T21:10:40.4904362Z [4537/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-sse2-mul16-ld64-u16.c.obj 2025-06-01T21:10:40.5091479Z [4538/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-sse2-u16.c.obj 2025-06-01T21:10:40.5156129Z [4539/7110] 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-06-01T21:10:40.5204361Z [4540/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\s8-ibilinear\gen\s8-ibilinear-sse2-c16.c.obj 2025-06-01T21:10:40.5262776Z [4541/7110] 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-06-01T21:10:40.5598474Z [4542/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\u8-ibilinear\gen\u8-ibilinear-sse2-c16.c.obj 2025-06-01T21:10:40.5899008Z [4543/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-8x8-multi-mov-sse2.c.obj 2025-06-01T21:10:40.5953485Z [4544/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-16x16-reuse-switch-sse2.c.obj 2025-06-01T21:10:40.5994420Z [4545/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-8x8-multi-switch-sse2.c.obj 2025-06-01T21:10:40.6112108Z [4546/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-8x8-reuse-switch-sse2.c.obj 2025-06-01T21:10:40.6127043Z [4547/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-8x8-reuse-mov-sse2.c.obj 2025-06-01T21:10:40.6187034Z [4548/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\x16-transposec-4x8-sse2.c.obj 2025-06-01T21:10:40.6841500Z [4549/7110] 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-06-01T21:10:40.6970549Z [4550/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-goi-sse2-u8.c.obj 2025-06-01T21:10:40.7125641Z [4551/7110] 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-06-01T21:10:40.7253914Z [4552/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8s4-gemm-goi-sse2-u4.c.obj 2025-06-01T21:10:40.7328664Z [4553/7110] 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-06-01T21:10:40.7343611Z [4554/7110] 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-06-01T21:10:40.7404500Z [4555/7110] 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-06-01T21:10:40.8028312Z [4556/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8s4-gemm-goi-sse2-u8.c.obj 2025-06-01T21:10:40.8185267Z [4557/7110] 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-06-01T21:10:40.8229912Z [4558/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-goi-sse2-u4.c.obj 2025-06-01T21:10:40.8313917Z [4559/7110] 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-06-01T21:10:40.8377923Z [4560/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16s4-gemm-goi-sse2-u4.c.obj 2025-06-01T21:10:40.8429094Z [4561/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-goi-sse2-u8.c.obj 2025-06-01T21:10:40.8503493Z [4562/7110] 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-06-01T21:10:40.9118203Z [4563/7110] 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-06-01T21:10:40.9256383Z [4564/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-multi-mov-sse2.c.obj 2025-06-01T21:10:40.9268243Z [4565/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16s4-gemm-goi-sse2-u8.c.obj 2025-06-01T21:10:40.9317857Z [4566/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-multi-multi-sse2.c.obj 2025-06-01T21:10:40.9369088Z [4567/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-multi-switch-sse2.c.obj 2025-06-01T21:10:40.9385143Z [4568/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-reuse-multi-sse2.c.obj 2025-06-01T21:10:40.9705632Z [4569/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-reuse-mov-sse2.c.obj 2025-06-01T21:10:41.0260267Z [4570/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x2-multi-switch-sse2.c.obj 2025-06-01T21:10:41.0389712Z [4571/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x2-reuse-switch-sse2.c.obj 2025-06-01T21:10:41.0447687Z [4572/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x2-multi-multi-sse2.c.obj 2025-06-01T21:10:41.0457844Z [4573/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-reuse-switch-sse2.c.obj 2025-06-01T21:10:41.0712324Z [4574/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x2-reuse-multi-sse2.c.obj 2025-06-01T21:10:41.0828535Z [4575/7110] 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-06-01T21:10:41.0884865Z [4576/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x2-reuse-mov-sse2.c.obj 2025-06-01T21:10:41.1407976Z [4577/7110] 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-06-01T21:10:41.1624306Z [4578/7110] 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-06-01T21:10:41.1635688Z [4579/7110] 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-06-01T21:10:41.1842910Z [4580/7110] 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-06-01T21:10:41.1974841Z [4581/7110] 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-06-01T21:10:41.2124194Z [4582/7110] 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-06-01T21:10:41.2383384Z [4583/7110] 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-06-01T21:10:41.2487858Z [4584/7110] 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-06-01T21:10:41.2929660Z [4585/7110] 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-06-01T21:10:41.2990443Z [4586/7110] 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-06-01T21:10:41.3326996Z [4587/7110] 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-06-01T21:10:41.3374069Z [4588/7110] 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-06-01T21:10:41.3468305Z [4589/7110] 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-06-01T21:10:41.3518395Z [4590/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-ssse3-u16.c.obj 2025-06-01T21:10:41.3712216Z [4591/7110] 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-06-01T21:10:41.3929080Z [4592/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-ssse3-u64-acc2.c.obj 2025-06-01T21:10:41.4384124Z [4593/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-ssse3-u16.c.obj 2025-06-01T21:10:41.4481326Z [4594/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rdsum\gen\qu8-rdsum-7p7x-ssse3-c32.c.obj 2025-06-01T21:10:41.4613694Z [4595/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-ssse3-u64-acc4.c.obj 2025-06-01T21:10:41.4666404Z [4596/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rdsum\gen\qu8-rdsum-7p7x-ssse3-c16.c.obj 2025-06-01T21:10:41.4683131Z [4597/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-ssse3-u16.c.obj 2025-06-01T21:10:41.4927565Z [4598/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-ssse3-u16.c.obj 2025-06-01T21:10:41.4987654Z [4599/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-ssse3-u16.c.obj 2025-06-01T21:10:41.5071447Z [4600/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-ssse3-u16.c.obj 2025-06-01T21:10:41.5379121Z [4601/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-ssse3-u32.c.obj 2025-06-01T21:10:41.5666709Z [4602/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int16-u24.c.obj 2025-06-01T21:10:41.5745409Z [4603/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int16-u32.c.obj 2025-06-01T21:10:41.6001191Z [4604/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int16-u8.c.obj 2025-06-01T21:10:41.6205687Z [4605/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int32-u8.c.obj 2025-06-01T21:10:41.6217378Z [4606/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int32-u16.c.obj 2025-06-01T21:10:41.6326961Z [4607/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int32-u32.c.obj 2025-06-01T21:10:41.6414496Z [4608/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int32-u24.c.obj 2025-06-01T21:10:41.6594038Z [4609/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse41-u16.c.obj 2025-06-01T21:10:41.6667631Z [4610/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse41-u24.c.obj 2025-06-01T21:10:41.7007403Z [4611/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse41-u32.c.obj 2025-06-01T21:10:41.7596336Z [4612/7110] 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-06-01T21:10:41.7658185Z [4613/7110] 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-06-01T21:10:41.7803161Z [4614/7110] 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-06-01T21:10:41.7948666Z [4615/7110] 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-06-01T21:10:41.7961992Z [4616/7110] 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-06-01T21:10:41.8034237Z [4617/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-1x8s4-minmax-sse41.c.obj 2025-06-01T21:10:41.8268255Z [4618/7110] 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-06-01T21:10:41.8910051Z [4619/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x2c4-minmax-sse41.c.obj 2025-06-01T21:10:41.9197205Z [4620/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-3x8s4-minmax-sse41.c.obj 2025-06-01T21:10:41.9296707Z [4621/7110] 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-06-01T21:10:41.9405057Z [4622/7110] 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-06-01T21:10:41.9558560Z [4623/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x8s4-minmax-sse41.c.obj 2025-06-01T21:10:41.9626132Z [4624/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-5x8s4-minmax-sse41.c.obj 2025-06-01T21:10:42.0087587Z [4625/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-6x2c4-minmax-sse41.c.obj 2025-06-01T21:10:42.0110831Z [4626/7110] 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-06-01T21:10:42.0386855Z [4627/7110] 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-06-01T21:10:42.0449208Z [4628/7110] 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-06-01T21:10:42.0687773Z [4629/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-6x8s4-minmax-sse41.c.obj 2025-06-01T21:10:42.0731696Z [4630/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse41-u8.c.obj 2025-06-01T21:10:42.0785102Z [4631/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse41-u16.c.obj 2025-06-01T21:10:42.1082703Z [4632/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse41-u24.c.obj 2025-06-01T21:10:42.1191903Z [4633/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-sse41-u4.c.obj 2025-06-01T21:10:42.1433662Z [4634/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-sse41-u8.c.obj 2025-06-01T21:10:42.1585738Z [4635/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-sse41-u4.c.obj 2025-06-01T21:10:42.1812427Z [4636/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-sse41-u8.c.obj 2025-06-01T21:10:42.1916446Z [4637/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-sse41-u4.c.obj 2025-06-01T21:10:42.1993040Z [4638/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-sse41-u8.c.obj 2025-06-01T21:10:42.2143466Z [4639/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-lut16-p3-u4.c.obj 2025-06-01T21:10:42.2514218Z [4640/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-lut16-p3-u8.c.obj 2025-06-01T21:10:42.2526424Z [4641/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-lut16-p3-u12.c.obj 2025-06-01T21:10:42.2730252Z [4642/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-lut16-p3-u16.c.obj 2025-06-01T21:10:42.2927078Z [4643/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-p6-u4.c.obj 2025-06-01T21:10:42.2973695Z [4644/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-p6-u8.c.obj 2025-06-01T21:10:42.3190120Z [4645/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-p6-u12.c.obj 2025-06-01T21:10:42.3248982Z [4646/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-p6-u16.c.obj 2025-06-01T21:10:42.3536545Z [4647/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-sse41-u4.c.obj 2025-06-01T21:10:42.3613761Z [4648/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndd-sse41-u4.c.obj 2025-06-01T21:10:42.3891286Z [4649/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndne-sse41-u4.c.obj 2025-06-01T21:10:42.3975586Z [4650/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndu-sse41-u4.c.obj 2025-06-01T21:10:42.4109670Z [4651/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndz-sse41-u4.c.obj 2025-06-01T21:10:42.4370762Z [4652/7110] 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-06-01T21:10:42.4551679Z [4653/7110] 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-06-01T21:10:42.4662151Z [4654/7110] 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-06-01T21:10:42.4675418Z [4655/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse41-rr2-p5-div-u4.c.obj 2025-06-01T21:10:42.4980360Z [4656/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse41-rr2-p5-div-u8.c.obj 2025-06-01T21:10:42.5081716Z [4657/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse41-rr2-p5-div-u12.c.obj 2025-06-01T21:10:42.5279041Z [4658/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse41-rr2-p5-div-u16.c.obj 2025-06-01T21:10:42.5675283Z [4659/7110] 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-06-01T21:10:42.5929285Z [4660/7110] 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-06-01T21:10:42.6078857Z [4661/7110] 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-06-01T21:10:42.6156917Z [4662/7110] 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-06-01T21:10:42.6221645Z [4663/7110] 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-06-01T21:10:42.6381530Z [4664/7110] 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-06-01T21:10:42.6516985Z [4665/7110] 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-06-01T21:10:42.6927505Z [4666/7110] 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-06-01T21:10:42.7434587Z [4667/7110] 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-06-01T21:10:42.7484038Z [4668/7110] 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-06-01T21:10:42.7496958Z [4669/7110] 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-06-01T21:10:42.7543435Z [4670/7110] 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-06-01T21:10:42.7716496Z [4671/7110] 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-06-01T21:10:42.7839588Z [4672/7110] 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-06-01T21:10:42.8386366Z [4673/7110] 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-06-01T21:10:42.8786581Z [4674/7110] 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-06-01T21:10:42.9291152Z [4675/7110] 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-06-01T21:10:42.9311438Z [4676/7110] 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-06-01T21:10:42.9327394Z [4677/7110] 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-06-01T21:10:42.9345012Z [4678/7110] 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-06-01T21:10:42.9359665Z [4679/7110] 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-06-01T21:10:42.9535500Z [4680/7110] 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-06-01T21:10:43.0051414Z [4681/7110] 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-06-01T21:10:43.0739841Z [4682/7110] 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-06-01T21:10:43.0784539Z [4683/7110] 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-06-01T21:10:43.0839464Z [4684/7110] 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-06-01T21:10:43.0901467Z [4685/7110] 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-06-01T21:10:43.1560876Z [4686/7110] 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-06-01T21:10:43.1788323Z [4687/7110] 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-06-01T21:10:43.1832477Z [4688/7110] 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-06-01T21:10:43.5986796Z [4689/7110] 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-06-01T21:10:43.6003197Z [4690/7110] 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-06-01T21:10:43.6016213Z [4691/7110] 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-06-01T21:10:43.6029114Z [4692/7110] 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-06-01T21:10:43.6040470Z [4693/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l8c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-06-01T21:10:43.6087642Z [4694/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l8c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-06-01T21:10:43.6099299Z [4695/7110] 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-06-01T21:10:43.7272623Z [4696/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-06-01T21:10:43.7287220Z [4697/7110] 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-06-01T21:10:43.7332923Z [4698/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l8c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-06-01T21:10:43.7410274Z [4699/7110] 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-06-01T21:10:43.7677214Z [4700/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l8c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-06-01T21:10:43.7821495Z [4701/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-06-01T21:10:43.7876431Z [4702/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-06-01T21:10:43.8453395Z [4703/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-06-01T21:10:43.8508736Z [4704/7110] 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-06-01T21:10:43.8536544Z [4705/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l8c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-06-01T21:10:43.8801821Z [4706/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l8c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-06-01T21:10:43.8855762Z [4707/7110] 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-06-01T21:10:43.9144378Z [4708/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-06-01T21:10:43.9228645Z [4709/7110] 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-06-01T21:10:43.9600874Z [4710/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p8c-minmax-fp32-sse41-mul32.c.obj 2025-06-01T21:10:43.9895918Z [4711/7110] 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-06-01T21:10:43.9991085Z [4712/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-06-01T21:10:44.0041203Z [4713/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p8c-minmax-fp32-sse41-mul16.c.obj 2025-06-01T21:10:44.0054143Z [4714/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-sse41-mul16.c.obj 2025-06-01T21:10:44.0419745Z [4715/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-sse41-mul32.c.obj 2025-06-01T21:10:44.0815178Z [4716/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p8c-minmax-fp32-sse41-mul32.c.obj 2025-06-01T21:10:44.1086968Z [4717/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse41-u8.c.obj 2025-06-01T21:10:44.1099232Z [4718/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-sse41-mul16.c.obj 2025-06-01T21:10:44.1199319Z [4719/7110] 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-06-01T21:10:44.1263312Z [4720/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p8c-minmax-fp32-sse41-mul16.c.obj 2025-06-01T21:10:44.1401596Z [4721/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-sse41-mul32.c.obj 2025-06-01T21:10:44.1418151Z [4722/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse41-u24.c.obj 2025-06-01T21:10:44.1755647Z [4723/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse41-u32.c.obj 2025-06-01T21:10:44.2231254Z [4724/7110] 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-06-01T21:10:44.2283116Z [4725/7110] 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-06-01T21:10:44.2393486Z [4726/7110] 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-06-01T21:10:44.2448602Z [4727/7110] 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-06-01T21:10:44.2636174Z [4728/7110] 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-06-01T21:10:44.2695504Z [4729/7110] 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-06-01T21:10:44.2924397Z [4730/7110] 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-06-01T21:10:44.3397087Z [4731/7110] 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-06-01T21:10:44.3617358Z [4732/7110] 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-06-01T21:10:44.3628873Z [4733/7110] 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-06-01T21:10:44.3678431Z [4734/7110] 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-06-01T21:10:44.3948257Z [4735/7110] 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-06-01T21:10:44.4067660Z [4736/7110] 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-06-01T21:10:44.4144876Z [4737/7110] 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-06-01T21:10:44.4461300Z [4738/7110] 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-06-01T21:10:44.4737286Z [4739/7110] 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-06-01T21:10:44.5065243Z [4740/7110] 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-06-01T21:10:44.5081220Z [4741/7110] 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-06-01T21:10:44.5125650Z [4742/7110] 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-06-01T21:10:44.5180676Z [4743/7110] 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-06-01T21:10:44.5293281Z [4744/7110] 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-06-01T21:10:44.5743287Z [4745/7110] 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-06-01T21:10:44.6055181Z [4746/7110] 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-06-01T21:10:44.6187012Z [4747/7110] 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-06-01T21:10:44.6282830Z [4748/7110] 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-06-01T21:10:44.6385694Z [4749/7110] 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-06-01T21:10:44.6507371Z [4750/7110] 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-06-01T21:10:44.6588428Z [4751/7110] 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-06-01T21:10:44.6970737Z [4752/7110] 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-06-01T21:10:44.7416702Z [4753/7110] 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-06-01T21:10:44.7602437Z [4754/7110] 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-06-01T21:10:44.7650061Z [4755/7110] 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-06-01T21:10:44.7696677Z [4756/7110] 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-06-01T21:10:44.7820436Z [4757/7110] 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-06-01T21:10:44.8219024Z [4758/7110] 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-06-01T21:10:44.8495303Z [4759/7110] 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-06-01T21:10:44.8778156Z [4760/7110] 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-06-01T21:10:44.8967067Z [4761/7110] 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-06-01T21:10:44.8979025Z [4762/7110] 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-06-01T21:10:44.9102156Z [4763/7110] 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-06-01T21:10:44.9185674Z [4764/7110] 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-06-01T21:10:44.9464569Z [4765/7110] 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-06-01T21:10:44.9945083Z [4766/7110] 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-06-01T21:10:45.0132646Z [4767/7110] 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-06-01T21:10:45.0423436Z [4768/7110] 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-06-01T21:10:45.0470935Z [4769/7110] 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-06-01T21:10:45.0612577Z [4770/7110] 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-06-01T21:10:45.0666904Z [4771/7110] 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-06-01T21:10:45.1162818Z [4772/7110] 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-06-01T21:10:45.1175863Z [4773/7110] 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-06-01T21:10:45.1187349Z [4774/7110] 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-06-01T21:10:45.1455620Z [4775/7110] 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-06-01T21:10:45.1679499Z [4776/7110] 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-06-01T21:10:45.1782300Z [4777/7110] 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-06-01T21:10:45.2138768Z [4778/7110] 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-06-01T21:10:45.2458515Z [4779/7110] 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-06-01T21:10:45.2472136Z [4780/7110] 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-06-01T21:10:45.2607512Z [4781/7110] 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-06-01T21:10:45.2750598Z [4782/7110] 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-06-01T21:10:45.2874677Z [4783/7110] 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-06-01T21:10:45.3042458Z [4784/7110] 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-06-01T21:10:45.3610910Z [4785/7110] 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-06-01T21:10:45.3747289Z [4786/7110] 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-06-01T21:10:45.3888936Z [4787/7110] 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-06-01T21:10:45.4005914Z [4788/7110] 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-06-01T21:10:45.4088030Z [4789/7110] 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-06-01T21:10:45.4279909Z [4790/7110] 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-06-01T21:10:45.4379080Z [4791/7110] 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-06-01T21:10:45.4770945Z [4792/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rdsum\gen\qs8-rdsum-7p7x-minmax-fp32-sse41-c16.c.obj 2025-06-01T21:10:45.4919877Z [4793/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rdsum\gen\qs8-rdsum-7p7x-minmax-fp32-sse41-c32.c.obj 2025-06-01T21:10:45.4971740Z [4794/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul16-ld64-u16.c.obj 2025-06-01T21:10:45.5207756Z [4795/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul16-ld64-u32.c.obj 2025-06-01T21:10:45.5311809Z [4796/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul16-ld64-u24.c.obj 2025-06-01T21:10:45.5518046Z [4797/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul32-ld32-u16.c.obj 2025-06-01T21:10:45.5979044Z [4798/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul32-ld32-u32.c.obj 2025-06-01T21:10:45.5992350Z [4799/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul32-ld32-u8.c.obj 2025-06-01T21:10:45.6115316Z [4800/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul16-ld64-u16.c.obj 2025-06-01T21:10:45.6274990Z [4801/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul16-ld64-u24.c.obj 2025-06-01T21:10:45.6287532Z [4802/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul32-ld32-u24.c.obj 2025-06-01T21:10:45.7016000Z [4803/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul32-ld32-u8.c.obj 2025-06-01T21:10:45.7029842Z [4804/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul32-ld32-u24.c.obj 2025-06-01T21:10:45.7042647Z [4805/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul16-ld64-u32.c.obj 2025-06-01T21:10:45.7224543Z [4806/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-sse41-u8.c.obj 2025-06-01T21:10:45.7235851Z [4807/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-sse41-u16.c.obj 2025-06-01T21:10:45.7295329Z [4808/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul32-ld32-u16.c.obj 2025-06-01T21:10:45.7349954Z [4809/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul32-ld32-u32.c.obj 2025-06-01T21:10:45.8221220Z [4810/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-sse41-u16.c.obj 2025-06-01T21:10:45.8279674Z [4811/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-sse41-u8.c.obj 2025-06-01T21:10:45.8330272Z [4812/7110] 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-06-01T21:10:45.8476173Z [4813/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l8c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-06-01T21:10:45.8618958Z [4814/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l8c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-06-01T21:10:45.8719777Z [4815/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l16c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-06-01T21:10:45.8808214Z [4816/7110] 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-06-01T21:10:45.9432245Z [4817/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l8c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-06-01T21:10:45.9641190Z [4818/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l16c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-06-01T21:10:45.9653321Z [4819/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l8c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-06-01T21:10:45.9700854Z [4820/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l16c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-06-01T21:10:45.9879663Z [4821/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l8c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-06-01T21:10:45.9938687Z [4822/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l16c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-06-01T21:10:46.0007308Z [4823/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l8c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-06-01T21:10:46.0615346Z [4824/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l16c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-06-01T21:10:46.0802393Z [4825/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l16c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-06-01T21:10:46.0946503Z [4826/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p8c-minmax-fp32-sse41-mul32.c.obj 2025-06-01T21:10:46.1015552Z [4827/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p16c-minmax-fp32-sse41-mul16.c.obj 2025-06-01T21:10:46.1097235Z [4828/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p16c-minmax-fp32-sse41-mul32.c.obj 2025-06-01T21:10:46.1170118Z [4829/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p16c-minmax-fp32-sse41-mul16.c.obj 2025-06-01T21:10:46.1667050Z [4830/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p16c-minmax-fp32-sse41-mul32.c.obj 2025-06-01T21:10:46.1829540Z [4831/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse41-u8.c.obj 2025-06-01T21:10:46.1943823Z [4832/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p8c-minmax-fp32-sse41-mul32.c.obj 2025-06-01T21:10:46.1958935Z [4833/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse41-u24.c.obj 2025-06-01T21:10:46.2396712Z [4834/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse41-u32.c.obj 2025-06-01T21:10:46.2519191Z [4835/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2-minmax-fp32-sse41-ld128.c.obj 2025-06-01T21:10:46.2724253Z [4836/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2-minmax-fp32-sse41-ld64.c.obj 2025-06-01T21:10:46.2882808Z [4837/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-06-01T21:10:46.3229574Z [4838/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2-minmax-fp32-sse41-ld64.c.obj 2025-06-01T21:10:46.3324558Z [4839/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-06-01T21:10:46.3692757Z [4840/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2-minmax-fp32-sse41-ld128.c.obj 2025-06-01T21:10:46.3751271Z [4841/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c8-minmax-fp32-sse41-ld128.c.obj 2025-06-01T21:10:46.3762389Z [4842/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-06-01T21:10:46.3901204Z [4843/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-06-01T21:10:46.4129077Z [4844/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c8-minmax-fp32-sse41-ld64.c.obj 2025-06-01T21:10:46.4456018Z [4845/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c8-minmax-fp32-sse41-ld128.c.obj 2025-06-01T21:10:46.4892305Z [4846/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2-minmax-fp32-sse41-ld64.c.obj 2025-06-01T21:10:46.5039546Z [4847/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-06-01T21:10:46.5087513Z [4848/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2-minmax-fp32-sse41-ld128.c.obj 2025-06-01T21:10:46.5404478Z [4849/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2-minmax-fp32-sse41-ld64.c.obj 2025-06-01T21:10:46.5645780Z [4850/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-06-01T21:10:46.5658122Z [4851/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c8-minmax-fp32-sse41-ld128.c.obj 2025-06-01T21:10:46.5718034Z [4852/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2-minmax-fp32-sse41-ld128.c.obj 2025-06-01T21:10:46.6255893Z [4853/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-06-01T21:10:46.6336525Z [4854/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2-minmax-fp32-sse41-ld64.c.obj 2025-06-01T21:10:46.6425250Z [4855/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-06-01T21:10:46.6801434Z [4856/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2-minmax-fp32-sse41-ld128.c.obj 2025-06-01T21:10:46.6846493Z [4857/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-06-01T21:10:46.6929834Z [4858/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-06-01T21:10:46.7333709Z [4859/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c8-minmax-fp32-sse41-ld128.c.obj 2025-06-01T21:10:46.7493752Z [4860/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2-minmax-fp32-sse41-ld64.c.obj 2025-06-01T21:10:46.7548148Z [4861/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2-minmax-fp32-sse41-ld128.c.obj 2025-06-01T21:10:46.7644598Z [4862/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-06-01T21:10:46.7913585Z [4863/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-06-01T21:10:46.8064348Z [4864/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c8-minmax-fp32-sse41-ld64.c.obj 2025-06-01T21:10:46.8287496Z [4865/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c8-minmax-fp32-sse41-ld128.c.obj 2025-06-01T21:10:46.8565931Z [4866/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2-minmax-fp32-sse41-ld64.c.obj 2025-06-01T21:10:46.8755272Z [4867/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-06-01T21:10:46.8808570Z [4868/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-06-01T21:10:46.9074168Z [4869/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2-minmax-fp32-sse41-ld128.c.obj 2025-06-01T21:10:46.9156921Z [4870/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c8-minmax-fp32-sse41-ld128.c.obj 2025-06-01T21:10:46.9326975Z [4871/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2-minmax-fp32-sse41-ld64.c.obj 2025-06-01T21:10:46.9388403Z [4872/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2-minmax-fp32-sse41-ld128.c.obj 2025-06-01T21:10:46.9642689Z [4873/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-06-01T21:10:46.9938658Z [4874/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-sse41-mul16-ld64-u16.c.obj 2025-06-01T21:10:46.9990933Z [4875/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-06-01T21:10:47.0236680Z [4876/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-sse41-mul32-ld32-u16.c.obj 2025-06-01T21:10:47.0413285Z [4877/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-sse41-mul32-ld32-u8.c.obj 2025-06-01T21:10:47.0472281Z [4878/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-sse41-mul32-ld32-u8.c.obj 2025-06-01T21:10:47.0833297Z [4879/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-sse41-mul16-ld64-u16.c.obj 2025-06-01T21:10:47.1019080Z [4880/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-sse41-u8.c.obj 2025-06-01T21:10:47.1139039Z [4881/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-sse41-u16.c.obj 2025-06-01T21:10:47.1273220Z [4882/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-sse41-u8.c.obj 2025-06-01T21:10:47.1327540Z [4883/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-sse41-mul32-ld32-u16.c.obj 2025-06-01T21:10:47.1468416Z [4884/7110] 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-06-01T21:10:47.1528647Z [4885/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-sse41-u16.c.obj 2025-06-01T21:10:47.1877182Z [4886/7110] 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-06-01T21:10:47.1993271Z [4887/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\s8-ibilinear\gen\s8-ibilinear-sse41-c8.c.obj 2025-06-01T21:10:47.2104919Z [4888/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\u8-ibilinear\gen\u8-ibilinear-sse41-c8.c.obj 2025-06-01T21:10:47.2328283Z [4889/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-gio-sse41-u2.c.obj 2025-06-01T21:10:47.2575929Z [4890/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int16-u24.c.obj 2025-06-01T21:10:47.2603027Z [4891/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int16-u8.c.obj 2025-06-01T21:10:47.2746232Z [4892/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int16-u32.c.obj 2025-06-01T21:10:47.2960080Z [4893/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int32-u8.c.obj 2025-06-01T21:10:47.3034791Z [4894/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int32-u16.c.obj 2025-06-01T21:10:47.3388336Z [4895/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int32-u32.c.obj 2025-06-01T21:10:47.3439249Z [4896/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int32-u24.c.obj 2025-06-01T21:10:47.3829965Z [4897/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p8c-minmax-avx-acc2.c.obj 2025-06-01T21:10:47.4030462Z [4898/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p8c-minmax-avx.c.obj 2025-06-01T21:10:47.4137957Z [4899/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p8c-minmax-avx-acc2.c.obj 2025-06-01T21:10:47.4250041Z [4900/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p16c-minmax-avx-acc2.c.obj 2025-06-01T21:10:47.4522903Z [4901/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p16c-minmax-avx-acc2.c.obj 2025-06-01T21:10:47.4541536Z [4902/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p8c-minmax-avx.c.obj 2025-06-01T21:10:47.4553336Z [4903/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l8c8s4r-minmax-avx-acc2.c.obj 2025-06-01T21:10:47.4966009Z [4904/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l8c8s4r-minmax-avx.c.obj 2025-06-01T21:10:47.5416092Z [4905/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l8c8s4r-minmax-avx-acc2.c.obj 2025-06-01T21:10:47.5472084Z [4906/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c8s4r-minmax-avx-acc2.c.obj 2025-06-01T21:10:47.5723840Z [4907/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l16c8s4r-minmax-avx.c.obj 2025-06-01T21:10:47.5794231Z [4908/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c8s4r-minmax-avx.c.obj 2025-06-01T21:10:47.5848078Z [4909/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l16c8s4r-minmax-avx-acc2.c.obj 2025-06-01T21:10:47.5862424Z [4910/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l8c8s4r-minmax-avx-acc2.c.obj 2025-06-01T21:10:47.6023641Z [4911/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l8c8s4r-minmax-avx.c.obj 2025-06-01T21:10:47.6547573Z [4912/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l16c8s4r-minmax-avx-acc2.c.obj 2025-06-01T21:10:47.6701196Z [4913/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l16c8s4r-minmax-avx.c.obj 2025-06-01T21:10:47.6952198Z [4914/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p8c-minmax-avx-acc2.c.obj 2025-06-01T21:10:47.7018859Z [4915/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p8c-minmax-avx-acc2.c.obj 2025-06-01T21:10:47.7030303Z [4916/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p8c-minmax-avx.c.obj 2025-06-01T21:10:47.7083189Z [4917/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p16c-minmax-avx-acc2.c.obj 2025-06-01T21:10:47.7416589Z [4918/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p16c-minmax-avx-acc2.c.obj 2025-06-01T21:10:47.7695166Z [4919/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p16c-minmax-avx.c.obj 2025-06-01T21:10:47.7939784Z [4920/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-avx-u8.c.obj 2025-06-01T21:10:47.8037283Z [4921/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-avx-u16.c.obj 2025-06-01T21:10:47.8181952Z [4922/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-avx-u32.c.obj 2025-06-01T21:10:47.8517255Z [4923/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-1x8-minmax-avx-broadcast.c.obj 2025-06-01T21:10:47.8568975Z [4924/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-3x16-minmax-avx-broadcast.c.obj 2025-06-01T21:10:47.8652514Z [4925/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x8-minmax-avx-broadcast.c.obj 2025-06-01T21:10:47.9111898Z [4926/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x16-minmax-avx-broadcast.c.obj 2025-06-01T21:10:47.9403314Z [4927/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x8-minmax-avx-broadcast.c.obj 2025-06-01T21:10:47.9453319Z [4928/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x8-minmax-avx-broadcast.c.obj 2025-06-01T21:10:47.9501311Z [4929/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x16-minmax-avx-broadcast.c.obj 2025-06-01T21:10:47.9813536Z [4930/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-7x8-minmax-avx-broadcast.c.obj 2025-06-01T21:10:47.9940513Z [4931/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x16-minmax-avx-broadcast.c.obj 2025-06-01T21:10:48.0231707Z [4932/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x8-minmax-avx-broadcast.c.obj 2025-06-01T21:10:48.0580673Z [4933/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-3x16-minmax-avx-broadcast.c.obj 2025-06-01T21:10:48.0645037Z [4934/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x8-minmax-avx-broadcast.c.obj 2025-06-01T21:10:48.0756116Z [4935/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x8-minmax-avx-broadcast.c.obj 2025-06-01T21:10:48.0806592Z [4936/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x16-minmax-avx-broadcast.c.obj 2025-06-01T21:10:48.1063637Z [4937/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x16-minmax-avx-broadcast.c.obj 2025-06-01T21:10:48.1603758Z [4938/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x8-minmax-avx-broadcast.c.obj 2025-06-01T21:10:48.1752653Z [4939/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x16-minmax-avx-broadcast.c.obj 2025-06-01T21:10:48.1802719Z [4940/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-1x8-minmax-avx-broadcast.c.obj 2025-06-01T21:10:48.1878360Z [4941/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-7x8-minmax-avx-broadcast.c.obj 2025-06-01T21:10:48.2099436Z [4942/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x8-minmax-avx-broadcast.c.obj 2025-06-01T21:10:48.2112105Z [4943/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-3x16-minmax-avx-broadcast.c.obj 2025-06-01T21:10:48.2788221Z [4944/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x16-minmax-avx-broadcast.c.obj 2025-06-01T21:10:48.2882892Z [4945/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x16-minmax-avx-broadcast.c.obj 2025-06-01T21:10:48.2941737Z [4946/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x8-minmax-avx-broadcast.c.obj 2025-06-01T21:10:48.3132154Z [4947/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-7x8-minmax-avx-broadcast.c.obj 2025-06-01T21:10:48.3201359Z [4948/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-prelu\gen\f32-prelu-avx-2x16.c.obj 2025-06-01T21:10:48.3251773Z [4949/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x8-minmax-avx-broadcast.c.obj 2025-06-01T21:10:48.3549020Z [4950/7110] 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-06-01T21:10:48.4378913Z [4951/7110] 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-06-01T21:10:48.4426798Z [4952/7110] 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-06-01T21:10:48.4477040Z [4953/7110] 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-06-01T21:10:48.4654682Z [4954/7110] 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-06-01T21:10:48.4702248Z [4955/7110] 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-06-01T21:10:48.4764739Z [4956/7110] 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-06-01T21:10:48.5037408Z [4957/7110] 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-06-01T21:10:48.5690047Z [4958/7110] 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-06-01T21:10:48.5764970Z [4959/7110] 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-06-01T21:10:48.5812628Z [4960/7110] 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-06-01T21:10:48.5848556Z [4961/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx-u8.c.obj 2025-06-01T21:10:48.5958480Z [4962/7110] 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-06-01T21:10:48.6006850Z [4963/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx-u16.c.obj 2025-06-01T21:10:48.6166866Z [4964/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx-u24.c.obj 2025-06-01T21:10:48.6984325Z [4965/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-avx-c64.c.obj 2025-06-01T21:10:48.7034012Z [4966/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx-u8.c.obj 2025-06-01T21:10:48.7046155Z [4967/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx-u24.c.obj 2025-06-01T21:10:48.7056900Z [4968/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx-u8.c.obj 2025-06-01T21:10:48.7108124Z [4969/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-avx-c16.c.obj 2025-06-01T21:10:48.7243126Z [4970/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx-u16-acc2.c.obj 2025-06-01T21:10:48.7345434Z [4971/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx-u16.c.obj 2025-06-01T21:10:48.8048788Z [4972/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx-u32-acc2.c.obj 2025-06-01T21:10:48.8169745Z [4973/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx-u24-acc3.c.obj 2025-06-01T21:10:48.8273597Z [4974/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx-u32-acc2.c.obj 2025-06-01T21:10:48.8320111Z [4975/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx-u16-acc2.c.obj 2025-06-01T21:10:48.8433378Z [4976/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx-u8.c.obj 2025-06-01T21:10:48.8513348Z [4977/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx-u24-acc3.c.obj 2025-06-01T21:10:48.8622034Z [4978/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx-u32-acc4.c.obj 2025-06-01T21:10:48.8993420Z [4979/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx-u8.c.obj 2025-06-01T21:10:48.9263490Z [4980/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx-u16-acc2.c.obj 2025-06-01T21:10:48.9342960Z [4981/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx-u24-acc3.c.obj 2025-06-01T21:10:48.9478546Z [4982/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx-u32-acc2.c.obj 2025-06-01T21:10:48.9492494Z [4983/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx-u8.c.obj 2025-06-01T21:10:48.9730247Z [4984/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx-u24-acc3.c.obj 2025-06-01T21:10:48.9941529Z [4985/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx-u32-acc2.c.obj 2025-06-01T21:10:49.0064707Z [4986/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx-u16-acc2.c.obj 2025-06-01T21:10:49.0338067Z [4987/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vadd-avx-u8.c.obj 2025-06-01T21:10:49.0487719Z [4988/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vaddc-avx-u8.c.obj 2025-06-01T21:10:49.0608036Z [4989/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdiv-avx-u8.c.obj 2025-06-01T21:10:49.0669584Z [4990/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdivc-avx-u8.c.obj 2025-06-01T21:10:49.1180478Z [4991/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmin-avx-u8.c.obj 2025-06-01T21:10:49.1237907Z [4992/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmax-avx-u8.c.obj 2025-06-01T21:10:49.1383871Z [4993/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmaxc-avx-u8.c.obj 2025-06-01T21:10:49.1397472Z [4994/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vminc-avx-u8.c.obj 2025-06-01T21:10:49.1668617Z [4995/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmulc-avx-u8.c.obj 2025-06-01T21:10:49.1791451Z [4996/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-avx-u8.c.obj 2025-06-01T21:10:49.1982288Z [4997/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmul-avx-u8.c.obj 2025-06-01T21:10:49.2451317Z [4998/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrdivc-avx-u8.c.obj 2025-06-01T21:10:49.2542983Z [4999/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-avx-u8.c.obj 2025-06-01T21:10:49.2676760Z [5000/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrsubc-avx-u8.c.obj 2025-06-01T21:10:49.2884887Z [5001/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiffc-avx-u8.c.obj 2025-06-01T21:10:49.2899179Z [5002/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-avx-u8.c.obj 2025-06-01T21:10:49.2965138Z [5003/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsub-avx-u8.c.obj 2025-06-01T21:10:49.3198615Z [5004/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiff-avx-u8.c.obj 2025-06-01T21:10:49.3599752Z [5005/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsubc-avx-u8.c.obj 2025-06-01T21:10:49.3651484Z [5006/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vclamp\gen\f32-vclamp-avx-u8.c.obj 2025-06-01T21:10:49.3854923Z [5007/7110] 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-06-01T21:10:49.4029799Z [5008/7110] 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-06-01T21:10:49.4208417Z [5009/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-lut16-p3-u8.c.obj 2025-06-01T21:10:49.4280705Z [5010/7110] 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-06-01T21:10:49.4434284Z [5011/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-lut16-p3-u16.c.obj 2025-06-01T21:10:49.4655871Z [5012/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-lut16-p3-u32.c.obj 2025-06-01T21:10:49.4863610Z [5013/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-p6-u8.c.obj 2025-06-01T21:10:49.4955137Z [5014/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-lut16-p3-u24.c.obj 2025-06-01T21:10:49.5191576Z [5015/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-p6-u16.c.obj 2025-06-01T21:10:49.5275039Z [5016/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-p6-u24.c.obj 2025-06-01T21:10:49.5539747Z [5017/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vhswish\gen\f32-vhswish-avx-u8.c.obj 2025-06-01T21:10:49.5684369Z [5018/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-p6-u32.c.obj 2025-06-01T21:10:49.5770004Z [5019/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-avx-u8.c.obj 2025-06-01T21:10:49.5978559Z [5020/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-avx-u8.c.obj 2025-06-01T21:10:49.6034470Z [5021/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-avx-u16.c.obj 2025-06-01T21:10:49.6394280Z [5022/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndd-avx-u8.c.obj 2025-06-01T21:10:49.6407083Z [5023/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndne-avx-u8.c.obj 2025-06-01T21:10:49.6581913Z [5024/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndu-avx-u8.c.obj 2025-06-01T21:10:49.6789524Z [5025/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndz-avx-u8.c.obj 2025-06-01T21:10:49.7146812Z [5026/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-avx-rsqrt-u8.c.obj 2025-06-01T21:10:49.7282375Z [5027/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-avx-rsqrt-u32.c.obj 2025-06-01T21:10:49.7362697Z [5028/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-div-u8.c.obj 2025-06-01T21:10:49.7449744Z [5029/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-div-u16.c.obj 2025-06-01T21:10:49.7635908Z [5030/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-div-u32.c.obj 2025-06-01T21:10:49.7647740Z [5031/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-div-u24.c.obj 2025-06-01T21:10:49.7879847Z [5032/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-nr2-u8.c.obj 2025-06-01T21:10:49.8199178Z [5033/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-nr2-u24.c.obj 2025-06-01T21:10:49.8342812Z [5034/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-nr2-u32.c.obj 2025-06-01T21:10:49.8549022Z [5035/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx-rsqrt-u8.c.obj 2025-06-01T21:10:49.8722267Z [5036/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx-sqrt-u8.c.obj 2025-06-01T21:10:49.8773266Z [5037/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx-rsqrt-u32.c.obj 2025-06-01T21:10:49.8787897Z [5038/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx-sqrt-u16.c.obj 2025-06-01T21:10:49.9090385Z [5039/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx-sqrt-u32.c.obj 2025-06-01T21:10:49.9314302Z [5040/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vtanh\gen\f32-vtanh-avx-rational-9-8-nr.c.obj 2025-06-01T21:10:49.9699003Z [5041/7110] 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-06-01T21:10:49.9795013Z [5042/7110] 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-06-01T21:10:49.9969276Z [5043/7110] 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-06-01T21:10:50.0122698Z [5044/7110] 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-06-01T21:10:50.0386351Z [5045/7110] 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-06-01T21:10:50.0562596Z [5046/7110] 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-06-01T21:10:50.0616369Z [5047/7110] 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-06-01T21:10:50.1192059Z [5048/7110] 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-06-01T21:10:50.1274149Z [5049/7110] 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-06-01T21:10:50.1337466Z [5050/7110] 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-06-01T21:10:50.1689544Z [5051/7110] 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-06-01T21:10:50.1749933Z [5052/7110] 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-06-01T21:10:50.2028596Z [5053/7110] 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-06-01T21:10:50.2040973Z [5054/7110] 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-06-01T21:10:50.2402637Z [5055/7110] 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-06-01T21:10:50.2530345Z [5056/7110] 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-06-01T21:10:50.2688657Z [5057/7110] 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-06-01T21:10:50.3071436Z [5058/7110] 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-06-01T21:10:50.3273046Z [5059/7110] 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-06-01T21:10:50.3287016Z [5060/7110] 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-06-01T21:10:50.3833206Z [5061/7110] 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-06-01T21:10:50.3991872Z [5062/7110] 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-06-01T21:10:50.4165110Z [5063/7110] 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-06-01T21:10:50.4210568Z [5064/7110] 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-06-01T21:10:50.4289455Z [5065/7110] 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-06-01T21:10:50.4342442Z [5066/7110] 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-06-01T21:10:50.4400707Z [5067/7110] 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-06-01T21:10:50.5013925Z [5068/7110] 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-06-01T21:10:50.5238156Z [5069/7110] 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-06-01T21:10:50.5434623Z [5070/7110] 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-06-01T21:10:50.5591375Z [5071/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c4s4r-minmax-fp32-avx-mul32.c.obj 2025-06-01T21:10:50.5606368Z [5072/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l8c4s4r-minmax-fp32-avx-mul32.c.obj 2025-06-01T21:10:50.5886250Z [5073/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c4s4r-minmax-fp32-avx-mul32.c.obj 2025-06-01T21:10:50.5940832Z [5074/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l8c4s4r-minmax-fp32-avx-mul32.c.obj 2025-06-01T21:10:50.6301233Z [5075/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c4s4r-minmax-fp32-avx-mul32.c.obj 2025-06-01T21:10:50.6411971Z [5076/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l8c4s4r-minmax-fp32-avx-mul32.c.obj 2025-06-01T21:10:50.6541316Z [5077/7110] 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-06-01T21:10:50.6750806Z [5078/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p8c-minmax-fp32-avx-mul16.c.obj 2025-06-01T21:10:50.6815001Z [5079/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p8c-minmax-fp32-avx-mul32.c.obj 2025-06-01T21:10:50.7016743Z [5080/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-avx-mul16.c.obj 2025-06-01T21:10:50.7316150Z [5081/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-avx-mul32.c.obj 2025-06-01T21:10:50.7608317Z [5082/7110] 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-06-01T21:10:50.7624448Z [5083/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p8c-minmax-fp32-avx-mul16.c.obj 2025-06-01T21:10:50.7763968Z [5084/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p8c-minmax-fp32-avx-mul32.c.obj 2025-06-01T21:10:50.7976391Z [5085/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-avx-mul16.c.obj 2025-06-01T21:10:50.8031318Z [5086/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx-u8.c.obj 2025-06-01T21:10:50.8102568Z [5087/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-avx-mul32.c.obj 2025-06-01T21:10:50.8241942Z [5088/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx-u16.c.obj 2025-06-01T21:10:50.8724394Z [5089/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx-u24.c.obj 2025-06-01T21:10:50.8813568Z [5090/7110] 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-06-01T21:10:50.8919859Z [5091/7110] 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-06-01T21:10:50.9472963Z [5092/7110] 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-06-01T21:10:50.9493472Z [5093/7110] 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-06-01T21:10:50.9561485Z [5094/7110] 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-06-01T21:10:50.9638989Z [5095/7110] 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-06-01T21:10:50.9912450Z [5096/7110] 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-06-01T21:10:50.9963534Z [5097/7110] 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-06-01T21:10:51.0021643Z [5098/7110] 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-06-01T21:10:51.0735077Z [5099/7110] 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-06-01T21:10:51.0822182Z [5100/7110] 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-06-01T21:10:51.0876751Z [5101/7110] 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-06-01T21:10:51.0956908Z [5102/7110] 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-06-01T21:10:51.1222335Z [5103/7110] 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-06-01T21:10:51.1234706Z [5104/7110] 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-06-01T21:10:51.1327871Z [5105/7110] 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-06-01T21:10:51.2043511Z [5106/7110] 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-06-01T21:10:51.2204415Z [5107/7110] 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-06-01T21:10:51.2298579Z [5108/7110] 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-06-01T21:10:51.2361234Z [5109/7110] 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-06-01T21:10:51.2641942Z [5110/7110] 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-06-01T21:10:51.2654980Z [5111/7110] 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-06-01T21:10:51.2706662Z [5112/7110] 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-06-01T21:10:51.3363061Z [5113/7110] 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-06-01T21:10:51.3463127Z [5114/7110] 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-06-01T21:10:51.3587087Z [5115/7110] 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-06-01T21:10:51.3659506Z [5116/7110] 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-06-01T21:10:51.3985677Z [5117/7110] 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-06-01T21:10:51.3998787Z [5118/7110] 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-06-01T21:10:51.4100815Z [5119/7110] 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-06-01T21:10:51.4665884Z [5120/7110] 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-06-01T21:10:51.4874358Z [5121/7110] 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-06-01T21:10:51.4962465Z [5122/7110] 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-06-01T21:10:51.5084426Z [5123/7110] 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-06-01T21:10:51.5215391Z [5124/7110] 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-06-01T21:10:51.5437051Z [5125/7110] 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-06-01T21:10:51.5806064Z [5126/7110] 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-06-01T21:10:51.6099745Z [5127/7110] 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-06-01T21:10:51.6117432Z [5128/7110] 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-06-01T21:10:51.6169831Z [5129/7110] 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-06-01T21:10:51.6541611Z [5130/7110] 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-06-01T21:10:51.6623221Z [5131/7110] 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-06-01T21:10:51.6635914Z [5132/7110] 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-06-01T21:10:51.7039594Z [5133/7110] 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-06-01T21:10:51.7247884Z [5134/7110] 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-06-01T21:10:51.7261261Z [5135/7110] 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-06-01T21:10:51.7411141Z [5136/7110] 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-06-01T21:10:51.7671142Z [5137/7110] 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-06-01T21:10:51.7836445Z [5138/7110] 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-06-01T21:10:51.7911440Z [5139/7110] 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-06-01T21:10:51.8203460Z [5140/7110] 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-06-01T21:10:51.8538806Z [5141/7110] 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-06-01T21:10:51.8589340Z [5142/7110] 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-06-01T21:10:51.8603433Z [5143/7110] 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-06-01T21:10:51.8824713Z [5144/7110] 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-06-01T21:10:51.9006518Z [5145/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul16-ld64-u8.c.obj 2025-06-01T21:10:51.9160396Z [5146/7110] 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-06-01T21:10:51.9402585Z [5147/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul16-ld64-u16.c.obj 2025-06-01T21:10:51.9631381Z [5148/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul32-ld32-u16.c.obj 2025-06-01T21:10:51.9830983Z [5149/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul32-ld32-u24.c.obj 2025-06-01T21:10:51.9891615Z [5150/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul16-ld64-u32.c.obj 2025-06-01T21:10:52.0024093Z [5151/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul16-ld64-u24.c.obj 2025-06-01T21:10:52.0161985Z [5152/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul16-ld64-u8.c.obj 2025-06-01T21:10:52.0181794Z [5153/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul32-ld32-u32.c.obj 2025-06-01T21:10:52.0423897Z [5154/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul16-ld64-u16.c.obj 2025-06-01T21:10:52.0848662Z [5155/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul16-ld64-u24.c.obj 2025-06-01T21:10:52.0973221Z [5156/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul32-ld32-u16.c.obj 2025-06-01T21:10:52.1094173Z [5157/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul16-ld64-u32.c.obj 2025-06-01T21:10:52.1150185Z [5158/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul32-ld32-u24.c.obj 2025-06-01T21:10:52.1383340Z [5159/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-avx-u16.c.obj 2025-06-01T21:10:52.1433007Z [5160/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul32-ld32-u32.c.obj 2025-06-01T21:10:52.1447867Z [5161/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-avx-u8.c.obj 2025-06-01T21:10:52.1937902Z [5162/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-avx-u8.c.obj 2025-06-01T21:10:52.2097371Z [5163/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-avx-u16.c.obj 2025-06-01T21:10:52.2179563Z [5164/7110] 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-06-01T21:10:52.2238580Z [5165/7110] 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-06-01T21:10:52.2839504Z [5166/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l8c4s4r-minmax-fp32-avx-mul32.c.obj 2025-06-01T21:10:52.2894228Z [5167/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l8c4s4r-minmax-fp32-avx-mul32.c.obj 2025-06-01T21:10:52.3172509Z [5168/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l16c4s4r-minmax-fp32-avx-mul32.c.obj 2025-06-01T21:10:52.3184147Z [5169/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l8c4s4r-minmax-fp32-avx-mul32.c.obj 2025-06-01T21:10:52.3244282Z [5170/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l16c4s4r-minmax-fp32-avx-mul32.c.obj 2025-06-01T21:10:52.3404652Z [5171/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l16c4s4r-minmax-fp32-avx-mul32.c.obj 2025-06-01T21:10:52.3496405Z [5172/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p8c-minmax-fp32-avx-mul16.c.obj 2025-06-01T21:10:52.4085520Z [5173/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p8c-minmax-fp32-avx-mul32.c.obj 2025-06-01T21:10:52.4102194Z [5174/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p16c-minmax-fp32-avx-mul32.c.obj 2025-06-01T21:10:52.4288654Z [5175/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p8c-minmax-fp32-avx-mul32.c.obj 2025-06-01T21:10:52.4366631Z [5176/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p16c-minmax-fp32-avx-mul32.c.obj 2025-06-01T21:10:52.4415239Z [5177/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p8c-minmax-fp32-avx-mul16.c.obj 2025-06-01T21:10:52.4472509Z [5178/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx-u16.c.obj 2025-06-01T21:10:52.4917603Z [5179/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx-u8.c.obj 2025-06-01T21:10:52.5086329Z [5180/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx-u24.c.obj 2025-06-01T21:10:52.5394864Z [5181/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2-minmax-fp32-avx-ld64.c.obj 2025-06-01T21:10:52.5786596Z [5182/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-06-01T21:10:52.5839865Z [5183/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-06-01T21:10:52.5924016Z [5184/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2-minmax-fp32-avx-ld128.c.obj 2025-06-01T21:10:52.5979008Z [5185/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c8-minmax-fp32-avx-ld64.c.obj 2025-06-01T21:10:52.6219653Z [5186/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2-minmax-fp32-avx-ld64.c.obj 2025-06-01T21:10:52.6688685Z [5187/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2-minmax-fp32-avx-ld128.c.obj 2025-06-01T21:10:52.6759171Z [5188/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-06-01T21:10:52.7021955Z [5189/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-06-01T21:10:52.7200830Z [5190/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2-minmax-fp32-avx-ld128.c.obj 2025-06-01T21:10:52.7300590Z [5191/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c8-minmax-fp32-avx-ld64.c.obj 2025-06-01T21:10:52.7311397Z [5192/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2-minmax-fp32-avx-ld64.c.obj 2025-06-01T21:10:52.7505433Z [5193/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-06-01T21:10:52.7982815Z [5194/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c8-minmax-fp32-avx-ld64.c.obj 2025-06-01T21:10:52.8218942Z [5195/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-06-01T21:10:52.8283792Z [5196/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c8-minmax-fp32-avx-ld128.c.obj 2025-06-01T21:10:52.8559592Z [5197/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-06-01T21:10:52.8572720Z [5198/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2-minmax-fp32-avx-ld64.c.obj 2025-06-01T21:10:52.8644664Z [5199/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2-minmax-fp32-avx-ld128.c.obj 2025-06-01T21:10:52.9182496Z [5200/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-06-01T21:10:52.9333979Z [5201/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2-minmax-fp32-avx-ld64.c.obj 2025-06-01T21:10:52.9470851Z [5202/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-06-01T21:10:52.9545177Z [5203/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2-minmax-fp32-avx-ld128.c.obj 2025-06-01T21:10:52.9746508Z [5204/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c8-minmax-fp32-avx-ld64.c.obj 2025-06-01T21:10:52.9834715Z [5205/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-06-01T21:10:52.9943605Z [5206/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2-minmax-fp32-avx-ld64.c.obj 2025-06-01T21:10:53.0538540Z [5207/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-06-01T21:10:53.0728603Z [5208/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2-minmax-fp32-avx-ld128.c.obj 2025-06-01T21:10:53.0832279Z [5209/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c8-minmax-fp32-avx-ld64.c.obj 2025-06-01T21:10:53.0927383Z [5210/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2-minmax-fp32-avx-ld64.c.obj 2025-06-01T21:10:53.1222139Z [5211/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2-minmax-fp32-avx-ld128.c.obj 2025-06-01T21:10:53.1274797Z [5212/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-06-01T21:10:53.1329825Z [5213/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-06-01T21:10:53.1853546Z [5214/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-06-01T21:10:53.1926385Z [5215/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c8-minmax-fp32-avx-ld64.c.obj 2025-06-01T21:10:53.2114601Z [5216/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2-minmax-fp32-avx-ld64.c.obj 2025-06-01T21:10:53.2264399Z [5217/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c8-minmax-fp32-avx-ld128.c.obj 2025-06-01T21:10:53.2406529Z [5218/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2-minmax-fp32-avx-ld128.c.obj 2025-06-01T21:10:53.2448886Z [5219/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-06-01T21:10:53.2498601Z [5220/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-06-01T21:10:53.3319500Z [5221/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx-mul16-ld64-u8.c.obj 2025-06-01T21:10:53.3334230Z [5222/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx-mul32-ld32-u16.c.obj 2025-06-01T21:10:53.3389308Z [5223/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx-mul16-ld64-u8.c.obj 2025-06-01T21:10:53.3486694Z [5224/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx-mul32-ld32-u16.c.obj 2025-06-01T21:10:53.3499371Z [5225/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx-mul16-ld64-u16.c.obj 2025-06-01T21:10:53.3616044Z [5226/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx-mul16-ld64-u16.c.obj 2025-06-01T21:10:53.3755304Z [5227/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-avx-u8.c.obj 2025-06-01T21:10:53.4413309Z [5228/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-avx-u16.c.obj 2025-06-01T21:10:53.4456876Z [5229/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx-u16.c.obj 2025-06-01T21:10:53.4522798Z [5230/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-avx-u8.c.obj 2025-06-01T21:10:53.4598485Z [5231/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-avx-u16.c.obj 2025-06-01T21:10:53.4613774Z [5232/7110] 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-06-01T21:10:53.4708538Z [5233/7110] 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-06-01T21:10:53.4758392Z [5234/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx-u32.c.obj 2025-06-01T21:10:53.5223334Z [5235/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx-u48.c.obj 2025-06-01T21:10:53.5518049Z [5236/7110] 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-06-01T21:10:53.5612631Z [5237/7110] 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-06-01T21:10:53.5660935Z [5238/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-gio-avx-u8.c.obj 2025-06-01T21:10:53.5805395Z [5239/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-gio-avx-u1.c.obj 2025-06-01T21:10:53.5906667Z [5240/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-goi-avx-u4.c.obj 2025-06-01T21:10:53.5976193Z [5241/7110] 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-06-01T21:10:53.6132407Z [5242/7110] 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-06-01T21:10:53.6571287Z [5243/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8s4-gemm-goi-avx-u4.c.obj 2025-06-01T21:10:53.6673610Z [5244/7110] 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-06-01T21:10:53.6701428Z [5245/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-gio-avx-u1.c.obj 2025-06-01T21:10:53.6923671Z [5246/7110] 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-06-01T21:10:53.7059305Z [5247/7110] 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-06-01T21:10:53.7117068Z [5248/7110] 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-06-01T21:10:53.7215251Z [5249/7110] 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-06-01T21:10:53.7587987Z [5250/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x32-gemm-gio-avx-u1.c.obj 2025-06-01T21:10:53.7720924Z [5251/7110] 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-06-01T21:10:53.7782345Z [5252/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x32-gemm-gio-avx-u8.c.obj 2025-06-01T21:10:53.7993705Z [5253/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-8x8-multi-mov-avx.c.obj 2025-06-01T21:10:53.8057274Z [5254/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-8x8-multi-switch-avx.c.obj 2025-06-01T21:10:53.8134590Z [5255/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-8x8-reuse-mov-avx.c.obj 2025-06-01T21:10:53.8579903Z [5256/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-8x8-reuse-switch-avx.c.obj 2025-06-01T21:10:53.9093115Z [5257/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x4-multi-mov-avx.c.obj 2025-06-01T21:10:53.9106029Z [5258/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x4-multi-switch-avx.c.obj 2025-06-01T21:10:53.9117799Z [5259/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x4-multi-multi-avx.c.obj 2025-06-01T21:10:53.9130142Z [5260/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x4-reuse-switch-avx.c.obj 2025-06-01T21:10:53.9142030Z [5261/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x4-reuse-mov-avx.c.obj 2025-06-01T21:10:53.9878582Z [5262/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-f16c-u8.c.obj 2025-06-01T21:10:54.0681019Z [5263/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-f16c-c16.c.obj 2025-06-01T21:10:54.0742449Z [5264/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-f16c-u8.c.obj 2025-06-01T21:10:54.0786622Z [5265/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-f16c-c128.c.obj 2025-06-01T21:10:54.0863473Z [5266/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-f16c-c64.c.obj 2025-06-01T21:10:54.0875971Z [5267/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-f16c-u16-acc2.c.obj 2025-06-01T21:10:54.0928272Z [5268/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-f16c-u24-acc3.c.obj 2025-06-01T21:10:54.1075617Z [5269/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-f16c-u32-acc2.c.obj 2025-06-01T21:10:54.1695303Z [5270/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vadd-f16c-u8.c.obj 2025-06-01T21:10:54.2569587Z [5271/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vdivc-f16c-u16.c.obj 2025-06-01T21:10:54.2629369Z [5272/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vmax-f16c-u8.c.obj 2025-06-01T21:10:54.2643356Z [5273/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vaddc-f16c-u8.c.obj 2025-06-01T21:10:54.2654288Z [5274/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vmaxc-f16c-u8.c.obj 2025-06-01T21:10:54.2802681Z [5275/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vminc-f16c-u8.c.obj 2025-06-01T21:10:54.2858907Z [5276/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vdiv-f16c-u16.c.obj 2025-06-01T21:10:54.2944785Z [5277/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vmin-f16c-u8.c.obj 2025-06-01T21:10:54.3777513Z [5278/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vprelu-f16c-u8.c.obj 2025-06-01T21:10:54.3836520Z [5279/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vpreluc-f16c-u8.c.obj 2025-06-01T21:10:54.3881204Z [5280/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vmulc-f16c-u8.c.obj 2025-06-01T21:10:54.4026935Z [5281/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vrsubc-f16c-u8.c.obj 2025-06-01T21:10:54.4039239Z [5282/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vrpreluc-f16c-u8.c.obj 2025-06-01T21:10:54.4098663Z [5283/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vrdivc-f16c-u16.c.obj 2025-06-01T21:10:54.4111461Z [5284/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vmul-f16c-u8.c.obj 2025-06-01T21:10:54.5494129Z [5285/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vsqrdiffc-f16c-u8.c.obj 2025-06-01T21:10:54.5587248Z [5286/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vclamp\gen\f16-vclamp-f16c-u8.c.obj 2025-06-01T21:10:54.5642164Z [5287/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vsubc-f16c-u8.c.obj 2025-06-01T21:10:54.5654864Z [5288/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vsub-f16c-u8.c.obj 2025-06-01T21:10:54.5758224Z [5289/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vlrelu\gen\f16-vlrelu-f16c-u8.c.obj 2025-06-01T21:10:54.5906955Z [5290/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vsqrdiff-f16c-u8.c.obj 2025-06-01T21:10:54.5918756Z [5291/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vhswish\gen\f16-vhswish-f16c-u8.c.obj 2025-06-01T21:10:54.7194443Z [5292/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vrnd\gen\f16-vrndu-f16c-u8.c.obj 2025-06-01T21:10:54.7208804Z [5293/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-f16c-rsqrt-u8.c.obj 2025-06-01T21:10:54.7270781Z [5294/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vrnd\gen\f16-vrndne-f16c-u8.c.obj 2025-06-01T21:10:54.7288911Z [5295/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vrsqrt\gen\f16-vrsqrt-f16c-rsqrt-u8.c.obj 2025-06-01T21:10:54.7301178Z [5296/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vrsqrt\gen\f16-vrsqrt-f16c-rsqrt-u16.c.obj 2025-06-01T21:10:54.7357770Z [5297/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vrnd\gen\f16-vrndd-f16c-u8.c.obj 2025-06-01T21:10:54.8225114Z [5298/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-f16c-rsqrt-u16.c.obj 2025-06-01T21:10:54.8315440Z [5299/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vrnd\gen\f16-vrndz-f16c-u8.c.obj 2025-06-01T21:10:54.8398268Z [5300/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-f16c-sqrt-u8.c.obj 2025-06-01T21:10:54.8412579Z [5301/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-f16c-sqrt-u32.c.obj 2025-06-01T21:10:54.8481684Z [5302/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-f16c-sqrt-u16.c.obj 2025-06-01T21:10:54.9608543Z [5303/7110] 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-06-01T21:10:54.9622228Z [5304/7110] 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-06-01T21:10:54.9693590Z [5305/7110] 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-06-01T21:10:54.9709569Z [5306/7110] 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-06-01T21:10:54.9725131Z [5307/7110] 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-06-01T21:10:54.9741082Z [5308/7110] 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-06-01T21:10:54.9803294Z [5309/7110] 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-06-01T21:10:55.0766952Z [5310/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-f16c-polynomial-p19h9t2-u8.c.obj 2025-06-01T21:10:55.0840847Z [5311/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-f16c-polynomial-p19h9t2-u16.c.obj 2025-06-01T21:10:55.0853351Z [5312/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-f16c-polynomial-p19h9t2-u24.c.obj 2025-06-01T21:10:55.0906907Z [5313/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-f16c-polynomial-p19h9t2-u32.c.obj 2025-06-01T21:10:55.2458853Z [5314/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vunary\gen\f16-vsqr-f16c-u8.c.obj 2025-06-01T21:10:55.2510781Z [5315/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-f16c-u8.c.obj 2025-06-01T21:10:55.3476092Z [5316/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-3p8c-minmax-fma3-acc2.c.obj 2025-06-01T21:10:55.3571246Z [5317/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-3p32c-minmax-fma3.c.obj 2025-06-01T21:10:55.3715287Z [5318/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-3p8c-minmax-fma3.c.obj 2025-06-01T21:10:55.3768545Z [5319/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-3p32c-minmax-fma3-acc2.c.obj 2025-06-01T21:10:55.3818076Z [5320/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-4p8c-minmax-fma3-acc2.c.obj 2025-06-01T21:10:55.3926904Z [5321/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-3p16c-minmax-fma3-acc2.c.obj 2025-06-01T21:10:55.4080859Z [5322/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-4p8c-minmax-fma3.c.obj 2025-06-01T21:10:55.5686469Z [5323/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-4p16c-minmax-fma3-acc2.c.obj 2025-06-01T21:10:55.6351455Z [5324/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-4p32c-minmax-fma3-acc2.c.obj 2025-06-01T21:10:55.6704570Z [5325/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-5f5m5l8c8s4r-minmax-fma3-acc2.c.obj 2025-06-01T21:10:55.6776374Z [5326/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-5f5m5l8c8s4r-minmax-fma3.c.obj 2025-06-01T21:10:55.6869575Z [5327/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-5f5m5l16c8s4r-minmax-fma3.c.obj 2025-06-01T21:10:55.7175386Z [5328/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-5f5m5l32c8s4r-minmax-fma3-acc2.c.obj 2025-06-01T21:10:55.7311627Z [5329/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-4p32c-minmax-fma3.c.obj 2025-06-01T21:10:55.7756838Z [5330/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-5f5m5l16c8s4r-minmax-fma3-acc2.c.obj 2025-06-01T21:10:55.8390952Z [5331/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-5f5m5l32c8s4r-minmax-fma3.c.obj 2025-06-01T21:10:55.8573401Z [5332/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-6f6m7l16c8s4r-minmax-fma3-acc2.c.obj 2025-06-01T21:10:55.8617917Z [5333/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-6f6m7l8c8s4r-minmax-fma3.c.obj 2025-06-01T21:10:55.8630427Z [5334/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-6f6m7l8c8s4r-minmax-fma3-acc2.c.obj 2025-06-01T21:10:55.8837093Z [5335/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-6f6m7l16c8s4r-minmax-fma3.c.obj 2025-06-01T21:10:55.8897315Z [5336/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-6f6m7l32c8s4r-minmax-fma3.c.obj 2025-06-01T21:10:55.8911641Z [5337/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-6f6m7l32c8s4r-minmax-fma3-acc2.c.obj 2025-06-01T21:10:55.9618236Z [5338/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-8f8m9l8c8s4r-minmax-fma3-acc2.c.obj 2025-06-01T21:10:55.9818248Z [5339/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-8f8m9l16c8s4r-minmax-fma3-acc2.c.obj 2025-06-01T21:10:55.9830441Z [5340/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-8f8m9l8c8s4r-minmax-fma3.c.obj 2025-06-01T21:10:55.9928963Z [5341/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-8f8m9l16c8s4r-minmax-fma3.c.obj 2025-06-01T21:10:56.0030702Z [5342/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-8f8m9l32c8s4r-minmax-fma3.c.obj 2025-06-01T21:10:56.0042599Z [5343/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-8f8m9l32c8s4r-minmax-fma3-acc2.c.obj 2025-06-01T21:10:56.0177252Z [5344/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-9p8c-minmax-fma3-acc2.c.obj 2025-06-01T21:10:56.1644822Z [5345/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-9p8c-minmax-fma3.c.obj 2025-06-01T21:10:56.1660877Z [5346/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-9p16c-minmax-fma3-acc2.c.obj 2025-06-01T21:10:56.1798786Z [5347/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-9p32c-minmax-fma3-acc2.c.obj 2025-06-01T21:10:56.1846068Z [5348/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-9p32c-minmax-fma3.c.obj 2025-06-01T21:10:56.1975975Z [5349/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-25p8c-minmax-fma3.c.obj 2025-06-01T21:10:56.2228878Z [5350/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-25p16c-minmax-fma3.c.obj 2025-06-01T21:10:56.2487543Z [5351/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-25p16c-minmax-fma3-acc2.c.obj 2025-06-01T21:10:56.4267983Z [5352/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-25p32c-minmax-fma3-acc2.c.obj 2025-06-01T21:10:56.4551909Z [5353/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-ibilinear\gen\f16-ibilinear-fma3-c16.c.obj 2025-06-01T21:10:56.4614072Z [5354/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vmulcaddc\gen\f16-vmulcaddc-c16-minmax-fma3-2x.c.obj 2025-06-01T21:10:56.4711457Z [5355/7110] 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-06-01T21:10:56.4773792Z [5356/7110] 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-06-01T21:10:56.4998387Z [5357/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-25p32c-minmax-fma3.c.obj 2025-06-01T21:10:56.5132601Z [5358/7110] 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-06-01T21:10:56.5333670Z [5359/7110] 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-06-01T21:10:56.5706076Z [5360/7110] 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-06-01T21:10:56.5818686Z [5361/7110] 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-06-01T21:10:56.5835639Z [5362/7110] 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-06-01T21:10:56.6029896Z [5363/7110] 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-06-01T21:10:56.6343552Z [5364/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-fma3-polynomial-p19h9t2-u16.c.obj 2025-06-01T21:10:56.6477210Z [5365/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-fma3-polynomial-p19h9t2-u24.c.obj 2025-06-01T21:10:56.7402094Z [5366/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p8c-minmax-fma3-acc2.c.obj 2025-06-01T21:10:56.7587559Z [5367/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p8c-minmax-fma3.c.obj 2025-06-01T21:10:56.8045703Z [5368/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p16c-minmax-fma3-acc2.c.obj 2025-06-01T21:10:56.8095817Z [5369/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p8c-minmax-fma3.c.obj 2025-06-01T21:10:56.8185951Z [5370/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p16c-minmax-fma3-acc2.c.obj 2025-06-01T21:10:56.8260639Z [5371/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p8c-minmax-fma3-acc2.c.obj 2025-06-01T21:10:56.8317482Z [5372/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-fma3-polynomial-p19h9t2-u8.c.obj 2025-06-01T21:10:56.9013970Z [5373/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l8c8s4r-minmax-fma3-acc2.c.obj 2025-06-01T21:10:56.9704527Z [5374/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l32c8s4r-minmax-fma3.c.obj 2025-06-01T21:10:56.9785156Z [5375/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c8s4r-minmax-fma3.c.obj 2025-06-01T21:10:56.9913838Z [5376/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l32c8s4r-minmax-fma3-acc2.c.obj 2025-06-01T21:10:57.0039778Z [5377/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c8s4r-minmax-fma3-acc2.c.obj 2025-06-01T21:10:57.0185403Z [5378/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-7f6m6l8c8s4r-minmax-fma3-acc2.c.obj 2025-06-01T21:10:57.0470920Z [5379/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-7f6m6l8c8s4r-minmax-fma3.c.obj 2025-06-01T21:10:57.0786628Z [5380/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-7f6m6l16c8s4r-minmax-fma3.c.obj 2025-06-01T21:10:57.0844699Z [5381/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-7f6m6l16c8s4r-minmax-fma3-acc2.c.obj 2025-06-01T21:10:57.1302187Z [5382/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-7f6m6l32c8s4r-minmax-fma3-acc2.c.obj 2025-06-01T21:10:57.1516654Z [5383/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-7f6m6l32c8s4r-minmax-fma3.c.obj 2025-06-01T21:10:57.1732422Z [5384/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p8c-minmax-fma3-acc2.c.obj 2025-06-01T21:10:57.1777638Z [5385/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p16c-minmax-fma3-acc2.c.obj 2025-06-01T21:10:57.1910436Z [5386/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p8c-minmax-fma3.c.obj 2025-06-01T21:10:57.2370883Z [5387/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p8c-minmax-fma3-acc2.c.obj 2025-06-01T21:10:57.4792947Z [5388/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-3x16s4-minmax-fma3-broadcast.c.obj 2025-06-01T21:10:57.5047045Z [5389/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-3x16-minmax-fma3-broadcast.c.obj 2025-06-01T21:10:57.5284148Z [5390/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-1x8-minmax-fma3-broadcast.c.obj 2025-06-01T21:10:57.5418820Z [5391/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p16c-minmax-fma3-acc2.c.obj 2025-06-01T21:10:57.5478370Z [5392/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x8-minmax-fma3-broadcast.c.obj 2025-06-01T21:10:57.5728890Z [5393/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p16c-minmax-fma3.c.obj 2025-06-01T21:10:57.6692758Z [5394/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x16-minmax-fma3-broadcast.c.obj 2025-06-01T21:10:57.6970130Z [5395/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x8-minmax-fma3-broadcast.c.obj 2025-06-01T21:10:57.8565491Z [5396/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x16s4-minmax-fma3-broadcast.c.obj 2025-06-01T21:10:57.8579766Z [5397/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x8-minmax-fma3-broadcast.c.obj 2025-06-01T21:10:57.8786481Z [5398/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x16s4-minmax-fma3-broadcast.c.obj 2025-06-01T21:10:57.8934452Z [5399/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-7x8-minmax-fma3-broadcast.c.obj 2025-06-01T21:10:57.9031577Z [5400/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-8x8-minmax-fma3-broadcast.c.obj 2025-06-01T21:10:57.9185581Z [5401/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x16-minmax-fma3-broadcast.c.obj 2025-06-01T21:10:57.9293966Z [5402/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x8-minmax-fma3-broadcast.c.obj 2025-06-01T21:10:58.0067871Z [5403/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x16-minmax-fma3-broadcast.c.obj 2025-06-01T21:10:58.0153692Z [5404/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-3x16-minmax-fma3-broadcast.c.obj 2025-06-01T21:10:58.0207062Z [5405/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x16s4-minmax-fma3-broadcast.c.obj 2025-06-01T21:10:58.0866638Z [5406/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-3x16s4-minmax-fma3-broadcast.c.obj 2025-06-01T21:10:58.1519445Z [5407/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x16-minmax-fma3-broadcast.c.obj 2025-06-01T21:10:58.3160238Z [5408/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x8-minmax-fma3-broadcast.c.obj 2025-06-01T21:10:58.3172949Z [5409/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x16s4-minmax-fma3-broadcast.c.obj 2025-06-01T21:10:58.3183231Z [5410/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x16s4-minmax-fma3-broadcast.c.obj 2025-06-01T21:10:58.3194361Z [5411/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x16-minmax-fma3-broadcast.c.obj 2025-06-01T21:10:58.3206203Z [5412/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x8-minmax-fma3-broadcast.c.obj 2025-06-01T21:10:58.3974010Z [5413/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x16-minmax-fma3-broadcast.c.obj 2025-06-01T21:10:58.4669329Z [5414/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x16s4-minmax-fma3-broadcast.c.obj 2025-06-01T21:10:58.4894948Z [5415/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x8-minmax-fma3-broadcast.c.obj 2025-06-01T21:10:58.5021695Z [5416/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-7x8-minmax-fma3-broadcast.c.obj 2025-06-01T21:10:58.5430750Z [5417/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-8x8-minmax-fma3-broadcast.c.obj 2025-06-01T21:10:58.6082302Z [5418/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-1x8-minmax-fma3-broadcast.c.obj 2025-06-01T21:10:58.6282090Z [5419/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-3x16-minmax-fma3-broadcast.c.obj 2025-06-01T21:10:58.6866599Z [5420/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-3x16s4-minmax-fma3-broadcast.c.obj 2025-06-01T21:10:58.7606065Z [5421/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x8-minmax-fma3-broadcast.c.obj 2025-06-01T21:10:58.8587297Z [5422/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x16-minmax-fma3-broadcast.c.obj 2025-06-01T21:10:59.0191011Z [5423/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x8-minmax-fma3-broadcast.c.obj 2025-06-01T21:10:59.1264529Z [5424/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x16s4-minmax-fma3-broadcast.c.obj 2025-06-01T21:10:59.1275652Z [5425/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x8-minmax-fma3-broadcast.c.obj 2025-06-01T21:10:59.1286916Z [5426/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x16-minmax-fma3-broadcast.c.obj 2025-06-01T21:10:59.1299522Z [5427/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x16-minmax-fma3-broadcast-prfm.c.obj 2025-06-01T21:10:59.1312636Z [5428/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x16s4-minmax-fma3-broadcast.c.obj 2025-06-01T21:10:59.1323921Z [5429/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x16-minmax-fma3-broadcast.c.obj 2025-06-01T21:10:59.3413292Z [5430/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-7x8-minmax-fma3-broadcast.c.obj 2025-06-01T21:10:59.3888679Z [5431/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-8x8-minmax-fma3-broadcast.c.obj 2025-06-01T21:10:59.4233643Z [5432/7110] 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-06-01T21:10:59.4246399Z [5433/7110] 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-06-01T21:10:59.4287356Z [5434/7110] 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-06-01T21:10:59.5326558Z [5435/7110] 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-06-01T21:10:59.5338236Z [5436/7110] 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-06-01T21:10:59.5565761Z [5437/7110] 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-06-01T21:10:59.6127698Z [5438/7110] 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-06-01T21:10:59.7832098Z [5439/7110] 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-06-01T21:10:59.8318592Z [5440/7110] 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-06-01T21:10:59.9021458Z [5441/7110] 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-06-01T21:10:59.9032577Z [5442/7110] 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-06-01T21:10:59.9088107Z [5443/7110] 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-06-01T21:11:00.0102988Z [5444/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-fma3-u8.c.obj 2025-06-01T21:11:00.0155572Z [5445/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-fma3-u32.c.obj 2025-06-01T21:11:00.0661856Z [5446/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-fma3-u64.c.obj 2025-06-01T21:11:00.0784733Z [5447/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vhswish\gen\f32-vhswish-fma3-u8.c.obj 2025-06-01T21:11:00.2818865Z [5448/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-fma3-rsqrt-u8.c.obj 2025-06-01T21:11:00.2832101Z [5449/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-fma3-rsqrt-u32.c.obj 2025-06-01T21:11:00.4946487Z [5450/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-fma3-rsqrt-u32.c.obj 2025-06-01T21:11:00.5190709Z [5451/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-fma3-rsqrt-u8.c.obj 2025-06-01T21:11:00.5694686Z [5452/7110] 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-06-01T21:11:00.5764421Z [5453/7110] 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-06-01T21:11:00.6466205Z [5454/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vtanh\gen\f32-vtanh-fma3-rational-9-8-nr.c.obj 2025-06-01T21:11:00.6478638Z [5455/7110] 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-06-01T21:11:00.6688583Z [5456/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlog\gen\f32-vlog-fma3-rational-3-3-nr.c.obj 2025-06-01T21:11:00.7328338Z [5457/7110] 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-06-01T21:11:00.7381335Z [5458/7110] 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-06-01T21:11:00.7396341Z [5459/7110] 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-06-01T21:11:00.7872808Z [5460/7110] 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-06-01T21:11:00.8002283Z [5461/7110] 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-06-01T21:11:00.8122742Z [5462/7110] 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-06-01T21:11:00.8288480Z [5463/7110] 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-06-01T21:11:00.8966873Z [5464/7110] 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-06-01T21:11:00.9013258Z [5465/7110] 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-06-01T21:11:00.9078080Z [5466/7110] 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-06-01T21:11:00.9196041Z [5467/7110] 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-06-01T21:11:00.9833670Z [5468/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-1x16-minmax-avx2-broadcast.c.obj 2025-06-01T21:11:00.9877258Z [5469/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-3x16-minmax-avx2-broadcast.c.obj 2025-06-01T21:11:01.0771758Z [5470/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-1x8-minmax-avx2-broadcast.c.obj 2025-06-01T21:11:01.0784434Z [5471/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-4x8-minmax-avx2-broadcast.c.obj 2025-06-01T21:11:01.0795814Z [5472/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-4x16-minmax-avx2-broadcast.c.obj 2025-06-01T21:11:01.1579866Z [5473/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-6x8-minmax-avx2-broadcast.c.obj 2025-06-01T21:11:01.1764876Z [5474/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-5x8-minmax-avx2-broadcast.c.obj 2025-06-01T21:11:01.1810398Z [5475/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-7x8-minmax-avx2-broadcast.c.obj 2025-06-01T21:11:01.2277544Z [5476/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-1x8-minmax-avx2-broadcast.c.obj 2025-06-01T21:11:01.2319832Z [5477/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-1x16-minmax-avx2-broadcast.c.obj 2025-06-01T21:11:01.2396601Z [5478/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-3x16-minmax-avx2-broadcast.c.obj 2025-06-01T21:11:01.2445522Z [5479/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-5x16-minmax-avx2-broadcast.c.obj 2025-06-01T21:11:01.3163815Z [5480/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-4x8-minmax-avx2-broadcast.c.obj 2025-06-01T21:11:01.3238497Z [5481/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-4x16-minmax-avx2-broadcast.c.obj 2025-06-01T21:11:01.3322102Z [5482/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-5x8-minmax-avx2-broadcast.c.obj 2025-06-01T21:11:01.3371396Z [5483/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-6x8-minmax-avx2-broadcast.c.obj 2025-06-01T21:11:01.3434637Z [5484/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-5x16-minmax-avx2-broadcast.c.obj 2025-06-01T21:11:01.3681981Z [5485/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-7x8-minmax-avx2-broadcast.c.obj 2025-06-01T21:11:01.3995044Z [5486/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u16-acc2.c.obj 2025-06-01T21:11:01.4198351Z [5487/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u16.c.obj 2025-06-01T21:11:01.4292383Z [5488/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u32-acc2.c.obj 2025-06-01T21:11:01.4388903Z [5489/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u32-acc4.c.obj 2025-06-01T21:11:01.4437174Z [5490/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u40-acc2.c.obj 2025-06-01T21:11:01.4620972Z [5491/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u40.c.obj 2025-06-01T21:11:01.4831373Z [5492/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u40-acc5.c.obj 2025-06-01T21:11:01.5120890Z [5493/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u48-acc3.c.obj 2025-06-01T21:11:01.5177448Z [5494/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u48-acc2.c.obj 2025-06-01T21:11:01.5310736Z [5495/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u64-acc2.c.obj 2025-06-01T21:11:01.5600695Z [5496/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u48.c.obj 2025-06-01T21:11:01.5648750Z [5497/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u64.c.obj 2025-06-01T21:11:01.5721307Z [5498/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u72-acc3.c.obj 2025-06-01T21:11:01.6064151Z [5499/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u72.c.obj 2025-06-01T21:11:01.6182970Z [5500/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u64-acc4.c.obj 2025-06-01T21:11:01.6264693Z [5501/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u80-acc2.c.obj 2025-06-01T21:11:01.6279715Z [5502/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u80-acc5.c.obj 2025-06-01T21:11:01.6696126Z [5503/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u80.c.obj 2025-06-01T21:11:01.6708099Z [5504/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u96-acc3.c.obj 2025-06-01T21:11:01.6914569Z [5505/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u96-acc2.c.obj 2025-06-01T21:11:01.7913940Z [5506/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u96-acc6.c.obj 2025-06-01T21:11:01.8016313Z [5507/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-div-u32.c.obj 2025-06-01T21:11:01.8076516Z [5508/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-div-u24.c.obj 2025-06-01T21:11:01.8138919Z [5509/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-div-u16.c.obj 2025-06-01T21:11:01.8184654Z [5510/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u96.c.obj 2025-06-01T21:11:01.8303157Z [5511/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-velu\gen\f16-velu-avx2-rr1-p3-u8.c.obj 2025-06-01T21:11:01.8492102Z [5512/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-div-u8.c.obj 2025-06-01T21:11:01.9061170Z [5513/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-rcp-u8.c.obj 2025-06-01T21:11:01.9113806Z [5514/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-rcp-u16.c.obj 2025-06-01T21:11:01.9217257Z [5515/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-rcp-u24.c.obj 2025-06-01T21:11:01.9274454Z [5516/7110] 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-06-01T21:11:01.9398499Z [5517/7110] 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-06-01T21:11:01.9752566Z [5518/7110] 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-06-01T21:11:01.9808575Z [5519/7110] 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-06-01T21:11:02.0317448Z [5520/7110] 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-06-01T21:11:02.0394174Z [5521/7110] 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-06-01T21:11:02.0448709Z [5522/7110] 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-06-01T21:11:02.0495966Z [5523/7110] 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-06-01T21:11:02.0877509Z [5524/7110] 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-06-01T21:11:02.1085940Z [5525/7110] 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-06-01T21:11:02.1538660Z [5526/7110] 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-06-01T21:11:02.1762539Z [5527/7110] 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-06-01T21:11:02.1830294Z [5528/7110] 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-06-01T21:11:02.1967583Z [5529/7110] 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-06-01T21:11:02.2272951Z [5530/7110] 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-06-01T21:11:02.2328263Z [5531/7110] 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-06-01T21:11:02.2401657Z [5532/7110] 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-06-01T21:11:02.3395174Z [5533/7110] 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-06-01T21:11:02.3430730Z [5534/7110] 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-06-01T21:11:02.3441598Z [5535/7110] 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-06-01T21:11:02.3494730Z [5536/7110] 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-06-01T21:11:02.3508280Z [5537/7110] 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-06-01T21:11:02.3607582Z [5538/7110] 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-06-01T21:11:02.4180171Z [5539/7110] 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-06-01T21:11:02.5103188Z [5540/7110] 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-06-01T21:11:02.5182539Z [5541/7110] 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-06-01T21:11:02.5277694Z [5542/7110] 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-06-01T21:11:02.5291169Z [5543/7110] 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-06-01T21:11:02.5437728Z [5544/7110] 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-06-01T21:11:02.5751452Z [5545/7110] 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-06-01T21:11:02.6126014Z [5546/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx2-u16.c.obj 2025-06-01T21:11:02.6205857Z [5547/7110] 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-06-01T21:11:02.6217083Z [5548/7110] 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-06-01T21:11:02.6257135Z [5549/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx2-u32.c.obj 2025-06-01T21:11:02.6331288Z [5550/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx2-u48.c.obj 2025-06-01T21:11:02.7343320Z [5551/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx2-u48.c.obj 2025-06-01T21:11:02.7356711Z [5552/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx2-u16.c.obj 2025-06-01T21:11:02.7368224Z [5553/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx2-u32.c.obj 2025-06-01T21:11:02.7775419Z [5554/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u32-acc4.c.obj 2025-06-01T21:11:02.7789100Z [5555/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u32-acc2.c.obj 2025-06-01T21:11:02.7837943Z [5556/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u32.c.obj 2025-06-01T21:11:02.7849875Z [5557/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u64-acc2.c.obj 2025-06-01T21:11:02.8143760Z [5558/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u64-acc4.c.obj 2025-06-01T21:11:02.8266812Z [5559/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u64.c.obj 2025-06-01T21:11:02.8412613Z [5560/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u72-acc3.c.obj 2025-06-01T21:11:02.8581532Z [5561/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u80-acc2.c.obj 2025-06-01T21:11:02.8745094Z [5562/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u80-acc5.c.obj 2025-06-01T21:11:02.8757470Z [5563/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u72.c.obj 2025-06-01T21:11:02.8768511Z [5564/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u80.c.obj 2025-06-01T21:11:02.8973008Z [5565/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u96-acc3.c.obj 2025-06-01T21:11:02.9388528Z [5566/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u96-acc6.c.obj 2025-06-01T21:11:02.9558544Z [5567/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u96.c.obj 2025-06-01T21:11:03.0319559Z [5568/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u96-acc2.c.obj 2025-06-01T21:11:03.1905934Z [5569/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u32-acc4.c.obj 2025-06-01T21:11:03.2025215Z [5570/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u64-acc2.c.obj 2025-06-01T21:11:03.2035395Z [5571/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u32-acc2.c.obj 2025-06-01T21:11:03.2052690Z [5572/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u32.c.obj 2025-06-01T21:11:03.2098258Z [5573/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u72-acc3.c.obj 2025-06-01T21:11:03.2222861Z [5574/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u64-acc4.c.obj 2025-06-01T21:11:03.2350769Z [5575/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u64.c.obj 2025-06-01T21:11:03.3167483Z [5576/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u72.c.obj 2025-06-01T21:11:03.3239322Z [5577/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u80.c.obj 2025-06-01T21:11:03.3281656Z [5578/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u80-acc2.c.obj 2025-06-01T21:11:03.3353609Z [5579/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u80-acc5.c.obj 2025-06-01T21:11:03.3420492Z [5580/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u96-acc3.c.obj 2025-06-01T21:11:03.3547291Z [5581/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u96-acc6.c.obj 2025-06-01T21:11:03.4101283Z [5582/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u96.c.obj 2025-06-01T21:11:03.4794921Z [5583/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u96-acc2.c.obj 2025-06-01T21:11:03.5423169Z [5584/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr1-p5-u8.c.obj 2025-06-01T21:11:03.5511490Z [5585/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr2-p5-u16-acc2.c.obj 2025-06-01T21:11:03.5551382Z [5586/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr2-p5-u8.c.obj 2025-06-01T21:11:03.5773726Z [5587/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr1-p5-u32-acc4.c.obj 2025-06-01T21:11:03.5785278Z [5588/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr1-p5-u16-acc2.c.obj 2025-06-01T21:11:03.5828219Z [5589/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr1-p5-u32-acc2.c.obj 2025-06-01T21:11:03.6325720Z [5590/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr2-p5-u32-acc4.c.obj 2025-06-01T21:11:03.7073513Z [5591/7110] 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-06-01T21:11:03.7123837Z [5592/7110] 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-06-01T21:11:03.7171819Z [5593/7110] 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-06-01T21:11:03.7248458Z [5594/7110] 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-06-01T21:11:03.7263861Z [5595/7110] 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-06-01T21:11:03.7514500Z [5596/7110] 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-06-01T21:11:03.7825602Z [5597/7110] 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-06-01T21:11:03.8692600Z [5598/7110] 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-06-01T21:11:03.9125933Z [5599/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-p6-u8.c.obj 2025-06-01T21:11:03.9139665Z [5600/7110] 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-06-01T21:11:03.9150321Z [5601/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-p6-u16.c.obj 2025-06-01T21:11:03.9162758Z [5602/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-p6-u24.c.obj 2025-06-01T21:11:03.9176397Z [5603/7110] 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-06-01T21:11:03.9190673Z [5604/7110] 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-06-01T21:11:04.0431949Z [5605/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx2-p5-u8.c.obj 2025-06-01T21:11:04.0443380Z [5606/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx2-p5-u16.c.obj 2025-06-01T21:11:04.0494003Z [5607/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx2-p5-u8.c.obj 2025-06-01T21:11:04.0537724Z [5608/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx2-p5-u24.c.obj 2025-06-01T21:11:04.0620672Z [5609/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx2-p5-u16.c.obj 2025-06-01T21:11:04.0710650Z [5610/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-p6-u32.c.obj 2025-06-01T21:11:04.0755546Z [5611/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx2-p5-u32.c.obj 2025-06-01T21:11:04.2183182Z [5612/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx2-p5-u24.c.obj 2025-06-01T21:11:04.2196224Z [5613/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx2-p5-u32.c.obj 2025-06-01T21:11:04.2845792Z [5614/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-div-u32.c.obj 2025-06-01T21:11:04.2896514Z [5615/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr1fma-u8.c.obj 2025-06-01T21:11:04.3093702Z [5616/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-div-u8.c.obj 2025-06-01T21:11:04.3148999Z [5617/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-div-u24.c.obj 2025-06-01T21:11:04.3165582Z [5618/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr1fma-u16.c.obj 2025-06-01T21:11:04.3777287Z [5619/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr1fma-u24.c.obj 2025-06-01T21:11:04.3988415Z [5620/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr2fma-u8.c.obj 2025-06-01T21:11:04.4229565Z [5621/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr1fma-u32.c.obj 2025-06-01T21:11:04.4435766Z [5622/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr2fma-u24.c.obj 2025-06-01T21:11:04.4511543Z [5623/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr2fma-u32.c.obj 2025-06-01T21:11:04.4559231Z [5624/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr2fma-u16.c.obj 2025-06-01T21:11:04.5198111Z [5625/7110] 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-06-01T21:11:04.5742127Z [5626/7110] 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-06-01T21:11:04.6958455Z [5627/7110] 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-06-01T21:11:04.7001955Z [5628/7110] 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-06-01T21:11:04.8608967Z [5629/7110] 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-06-01T21:11:04.8620403Z [5630/7110] 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-06-01T21:11:04.8631342Z [5631/7110] 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-06-01T21:11:04.8642583Z [5632/7110] 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-06-01T21:11:04.8654858Z [5633/7110] 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-06-01T21:11:04.9390545Z [5634/7110] 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-06-01T21:11:04.9439706Z [5635/7110] 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-06-01T21:11:05.0379676Z [5636/7110] 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-06-01T21:11:05.1017308Z [5637/7110] 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-06-01T21:11:05.1066418Z [5638/7110] 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-06-01T21:11:05.1118733Z [5639/7110] 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-06-01T21:11:05.1618456Z [5640/7110] 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-06-01T21:11:05.1942038Z [5641/7110] 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-06-01T21:11:05.1956118Z [5642/7110] 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-06-01T21:11:05.2228112Z [5643/7110] 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-06-01T21:11:05.2896030Z [5644/7110] 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-06-01T21:11:05.2939389Z [5645/7110] 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-06-01T21:11:05.2951635Z [5646/7110] 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-06-01T21:11:05.4973523Z [5647/7110] 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-06-01T21:11:05.5258176Z [5648/7110] 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-06-01T21:11:05.5701958Z [5649/7110] 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-06-01T21:11:05.6436251Z [5650/7110] 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-06-01T21:11:05.6554652Z [5651/7110] 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-06-01T21:11:05.7266115Z [5652/7110] 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-06-01T21:11:05.7790201Z [5653/7110] 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-06-01T21:11:05.8911207Z [5654/7110] 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-06-01T21:11:05.9761844Z [5655/7110] 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-06-01T21:11:05.9893929Z [5656/7110] 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-06-01T21:11:06.0667567Z [5657/7110] 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-06-01T21:11:06.1397491Z [5658/7110] 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-06-01T21:11:06.1411006Z [5659/7110] 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-06-01T21:11:06.1422791Z [5660/7110] 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-06-01T21:11:06.1445452Z [5661/7110] 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-06-01T21:11:06.1867719Z [5662/7110] 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-06-01T21:11:06.2246233Z [5663/7110] 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-06-01T21:11:06.2381770Z [5664/7110] 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-06-01T21:11:06.3997597Z [5665/7110] 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-06-01T21:11:06.4014633Z [5666/7110] 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-06-01T21:11:06.4030761Z [5667/7110] 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-06-01T21:11:06.4620766Z [5668/7110] 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-06-01T21:11:06.4664505Z [5669/7110] 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-06-01T21:11:06.4853366Z [5670/7110] 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-06-01T21:11:06.5896102Z [5671/7110] 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-06-01T21:11:06.6667860Z [5672/7110] 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-06-01T21:11:06.6678798Z [5673/7110] 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-06-01T21:11:06.6689345Z [5674/7110] 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-06-01T21:11:06.6864712Z [5675/7110] 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-06-01T21:11:06.6876065Z [5676/7110] 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-06-01T21:11:06.7467229Z [5677/7110] 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-06-01T21:11:06.9724913Z [5678/7110] 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-06-01T21:11:07.0346923Z [5679/7110] 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-06-01T21:11:07.2398165Z [5680/7110] 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-06-01T21:11:07.2451692Z [5681/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l8c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:11:07.3099344Z [5682/7110] 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-06-01T21:11:07.3178597Z [5683/7110] 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-06-01T21:11:07.3921921Z [5684/7110] 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-06-01T21:11:07.3934342Z [5685/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l32c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:11:07.3945319Z [5686/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:11:07.4941137Z [5687/7110] 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-06-01T21:11:07.5265802Z [5688/7110] 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-06-01T21:11:07.5457979Z [5689/7110] 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-06-01T21:11:07.5615107Z [5690/7110] 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-06-01T21:11:07.5656582Z [5691/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l8c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:11:07.5728325Z [5692/7110] 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-06-01T21:11:07.6072574Z [5693/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:11:07.8697034Z [5694/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l8c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:11:08.0018733Z [5695/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l32c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:11:08.0163041Z [5696/7110] 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-06-01T21:11:08.0537664Z [5697/7110] 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-06-01T21:11:08.0584304Z [5698/7110] 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-06-01T21:11:08.1422047Z [5699/7110] 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-06-01T21:11:08.1583578Z [5700/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:11:08.3811368Z [5701/7110] 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-06-01T21:11:08.3823924Z [5702/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l32c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:11:08.3870427Z [5703/7110] 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-06-01T21:11:08.3881667Z [5704/7110] 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-06-01T21:11:08.4227854Z [5705/7110] 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-06-01T21:11:08.5004664Z [5706/7110] 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-06-01T21:11:08.5334829Z [5707/7110] 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-06-01T21:11:08.5443210Z [5708/7110] 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-06-01T21:11:08.6686304Z [5709/7110] 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-06-01T21:11:08.6816431Z [5710/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p32c-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:11:08.6893018Z [5711/7110] 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-06-01T21:11:08.7048954Z [5712/7110] 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-06-01T21:11:08.7097193Z [5713/7110] 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-06-01T21:11:08.7304459Z [5714/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p8c-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:11:08.7474625Z [5715/7110] 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-06-01T21:11:08.9043320Z [5716/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p8c-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:11:08.9816000Z [5717/7110] 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-06-01T21:11:09.0004880Z [5718/7110] 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-06-01T21:11:09.0209410Z [5719/7110] 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-06-01T21:11:09.0260166Z [5720/7110] 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-06-01T21:11:09.0309493Z [5721/7110] 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-06-01T21:11:09.0320731Z [5722/7110] 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-06-01T21:11:09.2010367Z [5723/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p32c-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:11:09.2211462Z [5724/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f16-vcvt\gen\qs8-f16-vcvt-avx2-u24.c.obj 2025-06-01T21:11:09.2257594Z [5725/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx2-u24.c.obj 2025-06-01T21:11:09.2323471Z [5726/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f16-vcvt\gen\qs8-f16-vcvt-avx2-u32.c.obj 2025-06-01T21:11:09.2334594Z [5727/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx2-u32.c.obj 2025-06-01T21:11:09.2623541Z [5728/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx2-u8.c.obj 2025-06-01T21:11:09.3942428Z [5729/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f16-vcvt\gen\qs8-f16-vcvt-avx2-u64.c.obj 2025-06-01T21:11:09.4396290Z [5730/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x8c8-gemm-goi-avx2-madd.c.obj 2025-06-01T21:11:09.4596890Z [5731/7110] 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-06-01T21:11:09.5396337Z [5732/7110] 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-06-01T21:11:09.6281343Z [5733/7110] 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-06-01T21:11:09.6355828Z [5734/7110] 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-06-01T21:11:09.6410897Z [5735/7110] 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-06-01T21:11:09.9361619Z [5736/7110] 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-06-01T21:11:09.9413296Z [5737/7110] 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-06-01T21:11:09.9427498Z [5738/7110] 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-06-01T21:11:09.9517084Z [5739/7110] 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-06-01T21:11:10.0239640Z [5740/7110] 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-06-01T21:11:10.0251258Z [5741/7110] 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-06-01T21:11:10.0595456Z [5742/7110] 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-06-01T21:11:10.1337202Z [5743/7110] 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-06-01T21:11:10.1381742Z [5744/7110] 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-06-01T21:11:10.1627282Z [5745/7110] 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-06-01T21:11:10.2565210Z [5746/7110] 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-06-01T21:11:10.2611317Z [5747/7110] 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-06-01T21:11:10.3109715Z [5748/7110] 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-06-01T21:11:10.3204477Z [5749/7110] 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-06-01T21:11:10.4379244Z [5750/7110] 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-06-01T21:11:10.4429863Z [5751/7110] 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-06-01T21:11:10.4558974Z [5752/7110] 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-06-01T21:11:10.4606868Z [5753/7110] 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-06-01T21:11:10.4673393Z [5754/7110] 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-06-01T21:11:10.5455241Z [5755/7110] 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-06-01T21:11:10.5467646Z [5756/7110] 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-06-01T21:11:10.5569398Z [5757/7110] 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-06-01T21:11:10.5709793Z [5758/7110] 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-06-01T21:11:10.5838720Z [5759/7110] 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-06-01T21:11:10.6021115Z [5760/7110] 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-06-01T21:11:10.6143411Z [5761/7110] 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-06-01T21:11:10.7622095Z [5762/7110] 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-06-01T21:11:10.7669230Z [5763/7110] 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-06-01T21:11:10.8068773Z [5764/7110] 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-06-01T21:11:10.8523517Z [5765/7110] 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-06-01T21:11:10.8771484Z [5766/7110] 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-06-01T21:11:11.0183211Z [5767/7110] 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-06-01T21:11:11.0196556Z [5768/7110] 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-06-01T21:11:11.0247184Z [5769/7110] 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-06-01T21:11:11.0258810Z [5770/7110] 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-06-01T21:11:11.0568749Z [5771/7110] 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-06-01T21:11:11.1088825Z [5772/7110] 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-06-01T21:11:11.2434599Z [5773/7110] 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-06-01T21:11:11.3700649Z [5774/7110] 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-06-01T21:11:11.4811306Z [5775/7110] 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-06-01T21:11:11.6257572Z [5776/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rdsum\gen\qs8-rdsum-7p7x-minmax-fp32-avx2-c32.c.obj 2025-06-01T21:11:11.6306375Z [5777/7110] 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-06-01T21:11:11.6318646Z [5778/7110] 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-06-01T21:11:11.6439282Z [5779/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx2-u128-acc2.c.obj 2025-06-01T21:11:11.6451472Z [5780/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx2-u32.c.obj 2025-06-01T21:11:11.6463950Z [5781/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx2-u128-acc4.c.obj 2025-06-01T21:11:11.6927275Z [5782/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx2-mul32-ld64-u8.c.obj 2025-06-01T21:11:11.7824591Z [5783/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx2-mul32-ld64-u32.c.obj 2025-06-01T21:11:11.8194323Z [5784/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-avx2-u16.c.obj 2025-06-01T21:11:11.8206528Z [5785/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-avx2-u64.c.obj 2025-06-01T21:11:11.8268981Z [5786/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx2-mul32-ld64-u24.c.obj 2025-06-01T21:11:11.8781648Z [5787/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx2-mul32-ld64-u24.c.obj 2025-06-01T21:11:11.8832682Z [5788/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx2-mul32-ld64-u32.c.obj 2025-06-01T21:11:11.9066342Z [5789/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx2-mul32-ld64-u8.c.obj 2025-06-01T21:11:12.0403733Z [5790/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-avx2-u16.c.obj 2025-06-01T21:11:12.1009818Z [5791/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-avx2-u64.c.obj 2025-06-01T21:11:12.1055794Z [5792/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l8c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:11:12.1831860Z [5793/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l16c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:11:12.3936121Z [5794/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l8c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:11:12.5448887Z [5795/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l8c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:11:12.6195492Z [5796/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l32c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:11:12.6443401Z [5797/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l16c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:11:12.7922960Z [5798/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l32c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:11:12.7935528Z [5799/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p8c-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:11:12.7947125Z [5800/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p32c-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:11:12.7958763Z [5801/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l16c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:11:12.8575539Z [5802/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p8c-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:11:13.0018161Z [5803/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l32c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:11:13.0695821Z [5804/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx2-u8.c.obj 2025-06-01T21:11:13.0748674Z [5805/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx2-u32.c.obj 2025-06-01T21:11:13.1007553Z [5806/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx2-u24.c.obj 2025-06-01T21:11:13.1809452Z [5807/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x8c8-minmax-fp32-avx2.c.obj 2025-06-01T21:11:13.2000039Z [5808/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x8c8-minmax-fp32-avx2.c.obj 2025-06-01T21:11:13.3408705Z [5809/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p32c-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:11:13.3646179Z [5810/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-avx2-u32.c.obj 2025-06-01T21:11:13.3657309Z [5811/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-avx2-u128-acc2.c.obj 2025-06-01T21:11:13.3757078Z [5812/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x8c8-minmax-fp32-avx2.c.obj 2025-06-01T21:11:13.3818009Z [5813/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x8c8-minmax-fp32-avx2.c.obj 2025-06-01T21:11:13.4309809Z [5814/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-avx2-u128-acc4.c.obj 2025-06-01T21:11:13.5156475Z [5815/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-avx2-u64.c.obj 2025-06-01T21:11:13.5307782Z [5816/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx2-mul32-ld64-u8.c.obj 2025-06-01T21:11:13.5401010Z [5817/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx2-mul32-ld64-u8.c.obj 2025-06-01T21:11:13.5441257Z [5818/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-avx2-u16.c.obj 2025-06-01T21:11:13.6329699Z [5819/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-avx2-u64.c.obj 2025-06-01T21:11:13.6653763Z [5820/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-avx2-u16.c.obj 2025-06-01T21:11:13.7097992Z [5821/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx2-u32.c.obj 2025-06-01T21:11:13.7137576Z [5822/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx2-u96.c.obj 2025-06-01T21:11:13.7213062Z [5823/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx2-u64.c.obj 2025-06-01T21:11:13.7323318Z [5824/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x8c8-gemm-goi-avx2.c.obj 2025-06-01T21:11:13.7491457Z [5825/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x8c8-gemm-goi-avx2-prfm.c.obj 2025-06-01T21:11:13.8375989Z [5826/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x16c8-gemm-goi-avx2-prfm.c.obj 2025-06-01T21:11:13.9354883Z [5827/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x16c8-gemm-goi-avx2.c.obj 2025-06-01T21:11:13.9632784Z [5828/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-16x16-reuse-mov-avx2.c.obj 2025-06-01T21:11:13.9678649Z [5829/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-packw\gen\x16-packw-x8-gemm-goi-avx2-u16.c.obj 2025-06-01T21:11:13.9725192Z [5830/7110] 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-06-01T21:11:13.9736607Z [5831/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-32x32-reuse-mov-avx2.c.obj 2025-06-01T21:11:13.9843627Z [5832/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-packw\gen\x16-packw-x16-gemm-goi-avx2-u16.c.obj 2025-06-01T21:11:14.0282036Z [5833/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx256skx-rr2-p5-u8.c.obj 2025-06-01T21:11:14.0590258Z [5834/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx256skx-rr2-p5-u16-acc2.c.obj 2025-06-01T21:11:14.0731165Z [5835/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx256skx-rr2-p5-u32-acc4.c.obj 2025-06-01T21:11:14.0880613Z [5836/7110] 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-06-01T21:11:14.1905050Z [5837/7110] 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-06-01T21:11:14.1917264Z [5838/7110] 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-06-01T21:11:14.1928321Z [5839/7110] 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-06-01T21:11:14.1978251Z [5840/7110] 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-06-01T21:11:14.2260579Z [5841/7110] 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-06-01T21:11:14.2423586Z [5842/7110] 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-06-01T21:11:14.2709694Z [5843/7110] 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-06-01T21:11:14.3096793Z [5844/7110] 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-06-01T21:11:14.3147983Z [5845/7110] 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-06-01T21:11:14.3188365Z [5846/7110] 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-06-01T21:11:14.3498370Z [5847/7110] 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-06-01T21:11:14.6521421Z [5848/7110] 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-06-01T21:11:14.6552569Z [5849/7110] 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-06-01T21:11:14.6568592Z [5850/7110] 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-06-01T21:11:14.6582072Z [5851/7110] 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-06-01T21:11:14.6593203Z [5852/7110] 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-06-01T21:11:14.6606291Z [5853/7110] 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-06-01T21:11:14.6728938Z [5854/7110] 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-06-01T21:11:14.9309330Z [5855/7110] 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-06-01T21:11:14.9321428Z [5856/7110] 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-06-01T21:11:14.9333785Z [5857/7110] 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-06-01T21:11:14.9512639Z [5858/7110] 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-06-01T21:11:14.9659600Z [5859/7110] 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-06-01T21:11:14.9890963Z [5860/7110] 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-06-01T21:11:14.9996404Z [5861/7110] 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-06-01T21:11:15.0707826Z [5862/7110] 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-06-01T21:11:15.0753590Z [5863/7110] 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-06-01T21:11:15.0765773Z [5864/7110] 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-06-01T21:11:15.0814588Z [5865/7110] 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-06-01T21:11:15.1666614Z [5866/7110] 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-06-01T21:11:15.1715323Z [5867/7110] 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-06-01T21:11:15.2457748Z [5868/7110] 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-06-01T21:11:15.2470643Z [5869/7110] 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-06-01T21:11:15.2516341Z [5870/7110] 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-06-01T21:11:15.2744156Z [5871/7110] 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-06-01T21:11:15.3181593Z [5872/7110] 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-06-01T21:11:15.3469524Z [5873/7110] 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-06-01T21:11:15.3480107Z [5874/7110] 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-06-01T21:11:15.5389827Z [5875/7110] 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-06-01T21:11:15.5576323Z [5876/7110] 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-06-01T21:11:15.6083273Z [5877/7110] 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-06-01T21:11:15.6129842Z [5878/7110] 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-06-01T21:11:15.6716491Z [5879/7110] 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-06-01T21:11:16.1188626Z [5880/7110] 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-06-01T21:11:16.1385464Z [5881/7110] 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-06-01T21:11:16.1398096Z [5882/7110] 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-06-01T21:11:16.2003702Z [5883/7110] 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-06-01T21:11:16.2088065Z [5884/7110] 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-06-01T21:11:16.2938074Z [5885/7110] 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-06-01T21:11:16.3135391Z [5886/7110] 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-06-01T21:11:16.3179812Z [5887/7110] 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-06-01T21:11:16.3438777Z [5888/7110] 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-06-01T21:11:16.4109449Z [5889/7110] 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-06-01T21:11:16.4245180Z [5890/7110] 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-06-01T21:11:16.5840001Z [5891/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256skx-u128-acc4.c.obj 2025-06-01T21:11:16.5996795Z [5892/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256skx-u32.c.obj 2025-06-01T21:11:16.6045706Z [5893/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256skx-u128-acc2.c.obj 2025-06-01T21:11:16.6188382Z [5894/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x8c8-minmax-fp32-avx256skx.c.obj 2025-06-01T21:11:16.6689174Z [5895/7110] 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-06-01T21:11:16.7351394Z [5896/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x16c8-gemm-goi-avx256skx.c.obj 2025-06-01T21:11:16.7419757Z [5897/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x8c8-minmax-fp32-avx256skx.c.obj 2025-06-01T21:11:16.7471083Z [5898/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x8c8-gemm-goi-avx256skx-prfm.c.obj 2025-06-01T21:11:16.7591268Z [5899/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x8c8-gemm-goi-avx256skx.c.obj 2025-06-01T21:11:16.7966053Z [5900/7110] 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-06-01T21:11:16.8389528Z [5901/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x16c8-gemm-goi-avx256skx-prfm.c.obj 2025-06-01T21:11:16.9859177Z [5902/7110] 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-06-01T21:11:16.9870411Z [5903/7110] 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-06-01T21:11:16.9881511Z [5904/7110] 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-06-01T21:11:16.9892022Z [5905/7110] 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-06-01T21:11:16.9903495Z [5906/7110] 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-06-01T21:11:17.0204662Z [5907/7110] 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-06-01T21:11:17.1578131Z [5908/7110] 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-06-01T21:11:17.1624986Z [5909/7110] 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-06-01T21:11:17.1674059Z [5910/7110] 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-06-01T21:11:17.1721200Z [5911/7110] 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-06-01T21:11:17.1768348Z [5912/7110] 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-06-01T21:11:17.2026671Z [5913/7110] 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-06-01T21:11:17.2069018Z [5914/7110] 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-06-01T21:11:17.3302211Z [5915/7110] 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-06-01T21:11:17.4079782Z [5916/7110] 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-06-01T21:11:17.4138111Z [5917/7110] 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-06-01T21:11:17.4149210Z [5918/7110] 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-06-01T21:11:17.4426375Z [5919/7110] 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-06-01T21:11:17.5178595Z [5920/7110] 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-06-01T21:11:17.5311006Z [5921/7110] 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-06-01T21:11:17.5579404Z [5922/7110] 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-06-01T21:11:17.5843899Z [5923/7110] 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-06-01T21:11:17.6738097Z [5924/7110] 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-06-01T21:11:17.6750452Z [5925/7110] 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-06-01T21:11:17.6761802Z [5926/7110] 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-06-01T21:11:17.7703350Z [5927/7110] 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-06-01T21:11:17.7715814Z [5928/7110] 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-06-01T21:11:17.8307376Z [5929/7110] 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-06-01T21:11:17.8449319Z [5930/7110] 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-06-01T21:11:17.8520593Z [5931/7110] 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-06-01T21:11:17.8570518Z [5932/7110] 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-06-01T21:11:17.8585544Z [5933/7110] 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-06-01T21:11:17.9254155Z [5934/7110] 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-06-01T21:11:17.9774876Z [5935/7110] 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-06-01T21:11:17.9924383Z [5936/7110] 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-06-01T21:11:18.0008637Z [5937/7110] 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-06-01T21:11:18.0331063Z [5938/7110] 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-06-01T21:11:18.0342187Z [5939/7110] 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-06-01T21:11:18.0353381Z [5940/7110] 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-06-01T21:11:18.0586271Z [5941/7110] 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-06-01T21:11:18.1363874Z [5942/7110] 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-06-01T21:11:18.1971702Z [5943/7110] 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-06-01T21:11:18.2016889Z [5944/7110] 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-06-01T21:11:18.2028104Z [5945/7110] 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-06-01T21:11:18.2072499Z [5946/7110] 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-06-01T21:11:18.2084887Z [5947/7110] 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-06-01T21:11:18.2251045Z [5948/7110] 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-06-01T21:11:18.3278670Z [5949/7110] 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-06-01T21:11:18.3476626Z [5950/7110] 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-06-01T21:11:18.3492234Z [5951/7110] 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-06-01T21:11:18.3546844Z [5952/7110] 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-06-01T21:11:18.3557439Z [5953/7110] 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-06-01T21:11:18.3649495Z [5954/7110] 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-06-01T21:11:18.5678279Z [5955/7110] 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-06-01T21:11:18.5761982Z [5956/7110] 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-06-01T21:11:18.6694364Z [5957/7110] 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-06-01T21:11:18.6705685Z [5958/7110] 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-06-01T21:11:18.6717597Z [5959/7110] 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-06-01T21:11:18.6730674Z [5960/7110] 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-06-01T21:11:18.6802733Z [5961/7110] 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-06-01T21:11:18.7572180Z [5962/7110] 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-06-01T21:11:18.8349867Z [5963/7110] 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-06-01T21:11:18.8516010Z [5964/7110] 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-06-01T21:11:18.8648681Z [5965/7110] 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-06-01T21:11:18.8783388Z [5966/7110] 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-06-01T21:11:18.9127616Z [5967/7110] 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-06-01T21:11:18.9186861Z [5968/7110] 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-06-01T21:11:18.9726038Z [5969/7110] 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-06-01T21:11:18.9925728Z [5970/7110] 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-06-01T21:11:19.0010788Z [5971/7110] 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-06-01T21:11:19.0790981Z [5972/7110] 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-06-01T21:11:19.0901459Z [5973/7110] 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-06-01T21:11:19.1089926Z [5974/7110] 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-06-01T21:11:19.1429503Z [5975/7110] 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-06-01T21:11:19.1472279Z [5976/7110] 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-06-01T21:11:19.1677359Z [5977/7110] 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-06-01T21:11:19.3215927Z [5978/7110] 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-06-01T21:11:19.3229483Z [5979/7110] 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-06-01T21:11:19.3242064Z [5980/7110] 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-06-01T21:11:19.4205630Z [5981/7110] 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-06-01T21:11:19.4217938Z [5982/7110] 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-06-01T21:11:19.4273131Z [5983/7110] 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-06-01T21:11:19.4288505Z [5984/7110] 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-06-01T21:11:19.4516136Z [5985/7110] 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-06-01T21:11:19.4536877Z [5986/7110] 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-06-01T21:11:19.5424606Z [5987/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x8c8-gemm-goi-avx256vnni.c.obj 2025-06-01T21:11:19.5566056Z [5988/7110] 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-06-01T21:11:19.5695719Z [5989/7110] 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-06-01T21:11:19.6145411Z [5990/7110] 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-06-01T21:11:19.6195835Z [5991/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x16c8-gemm-goi-avx256vnni.c.obj 2025-06-01T21:11:19.6208384Z [5992/7110] 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-06-01T21:11:19.7547109Z [5993/7110] 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-06-01T21:11:19.7562357Z [5994/7110] 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-06-01T21:11:19.7810206Z [5995/7110] 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-06-01T21:11:19.7862253Z [5996/7110] 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-06-01T21:11:19.7993204Z [5997/7110] 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-06-01T21:11:19.8779660Z [5998/7110] 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-06-01T21:11:19.8792223Z [5999/7110] 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-06-01T21:11:19.8901813Z [6000/7110] 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-06-01T21:11:19.9058387Z [6001/7110] 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-06-01T21:11:20.0038588Z [6002/7110] 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-06-01T21:11:20.0642005Z [6003/7110] 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-06-01T21:11:20.1239485Z [6004/7110] 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-06-01T21:11:20.1251350Z [6005/7110] 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-06-01T21:11:20.1567285Z [6006/7110] 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-06-01T21:11:20.1695967Z [6007/7110] 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-06-01T21:11:20.2958100Z [6008/7110] 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-06-01T21:11:20.3042927Z [6009/7110] 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-06-01T21:11:20.3496071Z [6010/7110] 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-06-01T21:11:20.4252693Z [6011/7110] 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-06-01T21:11:20.4264835Z [6012/7110] 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-06-01T21:11:20.4567112Z [6013/7110] 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-06-01T21:11:20.4775387Z [6014/7110] 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-06-01T21:11:20.4863336Z [6015/7110] 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-06-01T21:11:20.5068514Z [6016/7110] 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-06-01T21:11:20.5450649Z [6017/7110] 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-06-01T21:11:20.5572652Z [6018/7110] 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-06-01T21:11:20.5583705Z [6019/7110] 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-06-01T21:11:20.6008397Z [6020/7110] 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-06-01T21:11:20.6070504Z [6021/7110] 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-06-01T21:11:20.6190482Z [6022/7110] 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-06-01T21:11:20.6806933Z [6023/7110] 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-06-01T21:11:20.6973659Z [6024/7110] 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-06-01T21:11:20.7034238Z [6025/7110] 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-06-01T21:11:20.7083370Z [6026/7110] 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-06-01T21:11:20.7139260Z [6027/7110] 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-06-01T21:11:20.7151710Z [6028/7110] 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-06-01T21:11:20.7304619Z [6029/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256vnni-u32.c.obj 2025-06-01T21:11:20.7923380Z [6030/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256vnni-u128-acc2.c.obj 2025-06-01T21:11:20.8139256Z [6031/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256vnni-u128-acc4.c.obj 2025-06-01T21:11:20.8190129Z [6032/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256vnni-u64-acc2.c.obj 2025-06-01T21:11:20.8324366Z [6033/7110] 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-06-01T21:11:20.8376747Z [6034/7110] 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-06-01T21:11:20.8433608Z [6035/7110] 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-06-01T21:11:20.8631431Z [6036/7110] 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-06-01T21:11:20.9388095Z [6037/7110] 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-06-01T21:11:20.9562562Z [6038/7110] 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-06-01T21:11:20.9610575Z [6039/7110] 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-06-01T21:11:20.9879516Z [6040/7110] 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-06-01T21:11:21.0004990Z [6041/7110] 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-06-01T21:11:21.0016484Z [6042/7110] 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-06-01T21:11:21.0342647Z [6043/7110] 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-06-01T21:11:21.0665021Z [6044/7110] 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-06-01T21:11:21.0868379Z [6045/7110] 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-06-01T21:11:21.0971410Z [6046/7110] 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-06-01T21:11:21.1196623Z [6047/7110] 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-06-01T21:11:21.1403629Z [6048/7110] 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-06-01T21:11:21.1461550Z [6049/7110] 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-06-01T21:11:21.1725506Z [6050/7110] 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-06-01T21:11:21.2006104Z [6051/7110] 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-06-01T21:11:21.2144306Z [6052/7110] 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-06-01T21:11:21.2472247Z [6053/7110] 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-06-01T21:11:21.2620669Z [6054/7110] 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-06-01T21:11:21.2747446Z [6055/7110] 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-06-01T21:11:21.2880193Z [6056/7110] 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-06-01T21:11:21.3045826Z [6057/7110] 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-06-01T21:11:21.3283660Z [6058/7110] 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-06-01T21:11:21.3399185Z [6059/7110] 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-06-01T21:11:21.3780903Z [6060/7110] 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-06-01T21:11:21.3986435Z [6061/7110] 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-06-01T21:11:21.4188849Z [6062/7110] 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-06-01T21:11:21.4234456Z [6063/7110] 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-06-01T21:11:21.4375164Z [6064/7110] 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-06-01T21:11:21.4539339Z [6065/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p16c-minmax-avx512f-acc2.c.obj 2025-06-01T21:11:21.4623978Z [6066/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p32c-minmax-avx512f-acc2.c.obj 2025-06-01T21:11:21.4841647Z [6067/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p32c-minmax-avx512f.c.obj 2025-06-01T21:11:21.5288501Z [6068/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p16c-minmax-avx512f-acc2.c.obj 2025-06-01T21:11:21.5394455Z [6069/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p32c-minmax-avx512f.c.obj 2025-06-01T21:11:21.5408140Z [6070/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c16s1r-minmax-avx512f-acc2.c.obj 2025-06-01T21:11:21.5537055Z [6071/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p32c-minmax-avx512f-acc2.c.obj 2025-06-01T21:11:21.5714618Z [6072/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c16s1r-minmax-avx512f.c.obj 2025-06-01T21:11:21.5726468Z [6073/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l32c16s1r-minmax-avx512f-acc2.c.obj 2025-06-01T21:11:21.6098866Z [6074/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p16c-minmax-avx512f-acc2.c.obj 2025-06-01T21:11:21.7144420Z [6075/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p32c-minmax-avx512f-acc2.c.obj 2025-06-01T21:11:21.7174080Z [6076/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p32c-minmax-avx512f.c.obj 2025-06-01T21:11:21.7382171Z [6077/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p32c-minmax-avx512f-acc2.c.obj 2025-06-01T21:11:21.7590715Z [6078/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p16c-minmax-avx512f-acc2.c.obj 2025-06-01T21:11:21.8063535Z [6079/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p32c-minmax-avx512f.c.obj 2025-06-01T21:11:21.8212552Z [6080/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-1x64-minmax-avx512f-broadcast.c.obj 2025-06-01T21:11:21.8381166Z [6081/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-1x16-minmax-avx512f-broadcast.c.obj 2025-06-01T21:11:21.8428980Z [6082/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x32-minmax-avx512f-broadcast.c.obj 2025-06-01T21:11:21.8491323Z [6083/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x16-minmax-avx512f-broadcast.c.obj 2025-06-01T21:11:21.8547470Z [6084/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x64-minmax-avx512f-broadcast.c.obj 2025-06-01T21:11:21.8759321Z [6085/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x16-minmax-avx512f-broadcast.c.obj 2025-06-01T21:11:21.9321680Z [6086/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x32-minmax-avx512f-broadcast.c.obj 2025-06-01T21:11:21.9605620Z [6087/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x64-minmax-avx512f-broadcast.c.obj 2025-06-01T21:11:21.9713426Z [6088/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x32-minmax-avx512f-broadcast.c.obj 2025-06-01T21:11:21.9819562Z [6089/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-7x16-minmax-avx512f-broadcast.c.obj 2025-06-01T21:11:21.9874448Z [6090/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x64-minmax-avx512f-broadcast.c.obj 2025-06-01T21:11:22.0043209Z [6091/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x16-minmax-avx512f-broadcast.c.obj 2025-06-01T21:11:22.0055360Z [6092/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-7x64-minmax-avx512f-broadcast.c.obj 2025-06-01T21:11:22.0683397Z [6093/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-8x16-minmax-avx512f-broadcast.c.obj 2025-06-01T21:11:22.0986790Z [6094/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-8x32-minmax-avx512f-broadcast.c.obj 2025-06-01T21:11:22.1039397Z [6095/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-8x64-minmax-avx512f-broadcast.c.obj 2025-06-01T21:11:22.1105212Z [6096/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-9x16-minmax-avx512f-broadcast.c.obj 2025-06-01T21:11:22.1229484Z [6097/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-9x32-minmax-avx512f-broadcast.c.obj 2025-06-01T21:11:22.1533892Z [6098/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-9x64-minmax-avx512f-broadcast.c.obj 2025-06-01T21:11:22.1791616Z [6099/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-10x16-minmax-avx512f-broadcast.c.obj 2025-06-01T21:11:22.1930895Z [6100/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-10x32-minmax-avx512f-broadcast.c.obj 2025-06-01T21:11:22.2314960Z [6101/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-11x32-minmax-avx512f-broadcast.c.obj 2025-06-01T21:11:22.2437886Z [6102/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-11x16-minmax-avx512f-broadcast.c.obj 2025-06-01T21:11:22.2551595Z [6103/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-10x64-minmax-avx512f-broadcast.c.obj 2025-06-01T21:11:22.2776497Z [6104/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-11x64-minmax-avx512f-broadcast.c.obj 2025-06-01T21:11:22.2827447Z [6105/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-12x16-minmax-avx512f-broadcast.c.obj 2025-06-01T21:11:22.3076647Z [6106/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-12x32-minmax-avx512f-broadcast.c.obj 2025-06-01T21:11:22.3547822Z [6107/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-12x64-minmax-avx512f-broadcast.c.obj 2025-06-01T21:11:22.3748235Z [6108/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-13x32-minmax-avx512f-broadcast.c.obj 2025-06-01T21:11:22.3920700Z [6109/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-13x16-minmax-avx512f-broadcast.c.obj 2025-06-01T21:11:22.4135594Z [6110/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-13x64-minmax-avx512f-broadcast.c.obj 2025-06-01T21:11:22.4426485Z [6111/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-14x32-minmax-avx512f-broadcast.c.obj 2025-06-01T21:11:22.4437378Z [6112/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-14x16-minmax-avx512f-broadcast.c.obj 2025-06-01T21:11:22.4644402Z [6113/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-15x16-minmax-avx512f-broadcast.c.obj 2025-06-01T21:11:22.4876169Z [6114/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-14x64-minmax-avx512f-broadcast.c.obj 2025-06-01T21:11:22.4947932Z [6115/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-15x32-minmax-avx512f-broadcast.c.obj 2025-06-01T21:11:22.5343249Z [6116/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-15x64-minmax-avx512f-broadcast.c.obj 2025-06-01T21:11:22.5425959Z [6117/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-16x16-minmax-avx512f-broadcast.c.obj 2025-06-01T21:11:22.5640439Z [6118/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-16x64-minmax-avx512f-broadcast.c.obj 2025-06-01T21:11:22.5967556Z [6119/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x16-minmax-avx512f-broadcast.c.obj 2025-06-01T21:11:22.6062815Z [6120/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x16-minmax-avx512f-broadcast.c.obj 2025-06-01T21:11:22.6161231Z [6121/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-16x32-minmax-avx512f-broadcast.c.obj 2025-06-01T21:11:22.6216951Z [6122/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x16-minmax-avx512f-broadcast.c.obj 2025-06-01T21:11:22.6535874Z [6123/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x16-minmax-avx512f-broadcast.c.obj 2025-06-01T21:11:22.7213572Z [6124/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-7x16-minmax-avx512f-broadcast.c.obj 2025-06-01T21:11:22.7228854Z [6125/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-8x16-minmax-avx512f-broadcast.c.obj 2025-06-01T21:11:22.8043967Z [6126/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x32-minmax-avx512f-broadcast.c.obj 2025-06-01T21:11:22.8056551Z [6127/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x16-minmax-avx512f-broadcast.c.obj 2025-06-01T21:11:22.8168597Z [6128/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-1x16-minmax-avx512f-broadcast.c.obj 2025-06-01T21:11:22.8239505Z [6129/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x16-minmax-avx512f-broadcast.c.obj 2025-06-01T21:11:22.8282985Z [6130/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x32-minmax-avx512f-broadcast.c.obj 2025-06-01T21:11:22.8350188Z [6131/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x32-minmax-avx512f-broadcast.c.obj 2025-06-01T21:11:22.8659491Z [6132/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x16-minmax-avx512f-broadcast.c.obj 2025-06-01T21:11:22.9061727Z [6133/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u64-acc4.c.obj 2025-06-01T21:11:22.9165765Z [6134/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-8x16-minmax-avx512f-broadcast.c.obj 2025-06-01T21:11:22.9206507Z [6135/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u64.c.obj 2025-06-01T21:11:22.9393569Z [6136/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-8x32-minmax-avx512f-broadcast.c.obj 2025-06-01T21:11:22.9468218Z [6137/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-7x16-minmax-avx512f-broadcast.c.obj 2025-06-01T21:11:22.9482930Z [6138/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u128-acc2.c.obj 2025-06-01T21:11:22.9831163Z [6139/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u128-acc4.c.obj 2025-06-01T21:11:22.9986029Z [6140/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u64-acc2.c.obj 2025-06-01T21:11:23.0058753Z [6141/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u144-acc3.c.obj 2025-06-01T21:11:23.0255599Z [6142/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u160-acc2.c.obj 2025-06-01T21:11:23.0267148Z [6143/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u144.c.obj 2025-06-01T21:11:23.0311611Z [6144/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u128.c.obj 2025-06-01T21:11:23.0489848Z [6145/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u160-acc5.c.obj 2025-06-01T21:11:23.0723685Z [6146/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u192-acc2.c.obj 2025-06-01T21:11:23.0930182Z [6147/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u192-acc3.c.obj 2025-06-01T21:11:23.0984801Z [6148/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u160.c.obj 2025-06-01T21:11:23.1098087Z [6149/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u192.c.obj 2025-06-01T21:11:23.1141637Z [6150/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u192-acc6.c.obj 2025-06-01T21:11:23.1286165Z [6151/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u64-acc2.c.obj 2025-06-01T21:11:23.1359695Z [6152/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u64-acc4.c.obj 2025-06-01T21:11:23.1515585Z [6153/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u64.c.obj 2025-06-01T21:11:23.1761923Z [6154/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u128-acc2.c.obj 2025-06-01T21:11:23.1773141Z [6155/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u128-acc4.c.obj 2025-06-01T21:11:23.2133231Z [6156/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u128.c.obj 2025-06-01T21:11:23.2193922Z [6157/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u144-acc3.c.obj 2025-06-01T21:11:23.2245933Z [6158/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u144.c.obj 2025-06-01T21:11:23.2260467Z [6159/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u160-acc2.c.obj 2025-06-01T21:11:23.2339148Z [6160/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u160-acc5.c.obj 2025-06-01T21:11:23.2538854Z [6161/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u160.c.obj 2025-06-01T21:11:23.2691559Z [6162/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u192-acc2.c.obj 2025-06-01T21:11:23.2907746Z [6163/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u192-acc3.c.obj 2025-06-01T21:11:23.3123297Z [6164/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u192-acc6.c.obj 2025-06-01T21:11:23.3339395Z [6165/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx512f-rr1-p5-scalef-u16.c.obj 2025-06-01T21:11:23.3424900Z [6166/7110] 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-06-01T21:11:23.3579050Z [6167/7110] 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-06-01T21:11:23.3899986Z [6168/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx512f-rr2-p5-u16.c.obj 2025-06-01T21:11:23.4381705Z [6169/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u192.c.obj 2025-06-01T21:11:23.4508482Z [6170/7110] 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-06-01T21:11:23.4519637Z [6171/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx512f-rr2-p5-u32-acc2.c.obj 2025-06-01T21:11:23.4531420Z [6172/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx512f-rr2-p5-u64-acc4.c.obj 2025-06-01T21:11:23.5081878Z [6173/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-avx512f-c16.c.obj 2025-06-01T21:11:23.5236384Z [6174/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-avx512f-c128.c.obj 2025-06-01T21:11:23.5247175Z [6175/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-avx512f-c32.c.obj 2025-06-01T21:11:23.6050960Z [6176/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx512f-u48-acc3.c.obj 2025-06-01T21:11:23.6095189Z [6177/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx512f-u16.c.obj 2025-06-01T21:11:23.6139889Z [6178/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx512f-u16.c.obj 2025-06-01T21:11:23.6252867Z [6179/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx512f-u32-acc2.c.obj 2025-06-01T21:11:23.6426700Z [6180/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx512f-u64-acc2.c.obj 2025-06-01T21:11:23.6680316Z [6181/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx512f-u32-acc2.c.obj 2025-06-01T21:11:23.6782308Z [6182/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx512f-u48-acc3.c.obj 2025-06-01T21:11:23.7037778Z [6183/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx512f-u64-acc4.c.obj 2025-06-01T21:11:23.7117262Z [6184/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx512f-u64-acc2.c.obj 2025-06-01T21:11:23.7182479Z [6185/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx512f-u16.c.obj 2025-06-01T21:11:23.7326719Z [6186/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx512f-u32-acc2.c.obj 2025-06-01T21:11:23.7407720Z [6187/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx512f-u48-acc3.c.obj 2025-06-01T21:11:23.7691232Z [6188/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx512f-u64-acc2.c.obj 2025-06-01T21:11:23.7772572Z [6189/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx512f-u16.c.obj 2025-06-01T21:11:23.7992751Z [6190/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx512f-u32-acc2.c.obj 2025-06-01T21:11:23.8039740Z [6191/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx512f-u48-acc3.c.obj 2025-06-01T21:11:23.8192245Z [6192/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx512f-u64-acc2.c.obj 2025-06-01T21:11:23.8853224Z [6193/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vadd-avx512f-u16.c.obj 2025-06-01T21:11:23.9587969Z [6194/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmax-avx512f-u16.c.obj 2025-06-01T21:11:23.9601483Z [6195/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdiv-avx512f-u16.c.obj 2025-06-01T21:11:23.9699030Z [6196/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdivc-avx512f-u16.c.obj 2025-06-01T21:11:23.9759854Z [6197/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vaddc-avx512f-u16.c.obj 2025-06-01T21:11:23.9772321Z [6198/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmaxc-avx512f-u16.c.obj 2025-06-01T21:11:24.0529139Z [6199/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmin-avx512f-u16.c.obj 2025-06-01T21:11:24.0632733Z [6200/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmul-avx512f-u16.c.obj 2025-06-01T21:11:24.0777936Z [6201/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vminc-avx512f-u16.c.obj 2025-06-01T21:11:24.0949893Z [6202/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmulc-avx512f-u16.c.obj 2025-06-01T21:11:24.1271554Z [6203/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-avx512f-u16.c.obj 2025-06-01T21:11:24.1368649Z [6204/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-avx512f-u16.c.obj 2025-06-01T21:11:24.1589823Z [6205/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-avx512f-u16.c.obj 2025-06-01T21:11:24.1646056Z [6206/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrdivc-avx512f-u16.c.obj 2025-06-01T21:11:24.1704954Z [6207/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrsubc-avx512f-u16.c.obj 2025-06-01T21:11:24.1989309Z [6208/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiffc-avx512f-u16.c.obj 2025-06-01T21:11:24.2106509Z [6209/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiff-avx512f-u16.c.obj 2025-06-01T21:11:24.2611050Z [6210/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vclamp\gen\f32-vclamp-avx512f-u32.c.obj 2025-06-01T21:11:24.2624548Z [6211/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsub-avx512f-u16.c.obj 2025-06-01T21:11:24.2704963Z [6212/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsubc-avx512f-u16.c.obj 2025-06-01T21:11:24.2752078Z [6213/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-avx512f-u16.c.obj 2025-06-01T21:11:24.2807717Z [6214/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-avx512f-u64.c.obj 2025-06-01T21:11:24.3157622Z [6215/7110] 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-06-01T21:11:24.3217679Z [6216/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-avx512f-u128.c.obj 2025-06-01T21:11:24.3717083Z [6217/7110] 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-06-01T21:11:24.3767573Z [6218/7110] 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-06-01T21:11:24.3830406Z [6219/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx512f-rr1-p6-u16.c.obj 2025-06-01T21:11:24.3929129Z [6220/7110] 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-06-01T21:11:24.4037526Z [6221/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx512f-rr1-p6-u32.c.obj 2025-06-01T21:11:24.4294650Z [6222/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx512f-rr1-p6-u48.c.obj 2025-06-01T21:11:24.4362525Z [6223/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vgelu\gen\f32-vgelu-avx512f-rational-12-10-div.c.obj 2025-06-01T21:11:24.4792627Z [6224/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-avx512f-u32.c.obj 2025-06-01T21:11:24.4804537Z [6225/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vhswish\gen\f32-vhswish-avx512f-u32.c.obj 2025-06-01T21:11:24.5116051Z [6226/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlog\gen\f32-vlog-avx512f-rational-3-3-nr.c.obj 2025-06-01T21:11:24.5681729Z [6227/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndd-avx512f-u32.c.obj 2025-06-01T21:11:24.5735670Z [6228/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-avx512f-u16.c.obj 2025-06-01T21:11:24.5799126Z [6229/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndne-avx512f-u32.c.obj 2025-06-01T21:11:24.5809032Z [6230/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndz-avx512f-u32.c.obj 2025-06-01T21:11:24.5864110Z [6231/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-avx512f-u32.c.obj 2025-06-01T21:11:24.5876929Z [6232/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndu-avx512f-u32.c.obj 2025-06-01T21:11:24.6323028Z [6233/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-avx512f-rsqrt-u16.c.obj 2025-06-01T21:11:24.6561721Z [6234/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx512f-p5-scalef-u48.c.obj 2025-06-01T21:11:24.6619979Z [6235/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx512f-p5-scalef-u32.c.obj 2025-06-01T21:11:24.6682201Z [6236/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx512f-p5-scalef-u64.c.obj 2025-06-01T21:11:24.6728771Z [6237/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-avx512f-rsqrt-u64.c.obj 2025-06-01T21:11:24.6777135Z [6238/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx512f-p5-scalef-u16.c.obj 2025-06-01T21:11:24.7259199Z [6239/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx512f-p5-scalef-u16.c.obj 2025-06-01T21:11:24.7491259Z [6240/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx512f-p5-scalef-u48.c.obj 2025-06-01T21:11:24.7641763Z [6241/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx512f-p5-scalef-u32.c.obj 2025-06-01T21:11:24.7657804Z [6242/7110] 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-06-01T21:11:24.7762393Z [6243/7110] 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-06-01T21:11:24.7777487Z [6244/7110] 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-06-01T21:11:24.7868379Z [6245/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx512f-p5-scalef-u64.c.obj 2025-06-01T21:11:24.8456975Z [6246/7110] 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-06-01T21:11:24.8631274Z [6247/7110] 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-06-01T21:11:24.8829763Z [6248/7110] 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-06-01T21:11:24.8943985Z [6249/7110] 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-06-01T21:11:24.8957094Z [6250/7110] 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-06-01T21:11:24.9046838Z [6251/7110] 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-06-01T21:11:24.9105921Z [6252/7110] 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-06-01T21:11:24.9680829Z [6253/7110] 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-06-01T21:11:24.9965251Z [6254/7110] 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-06-01T21:11:24.9977737Z [6255/7110] 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-06-01T21:11:25.0243013Z [6256/7110] 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-06-01T21:11:25.0695535Z [6257/7110] 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-06-01T21:11:25.0767440Z [6258/7110] 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-06-01T21:11:25.0779953Z [6259/7110] 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-06-01T21:11:25.1084377Z [6260/7110] 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-06-01T21:11:25.1187249Z [6261/7110] 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-06-01T21:11:25.1236762Z [6262/7110] 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-06-01T21:11:25.1522659Z [6263/7110] 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-06-01T21:11:25.2248000Z [6264/7110] 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-06-01T21:11:25.2298156Z [6265/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx512f-rsqrt-u48.c.obj 2025-06-01T21:11:25.2434973Z [6266/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vtanh\gen\f32-vtanh-avx512f-rational-9-8-div.c.obj 2025-06-01T21:11:25.2483309Z [6267/7110] 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-06-01T21:11:25.2632738Z [6268/7110] 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-06-01T21:11:25.2749210Z [6269/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx512f-rsqrt-u32.c.obj 2025-06-01T21:11:25.2762610Z [6270/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-gio-avx512f-u1.c.obj 2025-06-01T21:11:25.4734564Z [6271/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-gio-avx512f-u8.c.obj 2025-06-01T21:11:25.4747177Z [6272/7110] 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-06-01T21:11:25.4758429Z [6273/7110] 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-06-01T21:11:25.4769680Z [6274/7110] 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-06-01T21:11:25.4781476Z [6275/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-goi-avx512f-u4.c.obj 2025-06-01T21:11:25.4794161Z [6276/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x32-gemm-gio-avx512f-u1.c.obj 2025-06-01T21:11:25.4807782Z [6277/7110] 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-06-01T21:11:25.5965409Z [6278/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-avx512skx-c16.c.obj 2025-06-01T21:11:25.6028623Z [6279/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-avx512skx-u16.c.obj 2025-06-01T21:11:25.6073136Z [6280/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-avx512skx-u32-acc2.c.obj 2025-06-01T21:11:25.6117559Z [6281/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-avx512skx-c32.c.obj 2025-06-01T21:11:25.6219274Z [6282/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x32-gemm-goi-avx512f-u4.c.obj 2025-06-01T21:11:25.6371110Z [6283/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-avx512skx-c128.c.obj 2025-06-01T21:11:25.6385196Z [6284/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx512skx-u32.c.obj 2025-06-01T21:11:25.7949265Z [6285/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-avx512skx-u64-acc2.c.obj 2025-06-01T21:11:25.7995534Z [6286/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-avx512skx-u32-acc2.c.obj 2025-06-01T21:11:25.8007000Z [6287/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-avx512skx-u128-acc4.c.obj 2025-06-01T21:11:25.8493197Z [6288/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-avx512skx-u48-acc3.c.obj 2025-06-01T21:11:25.8511271Z [6289/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-avx512skx-u64-acc2.c.obj 2025-06-01T21:11:25.8523797Z [6290/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-avx512skx-u48-acc3.c.obj 2025-06-01T21:11:25.8535076Z [6291/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-avx512skx-u16.c.obj 2025-06-01T21:11:25.9114110Z [6292/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-avx512skx-u32-acc2.c.obj 2025-06-01T21:11:25.9159673Z [6293/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-avx512skx-u16.c.obj 2025-06-01T21:11:26.0378192Z [6294/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-avx512skx-u48-acc3.c.obj 2025-06-01T21:11:26.0477135Z [6295/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-avx512skx-u48-acc3.c.obj 2025-06-01T21:11:26.0520143Z [6296/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-avx512skx-u64-acc2.c.obj 2025-06-01T21:11:26.0566171Z [6297/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-avx512skx-u64-acc2.c.obj 2025-06-01T21:11:26.0581797Z [6298/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-avx512skx-u64-acc4.c.obj 2025-06-01T21:11:26.0634406Z [6299/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-avx512skx-u32-acc2.c.obj 2025-06-01T21:11:26.0645340Z [6300/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-avx512skx-u16.c.obj 2025-06-01T21:11:26.1540681Z [6301/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-avx512skx-sqrt-u32.c.obj 2025-06-01T21:11:26.1626332Z [6302/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-avx512skx-sqrt-u64.c.obj 2025-06-01T21:11:26.1693348Z [6303/7110] 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-06-01T21:11:26.1747509Z [6304/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-avx512skx-sqrt-u16.c.obj 2025-06-01T21:11:26.1923925Z [6305/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-avx512skx-u32.c.obj 2025-06-01T21:11:26.2294239Z [6306/7110] 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-06-01T21:11:26.2840370Z [6307/7110] 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-06-01T21:11:26.2946589Z [6308/7110] 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-06-01T21:11:26.2988749Z [6309/7110] 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-06-01T21:11:26.3252440Z [6310/7110] 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-06-01T21:11:26.3854074Z [6311/7110] 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-06-01T21:11:26.3977404Z [6312/7110] 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-06-01T21:11:26.4032668Z [6313/7110] 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-06-01T21:11:26.4044071Z [6314/7110] 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-06-01T21:11:26.4090798Z [6315/7110] 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-06-01T21:11:26.4511330Z [6316/7110] 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-06-01T21:11:26.4813507Z [6317/7110] 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-06-01T21:11:26.5642815Z [6318/7110] 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-06-01T21:11:26.5744268Z [6319/7110] 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-06-01T21:11:26.5802089Z [6320/7110] 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-06-01T21:11:26.5979059Z [6321/7110] 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-06-01T21:11:26.6035654Z [6322/7110] 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-06-01T21:11:26.6123681Z [6323/7110] 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-06-01T21:11:26.6288858Z [6324/7110] 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-06-01T21:11:26.6835495Z [6325/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx512skx-u32.c.obj 2025-06-01T21:11:26.6846820Z [6326/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx512skx-u96.c.obj 2025-06-01T21:11:26.6896769Z [6327/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx512skx-u64.c.obj 2025-06-01T21:11:26.8203577Z [6328/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx512skx-u64.c.obj 2025-06-01T21:11:26.8255264Z [6329/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx512skx-u32.c.obj 2025-06-01T21:11:26.8266375Z [6330/7110] 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-06-01T21:11:26.8368425Z [6331/7110] 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-06-01T21:11:26.8384530Z [6332/7110] 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-06-01T21:11:26.8430310Z [6333/7110] 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-06-01T21:11:26.8539039Z [6334/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx512skx-u96.c.obj 2025-06-01T21:11:26.9967074Z [6335/7110] 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-06-01T21:11:27.0002806Z [6336/7110] 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-06-01T21:11:27.0014183Z [6337/7110] 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-06-01T21:11:27.0106575Z [6338/7110] 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-06-01T21:11:27.0185890Z [6339/7110] 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-06-01T21:11:27.0280259Z [6340/7110] 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-06-01T21:11:27.0557184Z [6341/7110] 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-06-01T21:11:27.1283989Z [6342/7110] 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-06-01T21:11:27.1328563Z [6343/7110] 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-06-01T21:11:27.2195157Z [6344/7110] 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-06-01T21:11:27.2210977Z [6345/7110] 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-06-01T21:11:27.2261665Z [6346/7110] 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-06-01T21:11:27.2274828Z [6347/7110] 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-06-01T21:11:27.2285647Z [6348/7110] 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-06-01T21:11:27.3212462Z [6349/7110] 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-06-01T21:11:27.3363559Z [6350/7110] 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-06-01T21:11:27.4134986Z [6351/7110] 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-06-01T21:11:27.4235827Z [6352/7110] 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-06-01T21:11:27.4255048Z [6353/7110] 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-06-01T21:11:27.4558096Z [6354/7110] 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-06-01T21:11:27.4568899Z [6355/7110] 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-06-01T21:11:27.4920837Z [6356/7110] 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-06-01T21:11:27.4965406Z [6357/7110] 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-06-01T21:11:27.5924064Z [6358/7110] 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-06-01T21:11:27.6704260Z [6359/7110] 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-06-01T21:11:27.6718764Z [6360/7110] 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-06-01T21:11:27.6762813Z [6361/7110] 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-06-01T21:11:27.7078912Z [6362/7110] 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-06-01T21:11:27.7302726Z [6363/7110] 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-06-01T21:11:27.7360051Z [6364/7110] 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-06-01T21:11:27.8024527Z [6365/7110] 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-06-01T21:11:27.8038498Z [6366/7110] 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-06-01T21:11:27.8726697Z [6367/7110] 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-06-01T21:11:27.8737961Z [6368/7110] 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-06-01T21:11:27.9057184Z [6369/7110] 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-06-01T21:11:27.9284235Z [6370/7110] 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-06-01T21:11:27.9616593Z [6371/7110] 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-06-01T21:11:28.0033011Z [6372/7110] 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-06-01T21:11:28.0174970Z [6373/7110] 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-06-01T21:11:28.0397318Z [6374/7110] 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-06-01T21:11:28.0446956Z [6375/7110] 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-06-01T21:11:28.0781008Z [6376/7110] 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-06-01T21:11:28.0825709Z [6377/7110] 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-06-01T21:11:28.1101557Z [6378/7110] 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-06-01T21:11:28.1757776Z [6379/7110] 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-06-01T21:11:28.1842336Z [6380/7110] 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-06-01T21:11:28.2354018Z [6381/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-06-01T21:11:28.2474405Z [6382/7110] 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-06-01T21:11:28.2485308Z [6383/7110] 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-06-01T21:11:28.2689267Z [6384/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l32c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-06-01T21:11:28.2741433Z [6385/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-06-01T21:11:28.3570321Z [6386/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-06-01T21:11:28.3986033Z [6387/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx512skx-u16.c.obj 2025-06-01T21:11:28.4195195Z [6388/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-avx512skx-mul32.c.obj 2025-06-01T21:11:28.4243481Z [6389/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l32c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-06-01T21:11:28.4255327Z [6390/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l32c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-06-01T21:11:28.4308371Z [6391/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-avx512skx-mul32.c.obj 2025-06-01T21:11:28.5030505Z [6392/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx512skx-u48.c.obj 2025-06-01T21:11:28.5045995Z [6393/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx512skx-u64.c.obj 2025-06-01T21:11:28.5799478Z [6394/7110] 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-06-01T21:11:28.5811238Z [6395/7110] 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-06-01T21:11:28.6304367Z [6396/7110] 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-06-01T21:11:28.6361209Z [6397/7110] 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-06-01T21:11:28.6510039Z [6398/7110] 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-06-01T21:11:28.6749443Z [6399/7110] 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-06-01T21:11:28.7697977Z [6400/7110] 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-06-01T21:11:28.7935852Z [6401/7110] 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-06-01T21:11:28.8406773Z [6402/7110] 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-06-01T21:11:28.8574002Z [6403/7110] 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-06-01T21:11:28.8634943Z [6404/7110] 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-06-01T21:11:28.8647540Z [6405/7110] 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-06-01T21:11:28.8788896Z [6406/7110] 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-06-01T21:11:28.9453611Z [6407/7110] 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-06-01T21:11:29.0732073Z [6408/7110] 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-06-01T21:11:29.0776907Z [6409/7110] 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-06-01T21:11:29.0883335Z [6410/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rdsum\gen\qs8-rdsum-7p7x-minmax-fp32-avx512skx-c128.c.obj 2025-06-01T21:11:29.0894762Z [6411/7110] 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-06-01T21:11:29.0951565Z [6412/7110] 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-06-01T21:11:29.1028609Z [6413/7110] 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-06-01T21:11:29.1252553Z [6414/7110] 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-06-01T21:11:29.2362184Z [6415/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx512skx-u64.c.obj 2025-06-01T21:11:29.2405699Z [6416/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx512skx-u256-acc4.c.obj 2025-06-01T21:11:29.2497370Z [6417/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx512skx-u256-acc2.c.obj 2025-06-01T21:11:29.2513914Z [6418/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx512skx-mul32-ld128-u32.c.obj 2025-06-01T21:11:29.2567650Z [6419/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx512skx-mul32-ld128-u32.c.obj 2025-06-01T21:11:29.2663662Z [6420/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l16c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-06-01T21:11:29.2711660Z [6421/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l32c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-06-01T21:11:29.3794756Z [6422/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p16c-minmax-fp32-avx512skx-mul32.c.obj 2025-06-01T21:11:29.3897918Z [6423/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l16c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-06-01T21:11:29.4367973Z [6424/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l32c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-06-01T21:11:29.4417622Z [6425/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l32c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-06-01T21:11:29.4462733Z [6426/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l16c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-06-01T21:11:29.4545924Z [6427/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx512skx-u16.c.obj 2025-06-01T21:11:29.4810971Z [6428/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p16c-minmax-fp32-avx512skx-mul32.c.obj 2025-06-01T21:11:29.5498961Z [6429/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx512skx-u48.c.obj 2025-06-01T21:11:29.5891450Z [6430/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx512skx-u64.c.obj 2025-06-01T21:11:29.6298235Z [6431/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-5x16c8-minmax-fp32-avx512skx.c.obj 2025-06-01T21:11:29.6366528Z [6432/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-7x16c8-minmax-fp32-avx512skx.c.obj 2025-06-01T21:11:29.6413095Z [6433/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x16c8-minmax-fp32-avx512skx.c.obj 2025-06-01T21:11:29.6484979Z [6434/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-5x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-06-01T21:11:29.6500962Z [6435/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-8x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-06-01T21:11:29.7149030Z [6436/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-8x16c8-minmax-fp32-avx512skx.c.obj 2025-06-01T21:11:29.7221550Z [6437/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x16c8-minmax-fp32-avx512skx.c.obj 2025-06-01T21:11:29.8021880Z [6438/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-5x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-06-01T21:11:29.9344333Z [6439/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-7x16c8-minmax-fp32-avx512skx.c.obj 2025-06-01T21:11:29.9357550Z [6440/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx512skx-mul32-ld128-u32.c.obj 2025-06-01T21:11:29.9368673Z [6441/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-8x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-06-01T21:11:29.9379542Z [6442/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-8x16c8-minmax-fp32-avx512skx.c.obj 2025-06-01T21:11:29.9393585Z [6443/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx512skx-mul32-ld128-u32.c.obj 2025-06-01T21:11:29.9406601Z [6444/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-5x16c8-minmax-fp32-avx512skx.c.obj 2025-06-01T21:11:30.0920408Z [6445/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx512vbmi-vpermx2b-u192.c.obj 2025-06-01T21:11:30.0934208Z [6446/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx512vbmi-vpermx2b-u64.c.obj 2025-06-01T21:11:30.0975895Z [6447/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx512skx-vpshufb-u256.c.obj 2025-06-01T21:11:30.1018409Z [6448/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx512vbmi-vpermx2b-u256.c.obj 2025-06-01T21:11:30.1352131Z [6449/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx512skx-vpshufb-u128.c.obj 2025-06-01T21:11:30.1363116Z [6450/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx512skx-vpshufb-u192.c.obj 2025-06-01T21:11:30.2370429Z [6451/7110] 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-06-01T21:11:30.2433705Z [6452/7110] 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-06-01T21:11:30.2490651Z [6453/7110] 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-06-01T21:11:30.2581304Z [6454/7110] 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-06-01T21:11:30.2628438Z [6455/7110] 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-06-01T21:11:30.3317726Z [6456/7110] 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-06-01T21:11:30.3489146Z [6457/7110] 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-06-01T21:11:30.3913110Z [6458/7110] 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-06-01T21:11:30.3985320Z [6459/7110] 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-06-01T21:11:30.4912022Z [6460/7110] 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-06-01T21:11:30.4969623Z [6461/7110] 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-06-01T21:11:30.4981411Z [6462/7110] 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-06-01T21:11:30.5181642Z [6463/7110] 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-06-01T21:11:30.5645592Z [6464/7110] 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-06-01T21:11:30.5883919Z [6465/7110] 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-06-01T21:11:30.6456702Z [6466/7110] 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-06-01T21:11:30.6653366Z [6467/7110] 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-06-01T21:11:30.6694493Z [6468/7110] 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-06-01T21:11:30.6742028Z [6469/7110] 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-06-01T21:11:30.7121885Z [6470/7110] 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-06-01T21:11:30.7183048Z [6471/7110] 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-06-01T21:11:30.7272885Z [6472/7110] 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-06-01T21:11:30.8002979Z [6473/7110] 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-06-01T21:11:30.8130031Z [6474/7110] 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-06-01T21:11:30.8355642Z [6475/7110] 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-06-01T21:11:30.8400043Z [6476/7110] 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-06-01T21:11:30.8579030Z [6477/7110] 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-06-01T21:11:30.8793880Z [6478/7110] 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-06-01T21:11:30.8806098Z [6479/7110] 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-06-01T21:11:31.0000407Z [6480/7110] 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-06-01T21:11:31.0118223Z [6481/7110] 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-06-01T21:11:31.0177267Z [6482/7110] 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-06-01T21:11:31.0222327Z [6483/7110] 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-06-01T21:11:31.0234731Z [6484/7110] 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-06-01T21:11:31.0330825Z [6485/7110] 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-06-01T21:11:31.0600726Z [6486/7110] 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-06-01T21:11:31.1656698Z [6487/7110] 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-06-01T21:11:31.1725602Z [6488/7110] 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-06-01T21:11:31.1866736Z [6489/7110] 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-06-01T21:11:31.1954106Z [6490/7110] 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-06-01T21:11:31.2044414Z [6491/7110] 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-06-01T21:11:31.2302749Z [6492/7110] 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-06-01T21:11:31.2675504Z [6493/7110] 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-06-01T21:11:31.3000302Z [6494/7110] 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-06-01T21:11:31.3124387Z [6495/7110] 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-06-01T21:11:31.3393153Z [6496/7110] 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-06-01T21:11:31.3404490Z [6497/7110] 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-06-01T21:11:31.3534364Z [6498/7110] 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-06-01T21:11:31.3588709Z [6499/7110] 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-06-01T21:11:31.4464463Z [6500/7110] 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-06-01T21:11:31.4574147Z [6501/7110] 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-06-01T21:11:31.4681620Z [6502/7110] 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-06-01T21:11:31.4743315Z [6503/7110] 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-06-01T21:11:31.4876171Z [6504/7110] 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-06-01T21:11:31.5262339Z [6505/7110] 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-06-01T21:11:31.5277426Z [6506/7110] 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-06-01T21:11:31.5722188Z [6507/7110] 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-06-01T21:11:31.5815808Z [6508/7110] 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-06-01T21:11:31.6427528Z [6509/7110] 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-06-01T21:11:31.6517333Z [6510/7110] 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-06-01T21:11:31.6564924Z [6511/7110] 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-06-01T21:11:31.6637005Z [6512/7110] 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-06-01T21:11:31.6723759Z [6513/7110] 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-06-01T21:11:31.7142920Z [6514/7110] 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-06-01T21:11:31.7424296Z [6515/7110] 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-06-01T21:11:31.7779792Z [6516/7110] 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-06-01T21:11:31.7886214Z [6517/7110] 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-06-01T21:11:31.8072326Z [6518/7110] 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-06-01T21:11:31.8137490Z [6519/7110] 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-06-01T21:11:31.8223396Z [6520/7110] 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-06-01T21:11:31.8378593Z [6521/7110] 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-06-01T21:11:31.8648292Z [6522/7110] 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-06-01T21:11:31.9111088Z [6523/7110] 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-06-01T21:11:31.9240655Z [6524/7110] 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-06-01T21:11:31.9419580Z [6525/7110] 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-06-01T21:11:31.9619633Z [6526/7110] 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-06-01T21:11:31.9705919Z [6527/7110] 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-06-01T21:11:31.9787857Z [6528/7110] 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-06-01T21:11:32.0223810Z [6529/7110] 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-06-01T21:11:32.0280270Z [6530/7110] 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-06-01T21:11:32.0738287Z [6531/7110] 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-06-01T21:11:32.1735553Z [6532/7110] 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-06-01T21:11:32.1747864Z [6533/7110] 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-06-01T21:11:32.1795496Z [6534/7110] 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-06-01T21:11:32.1879268Z [6535/7110] 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-06-01T21:11:32.1891542Z [6536/7110] 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-06-01T21:11:32.2052681Z [6537/7110] 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-06-01T21:11:32.2199058Z [6538/7110] 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-06-01T21:11:32.3057804Z [6539/7110] 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-06-01T21:11:32.3229323Z [6540/7110] 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-06-01T21:11:32.3346473Z [6541/7110] 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-06-01T21:11:32.3357988Z [6542/7110] 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-06-01T21:11:32.3445973Z [6543/7110] 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-06-01T21:11:32.3776418Z [6544/7110] 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-06-01T21:11:32.4113013Z [6545/7110] 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-06-01T21:11:32.4297766Z [6546/7110] 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-06-01T21:11:32.4516867Z [6547/7110] 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-06-01T21:11:32.4727801Z [6548/7110] 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-06-01T21:11:32.4806006Z [6549/7110] 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-06-01T21:11:32.4939545Z [6550/7110] 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-06-01T21:11:32.5091606Z [6551/7110] 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-06-01T21:11:32.5327318Z [6552/7110] 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-06-01T21:11:32.5580975Z [6553/7110] 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-06-01T21:11:32.5912938Z [6554/7110] 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-06-01T21:11:32.6010028Z [6555/7110] 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-06-01T21:11:32.6208679Z [6556/7110] 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-06-01T21:11:32.6416822Z [6557/7110] 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-06-01T21:11:32.6529818Z [6558/7110] 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-06-01T21:11:32.6643339Z [6559/7110] 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-06-01T21:11:32.6932830Z [6560/7110] 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-06-01T21:11:32.7223478Z [6561/7110] 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-06-01T21:11:32.7415877Z [6562/7110] 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-06-01T21:11:32.7579142Z [6563/7110] 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-06-01T21:11:32.8502742Z [6564/7110] 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-06-01T21:11:32.8549313Z [6565/7110] 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-06-01T21:11:32.8931007Z [6566/7110] 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-06-01T21:11:32.8993594Z [6567/7110] 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-06-01T21:11:32.9056700Z [6568/7110] 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-06-01T21:11:32.9124935Z [6569/7110] 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-06-01T21:11:32.9172978Z [6570/7110] 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-06-01T21:11:32.9781778Z [6571/7110] 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-06-01T21:11:32.9937164Z [6572/7110] 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-06-01T21:11:33.0774504Z [6573/7110] 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-06-01T21:11:33.0869810Z [6574/7110] 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-06-01T21:11:33.0958122Z [6575/7110] 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-06-01T21:11:33.1003718Z [6576/7110] 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-06-01T21:11:33.1065026Z [6577/7110] 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-06-01T21:11:33.1196495Z [6578/7110] 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-06-01T21:11:33.1420216Z [6579/7110] 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-06-01T21:11:33.2168537Z [6580/7110] 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-06-01T21:11:33.2366503Z [6581/7110] 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-06-01T21:11:33.2377605Z [6582/7110] 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-06-01T21:11:33.2482167Z [6583/7110] 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-06-01T21:11:33.2569684Z [6584/7110] 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-06-01T21:11:33.2716116Z [6585/7110] 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-06-01T21:11:33.2889353Z [6586/7110] 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-06-01T21:11:33.3596205Z [6587/7110] 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-06-01T21:11:33.3675744Z [6588/7110] 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-06-01T21:11:33.3936041Z [6589/7110] 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-06-01T21:11:33.3947944Z [6590/7110] 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-06-01T21:11:33.4108127Z [6591/7110] 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-06-01T21:11:33.4132810Z [6592/7110] 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-06-01T21:11:33.4454813Z [6593/7110] 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-06-01T21:11:33.4795307Z [6594/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x16c8-minmax-avx512vnni.c.obj 2025-06-01T21:11:33.4884839Z [6595/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x16c4-minmax-avx512vnni.c.obj 2025-06-01T21:11:33.6032064Z [6596/7110] 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-06-01T21:11:33.6147576Z [6597/7110] 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-06-01T21:11:33.6302422Z [6598/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x16c4-minmax-avx512vnni.c.obj 2025-06-01T21:11:33.6488355Z [6599/7110] 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-06-01T21:11:33.6687709Z [6600/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-5x16c4-minmax-avx512vnni.c.obj 2025-06-01T21:11:33.6902572Z [6601/7110] 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-06-01T21:11:33.6954677Z [6602/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-5x16c8-minmax-avx512vnni.c.obj 2025-06-01T21:11:33.7201785Z [6603/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-7x16c4-minmax-avx512vnni.c.obj 2025-06-01T21:11:33.7422944Z [6604/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-7x16c8-minmax-avx512vnni.c.obj 2025-06-01T21:11:33.7738218Z [6605/7110] 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-06-01T21:11:33.7920305Z [6606/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-8x16c4-minmax-avx512vnni.c.obj 2025-06-01T21:11:33.8114676Z [6607/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-8x16c8-minmax-avx512vnni.c.obj 2025-06-01T21:11:33.8170889Z [6608/7110] 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-06-01T21:11:33.8362468Z [6609/7110] 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-06-01T21:11:33.8428920Z [6610/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-9x16c4-minmax-avx512vnni.c.obj 2025-06-01T21:11:33.8942292Z [6611/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-9x16c8-minmax-avx512vnni.c.obj 2025-06-01T21:11:33.9000556Z [6612/7110] 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-06-01T21:11:33.9298440Z [6613/7110] 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-06-01T21:11:33.9551913Z [6614/7110] 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-06-01T21:11:33.9683566Z [6615/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-10x16c4-minmax-avx512vnni.c.obj 2025-06-01T21:11:33.9832575Z [6616/7110] 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-06-01T21:11:33.9999360Z [6617/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-10x16c8-minmax-avx512vnni.c.obj 2025-06-01T21:11:34.0199095Z [6618/7110] 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-06-01T21:11:34.0372112Z [6619/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-12x16c4-minmax-avx512vnni.c.obj 2025-06-01T21:11:34.0891852Z [6620/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-12x16c8-minmax-avx512vnni.c.obj 2025-06-01T21:11:34.0905305Z [6621/7110] 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-06-01T21:11:34.1088317Z [6622/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-14x16c4-minmax-avx512vnni.c.obj 2025-06-01T21:11:34.1226875Z [6623/7110] 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-06-01T21:11:34.1445493Z [6624/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx512vnni-u256-acc2.c.obj 2025-06-01T21:11:34.1458690Z [6625/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-14x16c8-minmax-avx512vnni.c.obj 2025-06-01T21:11:34.1507996Z [6626/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx512vnni-u64.c.obj 2025-06-01T21:11:34.1979116Z [6627/7110] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx512vnni-u256-acc4.c.obj 2025-06-01T21:11:34.2149876Z [6628/7110] 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-06-01T21:11:34.2307913Z [6629/7110] 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-06-01T21:11:34.2643573Z [6630/7110] 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-06-01T21:11:34.2861352Z [6631/7110] 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-06-01T21:11:34.2924628Z [6632/7110] 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-06-01T21:11:34.3032648Z [6633/7110] 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-06-01T21:11:34.3619741Z [6634/7110] 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-06-01T21:11:34.3683355Z [6635/7110] 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-06-01T21:11:34.3792882Z [6636/7110] 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-06-01T21:11:34.4127794Z [6637/7110] 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-06-01T21:11:34.4173903Z [6638/7110] 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-06-01T21:11:34.4256041Z [6639/7110] 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-06-01T21:11:34.4602406Z [6640/7110] 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-06-01T21:11:34.5159465Z [6641/7110] 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-06-01T21:11:34.5251128Z [6642/7110] 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-06-01T21:11:34.5263806Z [6643/7110] 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-06-01T21:11:34.5485432Z [6644/7110] 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-06-01T21:11:34.5614223Z [6645/7110] 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-06-01T21:11:34.5704950Z [6646/7110] 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-06-01T21:11:34.6530087Z [6647/7110] 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-06-01T21:11:34.6542280Z [6648/7110] 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-06-01T21:11:34.6760380Z [6649/7110] 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-06-01T21:11:34.6813221Z [6650/7110] 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-06-01T21:11:34.6914690Z [6651/7110] 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-06-01T21:11:34.7154839Z [6652/7110] 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-06-01T21:11:34.7271440Z [6653/7110] 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-06-01T21:11:34.7876125Z [6654/7110] 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-06-01T21:11:34.7925657Z [6655/7110] 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-06-01T21:11:34.8125282Z [6656/7110] 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-06-01T21:11:34.8181645Z [6657/7110] 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-06-01T21:11:34.8265873Z [6658/7110] 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-06-01T21:11:34.8359924Z [6659/7110] 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-06-01T21:11:34.8549824Z [6660/7110] 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-06-01T21:11:34.9305103Z [6661/7110] 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-06-01T21:11:34.9353907Z [6662/7110] 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-06-01T21:11:34.9546742Z [6663/7110] 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-06-01T21:11:34.9663523Z [6664/7110] 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-06-01T21:11:34.9749588Z [6665/7110] 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-06-01T21:11:34.9760697Z [6666/7110] 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-06-01T21:11:34.9899421Z [6667/7110] 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-06-01T21:11:35.0708416Z [6668/7110] 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-06-01T21:11:35.0891805Z [6669/7110] 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-06-01T21:11:35.0914980Z [6670/7110] Linking CXX static library lib\gmock.lib 2025-06-01T21:11:35.0964129Z [6671/7110] 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-06-01T21:11:35.0980884Z [6672/7110] 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-06-01T21:11:35.1407904Z [6673/7110] 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-06-01T21:11:35.1452448Z [6674/7110] 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-06-01T21:11:35.5127429Z [6675/7110] Linking CXX static library lib\gtest_main.lib 2025-06-01T21:11:35.5959853Z [6676/7110] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark_main.dir\benchmark_main.cc.obj 2025-06-01T21:11:35.8434538Z [6677/7110] Building CXX object third_party\fmt\CMakeFiles\fmt.dir\src\format.cc.obj 2025-06-01T21:11:36.0856271Z [6678/7110] Building CXX object third_party\fmt\CMakeFiles\fmt.dir\src\os.cc.obj 2025-06-01T21:11:36.6913173Z [6679/7110] Building C object third_party\ittapi\CMakeFiles\jitprofiling.dir\src\ittnotify\jitprofiling.c.obj 2025-06-01T21:11:38.0700266Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:11:38.0701319Z [6680/7110] Building CXX object c10\test\CMakeFiles\c10_CompileTimeFunctionPointer_test.dir\core\CompileTimeFunctionPointer_test.cpp.obj 2025-06-01T21:11:38.1268503Z [6681/7110] Building CXX object c10\test\CMakeFiles\c10_DeviceGuard_test.dir\core\DeviceGuard_test.cpp.obj 2025-06-01T21:11:38.1380459Z [6682/7110] Building CXX object c10\test\CMakeFiles\c10_Device_test.dir\core\Device_test.cpp.obj 2025-06-01T21:11:38.5290834Z [6683/7110] Building CXX object c10\test\CMakeFiles\c10_StreamGuard_test.dir\core\StreamGuard_test.cpp.obj 2025-06-01T21:11:38.5767471Z [6684/7110] Building CXX object c10\test\CMakeFiles\c10_DispatchKeySet_test.dir\core\DispatchKeySet_test.cpp.obj 2025-06-01T21:11:38.6930196Z [6685/7110] Building CXX object c10\test\CMakeFiles\c10_Scalar_test.dir\core\Scalar_test.cpp.obj 2025-06-01T21:11:38.8258593Z [6686/7110] Building CXX object third_party\googletest\googlemock\CMakeFiles\gmock_main.dir\src\gmock_main.cc.obj 2025-06-01T21:11:38.9083817Z [6687/7110] Building CXX object third_party\googletest\googlemock\CMakeFiles\gmock_main.dir\__\googletest\src\gtest-all.cc.obj 2025-06-01T21:11:38.9177472Z [6688/7110] Building CXX object third_party\googletest\googlemock\CMakeFiles\gmock_main.dir\src\gmock-all.cc.obj 2025-06-01T21:11:38.9468032Z [6689/7110] Linking CXX static library lib\benchmark.lib 2025-06-01T21:11:39.0107126Z [6690/7110] Building CXX object c10\test\CMakeFiles\c10_SymInt_test.dir\core\SymInt_test.cpp.obj 2025-06-01T21:11:39.0176898Z [6691/7110] Building CXX object c10\test\CMakeFiles\c10_InlineDeviceGuard_test.dir\core\impl\InlineDeviceGuard_test.cpp.obj 2025-06-01T21:11:39.2049050Z [6692/7110] Building CXX object c10\test\CMakeFiles\c10_InlineStreamGuard_test.dir\core\impl\InlineStreamGuard_test.cpp.obj 2025-06-01T21:11:39.3155225Z [6693/7110] Building CXX object c10\test\CMakeFiles\c10_ConstexprCrc_test.dir\util\ConstexprCrc_test.cpp.obj 2025-06-01T21:11:39.3751459Z [6694/7110] Building CXX object c10\test\CMakeFiles\c10_SizesAndStrides_test.dir\core\impl\SizesAndStrides_test.cpp.obj 2025-06-01T21:11:39.4228403Z [6695/7110] Building CXX object c10\test\CMakeFiles\c10_Bitset_test.dir\util\Bitset_test.cpp.obj 2025-06-01T21:11:39.4405782Z [6696/7110] Building CXX object c10\test\CMakeFiles\c10_ArrayRef_test.dir\util\ArrayRef_test.cpp.obj 2025-06-01T21:11:39.5164425Z [6697/7110] Building CXX object c10\test\CMakeFiles\c10_cow_test.dir\core\impl\cow_test.cpp.obj 2025-06-01T21:11:39.5346715Z [6698/7110] Building CXX object c10\test\CMakeFiles\c10_DeadlockDetection_test.dir\util\DeadlockDetection_test.cpp.obj 2025-06-01T21:11:39.7037667Z [6699/7110] Building CXX object c10\test\CMakeFiles\c10_Enumerate_test.dir\util\Enumerate_test.cpp.obj 2025-06-01T21:11:39.7830891Z [6700/7110] Building CXX object c10\test\CMakeFiles\c10_Half_test.dir\util\Half_test.cpp.obj 2025-06-01T21:11:39.7909320Z [6701/7110] Building CXX object c10\test\CMakeFiles\c10_IntrusiveList_test.dir\util\IntrusiveList_test.cpp.obj 2025-06-01T21:11:39.8840186Z [6702/7110] Building CXX object c10\test\CMakeFiles\c10_LeftRight_test.dir\util\LeftRight_test.cpp.obj 2025-06-01T21:11:39.9329511Z [6703/7110] Building CXX object c10\test\CMakeFiles\c10_NetworkFlow_test.dir\util\NetworkFlow_test.cpp.obj 2025-06-01T21:11:39.9631620Z [6704/7110] Building CXX object c10\test\CMakeFiles\c10_Metaprogramming_test.dir\util\Metaprogramming_test.cpp.obj 2025-06-01T21:11:40.0837023Z [6705/7110] Building CXX object c10\test\CMakeFiles\c10_Semaphore_test.dir\util\Semaphore_test.cpp.obj 2025-06-01T21:11:40.1404922Z [6706/7110] Building CXX object c10\test\CMakeFiles\c10_Synchronized_test.dir\util\Synchronized_test.cpp.obj 2025-06-01T21:11:40.2051218Z [6707/7110] Building CXX object c10\test\CMakeFiles\c10_TypeIndex_test.dir\util\TypeIndex_test.cpp.obj 2025-06-01T21:11:40.2674303Z [6708/7110] Building CXX object c10\test\CMakeFiles\c10_ThreadLocal_test.dir\util\ThreadLocal_test.cpp.obj 2025-06-01T21:11:40.3278638Z [6709/7110] Building CXX object c10\test\CMakeFiles\c10_TypeList_test.dir\util\TypeList_test.cpp.obj 2025-06-01T21:11:40.3898465Z [6710/7110] Building CXX object c10\test\CMakeFiles\c10_TypeTraits_test.dir\util\TypeTraits_test.cpp.obj 2025-06-01T21:11:40.4422204Z [6711/7110] Building CXX object c10\test\CMakeFiles\c10_accumulate_test.dir\util\accumulate_test.cpp.obj 2025-06-01T21:11:40.6137807Z [6712/7110] Building CXX object c10\test\CMakeFiles\c10_bit_cast_test.dir\util\bit_cast_test.cpp.obj 2025-06-01T21:11:40.6214465Z [6713/7110] Building CXX object c10\test\CMakeFiles\c10_bfloat16_test.dir\util\bfloat16_test.cpp.obj 2025-06-01T21:11:40.7298425Z [6714/7110] Building CXX object c10\test\CMakeFiles\c10_complex_math_test.dir\util\complex_math_test.cpp.obj 2025-06-01T21:11:40.7573336Z [6715/7110] Building CXX object c10\test\CMakeFiles\c10_error_test.dir\util\error_test.cpp.obj 2025-06-01T21:11:40.8551331Z [6716/7110] Building CXX object c10\test\CMakeFiles\c10_complex_test.dir\util\complex_test.cpp.obj 2025-06-01T21:11:40.8630332Z [6717/7110] Building CXX object c10\test\CMakeFiles\c10_exception_test.dir\util\exception_test.cpp.obj 2025-06-01T21:11:40.9280920Z [6718/7110] Building CXX object c10\test\CMakeFiles\c10_flags_test.dir\util\flags_test.cpp.obj 2025-06-01T21:11:41.1000415Z [6719/7110] Building CXX object c10\test\CMakeFiles\c10_generic_math_test.dir\util\generic_math_test.cpp.obj 2025-06-01T21:11:41.1243717Z [6720/7110] Building CXX object c10\test\CMakeFiles\c10_irange_test.dir\util\irange_test.cpp.obj 2025-06-01T21:11:41.2392937Z [6721/7110] Building CXX object c10\test\CMakeFiles\c10_intrusive_ptr_test.dir\util\intrusive_ptr_test.cpp.obj 2025-06-01T21:11:41.3848403Z [6722/7110] Building CXX object c10\test\CMakeFiles\c10_lazy_test.dir\util\lazy_test.cpp.obj 2025-06-01T21:11:41.3914097Z [6723/7110] Building CXX object c10\test\CMakeFiles\c10_logging_test.dir\util\logging_test.cpp.obj 2025-06-01T21:11:41.4132762Z [6724/7110] Building CXX object c10\test\CMakeFiles\c10_optional_test.dir\util\optional_test.cpp.obj 2025-06-01T21:11:41.4133765Z C:\actions-runner\_work\pytorch\pytorch\c10\test\util\optional_test.cpp(70): warning C4834: discarding return value of function with 'nodiscard' attribute 2025-06-01T21:11:41.4135172Z 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-06-01T21:11:41.4135998Z with 2025-06-01T21:11:41.4136205Z [ 2025-06-01T21:11:41.4136380Z T=Type 2025-06-01T21:11:41.4136554Z ] 2025-06-01T21:11:41.4137710Z C:\actions-runner\_work\pytorch\pytorch\cmake\..\third_party\googletest\googletest\include\gtest/internal/gtest-internal.h(491): note: see reference to class template instantiation '`anonymous-namespace'::OptionalTest_Empty_Test' being compiled 2025-06-01T21:11:41.4138761Z with 2025-06-01T21:11:41.4138939Z [ 2025-06-01T21:11:41.4139103Z T=Type 2025-06-01T21:11:41.4139288Z ] 2025-06-01T21:11:41.4140221Z C:\actions-runner\_work\pytorch\pytorch\cmake\..\third_party\googletest\googletest\include\gtest/internal/gtest-internal.h(705): note: see reference to class template instantiation 'testing::internal::SuiteApiResolver' being compiled 2025-06-01T21:11:41.4143164Z C:\actions-runner\_work\pytorch\pytorch\cmake\..\third_party\googletest\googletest\include\gtest/internal/gtest-internal.h(697): 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-06-01T21:11:41.4147142Z C:\actions-runner\_work\pytorch\pytorch\c10\test\util\optional_test.cpp(63): note: see reference to function template instantiation 'bool testing::internal::TypeParameterizedTest<`anonymous-namespace'::OptionalTest,testing::internal::TemplateSel<`anonymous-namespace'::OptionalTest_Empty_Test>,`anonymous-namespace'::gtest_type_params_OptionalTest_>::Register(const char *,testing::internal::CodeLocation,const char *,const char *,int,const std::vector> &)' being compiled 2025-06-01T21:11:41.5184997Z 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-06-01T21:11:41.5186916Z [6725/7110] Building CXX object c10\test\CMakeFiles\c10_ordered_preserving_dict_test.dir\util\ordered_preserving_dict_test.cpp.obj 2025-06-01T21:11:41.5430023Z [6726/7110] Building CXX object c10\test\CMakeFiles\c10_registry_test.dir\util\registry_test.cpp.obj 2025-06-01T21:11:41.7005136Z [6727/7110] Building CXX object c10\test\CMakeFiles\c10_ssize_test.dir\util\ssize_test.cpp.obj 2025-06-01T21:11:41.7254926Z [6728/7110] Building CXX object c10\test\CMakeFiles\c10_small_vector_test.dir\util\small_vector_test.cpp.obj 2025-06-01T21:11:41.7608732Z [6729/7110] Building C object caffe2\CMakeFiles\torch_global_deps.dir\__\torch\csrc\empty.c.obj 2025-06-01T21:11:41.8113099Z [6730/7110] Building CXX object c10\test\CMakeFiles\c10_string_view_test.dir\util\string_view_test.cpp.obj 2025-06-01T21:11:41.8951219Z [6731/7110] Building CXX object c10\test\CMakeFiles\c10_string_util_test.dir\util\string_util_test.cpp.obj 2025-06-01T21:11:41.9385615Z [6732/7110] Building CXX object c10\benchmark\CMakeFiles\c10_intrusive_ptr_benchmark.dir\intrusive_ptr_benchmark.cpp.obj 2025-06-01T21:11:41.9685324Z [6733/7110] Building CXX object c10\test\CMakeFiles\c10_tempfile_test.dir\util\tempfile_test.cpp.obj 2025-06-01T21:11:42.1111212Z [6734/7110] Building CXX object c10\test\CMakeFiles\c10_typeid_test.dir\util\typeid_test.cpp.obj 2025-06-01T21:11:42.3966597Z [6735/7110] Building CXX object caffe2\CMakeFiles\Dimname_test.dir\__\aten\src\ATen\test\Dimname_test.cpp.obj 2025-06-01T21:11:42.5957752Z [6736/7110] Building CXX object caffe2\CMakeFiles\vec_test_all_types_AVX2.dir\__\aten\src\ATen\test\vec_test_all_types.cpp.obj 2025-06-01T21:11:42.5958958Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:11:42.5960902Z 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-06-01T21:11:42.6462449Z 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-06-01T21:11:42.6463734Z 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-06-01T21:11:42.6464943Z [6737/7110] Building CXX object caffe2\CMakeFiles\vec_test_all_types_DEFAULT.dir\__\aten\src\ATen\test\vec_test_all_types.cpp.obj 2025-06-01T21:11:42.7149542Z [6738/7110] Building CXX object caffe2\CMakeFiles\vec_test_all_types_AVX512.dir\__\aten\src\ATen\test\vec_test_all_types.cpp.obj 2025-06-01T21:11:44.9030551Z [6739/7110] Building CXX object caffe2\CMakeFiles\MaybeOwned_test.dir\__\aten\src\ATen\test\MaybeOwned_test.cpp.obj 2025-06-01T21:11:44.9151465Z [6740/7110] Building CXX object caffe2\CMakeFiles\Dict_test.dir\__\aten\src\ATen\test\Dict_test.cpp.obj 2025-06-01T21:11:45.0207757Z [6741/7110] Building CXX object caffe2\CMakeFiles\NamedTensor_test.dir\__\aten\src\ATen\test\NamedTensor_test.cpp.obj 2025-06-01T21:11:45.5834157Z [6742/7110] Building CXX object caffe2\CMakeFiles\atest.dir\__\aten\src\ATen\test\atest.cpp.obj 2025-06-01T21:11:45.6054124Z [6743/7110] Building CXX object caffe2\CMakeFiles\apply_utils_test.dir\__\aten\src\ATen\test\apply_utils_test.cpp.obj 2025-06-01T21:11:45.6742519Z [6744/7110] Building CXX object caffe2\CMakeFiles\broadcast_test.dir\__\aten\src\ATen\test\broadcast_test.cpp.obj 2025-06-01T21:11:45.7430229Z [6745/7110] Building CXX object caffe2\CMakeFiles\basic.dir\__\aten\src\ATen\test\basic.cpp.obj 2025-06-01T21:11:47.9600815Z [6746/7110] Building CXX object caffe2\CMakeFiles\cpu_allocator_test.dir\__\aten\src\ATen\test\cpu_allocator_test.cpp.obj 2025-06-01T21:11:48.0023621Z [6747/7110] Building CXX object caffe2\CMakeFiles\cpu_profiling_allocator_test.dir\__\aten\src\ATen\test\cpu_profiling_allocator_test.cpp.obj 2025-06-01T21:11:48.0360782Z [6748/7110] Building CXX object caffe2\CMakeFiles\cpu_generator_test.dir\__\aten\src\ATen\test\cpu_generator_test.cpp.obj 2025-06-01T21:11:48.5230998Z [6749/7110] Building CXX object caffe2\CMakeFiles\dlconvertor_test.dir\__\aten\src\ATen\test\dlconvertor_test.cpp.obj 2025-06-01T21:11:48.7072840Z [6750/7110] Building CXX object caffe2\CMakeFiles\extension_backend_test.dir\__\aten\src\ATen\test\extension_backend_test.cpp.obj 2025-06-01T21:11:48.7346698Z [6751/7110] Building CXX object caffe2\CMakeFiles\half_test.dir\__\aten\src\ATen\test\half_test.cpp.obj 2025-06-01T21:11:49.1395459Z [6752/7110] Building CXX object caffe2\CMakeFiles\cpu_rng_test.dir\__\aten\src\ATen\test\cpu_rng_test.cpp.obj 2025-06-01T21:11:50.9225091Z [6753/7110] Building CXX object caffe2\CMakeFiles\lazy_tensor_test.dir\__\aten\src\ATen\test\lazy_tensor_test.cpp.obj 2025-06-01T21:11:51.1655845Z [6754/7110] Building CXX object caffe2\CMakeFiles\math_kernel_test.dir\__\aten\src\ATen\test\math_kernel_test.cpp.obj 2025-06-01T21:11:51.3378765Z [6755/7110] Building CXX object caffe2\CMakeFiles\ivalue_test.dir\__\aten\src\ATen\test\ivalue_test.cpp.obj 2025-06-01T21:11:51.3670477Z [6756/7110] Building CXX object caffe2\CMakeFiles\operator_name_test.dir\__\aten\src\ATen\test\operator_name_test.cpp.obj 2025-06-01T21:11:51.6174079Z [6757/7110] Building CXX object caffe2\CMakeFiles\memory_format_test.dir\__\aten\src\ATen\test\memory_format_test.cpp.obj 2025-06-01T21:11:51.6778819Z [6758/7110] Building CXX object caffe2\CMakeFiles\memory_overlapping_test.dir\__\aten\src\ATen\test\memory_overlapping_test.cpp.obj 2025-06-01T21:11:52.0952774Z [6759/7110] Building CXX object caffe2\CMakeFiles\native_test.dir\__\aten\src\ATen\test\native_test.cpp.obj 2025-06-01T21:11:52.1285216Z [6760/7110] Building CXX object caffe2\CMakeFiles\mobile_memory_cleanup.dir\__\aten\src\ATen\test\mobile_memory_cleanup.cpp.obj 2025-06-01T21:11:54.2108702Z [6761/7110] Building CXX object caffe2\CMakeFiles\operators_test.dir\__\aten\src\ATen\test\operators_test.cpp.obj 2025-06-01T21:11:54.3206987Z [6762/7110] Building CXX object caffe2\CMakeFiles\packedtensoraccessor_test.dir\__\aten\src\ATen\test\packedtensoraccessor_test.cpp.obj 2025-06-01T21:11:54.5178536Z [6763/7110] Building CXX object caffe2\CMakeFiles\pow_test.dir\__\aten\src\ATen\test\pow_test.cpp.obj 2025-06-01T21:11:54.6645854Z [6764/7110] Building CXX object caffe2\CMakeFiles\quantized_test.dir\__\aten\src\ATen\test\quantized_test.cpp.obj 2025-06-01T21:11:54.7342752Z [6765/7110] Building CXX object caffe2\CMakeFiles\reduce_ops_test.dir\__\aten\src\ATen\test\reduce_ops_test.cpp.obj 2025-06-01T21:11:55.0648449Z [6766/7110] Building CXX object caffe2\CMakeFiles\reportMemoryUsage_test.dir\__\aten\src\ATen\test\reportMemoryUsage_test.cpp.obj 2025-06-01T21:11:55.1613686Z [6767/7110] Building CXX object caffe2\CMakeFiles\scalar_tensor_test.dir\__\aten\src\ATen\test\scalar_tensor_test.cpp.obj 2025-06-01T21:11:56.0593747Z [6768/7110] Building CXX object caffe2\CMakeFiles\type_ptr_test.dir\__\aten\src\ATen\test\type_ptr_test.cpp.obj 2025-06-01T21:11:56.4433662Z [6769/7110] Building CXX object caffe2\CMakeFiles\StorageUtils_test.dir\__\aten\src\ATen\test\StorageUtils_test.cpp.obj 2025-06-01T21:11:57.3265064Z [6770/7110] Building CXX object caffe2\CMakeFiles\scalar_test.dir\__\aten\src\ATen\test\scalar_test.cpp.obj 2025-06-01T21:11:57.4995624Z [6771/7110] Building CXX object caffe2\CMakeFiles\stride_properties_test.dir\__\aten\src\ATen\test\stride_properties_test.cpp.obj 2025-06-01T21:11:57.6389152Z [6772/7110] Building CXX object caffe2\CMakeFiles\tensor_iterator_test.dir\__\aten\src\ATen\test\tensor_iterator_test.cpp.obj 2025-06-01T21:11:57.9518431Z [6773/7110] Building CXX object caffe2\CMakeFiles\thread_init_test.dir\__\aten\src\ATen\test\thread_init_test.cpp.obj 2025-06-01T21:11:57.9959278Z [6774/7110] Building CXX object caffe2\CMakeFiles\test_parallel.dir\__\aten\src\ATen\test\test_parallel.cpp.obj 2025-06-01T21:11:59.4278417Z [6775/7110] Building CXX object caffe2\CMakeFiles\type_test.dir\__\aten\src\ATen\test\type_test.cpp.obj 2025-06-01T21:11:59.4730192Z [6776/7110] Building CXX object caffe2\CMakeFiles\undefined_tensor_test.dir\__\aten\src\ATen\test\undefined_tensor_test.cpp.obj 2025-06-01T21:12:00.1932504Z [6777/7110] Building CXX object caffe2\CMakeFiles\verify_api_visibility.dir\__\aten\src\ATen\test\verify_api_visibility.cpp.obj 2025-06-01T21:12:00.4799340Z [6778/7110] Building CXX object caffe2\CMakeFiles\List_test.dir\__\aten\src\ATen\core\List_test.cpp.obj 2025-06-01T21:12:00.5596800Z [6779/7110] Building CXX object caffe2\CMakeFiles\legacy_vmap_test.dir\__\aten\src\ATen\test\legacy_vmap_test.cpp.obj 2025-06-01T21:12:00.6272824Z [6780/7110] Building CXX object caffe2\CMakeFiles\weakref_test.dir\__\aten\src\ATen\test\weakref_test.cpp.obj 2025-06-01T21:12:00.7957166Z [6781/7110] Building CXX object caffe2\CMakeFiles\xla_tensor_test.dir\__\aten\src\ATen\test\xla_tensor_test.cpp.obj 2025-06-01T21:12:00.9642895Z [6782/7110] Building CXX object caffe2\CMakeFiles\wrapdim_test.dir\__\aten\src\ATen\test\wrapdim_test.cpp.obj 2025-06-01T21:12:01.4286631Z [6783/7110] Building CXX object caffe2\CMakeFiles\IListRef_test.dir\__\aten\src\ATen\core\IListRef_test.cpp.obj 2025-06-01T21:12:01.6852264Z [6784/7110] Building CXX object caffe2\CMakeFiles\kernel_function_legacy_test.dir\__\aten\src\ATen\core\boxing\impl\kernel_function_legacy_test.cpp.obj 2025-06-01T21:12:01.7519610Z [6785/7110] Building CXX object caffe2\CMakeFiles\kernel_function_test.dir\__\aten\src\ATen\core\boxing\impl\kernel_function_test.cpp.obj 2025-06-01T21:12:01.7706565Z [6786/7110] Building CXX object caffe2\CMakeFiles\kernel_lambda_legacy_test.dir\__\aten\src\ATen\core\boxing\impl\kernel_lambda_legacy_test.cpp.obj 2025-06-01T21:12:01.9795006Z [6787/7110] Building CXX object caffe2\CMakeFiles\kernel_stackbased_test.dir\__\aten\src\ATen\core\boxing\impl\kernel_stackbased_test.cpp.obj 2025-06-01T21:12:01.9953138Z [6788/7110] Building CXX object caffe2\CMakeFiles\kernel_lambda_test.dir\__\aten\src\ATen\core\boxing\impl\kernel_lambda_test.cpp.obj 2025-06-01T21:12:02.1855202Z [6789/7110] Building CXX object caffe2\CMakeFiles\op_allowlist_test.dir\__\aten\src\ATen\core\op_registration\op_allowlist_test.cpp.obj 2025-06-01T21:12:02.2030597Z [6790/7110] Building CXX object caffe2\CMakeFiles\CppSignature_test.dir\__\aten\src\ATen\core\dispatch\CppSignature_test.cpp.obj 2025-06-01T21:12:02.3639979Z [6791/7110] Building C object sleef\src\libm\CMakeFiles\mkmasked_gnuabi.dir\mkmasked_gnuabi.c.obj 2025-06-01T21:12:02.3816737Z [6792/7110] Building C object sleef\src\libm\CMakeFiles\mkrename_gnuabi.dir\mkrename_gnuabi.c.obj 2025-06-01T21:12:02.4876798Z [6793/7110] Building C object sleef\src\common\CMakeFiles\addSuffix.dir\addSuffix.c.obj 2025-06-01T21:12:02.6078571Z [6794/7110] Building CXX object caffe2\CMakeFiles\inline_container_test.dir\serialize\inline_container_test.cc.obj 2025-06-01T21:12:02.6372100Z [6795/7110] 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-06-01T21:12:02.8750782Z [6796/7110] Building CXX object test_edge_op_registration\CMakeFiles\test_edge_op_registration.dir\test_main.cpp.obj 2025-06-01T21:12:03.2130105Z [6797/7110] Building CXX object caffe2\CMakeFiles\KernelFunction_test.dir\__\aten\src\ATen\core\boxing\KernelFunction_test.cpp.obj 2025-06-01T21:12:03.2801952Z [6798/7110] Building CXX object test_jit\CMakeFiles\test_jit.dir\__\common\main.cpp.obj 2025-06-01T21:12:03.3605246Z [6799/7110] Building CXX object caffe2\CMakeFiles\op_registration_test.dir\__\aten\src\ATen\core\op_registration\op_registration_test.cpp.obj 2025-06-01T21:12:03.4204921Z [6800/7110] Building CXX object test_jit\CMakeFiles\test_jit.dir\source_range_test.cpp.obj 2025-06-01T21:12:04.3264051Z [6801/7110] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_add_if_then_else.cpp.obj 2025-06-01T21:12:04.7517648Z [6802/7110] Building CXX object caffe2\CMakeFiles\backend_fallback_test.dir\__\aten\src\ATen\core\dispatch\backend_fallback_test.cpp.obj 2025-06-01T21:12:05.2781252Z [6803/7110] Building CXX object test_edge_op_registration\CMakeFiles\test_edge_op_registration.dir\test_operator_registration.cpp.obj 2025-06-01T21:12:05.4431507Z [6804/7110] Building CXX object test_jit\CMakeFiles\torchbind_test.dir\test_custom_class_registrations.cpp.obj 2025-06-01T21:12:05.4608286Z [6805/7110] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_load_upgraders.cpp.obj 2025-06-01T21:12:05.6030501Z [6806/7110] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_alias_analysis.cpp.obj 2025-06-01T21:12:05.8273515Z [6807/7110] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_op_replacement.cpp.obj 2025-06-01T21:12:06.4059810Z [6808/7110] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_upgrader_utils.cpp.obj 2025-06-01T21:12:06.6628258Z [6809/7110] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_argument_spec.cpp.obj 2025-06-01T21:12:06.7421344Z [6810/7110] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_class_parser.cpp.obj 2025-06-01T21:12:06.8704544Z [6811/7110] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_autodiff.cpp.obj 2025-06-01T21:12:07.5271253Z [6812/7110] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_code_template.cpp.obj 2025-06-01T21:12:07.8708311Z [6813/7110] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_constant_pooling.cpp.obj 2025-06-01T21:12:08.0367870Z [6814/7110] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_cleanup_passes.cpp.obj 2025-06-01T21:12:08.5820064Z [6815/7110] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_create_autodiff_subgraphs.cpp.obj 2025-06-01T21:12:08.9138450Z [6816/7110] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_backend.cpp.obj 2025-06-01T21:12:09.0070835Z [6817/7110] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_class_import.cpp.obj 2025-06-01T21:12:09.0888928Z [6818/7110] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_concat_opt.cpp.obj 2025-06-01T21:12:09.3769025Z [6819/7110] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_class_type.cpp.obj 2025-06-01T21:12:10.0594641Z [6820/7110] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_dce.cpp.obj 2025-06-01T21:12:11.2451665Z [6821/7110] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_custom_class.cpp.obj 2025-06-01T21:12:11.2615292Z [6822/7110] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_custom_class_registrations.cpp.obj 2025-06-01T21:12:11.9143598Z [6823/7110] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_custom_operators.cpp.obj 2025-06-01T21:12:12.2725236Z [6824/7110] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_inliner.cpp.obj 2025-06-01T21:12:12.3889753Z [6825/7110] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_fuser.cpp.obj 2025-06-01T21:12:12.5289543Z [6826/7110] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_graph_executor.cpp.obj 2025-06-01T21:12:12.8817241Z [6827/7110] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_graph_iterator.cpp.obj 2025-06-01T21:12:13.3668582Z [6828/7110] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_ir.cpp.obj 2025-06-01T21:12:13.5005462Z [6829/7110] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_lexer.cpp.obj 2025-06-01T21:12:13.5442331Z [6830/7110] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_irparser.cpp.obj 2025-06-01T21:12:13.5844591Z [6831/7110] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_cs_debug_info_serialization.cpp.obj 2025-06-01T21:12:13.6685487Z [6832/7110] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_jit_type.cpp.obj 2025-06-01T21:12:14.6826515Z [6833/7110] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_memory_dag.cpp.obj 2025-06-01T21:12:14.8111290Z [6834/7110] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_interface.cpp.obj 2025-06-01T21:12:15.4795062Z [6835/7110] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_interpreter.cpp.obj 2025-06-01T21:12:15.8013433Z [6836/7110] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_mobile_type_parser.cpp.obj 2025-06-01T21:12:16.3547066Z [6837/7110] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_qualified_name.cpp.obj 2025-06-01T21:12:16.5786130Z [6838/7110] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_peephole_optimize.cpp.obj 2025-06-01T21:12:17.0873915Z [6839/7110] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_lite_trainer.cpp.obj 2025-06-01T21:12:17.1052794Z [6840/7110] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_lite_interpreter_direct.cpp.obj 2025-06-01T21:12:17.1945407Z [6841/7110] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_lite_interpreter.cpp.obj 2025-06-01T21:12:17.4368194Z [6842/7110] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_misc.cpp.obj 2025-06-01T21:12:18.2131645Z [6843/7110] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_module_api.cpp.obj 2025-06-01T21:12:18.2694674Z [6844/7110] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_schema_matching.cpp.obj 2025-06-01T21:12:18.3188357Z [6845/7110] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_subgraph_matcher.cpp.obj 2025-06-01T21:12:18.5369407Z [6846/7110] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_subgraph_rewriter.cpp.obj 2025-06-01T21:12:18.8406434Z [6847/7110] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_schema_info.cpp.obj 2025-06-01T21:12:19.3470583Z [6848/7110] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_stack_opt.cpp.obj 2025-06-01T21:12:19.3635218Z [6849/7110] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_subgraph_utils.cpp.obj 2025-06-01T21:12:19.3664341Z [6850/7110] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_union.cpp.obj 2025-06-01T21:12:19.8099315Z [6851/7110] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_script_profile.cpp.obj 2025-06-01T21:12:19.8660666Z [6852/7110] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_file_format.cpp.obj 2025-06-01T21:12:20.1512438Z [6853/7110] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_save_load.cpp.obj 2025-06-01T21:12:20.3134334Z [6854/7110] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\common\main.cpp.obj 2025-06-01T21:12:20.3278026Z [6855/7110] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_file_util.cpp.obj 2025-06-01T21:12:20.4962664Z [6856/7110] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_jit_logging_levels.cpp.obj 2025-06-01T21:12:20.8212149Z [6857/7110] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_graph_signature.cpp.obj 2025-06-01T21:12:20.8227970Z [6858/7110] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_placement.cpp.obj 2025-06-01T21:12:20.9249514Z [6859/7110] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_mpmc_queue.cpp.obj 2025-06-01T21:12:21.2130134Z [6860/7110] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_tensor_meta.cpp.obj 2025-06-01T21:12:21.4151508Z [6861/7110] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\PlacementUtils.cpp.obj 2025-06-01T21:12:21.4452727Z [6862/7110] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_utils.cpp.obj 2025-06-01T21:12:21.4544184Z [6863/7110] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\graph\TensorMeta.cpp.obj 2025-06-01T21:12:21.5394174Z [6864/7110] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\graph\GraphSignature.cpp.obj 2025-06-01T21:12:21.6326307Z [6865/7110] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_approx.cpp.obj 2025-06-01T21:12:21.7168781Z [6866/7110] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\common\FileUtil.cpp.obj 2025-06-01T21:12:21.8312420Z [6867/7110] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\__\common\main.cpp.obj 2025-06-01T21:12:22.0334148Z [6868/7110] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_shape_analysis.cpp.obj 2025-06-01T21:12:22.8094533Z [6869/7110] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_flatbuffer.cpp.obj 2025-06-01T21:12:24.1875677Z [6870/7110] Building CXX object test_inductor\CMakeFiles\aoti_custom_ops.dir\custom_ops.cpp.obj 2025-06-01T21:12:24.2644087Z [6871/7110] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\padded_buffer.cpp.obj 2025-06-01T21:12:24.6628625Z [6872/7110] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_aten.cpp.obj 2025-06-01T21:12:24.8182414Z [6873/7110] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_boundsinference.cpp.obj 2025-06-01T21:12:24.9424131Z [6874/7110] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_cpp_codegen.cpp.obj 2025-06-01T21:12:25.0320615Z [6875/7110] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_conv.cpp.obj 2025-06-01T21:12:25.8659500Z [6876/7110] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_ir_printer.cpp.obj 2025-06-01T21:12:26.0139775Z [6877/7110] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_ir_verifier.cpp.obj 2025-06-01T21:12:26.1782273Z [6878/7110] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_dynamic_shapes.cpp.obj 2025-06-01T21:12:27.1394452Z [6879/7110] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_expr.cpp.obj 2025-06-01T21:12:27.5966093Z [6880/7110] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_external_calls.cpp.obj 2025-06-01T21:12:27.9923471Z [6881/7110] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_graph_opt.cpp.obj 2025-06-01T21:12:28.3548071Z [6882/7110] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_kernel.cpp.obj 2025-06-01T21:12:28.8822643Z [6883/7110] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_loopnest.cpp.obj 2025-06-01T21:12:29.0772881Z [6884/7110] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_memdependency.cpp.obj 2025-06-01T21:12:29.3524149Z [6885/7110] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_ops.cpp.obj 2025-06-01T21:12:30.3749857Z [6886/7110] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_quantization.cpp.obj 2025-06-01T21:12:30.5525030Z [6887/7110] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_memplanning.cpp.obj 2025-06-01T21:12:30.9379117Z [6888/7110] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_reductions.cpp.obj 2025-06-01T21:12:31.3358150Z [6889/7110] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_registerizer.cpp.obj 2025-06-01T21:12:31.9680343Z [6890/7110] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_simplify.cpp.obj 2025-06-01T21:12:32.1358769Z [6891/7110] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_te_fuser_pass.cpp.obj 2025-06-01T21:12:32.1523552Z [6892/7110] Building CXX object test_cpp_c10d\CMakeFiles\BackoffTest.dir\BackoffTest.cpp.obj 2025-06-01T21:12:32.3231837Z [6893/7110] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_type.cpp.obj 2025-06-01T21:12:32.4884643Z [6894/7110] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_type_specializations.cpp.obj 2025-06-01T21:12:32.5410818Z [6895/7110] Building CXX object test_cpp_c10d\CMakeFiles\FileStoreTest.dir\FileStoreTest.cpp.obj 2025-06-01T21:12:32.6058284Z [6896/7110] Building CXX object test_api\CMakeFiles\test_api.dir\__\common\main.cpp.obj 2025-06-01T21:12:33.0281000Z [6897/7110] Building CXX object test_cpp_c10d\CMakeFiles\TCPStoreTest.dir\TCPStoreTest.cpp.obj 2025-06-01T21:12:33.4457491Z [6898/7110] Building CXX object test_tensorexpr\CMakeFiles\tutorial_tensorexpr.dir\tutorial.cpp.obj 2025-06-01T21:12:35.6032849Z [6899/7110] Building CXX object test_cpp_c10d\CMakeFiles\ProcessGroupGlooTest.dir\ProcessGroupGlooTest.cpp.obj 2025-06-01T21:12:35.7218489Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:12:35.7219322Z [6900/7110] Building CXX object test_api\CMakeFiles\test_api.dir\any.cpp.obj 2025-06-01T21:12:35.8650317Z [6901/7110] Building CXX object test_api\CMakeFiles\test_api.dir\autograd.cpp.obj 2025-06-01T21:12:35.9365361Z [6902/7110] Building CXX object test_api\CMakeFiles\test_api.dir\enum.cpp.obj 2025-06-01T21:12:36.0270511Z [6903/7110] Building CXX object test_api\CMakeFiles\test_api.dir\dataloader.cpp.obj 2025-06-01T21:12:36.2651233Z [6904/7110] Building CXX object test_api\CMakeFiles\test_api.dir\expanding-array.cpp.obj 2025-06-01T21:12:36.7578771Z [6905/7110] Building CXX object test_api\CMakeFiles\test_api.dir\memory.cpp.obj 2025-06-01T21:12:36.8139244Z [6906/7110] Building CXX object test_api\CMakeFiles\test_api.dir\fft.cpp.obj 2025-06-01T21:12:38.8374292Z [6907/7110] Building CXX object test_api\CMakeFiles\test_api.dir\functional.cpp.obj 2025-06-01T21:12:38.9503070Z [6908/7110] Building CXX object test_api\CMakeFiles\test_api.dir\init.cpp.obj 2025-06-01T21:12:39.1004673Z [6909/7110] Building CXX object test_api\CMakeFiles\test_api.dir\jit.cpp.obj 2025-06-01T21:12:39.2256792Z [6910/7110] Building CXX object test_api\CMakeFiles\test_api.dir\integration.cpp.obj 2025-06-01T21:12:39.2383605Z [6911/7110] Building CXX object test_api\CMakeFiles\test_api.dir\ivalue.cpp.obj 2025-06-01T21:12:40.0182749Z [6912/7110] Building CXX object test_api\CMakeFiles\test_api.dir\misc.cpp.obj 2025-06-01T21:12:40.5238034Z [6913/7110] Building CXX object test_api\CMakeFiles\test_api.dir\meta_tensor.cpp.obj 2025-06-01T21:12:42.1846092Z [6914/7110] Building CXX object test_api\CMakeFiles\test_api.dir\module.cpp.obj 2025-06-01T21:12:42.2595747Z [6915/7110] Building CXX object test_api\CMakeFiles\test_api.dir\moduledict.cpp.obj 2025-06-01T21:12:42.4184375Z [6916/7110] Building CXX object test_api\CMakeFiles\test_api.dir\modulelist.cpp.obj 2025-06-01T21:12:42.4922844Z [6917/7110] Building CXX object test_api\CMakeFiles\test_api.dir\nested.cpp.obj 2025-06-01T21:12:42.7888416Z [6918/7110] Building CXX object test_api\CMakeFiles\test_api.dir\modules.cpp.obj 2025-06-01T21:12:43.2378792Z [6919/7110] Building CXX object test_api\CMakeFiles\test_api.dir\parameterdict.cpp.obj 2025-06-01T21:12:43.8316484Z [6920/7110] Building CXX object test_api\CMakeFiles\test_api.dir\parameterlist.cpp.obj 2025-06-01T21:12:45.3307982Z [6921/7110] Building CXX object test_api\CMakeFiles\test_api.dir\namespace.cpp.obj 2025-06-01T21:12:45.5203535Z [6922/7110] Building CXX object test_api\CMakeFiles\test_api.dir\nn_utils.cpp.obj 2025-06-01T21:12:45.6578466Z [6923/7110] Building CXX object test_api\CMakeFiles\test_api.dir\optim.cpp.obj 2025-06-01T21:12:45.6934804Z [6924/7110] Building CXX object test_api\CMakeFiles\test_api.dir\ordered_dict.cpp.obj 2025-06-01T21:12:46.0901141Z [6925/7110] Building CXX object test_api\CMakeFiles\test_api.dir\rnn.cpp.obj 2025-06-01T21:12:46.4928742Z [6926/7110] Building CXX object test_api\CMakeFiles\test_api.dir\sequential.cpp.obj 2025-06-01T21:12:47.1255934Z [6927/7110] Building CXX object test_api\CMakeFiles\test_api.dir\transformer.cpp.obj 2025-06-01T21:12:48.6972888Z [6928/7110] Building CXX object test_api\CMakeFiles\test_api.dir\support.cpp.obj 2025-06-01T21:12:48.7683742Z [6929/7110] Building CXX object test_api\CMakeFiles\test_api.dir\serialize.cpp.obj 2025-06-01T21:12:48.8067070Z [6930/7110] Building CXX object test_api\CMakeFiles\test_api.dir\special.cpp.obj 2025-06-01T21:12:48.8603941Z [6931/7110] Building CXX object test_api\CMakeFiles\test_api.dir\static.cpp.obj 2025-06-01T21:12:49.0353186Z [6932/7110] Building CXX object test_api\CMakeFiles\test_api.dir\tensor_cuda.cpp.obj 2025-06-01T21:12:49.7691180Z [6933/7110] Building CXX object test_api\CMakeFiles\test_api.dir\tensor_indexing.cpp.obj 2025-06-01T21:12:50.4956226Z [6934/7110] Building CXX object test_api\CMakeFiles\test_api.dir\tensor_options_cuda.cpp.obj 2025-06-01T21:12:51.9003336Z [6935/7110] Building CXX object test_api\CMakeFiles\test_api.dir\tensor.cpp.obj 2025-06-01T21:12:51.9567162Z [6936/7110] Building CXX object test_api\CMakeFiles\test_api.dir\tensor_options.cpp.obj 2025-06-01T21:12:52.0785786Z [6937/7110] Building CXX object test_api\CMakeFiles\test_api.dir\inference_mode.cpp.obj 2025-06-01T21:12:52.1103916Z [6938/7110] Building CXX object test_api\CMakeFiles\test_api.dir\torch_include.cpp.obj 2025-06-01T21:12:52.1662121Z [6939/7110] Building CXX object test_api\CMakeFiles\test_api.dir\grad_mode.cpp.obj 2025-06-01T21:12:52.4494965Z [6940/7110] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\__\common\main.cpp.obj 2025-06-01T21:12:53.1197995Z [6941/7110] Building CXX object test_api\CMakeFiles\test_api.dir\operations.cpp.obj 2025-06-01T21:12:53.3766866Z [6942/7110] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_ir.cpp.obj 2025-06-01T21:12:53.3997903Z [6943/7110] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_cache.cpp.obj 2025-06-01T21:12:53.5472430Z [6944/7110] Building CXX object test_api\CMakeFiles\test_api.dir\nested_int.cpp.obj 2025-06-01T21:12:53.5580959Z [6945/7110] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_ir_util.cpp.obj 2025-06-01T21:12:53.8613548Z [6946/7110] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_permutation_util.cpp.obj 2025-06-01T21:12:54.0314475Z [6947/7110] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_misc.cpp.obj 2025-06-01T21:12:54.0835746Z [6948/7110] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_util.cpp.obj 2025-06-01T21:12:54.4603320Z [6949/7110] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_shape.cpp.obj 2025-06-01T21:12:54.5804435Z [6950/7110] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_trie_cache.cpp.obj 2025-06-01T21:12:54.8718866Z [6951/7110] Building CXX object test_api\CMakeFiles\parallel_benchmark.dir\parallel_benchmark.cpp.obj 2025-06-01T21:12:55.2110461Z [6952/7110] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_backend_device.cpp.obj 2025-06-01T21:12:55.4406960Z [6953/7110] Building C object functorch\CMakeFiles\functorch.dir\csrc\dim\dim_opcode.c.obj 2025-06-01T21:12:57.0151149Z C:\actions-runner\_work\pytorch\pytorch\torch/csrc/utils/python_compat.h(40): warning C4273: '_PyWeakref_ClearRef': inconsistent dll linkage 2025-06-01T21:12:57.0152432Z C:\Jenkins\Miniconda3\include\weakrefobject.h(67): note: see previous definition of '_PyWeakref_ClearRef' 2025-06-01T21:12:57.0153805Z [6954/7110] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_lazy_graph_executor.cpp.obj 2025-06-01T21:12:57.3584866Z [6955/7110] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_lazy_ops_util.cpp.obj 2025-06-01T21:12:57.7289986Z [6956/7110] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_lazy_ops.cpp.obj 2025-06-01T21:12:58.0396586Z [6957/7110] Building CXX object caffe2\torch\CMakeFiles\nnapi_backend.dir\csrc\jit\backends\nnapi\nnapi_backend_preprocess.cpp.obj 2025-06-01T21:12:58.2560126Z [6958/7110] Linking CXX static library lib\gmock_main.lib 2025-06-01T21:12:58.4903949Z [6959/7110] Building CXX object caffe2\torch\CMakeFiles\nnapi_backend.dir\csrc\jit\backends\nnapi\nnapi_backend_lib.cpp.obj 2025-06-01T21:12:58.5172058Z [6960/7110] Linking CXX static library lib\benchmark_main.lib 2025-06-01T21:12:58.5993534Z [6961/7110] Linking C static library lib\cpuinfo_internals.lib 2025-06-01T21:12:58.6004090Z [6962/7110] Linking C static library lib\libjitprofiling.lib 2025-06-01T21:12:58.6152039Z [6963/7110] Linking CXX static library lib\fmt.lib 2025-06-01T21:12:58.7154298Z [6964/7110] Building CXX object functorch\CMakeFiles\functorch.dir\csrc\dim\dim.cpp.obj 2025-06-01T21:12:59.2348632Z [6965/7110] Building CXX object functorch\CMakeFiles\functorch.dir\csrc\init_dim_only.cpp.obj 2025-06-01T21:13:00.8426282Z [6966/7110] Linking CXX executable bin\c10_CompileTimeFunctionPointer_test.exe 2025-06-01T21:13:00.8441123Z [6967/7110] Linking CXX executable bin\c10_Scalar_test.exe 2025-06-01T21:13:00.8456715Z [6968/7110] Linking CXX executable bin\c10_DeviceGuard_test.exe 2025-06-01T21:13:00.8467991Z [6969/7110] Linking CXX executable bin\c10_Device_test.exe 2025-06-01T21:13:00.8581671Z [6970/7110] Linking CXX executable bin\c10_DispatchKeySet_test.exe 2025-06-01T21:13:01.1074530Z [6971/7110] Linking CXX executable bin\c10_SymInt_test.exe 2025-06-01T21:13:01.1093091Z [6972/7110] Linking CXX executable bin\c10_InlineDeviceGuard_test.exe 2025-06-01T21:13:01.1105325Z [6973/7110] Linking CXX executable bin\c10_InlineStreamGuard_test.exe 2025-06-01T21:13:01.1404471Z [6974/7110] Linking CXX executable bin\c10_StreamGuard_test.exe 2025-06-01T21:13:01.1457527Z [6975/7110] Linking CXX executable bin\c10_SizesAndStrides_test.exe 2025-06-01T21:13:01.2781622Z [6976/7110] Linking CXX executable bin\c10_Bitset_test.exe 2025-06-01T21:13:01.3089879Z [6977/7110] Linking CXX executable bin\c10_ArrayRef_test.exe 2025-06-01T21:13:01.3321403Z [6978/7110] Linking CXX executable bin\c10_cow_test.exe 2025-06-01T21:13:01.3601621Z [6979/7110] Linking CXX executable bin\c10_DeadlockDetection_test.exe 2025-06-01T21:13:01.3626675Z [6980/7110] Linking CXX executable bin\c10_ConstexprCrc_test.exe 2025-06-01T21:13:01.4597122Z [6981/7110] Linking CXX executable bin\c10_Enumerate_test.exe 2025-06-01T21:13:01.4794491Z [6982/7110] Linking CXX executable bin\c10_Half_test.exe 2025-06-01T21:13:01.4910753Z [6983/7110] Linking CXX executable bin\c10_IntrusiveList_test.exe 2025-06-01T21:13:01.5073720Z [6984/7110] Linking CXX executable bin\c10_LeftRight_test.exe 2025-06-01T21:13:01.5191127Z [6985/7110] Linking CXX executable bin\c10_Metaprogramming_test.exe 2025-06-01T21:13:01.6866356Z [6986/7110] Linking CXX static library lib\libprotobuf-lite.lib 2025-06-01T21:13:01.7289062Z [6987/7110] Linking CXX executable bin\c10_NetworkFlow_test.exe 2025-06-01T21:13:01.7437388Z [6988/7110] Linking CXX executable bin\c10_Semaphore_test.exe 2025-06-01T21:13:01.7448657Z [6989/7110] Linking CXX executable bin\c10_Synchronized_test.exe 2025-06-01T21:13:01.8112482Z [6990/7110] Linking CXX executable bin\c10_TypeIndex_test.exe 2025-06-01T21:13:01.8254710Z [6991/7110] Linking CXX executable bin\c10_ThreadLocal_test.exe 2025-06-01T21:13:01.9615232Z [6992/7110] Linking CXX executable bin\c10_TypeList_test.exe 2025-06-01T21:13:01.9901791Z [6993/7110] Linking CXX executable bin\c10_TypeTraits_test.exe 2025-06-01T21:13:01.9973720Z [6994/7110] Linking CXX executable bin\c10_accumulate_test.exe 2025-06-01T21:13:01.9983639Z [6995/7110] Linking CXX executable bin\c10_bfloat16_test.exe 2025-06-01T21:13:02.0239822Z [6996/7110] Linking CXX executable bin\c10_bit_cast_test.exe 2025-06-01T21:13:02.0682940Z [6997/7110] Linking CXX executable bin\c10_complex_math_test.exe 2025-06-01T21:13:02.2515168Z [6998/7110] Linking CXX executable bin\c10_complex_test.exe 2025-06-01T21:13:02.2654563Z [6999/7110] Linking CXX executable bin\c10_error_test.exe 2025-06-01T21:13:02.2681360Z [7000/7110] Linking CXX executable bin\c10_exception_test.exe 2025-06-01T21:13:02.3070889Z [7001/7110] Linking CXX executable bin\c10_generic_math_test.exe 2025-06-01T21:13:02.3494230Z [7002/7110] Linking CXX executable bin\c10_intrusive_ptr_test.exe 2025-06-01T21:13:02.3764693Z [7003/7110] Linking CXX executable bin\c10_flags_test.exe 2025-06-01T21:13:02.5366326Z [7004/7110] Linking CXX executable bin\c10_irange_test.exe 2025-06-01T21:13:02.5381937Z [7005/7110] Linking CXX executable bin\c10_lazy_test.exe 2025-06-01T21:13:02.5401347Z [7006/7110] Linking CXX executable bin\c10_logging_test.exe 2025-06-01T21:13:02.7037100Z [7007/7110] Linking CXX executable bin\c10_ordered_preserving_dict_test.exe 2025-06-01T21:13:02.7052431Z [7008/7110] Linking CXX executable bin\c10_optional_test.exe 2025-06-01T21:13:02.7410393Z [7009/7110] Linking CXX executable bin\c10_registry_test.exe 2025-06-01T21:13:02.7815492Z [7010/7110] Linking CXX executable bin\c10_string_util_test.exe 2025-06-01T21:13:02.7900215Z [7011/7110] Linking CXX executable bin\c10_ssize_test.exe 2025-06-01T21:13:02.9562278Z [7012/7110] Linking CXX executable bin\c10_small_vector_test.exe 2025-06-01T21:13:03.0389319Z [7013/7110] Linking CXX executable bin\c10_tempfile_test.exe 2025-06-01T21:13:03.0401031Z [7014/7110] Linking CXX executable bin\c10_string_view_test.exe 2025-06-01T21:13:03.0736902Z [7015/7110] Linking C shared library bin\torch_global_deps.dll 2025-06-01T21:13:03.1206648Z [7016/7110] Linking CXX executable bin\c10_typeid_test.exe 2025-06-01T21:13:03.1244623Z [7017/7110] Linking C executable sleef\bin\mkrename_gnuabi.exe 2025-06-01T21:13:03.2035135Z [7018/7110] Linking CXX executable bin\c10_intrusive_ptr_benchmark.exe 2025-06-01T21:13:03.2342782Z [7019/7110] Linking C executable sleef\bin\mkmasked_gnuabi.exe 2025-06-01T21:13:03.2420323Z [7020/7110] Building C object sleef\src\common\CMakeFiles\arraymap.dir\arraymap.c.obj 2025-06-01T21:13:03.3168985Z [7021/7110] Linking C executable sleef\bin\addSuffix.exe 2025-06-01T21:13:06.9390739Z [7022/7110] Linking C static library lib\microkernels-all.lib 2025-06-01T21:20:03.9487078Z [7023/7110] Linking CXX shared library bin\torch_cpu.dll 2025-06-01T21:20:04.1626217Z [7024/7110] Linking CXX shared library bin\torch.dll 2025-06-01T21:20:04.2324595Z [7025/7110] Linking CXX static library lib\unbox_lib.lib 2025-06-01T21:20:04.3398512Z [7026/7110] Linking CXX shared library bin\shm.dll 2025-06-01T21:20:04.5175139Z [7027/7110] Linking CXX shared library bin\jitbackend_test.dll 2025-06-01T21:20:04.7637901Z [7028/7110] Linking CXX executable bin\TCPStoreTest.exe 2025-06-01T21:20:04.7648181Z [7029/7110] Linking CXX executable bin\FileStoreTest.exe 2025-06-01T21:20:04.7768430Z [7030/7110] Linking CXX executable bin\ProcessGroupGlooTest.exe 2025-06-01T21:20:04.8137000Z [7031/7110] Linking CXX executable bin\BackoffTest.exe 2025-06-01T21:20:04.8456589Z [7032/7110] Linking CXX shared library bin\backend_with_compiler.dll 2025-06-01T21:20:05.0656950Z [7033/7110] Linking CXX executable bin\Dimname_test.exe 2025-06-01T21:20:05.2539798Z [7034/7110] Linking CXX executable bin\NamedTensor_test.exe 2025-06-01T21:20:05.3022107Z [7035/7110] Linking CXX executable bin\Dict_test.exe 2025-06-01T21:20:05.3722467Z [7036/7110] Linking CXX executable bin\MaybeOwned_test.exe 2025-06-01T21:20:05.5180015Z [7037/7110] Linking CXX executable bin\apply_utils_test.exe 2025-06-01T21:20:05.6366491Z [7038/7110] Linking CXX executable bin\atest.exe 2025-06-01T21:20:05.6900349Z [7039/7110] Linking CXX executable bin\broadcast_test.exe 2025-06-01T21:20:05.6931134Z [7040/7110] Linking CXX executable bin\basic.exe 2025-06-01T21:20:05.8976144Z [7041/7110] Linking CXX executable bin\cpu_allocator_test.exe 2025-06-01T21:20:06.0440215Z [7042/7110] Linking CXX executable bin\cpu_generator_test.exe 2025-06-01T21:20:06.0642354Z [7043/7110] Linking CXX executable bin\cpu_profiling_allocator_test.exe 2025-06-01T21:20:06.3444061Z [7044/7110] Linking CXX executable bin\dlconvertor_test.exe 2025-06-01T21:20:06.4419031Z [7045/7110] Linking CXX executable bin\half_test.exe 2025-06-01T21:20:06.4432426Z [7046/7110] Linking CXX executable bin\extension_backend_test.exe 2025-06-01T21:20:06.5530513Z [7047/7110] Linking CXX executable bin\cpu_rng_test.exe 2025-06-01T21:20:06.7840822Z [7048/7110] Linking CXX executable bin\lazy_tensor_test.exe 2025-06-01T21:20:06.8011118Z [7049/7110] Linking CXX executable bin\math_kernel_test.exe 2025-06-01T21:20:06.8439446Z [7050/7110] Linking CXX executable bin\ivalue_test.exe 2025-06-01T21:20:06.9600278Z [7051/7110] Linking CXX executable bin\memory_format_test.exe 2025-06-01T21:20:07.1432428Z [7052/7110] Linking CXX executable bin\memory_overlapping_test.exe 2025-06-01T21:20:07.1775014Z [7053/7110] Linking CXX executable bin\mobile_memory_cleanup.exe 2025-06-01T21:20:07.1785752Z [7054/7110] Linking CXX executable bin\operator_name_test.exe 2025-06-01T21:20:07.2411029Z [7055/7110] Linking CXX executable bin\native_test.exe 2025-06-01T21:20:07.4881401Z [7056/7110] Linking CXX executable bin\operators_test.exe 2025-06-01T21:20:07.5072367Z [7057/7110] Linking CXX executable bin\packedtensoraccessor_test.exe 2025-06-01T21:20:07.6211772Z [7058/7110] Linking CXX executable bin\quantized_test.exe 2025-06-01T21:20:07.7371571Z [7059/7110] Linking CXX executable bin\pow_test.exe 2025-06-01T21:20:07.8694514Z [7060/7110] Linking CXX executable bin\reportMemoryUsage_test.exe 2025-06-01T21:20:07.8709027Z [7061/7110] Linking CXX executable bin\reduce_ops_test.exe 2025-06-01T21:20:07.9242095Z [7062/7110] Linking CXX executable bin\vec_test_all_types_DEFAULT.exe 2025-06-01T21:20:08.0508736Z [7063/7110] Linking CXX executable bin\scalar_tensor_test.exe 2025-06-01T21:20:08.2409634Z [7064/7110] Linking CXX executable bin\stride_properties_test.exe 2025-06-01T21:20:08.2482770Z [7065/7110] Linking CXX executable bin\scalar_test.exe 2025-06-01T21:20:08.2528184Z [7066/7110] Linking CXX executable bin\StorageUtils_test.exe 2025-06-01T21:20:08.4803073Z [7067/7110] Linking CXX executable bin\vec_test_all_types_AVX2.exe 2025-06-01T21:20:08.4813684Z [7068/7110] Linking CXX executable bin\tensor_iterator_test.exe 2025-06-01T21:20:08.4823560Z [7069/7110] Linking CXX executable bin\test_parallel.exe 2025-06-01T21:20:08.5455852Z [7070/7110] Linking CXX executable bin\vec_test_all_types_AVX512.exe 2025-06-01T21:20:08.6438424Z [7071/7110] Linking CXX executable bin\thread_init_test.exe 2025-06-01T21:20:08.6890178Z [7072/7110] Linking CXX executable bin\type_ptr_test.exe 2025-06-01T21:20:09.1866132Z [7073/7110] Linking CXX executable bin\verify_api_visibility.exe 2025-06-01T21:20:09.1917532Z [7074/7110] Linking CXX executable bin\weakref_test.exe 2025-06-01T21:20:09.1918048Z [7075/7110] Linking CXX executable bin\type_test.exe 2025-06-01T21:20:09.1918688Z [7076/7110] Linking CXX executable bin\undefined_tensor_test.exe 2025-06-01T21:20:09.1919187Z [7077/7110] Linking CXX executable bin\wrapdim_test.exe 2025-06-01T21:20:09.1919604Z [7078/7110] Linking CXX executable bin\xla_tensor_test.exe 2025-06-01T21:20:09.1920076Z [7079/7110] Linking CXX executable bin\legacy_vmap_test.exe 2025-06-01T21:20:09.4532144Z [7080/7110] Linking CXX executable bin\IListRef_test.exe 2025-06-01T21:20:09.5344015Z [7081/7110] Linking CXX executable bin\KernelFunction_test.exe 2025-06-01T21:20:09.8521087Z [7082/7110] Linking CXX executable bin\List_test.exe 2025-06-01T21:20:09.9448110Z [7083/7110] Linking CXX executable bin\kernel_stackbased_test.exe 2025-06-01T21:20:10.1174316Z [7084/7110] Linking CXX executable bin\CppSignature_test.exe 2025-06-01T21:20:10.1530948Z [7085/7110] Linking CXX executable bin\kernel_function_test.exe 2025-06-01T21:20:10.3301528Z [7086/7110] Linking CXX executable bin\op_allowlist_test.exe 2025-06-01T21:20:10.3460836Z [7087/7110] Linking CXX executable bin\backend_fallback_test.exe 2025-06-01T21:20:10.4309335Z [7088/7110] Linking CXX executable bin\make_boxed_from_unboxed_functor_test.exe 2025-06-01T21:20:10.4327267Z [7089/7110] Linking CXX executable bin\kernel_lambda_test.exe 2025-06-01T21:20:10.6405490Z [7090/7110] Linking CXX executable bin\kernel_function_legacy_test.exe 2025-06-01T21:20:10.7774160Z [7091/7110] Linking CXX executable bin\test_edge_op_registration.exe 2025-06-01T21:20:11.0096637Z [7092/7110] Linking CXX executable bin\inline_container_test.exe 2025-06-01T21:20:11.1623543Z [7093/7110] Linking CXX executable bin\kernel_lambda_legacy_test.exe 2025-06-01T21:20:11.3060559Z [7094/7110] Linking CXX shared library bin\aoti_custom_ops.dll 2025-06-01T21:20:11.5550409Z [7095/7110] Linking CXX executable bin\tutorial_tensorexpr.exe 2025-06-01T21:20:11.8924743Z [7096/7110] Linking CXX executable bin\parallel_benchmark.exe 2025-06-01T21:20:12.1320595Z [7097/7110] Linking CXX shared library bin\torchbind_test.dll 2025-06-01T21:20:12.4988337Z [7098/7110] Linking CXX executable bin\test_nativert.exe 2025-06-01T21:20:15.1058570Z [7099/7110] Linking CXX executable bin\op_registration_test.exe 2025-06-01T21:20:15.4070930Z [7100/7110] Linking CXX executable bin\test_lazy.exe 2025-06-01T21:20:17.4883234Z [7101/7110] Linking CXX executable bin\test_tensorexpr.exe 2025-06-01T21:20:20.0257812Z [7102/7110] Linking CXX executable bin\test_jit.exe 2025-06-01T21:20:21.1579333Z [7103/7110] Linking CXX executable bin\test_api.exe 2025-06-01T21:20:29.0715173Z [7104/7110] Linking CXX shared library bin\torch_python.dll 2025-06-01T21:20:29.3878444Z [7105/7110] Linking CXX shared module functorch\functorch.pyd 2025-06-01T21:20:29.3976406Z [7106/7110] Linking CXX shared library bin\nnapi_backend.dll 2025-06-01T21:20:29.3983311Z [7106/7110] Install the project... 2025-06-01T21:20:29.5024999Z -- Install configuration: "Release" 2025-06-01T21:21:43.1408130Z -- Building version 2.8.0a0+gitf7c09f8 2025-06-01T21:21:43.1416210Z cmake -GNinja -DBUILD_ENVIRONMENT=win-vs2022-cpu-py3 -DBUILD_PYTHON=True -DBUILD_TEST=True -DBUILD_TYPE=release -DBUILD_WHEEL=1 -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_COMPILER_LAUNCHER=sccache -DCMAKE_C_COMPILER_LAUNCHER=sccache -DCMAKE_GENERATOR=Ninja -DCMAKE_INSTALL_PREFIX=C:\actions-runner\_work\pytorch\pytorch\torch -DCMAKE_PREFIX_PATH=C:\Jenkins\Miniconda3\Lib\site-packages -DPython_EXECUTABLE=C:\Jenkins\Miniconda3\python.exe -DTORCH_BUILD_VERSION=2.8.0a0+gitf7c09f8 -DTORCH_CUDA_ARCH_LIST=8.6 -DUSE_CUDA=0 -DUSE_NUMPY=True -DUSE_XPU=0 C:\actions-runner\_work\pytorch\pytorch 2025-06-01T21:21:43.1418976Z cmake --build . --target install --config Release -j 8 2025-06-01T21:21:43.1419334Z running bdist_wheel 2025-06-01T21:21:51.4164105Z running build 2025-06-01T21:21:51.4169400Z running build_py 2025-06-01T21:21:51.4247221Z creating build\lib.win-amd64-cpython-39\functorch 2025-06-01T21:21:51.4252648Z copying functorch\__init__.py -> build\lib.win-amd64-cpython-39\functorch 2025-06-01T21:21:51.4992629Z creating build\lib.win-amd64-cpython-39\torch 2025-06-01T21:21:51.4995397Z copying torch\functional.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:21:51.5862734Z copying torch\hub.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:21:51.7134590Z copying torch\library.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:21:51.7158041Z copying torch\overrides.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:21:51.8136546Z copying torch\quasirandom.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:21:51.9139482Z copying torch\random.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:21:51.9149532Z copying torch\return_types.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:21:51.9160092Z copying torch\serialization.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:21:51.9195127Z copying torch\storage.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:21:51.9985765Z copying torch\torch_version.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:21:52.0882867Z copying torch\types.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:21:52.0892211Z copying torch\version.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:21:52.0897659Z copying torch\_appdirs.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:21:52.1811240Z copying torch\_classes.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:21:52.1857435Z copying torch\_compile.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:21:52.1867117Z copying torch\_custom_ops.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:21:52.1879629Z copying torch\_deploy.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:21:52.2504967Z copying torch\_environment.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:21:52.2510184Z copying torch\_guards.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:21:52.3482622Z copying torch\_jit_internal.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:21:52.4412150Z copying torch\_linalg_utils.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:21:52.5109690Z copying torch\_lobpcg.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:21:52.5128919Z copying torch\_lowrank.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:21:52.5139476Z copying torch\_meta_registrations.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:21:52.6176581Z copying torch\_namedtensor_internals.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:21:52.6191020Z copying torch\_ops.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:21:52.6221771Z copying torch\_python_dispatcher.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:21:52.7369944Z copying torch\_size_docs.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:21:52.7399065Z copying torch\_sources.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:21:52.7409184Z copying torch\_storage_docs.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:21:52.7418432Z copying torch\_streambase.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:21:52.7424180Z copying torch\_tensor.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:21:52.8043644Z copying torch\_tensor_docs.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:21:52.8095329Z copying torch\_tensor_str.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:21:52.8111392Z copying torch\_thread_safe_fork.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:21:52.8116271Z copying torch\_torch_docs.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:21:52.8250805Z copying torch\_utils.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:21:52.8269392Z copying torch\_utils_internal.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:21:52.8274981Z copying torch\_VF.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:21:52.8280537Z copying torch\_vmap_internals.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:21:52.8798992Z copying torch\_weights_only_unpickler.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:21:52.8813885Z copying torch\__config__.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:21:52.8819199Z copying torch\__future__.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:21:52.8830000Z copying torch\__init__.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:21:52.8870905Z creating build\lib.win-amd64-cpython-39\torchgen 2025-06-01T21:21:52.8873743Z copying torchgen\code_template.py -> build\lib.win-amd64-cpython-39\torchgen 2025-06-01T21:21:52.9880572Z copying torchgen\context.py -> build\lib.win-amd64-cpython-39\torchgen 2025-06-01T21:21:52.9890427Z copying torchgen\gen.py -> build\lib.win-amd64-cpython-39\torchgen 2025-06-01T21:21:53.0707306Z copying torchgen\gen_aoti_c_shim.py -> build\lib.win-amd64-cpython-39\torchgen 2025-06-01T21:21:53.0721399Z copying torchgen\gen_backend_stubs.py -> build\lib.win-amd64-cpython-39\torchgen 2025-06-01T21:21:53.0747388Z copying torchgen\gen_executorch.py -> build\lib.win-amd64-cpython-39\torchgen 2025-06-01T21:21:53.0767121Z copying torchgen\gen_functionalization_type.py -> build\lib.win-amd64-cpython-39\torchgen 2025-06-01T21:21:53.0787383Z copying torchgen\gen_lazy_tensor.py -> build\lib.win-amd64-cpython-39\torchgen 2025-06-01T21:21:53.0800903Z copying torchgen\gen_schema_utils.py -> build\lib.win-amd64-cpython-39\torchgen 2025-06-01T21:21:53.0810513Z copying torchgen\gen_vmap_plumbing.py -> build\lib.win-amd64-cpython-39\torchgen 2025-06-01T21:21:53.0821562Z copying torchgen\local.py -> build\lib.win-amd64-cpython-39\torchgen 2025-06-01T21:21:53.0830035Z copying torchgen\model.py -> build\lib.win-amd64-cpython-39\torchgen 2025-06-01T21:21:53.0870994Z copying torchgen\native_function_generation.py -> build\lib.win-amd64-cpython-39\torchgen 2025-06-01T21:21:53.0886728Z copying torchgen\utils.py -> build\lib.win-amd64-cpython-39\torchgen 2025-06-01T21:21:53.1019741Z copying torchgen\yaml_utils.py -> build\lib.win-amd64-cpython-39\torchgen 2025-06-01T21:21:53.1030811Z copying torchgen\__init__.py -> build\lib.win-amd64-cpython-39\torchgen 2025-06-01T21:21:53.1038038Z creating build\lib.win-amd64-cpython-39\functorch\compile 2025-06-01T21:21:53.1041046Z copying functorch\compile\__init__.py -> build\lib.win-amd64-cpython-39\functorch\compile 2025-06-01T21:21:53.1054299Z creating build\lib.win-amd64-cpython-39\functorch\dim 2025-06-01T21:21:53.1057111Z copying functorch\dim\batch_tensor.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-06-01T21:21:53.1767447Z copying functorch\dim\delayed_mul_tensor.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-06-01T21:21:53.1776928Z copying functorch\dim\dim.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-06-01T21:21:53.1786818Z copying functorch\dim\magic_trace.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-06-01T21:21:53.2546332Z copying functorch\dim\op_properties.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-06-01T21:21:53.2556490Z copying functorch\dim\reference.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-06-01T21:21:53.2572454Z copying functorch\dim\tree_map.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-06-01T21:21:53.2578170Z copying functorch\dim\wrap_type.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-06-01T21:21:53.2591901Z copying functorch\dim\__init__.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-06-01T21:21:53.2603419Z creating build\lib.win-amd64-cpython-39\functorch\einops 2025-06-01T21:21:53.2606340Z copying functorch\einops\rearrange.py -> build\lib.win-amd64-cpython-39\functorch\einops 2025-06-01T21:21:53.3075906Z copying functorch\einops\_parsing.py -> build\lib.win-amd64-cpython-39\functorch\einops 2025-06-01T21:21:53.3557824Z copying functorch\einops\__init__.py -> build\lib.win-amd64-cpython-39\functorch\einops 2025-06-01T21:21:53.3565161Z creating build\lib.win-amd64-cpython-39\functorch\experimental 2025-06-01T21:21:53.3575478Z copying functorch\experimental\control_flow.py -> build\lib.win-amd64-cpython-39\functorch\experimental 2025-06-01T21:21:53.3581409Z copying functorch\experimental\ops.py -> build\lib.win-amd64-cpython-39\functorch\experimental 2025-06-01T21:21:53.3585366Z copying functorch\experimental\__init__.py -> build\lib.win-amd64-cpython-39\functorch\experimental 2025-06-01T21:21:53.3592055Z creating build\lib.win-amd64-cpython-39\functorch\_src 2025-06-01T21:21:53.3594936Z copying functorch\_src\__init__.py -> build\lib.win-amd64-cpython-39\functorch\_src 2025-06-01T21:21:53.3600464Z creating build\lib.win-amd64-cpython-39\functorch\_src\aot_autograd 2025-06-01T21:21:53.3603396Z copying functorch\_src\aot_autograd\__init__.py -> build\lib.win-amd64-cpython-39\functorch\_src\aot_autograd 2025-06-01T21:21:53.3610458Z creating build\lib.win-amd64-cpython-39\functorch\_src\eager_transforms 2025-06-01T21:21:53.3613458Z copying functorch\_src\eager_transforms\__init__.py -> build\lib.win-amd64-cpython-39\functorch\_src\eager_transforms 2025-06-01T21:21:53.3620067Z creating build\lib.win-amd64-cpython-39\functorch\_src\make_functional 2025-06-01T21:21:53.3627206Z copying functorch\_src\make_functional\__init__.py -> build\lib.win-amd64-cpython-39\functorch\_src\make_functional 2025-06-01T21:21:53.3633608Z creating build\lib.win-amd64-cpython-39\functorch\_src\vmap 2025-06-01T21:21:53.3636510Z copying functorch\_src\vmap\__init__.py -> build\lib.win-amd64-cpython-39\functorch\_src\vmap 2025-06-01T21:21:53.3643292Z creating build\lib.win-amd64-cpython-39\torch\accelerator 2025-06-01T21:21:53.3646357Z copying torch\accelerator\_utils.py -> build\lib.win-amd64-cpython-39\torch\accelerator 2025-06-01T21:21:53.3656566Z copying torch\accelerator\__init__.py -> build\lib.win-amd64-cpython-39\torch\accelerator 2025-06-01T21:21:53.3667602Z creating build\lib.win-amd64-cpython-39\torch\amp 2025-06-01T21:21:53.3670638Z copying torch\amp\autocast_mode.py -> build\lib.win-amd64-cpython-39\torch\amp 2025-06-01T21:21:53.3686018Z copying torch\amp\grad_scaler.py -> build\lib.win-amd64-cpython-39\torch\amp 2025-06-01T21:21:53.3701171Z copying torch\amp\__init__.py -> build\lib.win-amd64-cpython-39\torch\amp 2025-06-01T21:21:53.3707456Z creating build\lib.win-amd64-cpython-39\torch\ao 2025-06-01T21:21:53.3710202Z copying torch\ao\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao 2025-06-01T21:21:53.3718085Z creating build\lib.win-amd64-cpython-39\torch\autograd 2025-06-01T21:21:53.3780542Z copying torch\autograd\anomaly_mode.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-06-01T21:21:53.4719815Z copying torch\autograd\forward_ad.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-06-01T21:21:53.4730559Z copying torch\autograd\function.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-06-01T21:21:53.4749719Z copying torch\autograd\functional.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-06-01T21:21:53.5496108Z copying torch\autograd\gradcheck.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-06-01T21:21:53.5527826Z copying torch\autograd\grad_mode.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-06-01T21:21:53.5545241Z copying torch\autograd\graph.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-06-01T21:21:53.5552114Z copying torch\autograd\profiler.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-06-01T21:21:53.5575142Z copying torch\autograd\profiler_legacy.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-06-01T21:21:53.5585415Z copying torch\autograd\profiler_util.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-06-01T21:21:53.5605327Z copying torch\autograd\variable.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-06-01T21:21:53.5610748Z copying torch\autograd\__init__.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-06-01T21:21:53.5627291Z creating build\lib.win-amd64-cpython-39\torch\backends 2025-06-01T21:21:53.5630057Z copying torch\backends\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends 2025-06-01T21:21:53.5640667Z creating build\lib.win-amd64-cpython-39\torch\compiler 2025-06-01T21:21:53.5643910Z copying torch\compiler\config.py -> build\lib.win-amd64-cpython-39\torch\compiler 2025-06-01T21:21:53.5653897Z copying torch\compiler\_cache.py -> build\lib.win-amd64-cpython-39\torch\compiler 2025-06-01T21:21:53.5663093Z copying torch\compiler\__init__.py -> build\lib.win-amd64-cpython-39\torch\compiler 2025-06-01T21:21:53.5676988Z creating build\lib.win-amd64-cpython-39\torch\contrib 2025-06-01T21:21:53.5680119Z copying torch\contrib\_tensorboard_vis.py -> build\lib.win-amd64-cpython-39\torch\contrib 2025-06-01T21:21:53.5690393Z copying torch\contrib\__init__.py -> build\lib.win-amd64-cpython-39\torch\contrib 2025-06-01T21:21:53.5696342Z creating build\lib.win-amd64-cpython-39\torch\cpu 2025-06-01T21:21:53.5699188Z copying torch\cpu\__init__.py -> build\lib.win-amd64-cpython-39\torch\cpu 2025-06-01T21:21:53.5712207Z creating build\lib.win-amd64-cpython-39\torch\cuda 2025-06-01T21:21:53.5715086Z copying torch\cuda\comm.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-06-01T21:21:53.5720605Z copying torch\cuda\error.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-06-01T21:21:53.5725186Z copying torch\cuda\gds.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-06-01T21:21:53.5735638Z copying torch\cuda\graphs.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-06-01T21:21:53.5749826Z copying torch\cuda\jiterator.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-06-01T21:21:53.5759109Z copying torch\cuda\memory.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-06-01T21:21:53.5781716Z copying torch\cuda\nccl.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-06-01T21:21:53.5790924Z copying torch\cuda\nvtx.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-06-01T21:21:53.5800159Z copying torch\cuda\profiler.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-06-01T21:21:53.5810198Z copying torch\cuda\random.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-06-01T21:21:53.5820414Z copying torch\cuda\sparse.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-06-01T21:21:53.5825849Z copying torch\cuda\streams.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-06-01T21:21:53.5835746Z copying torch\cuda\tunable.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-06-01T21:21:53.5850046Z copying torch\cuda\_gpu_trace.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-06-01T21:21:53.5860259Z copying torch\cuda\_memory_viz.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-06-01T21:21:53.5874592Z copying torch\cuda\_sanitizer.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-06-01T21:21:53.5890085Z copying torch\cuda\_utils.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-06-01T21:21:53.5900316Z copying torch\cuda\__init__.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-06-01T21:21:53.5931394Z creating build\lib.win-amd64-cpython-39\torch\distributed 2025-06-01T21:21:53.5933575Z copying torch\distributed\argparse_util.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-06-01T21:21:53.6819545Z copying torch\distributed\c10d_logger.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-06-01T21:21:53.6830708Z copying torch\distributed\collective_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-06-01T21:21:53.7612687Z copying torch\distributed\constants.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-06-01T21:21:53.7622347Z copying torch\distributed\device_mesh.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-06-01T21:21:53.7645111Z copying torch\distributed\distributed_c10d.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-06-01T21:21:53.7720074Z copying torch\distributed\launch.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-06-01T21:21:53.8433347Z copying torch\distributed\logging_handlers.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-06-01T21:21:53.8438861Z copying torch\distributed\remote_device.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-06-01T21:21:53.9450583Z copying torch\distributed\rendezvous.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-06-01T21:21:53.9462331Z copying torch\distributed\run.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-06-01T21:21:53.9478105Z copying torch\distributed\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-06-01T21:21:54.0586218Z copying torch\distributed\_checkpointable.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-06-01T21:21:54.0615625Z copying torch\distributed\_composable_state.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-06-01T21:21:54.0626951Z copying torch\distributed\_functional_collectives.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-06-01T21:21:54.0647696Z copying torch\distributed\_functional_collectives_impl.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-06-01T21:21:54.0658338Z copying torch\distributed\_serialization.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-06-01T21:21:54.0669873Z copying torch\distributed\_state_dict_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-06-01T21:21:54.1552182Z copying torch\distributed\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-06-01T21:21:54.1574375Z creating build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:21:54.1574960Z copying torch\distributions\bernoulli.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:21:54.1586714Z copying torch\distributions\beta.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:21:54.1595277Z copying torch\distributions\binomial.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:21:54.1606037Z copying torch\distributions\categorical.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:21:54.1620072Z copying torch\distributions\cauchy.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:21:54.1629083Z copying torch\distributions\chi2.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:21:54.1638051Z copying torch\distributions\constraints.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:21:54.1652035Z copying torch\distributions\constraint_registry.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:21:54.1662114Z copying torch\distributions\continuous_bernoulli.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:21:54.1671919Z copying torch\distributions\dirichlet.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:21:54.1682713Z copying torch\distributions\distribution.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:21:54.1692535Z copying torch\distributions\exponential.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:21:54.1702961Z copying torch\distributions\exp_family.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:21:54.1712575Z copying torch\distributions\fishersnedecor.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:21:54.1722816Z copying torch\distributions\gamma.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:21:54.1731204Z copying torch\distributions\generalized_pareto.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:21:54.1740497Z copying torch\distributions\geometric.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:21:54.1751847Z copying torch\distributions\gumbel.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:21:54.1762804Z copying torch\distributions\half_cauchy.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:21:54.1773729Z copying torch\distributions\half_normal.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:21:54.1787048Z copying torch\distributions\independent.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:21:54.1798822Z copying torch\distributions\inverse_gamma.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:21:54.1815167Z copying torch\distributions\kl.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:21:54.1832701Z copying torch\distributions\kumaraswamy.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:21:54.1841349Z copying torch\distributions\laplace.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:21:54.1851010Z copying torch\distributions\lkj_cholesky.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:21:54.1860403Z copying torch\distributions\logistic_normal.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:21:54.1869910Z copying torch\distributions\log_normal.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:21:54.1879695Z copying torch\distributions\lowrank_multivariate_normal.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:21:54.1889885Z copying torch\distributions\mixture_same_family.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:21:54.1899990Z copying torch\distributions\multinomial.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:21:54.1909696Z copying torch\distributions\multivariate_normal.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:21:54.2999495Z copying torch\distributions\negative_binomial.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:21:54.3028698Z copying torch\distributions\normal.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:21:54.3037907Z copying torch\distributions\one_hot_categorical.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:21:54.3050897Z copying torch\distributions\pareto.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:21:54.3060526Z copying torch\distributions\poisson.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:21:54.3070208Z copying torch\distributions\relaxed_bernoulli.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:21:54.3080825Z copying torch\distributions\relaxed_categorical.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:21:54.3091931Z copying torch\distributions\studentT.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:21:54.3104129Z copying torch\distributions\transformed_distribution.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:21:54.3114674Z copying torch\distributions\transforms.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:21:54.3134389Z copying torch\distributions\uniform.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:21:54.3144293Z copying torch\distributions\utils.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:21:54.3156754Z copying torch\distributions\von_mises.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:21:54.3170288Z copying torch\distributions\weibull.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:21:54.3179300Z copying torch\distributions\wishart.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:21:54.3192627Z copying torch\distributions\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:21:54.3208029Z creating build\lib.win-amd64-cpython-39\torch\export 2025-06-01T21:21:54.3211111Z copying torch\export\custom_obj.py -> build\lib.win-amd64-cpython-39\torch\export 2025-06-01T21:21:54.3216644Z copying torch\export\custom_ops.py -> build\lib.win-amd64-cpython-39\torch\export 2025-06-01T21:21:54.3226690Z copying torch\export\decomp_utils.py -> build\lib.win-amd64-cpython-39\torch\export 2025-06-01T21:21:54.3235917Z copying torch\export\dynamic_shapes.py -> build\lib.win-amd64-cpython-39\torch\export 2025-06-01T21:21:54.3262836Z copying torch\export\exported_program.py -> build\lib.win-amd64-cpython-39\torch\export 2025-06-01T21:21:54.3284967Z copying torch\export\graph_signature.py -> build\lib.win-amd64-cpython-39\torch\export 2025-06-01T21:21:54.3300699Z copying torch\export\unflatten.py -> build\lib.win-amd64-cpython-39\torch\export 2025-06-01T21:21:54.3327332Z copying torch\export\_draft_export.py -> build\lib.win-amd64-cpython-39\torch\export 2025-06-01T21:21:54.3343049Z copying torch\export\_remove_auto_functionalized_pass.py -> build\lib.win-amd64-cpython-39\torch\export 2025-06-01T21:21:54.3352493Z copying torch\export\_remove_effect_tokens_pass.py -> build\lib.win-amd64-cpython-39\torch\export 2025-06-01T21:21:54.3362794Z copying torch\export\_safeguard.py -> build\lib.win-amd64-cpython-39\torch\export 2025-06-01T21:21:54.3372361Z copying torch\export\_swap.py -> build\lib.win-amd64-cpython-39\torch\export 2025-06-01T21:21:54.3386068Z copying torch\export\_trace.py -> build\lib.win-amd64-cpython-39\torch\export 2025-06-01T21:21:54.3416159Z copying torch\export\_tree_utils.py -> build\lib.win-amd64-cpython-39\torch\export 2025-06-01T21:21:54.3426030Z copying torch\export\_unlift.py -> build\lib.win-amd64-cpython-39\torch\export 2025-06-01T21:21:54.3446724Z copying torch\export\_wrapper_utils.py -> build\lib.win-amd64-cpython-39\torch\export 2025-06-01T21:21:54.3448238Z copying torch\export\__init__.py -> build\lib.win-amd64-cpython-39\torch\export 2025-06-01T21:21:54.3464809Z creating build\lib.win-amd64-cpython-39\torch\fft 2025-06-01T21:21:54.3467529Z copying torch\fft\__init__.py -> build\lib.win-amd64-cpython-39\torch\fft 2025-06-01T21:21:54.3492696Z creating build\lib.win-amd64-cpython-39\torch\func 2025-06-01T21:21:54.3495564Z copying torch\func\__init__.py -> build\lib.win-amd64-cpython-39\torch\func 2025-06-01T21:21:54.3502231Z creating build\lib.win-amd64-cpython-39\torch\futures 2025-06-01T21:21:54.3504980Z copying torch\futures\__init__.py -> build\lib.win-amd64-cpython-39\torch\futures 2025-06-01T21:21:54.3518657Z creating build\lib.win-amd64-cpython-39\torch\fx 2025-06-01T21:21:54.3521567Z copying torch\fx\annotate.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-06-01T21:21:54.3531487Z copying torch\fx\config.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-06-01T21:21:54.3536985Z copying torch\fx\graph.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-06-01T21:21:54.4215650Z copying torch\fx\graph_module.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-06-01T21:21:54.4234074Z copying torch\fx\immutable_collections.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-06-01T21:21:54.4248053Z copying torch\fx\interpreter.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-06-01T21:21:54.5253835Z copying torch\fx\node.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-06-01T21:21:54.5272587Z copying torch\fx\operator_schemas.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-06-01T21:21:54.5285876Z copying torch\fx\proxy.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-06-01T21:21:54.5300938Z copying torch\fx\subgraph_rewriter.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-06-01T21:21:54.5313164Z copying torch\fx\tensor_type.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-06-01T21:21:54.5322580Z copying torch\fx\traceback.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-06-01T21:21:54.5332164Z copying torch\fx\_compatibility.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-06-01T21:21:54.5342294Z copying torch\fx\_graph_pickler.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-06-01T21:21:54.5355829Z copying torch\fx\_lazy_graph_module.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-06-01T21:21:54.5365056Z copying torch\fx\_pytree.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-06-01T21:21:54.5374706Z copying torch\fx\_symbolic_trace.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-06-01T21:21:54.5395329Z copying torch\fx\_utils.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-06-01T21:21:54.5404056Z copying torch\fx\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-06-01T21:21:54.5418395Z creating build\lib.win-amd64-cpython-39\torch\jit 2025-06-01T21:21:54.5421592Z copying torch\jit\annotations.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-06-01T21:21:54.5554027Z copying torch\jit\frontend.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-06-01T21:21:54.5572041Z copying torch\jit\generate_bytecode.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-06-01T21:21:54.5582108Z copying torch\jit\quantized.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-06-01T21:21:54.5596395Z copying torch\jit\supported_ops.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-06-01T21:21:54.5608681Z copying torch\jit\unsupported_tensor_ops.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-06-01T21:21:54.5619699Z copying torch\jit\_async.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-06-01T21:21:54.5629845Z copying torch\jit\_await.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-06-01T21:21:54.5639087Z copying torch\jit\_builtins.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-06-01T21:21:54.5649113Z copying torch\jit\_check.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-06-01T21:21:54.5658727Z copying torch\jit\_dataclass_impls.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-06-01T21:21:54.5669864Z copying torch\jit\_decompositions.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-06-01T21:21:54.5679186Z copying torch\jit\_decomposition_utils.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-06-01T21:21:54.5700222Z copying torch\jit\_freeze.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-06-01T21:21:54.5710225Z copying torch\jit\_fuser.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-06-01T21:21:54.5719856Z copying torch\jit\_ir_utils.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-06-01T21:21:54.5728870Z copying torch\jit\_logging.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-06-01T21:21:54.5734417Z copying torch\jit\_monkeytype_config.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-06-01T21:21:54.5744240Z copying torch\jit\_pickle.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-06-01T21:21:54.5755153Z copying torch\jit\_recursive.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-06-01T21:21:54.5772628Z copying torch\jit\_script.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-06-01T21:21:54.5809467Z copying torch\jit\_serialization.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-06-01T21:21:54.5819252Z copying torch\jit\_shape_functions.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-06-01T21:21:54.5841690Z copying torch\jit\_state.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-06-01T21:21:54.5851241Z copying torch\jit\_trace.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-06-01T21:21:54.5875600Z copying torch\jit\__init__.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-06-01T21:21:54.5887100Z creating build\lib.win-amd64-cpython-39\torch\linalg 2025-06-01T21:21:54.5890024Z copying torch\linalg\__init__.py -> build\lib.win-amd64-cpython-39\torch\linalg 2025-06-01T21:21:54.5932432Z creating build\lib.win-amd64-cpython-39\torch\masked 2025-06-01T21:21:54.5940080Z copying torch\masked\_docs.py -> build\lib.win-amd64-cpython-39\torch\masked 2025-06-01T21:21:54.5961395Z copying torch\masked\_ops.py -> build\lib.win-amd64-cpython-39\torch\masked 2025-06-01T21:21:54.5989179Z copying torch\masked\__init__.py -> build\lib.win-amd64-cpython-39\torch\masked 2025-06-01T21:21:54.5999290Z creating build\lib.win-amd64-cpython-39\torch\monitor 2025-06-01T21:21:54.6002228Z copying torch\monitor\__init__.py -> build\lib.win-amd64-cpython-39\torch\monitor 2025-06-01T21:21:54.6013138Z creating build\lib.win-amd64-cpython-39\torch\mps 2025-06-01T21:21:54.6016060Z copying torch\mps\event.py -> build\lib.win-amd64-cpython-39\torch\mps 2025-06-01T21:21:54.6025805Z copying torch\mps\profiler.py -> build\lib.win-amd64-cpython-39\torch\mps 2025-06-01T21:21:54.6036197Z copying torch\mps\__init__.py -> build\lib.win-amd64-cpython-39\torch\mps 2025-06-01T21:21:54.6047585Z creating build\lib.win-amd64-cpython-39\torch\mtia 2025-06-01T21:21:54.6050557Z copying torch\mtia\memory.py -> build\lib.win-amd64-cpython-39\torch\mtia 2025-06-01T21:21:54.6060907Z copying torch\mtia\_utils.py -> build\lib.win-amd64-cpython-39\torch\mtia 2025-06-01T21:21:54.6070629Z copying torch\mtia\__init__.py -> build\lib.win-amd64-cpython-39\torch\mtia 2025-06-01T21:21:54.6082274Z creating build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-06-01T21:21:54.6085127Z copying torch\multiprocessing\pool.py -> build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-06-01T21:21:54.6094454Z copying torch\multiprocessing\queue.py -> build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-06-01T21:21:54.6103591Z copying torch\multiprocessing\reductions.py -> build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-06-01T21:21:54.6118152Z copying torch\multiprocessing\spawn.py -> build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-06-01T21:21:54.6128583Z copying torch\multiprocessing\_atfork.py -> build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-06-01T21:21:54.6143974Z copying torch\multiprocessing\__init__.py -> build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-06-01T21:21:54.6189690Z creating build\lib.win-amd64-cpython-39\torch\nested 2025-06-01T21:21:54.6192726Z copying torch\nested\__init__.py -> build\lib.win-amd64-cpython-39\torch\nested 2025-06-01T21:21:54.6209351Z creating build\lib.win-amd64-cpython-39\torch\nn 2025-06-01T21:21:54.6212467Z copying torch\nn\common_types.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-06-01T21:21:54.7127029Z copying torch\nn\cpp.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-06-01T21:21:54.7136999Z copying torch\nn\functional.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-06-01T21:21:54.7213808Z copying torch\nn\grad.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-06-01T21:21:54.7223849Z copying torch\nn\init.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-06-01T21:21:54.7241040Z copying torch\nn\parameter.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-06-01T21:21:54.8365650Z copying torch\nn\_reduction.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-06-01T21:21:54.8394638Z copying torch\nn\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-06-01T21:21:54.8411004Z creating build\lib.win-amd64-cpython-39\torch\onnx 2025-06-01T21:21:54.8414057Z copying torch\onnx\errors.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-06-01T21:21:54.9083929Z copying torch\onnx\operators.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-06-01T21:21:54.9093511Z copying torch\onnx\symbolic_caffe2.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-06-01T21:21:54.9104140Z copying torch\onnx\symbolic_helper.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-06-01T21:21:54.9142202Z copying torch\onnx\symbolic_opset10.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-06-01T21:21:54.9162768Z copying torch\onnx\symbolic_opset11.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-06-01T21:21:54.9188977Z copying torch\onnx\symbolic_opset12.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-06-01T21:21:54.9198338Z copying torch\onnx\symbolic_opset13.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-06-01T21:21:54.9217263Z copying torch\onnx\symbolic_opset14.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-06-01T21:21:54.9227528Z copying torch\onnx\symbolic_opset15.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-06-01T21:21:54.9239090Z copying torch\onnx\symbolic_opset16.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-06-01T21:21:54.9250006Z copying torch\onnx\symbolic_opset17.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-06-01T21:21:54.9261105Z copying torch\onnx\symbolic_opset18.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-06-01T21:21:54.9272277Z copying torch\onnx\symbolic_opset19.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-06-01T21:21:54.9277009Z copying torch\onnx\symbolic_opset20.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-06-01T21:21:54.9286677Z copying torch\onnx\symbolic_opset7.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-06-01T21:21:54.9297617Z copying torch\onnx\symbolic_opset8.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-06-01T21:21:54.9308802Z copying torch\onnx\symbolic_opset9.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-06-01T21:21:55.0053145Z copying torch\onnx\utils.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-06-01T21:21:55.0083258Z copying torch\onnx\verification.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-06-01T21:21:55.0115613Z copying torch\onnx\_constants.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-06-01T21:21:55.0873180Z copying torch\onnx\_experimental.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-06-01T21:21:55.0882498Z copying torch\onnx\_flags.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-06-01T21:21:55.0892858Z copying torch\onnx\_globals.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-06-01T21:21:55.0901981Z copying torch\onnx\_onnx_supported_ops.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-06-01T21:21:55.1598100Z copying torch\onnx\_type_utils.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-06-01T21:21:55.1610132Z copying torch\onnx\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-06-01T21:21:55.1649919Z creating build\lib.win-amd64-cpython-39\torch\optim 2025-06-01T21:21:55.1650439Z copying torch\optim\adadelta.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-06-01T21:21:55.1655718Z copying torch\optim\adagrad.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-06-01T21:21:55.1670660Z copying torch\optim\adam.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-06-01T21:21:55.1690549Z copying torch\optim\adamax.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-06-01T21:21:55.1703690Z copying torch\optim\adamw.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-06-01T21:21:55.1713857Z copying torch\optim\asgd.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-06-01T21:21:55.1726905Z copying torch\optim\lbfgs.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-06-01T21:21:55.1744707Z copying torch\optim\lr_scheduler.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-06-01T21:21:55.1775669Z copying torch\optim\nadam.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-06-01T21:21:55.1790452Z copying torch\optim\optimizer.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-06-01T21:21:55.1812437Z copying torch\optim\radam.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-06-01T21:21:55.1827672Z copying torch\optim\rmsprop.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-06-01T21:21:55.1841922Z copying torch\optim\rprop.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-06-01T21:21:55.1855614Z copying torch\optim\sgd.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-06-01T21:21:55.1870596Z copying torch\optim\sparse_adam.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-06-01T21:21:55.1880081Z copying torch\optim\swa_utils.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-06-01T21:21:55.1894713Z copying torch\optim\_adafactor.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-06-01T21:21:55.1911748Z copying torch\optim\_functional.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-06-01T21:21:55.1922064Z copying torch\optim\__init__.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-06-01T21:21:55.1934689Z creating build\lib.win-amd64-cpython-39\torch\package 2025-06-01T21:21:55.1937810Z copying torch\package\file_structure_representation.py -> build\lib.win-amd64-cpython-39\torch\package 2025-06-01T21:21:55.1949339Z copying torch\package\find_file_dependencies.py -> build\lib.win-amd64-cpython-39\torch\package 2025-06-01T21:21:55.1959889Z copying torch\package\glob_group.py -> build\lib.win-amd64-cpython-39\torch\package 2025-06-01T21:21:55.1977087Z copying torch\package\importer.py -> build\lib.win-amd64-cpython-39\torch\package 2025-06-01T21:21:55.1986784Z copying torch\package\package_exporter.py -> build\lib.win-amd64-cpython-39\torch\package 2025-06-01T21:21:55.2017056Z copying torch\package\package_importer.py -> build\lib.win-amd64-cpython-39\torch\package 2025-06-01T21:21:55.2036792Z copying torch\package\_digraph.py -> build\lib.win-amd64-cpython-39\torch\package 2025-06-01T21:21:55.2047116Z copying torch\package\_directory_reader.py -> build\lib.win-amd64-cpython-39\torch\package 2025-06-01T21:21:55.2058805Z copying torch\package\_importlib.py -> build\lib.win-amd64-cpython-39\torch\package 2025-06-01T21:21:55.2070589Z copying torch\package\_mangling.py -> build\lib.win-amd64-cpython-39\torch\package 2025-06-01T21:21:55.2082174Z copying torch\package\_mock.py -> build\lib.win-amd64-cpython-39\torch\package 2025-06-01T21:21:55.2091400Z copying torch\package\_package_pickler.py -> build\lib.win-amd64-cpython-39\torch\package 2025-06-01T21:21:55.2102201Z copying torch\package\_package_unpickler.py -> build\lib.win-amd64-cpython-39\torch\package 2025-06-01T21:21:55.2111808Z copying torch\package\_stdlib.py -> build\lib.win-amd64-cpython-39\torch\package 2025-06-01T21:21:55.2121652Z copying torch\package\__init__.py -> build\lib.win-amd64-cpython-39\torch\package 2025-06-01T21:21:55.2128936Z creating build\lib.win-amd64-cpython-39\torch\profiler 2025-06-01T21:21:55.2131927Z copying torch\profiler\itt.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-06-01T21:21:55.2142017Z copying torch\profiler\profiler.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-06-01T21:21:55.2161055Z copying torch\profiler\python_tracer.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-06-01T21:21:55.2166765Z copying torch\profiler\_memory_profiler.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-06-01T21:21:55.2189985Z copying torch\profiler\_pattern_matcher.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-06-01T21:21:55.2210013Z copying torch\profiler\_utils.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-06-01T21:21:55.2220836Z copying torch\profiler\__init__.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-06-01T21:21:55.2232976Z creating build\lib.win-amd64-cpython-39\torch\quantization 2025-06-01T21:21:55.2236114Z copying torch\quantization\fake_quantize.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-06-01T21:21:55.2246729Z copying torch\quantization\fuser_method_mappings.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-06-01T21:21:55.2252252Z copying torch\quantization\fuse_modules.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-06-01T21:21:55.2266468Z copying torch\quantization\observer.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-06-01T21:21:55.2275136Z copying torch\quantization\qconfig.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-06-01T21:21:55.2302355Z copying torch\quantization\quantization_mappings.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-06-01T21:21:55.2311390Z copying torch\quantization\quantize.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-06-01T21:21:55.2320422Z copying torch\quantization\quantize_fx.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-06-01T21:21:55.2330212Z copying torch\quantization\quantize_jit.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-06-01T21:21:55.2339474Z copying torch\quantization\quant_type.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-06-01T21:21:55.2345170Z copying torch\quantization\stubs.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-06-01T21:21:55.2350538Z copying torch\quantization\utils.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-06-01T21:21:55.2360506Z copying torch\quantization\_numeric_suite.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-06-01T21:21:55.2371660Z copying torch\quantization\_numeric_suite_fx.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-06-01T21:21:55.2382526Z copying torch\quantization\_quantized_conversions.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-06-01T21:21:55.2392451Z copying torch\quantization\__init__.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-06-01T21:21:55.2402508Z creating build\lib.win-amd64-cpython-39\torch\signal 2025-06-01T21:21:55.2406016Z copying torch\signal\__init__.py -> build\lib.win-amd64-cpython-39\torch\signal 2025-06-01T21:21:55.2413165Z creating build\lib.win-amd64-cpython-39\torch\sparse 2025-06-01T21:21:55.2416404Z copying torch\sparse\semi_structured.py -> build\lib.win-amd64-cpython-39\torch\sparse 2025-06-01T21:21:55.3185859Z copying torch\sparse\_semi_structured_conversions.py -> build\lib.win-amd64-cpython-39\torch\sparse 2025-06-01T21:21:55.3198728Z copying torch\sparse\_semi_structured_ops.py -> build\lib.win-amd64-cpython-39\torch\sparse 2025-06-01T21:21:55.3213947Z copying torch\sparse\_triton_ops.py -> build\lib.win-amd64-cpython-39\torch\sparse 2025-06-01T21:21:55.3246140Z copying torch\sparse\_triton_ops_meta.py -> build\lib.win-amd64-cpython-39\torch\sparse 2025-06-01T21:21:55.3404473Z copying torch\sparse\__init__.py -> build\lib.win-amd64-cpython-39\torch\sparse 2025-06-01T21:21:55.3421394Z creating build\lib.win-amd64-cpython-39\torch\special 2025-06-01T21:21:55.3424169Z copying torch\special\__init__.py -> build\lib.win-amd64-cpython-39\torch\special 2025-06-01T21:21:55.3446884Z creating build\lib.win-amd64-cpython-39\torch\testing 2025-06-01T21:21:55.3450306Z copying torch\testing\_comparison.py -> build\lib.win-amd64-cpython-39\torch\testing 2025-06-01T21:21:55.3477437Z copying torch\testing\_creation.py -> build\lib.win-amd64-cpython-39\torch\testing 2025-06-01T21:21:55.3487749Z copying torch\testing\_utils.py -> build\lib.win-amd64-cpython-39\torch\testing 2025-06-01T21:21:55.3497958Z copying torch\testing\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing 2025-06-01T21:21:55.3511539Z creating build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:21:55.3515561Z copying torch\utils\backend_registration.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:21:55.4283417Z copying torch\utils\bundled_inputs.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:21:55.5156753Z copying torch\utils\checkpoint.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:21:55.5187249Z copying torch\utils\collect_env.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:21:55.5206944Z copying torch\utils\cpp_backtrace.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:21:55.5212454Z copying torch\utils\cpp_extension.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:21:55.5258799Z copying torch\utils\deterministic.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:21:55.5668296Z copying torch\utils\dlpack.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:21:55.5683709Z copying torch\utils\file_baton.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:21:55.5690321Z copying torch\utils\flop_counter.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:21:55.5705688Z copying torch\utils\hooks.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:21:55.6306543Z copying torch\utils\mkldnn.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:21:55.6317332Z copying torch\utils\mobile_optimizer.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:21:55.6328743Z copying torch\utils\model_zoo.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:21:55.6334340Z copying torch\utils\module_tracker.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:21:55.7311626Z copying torch\utils\show_pickle.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:21:55.7322239Z copying torch\utils\throughput_benchmark.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:21:55.7333026Z copying torch\utils\weak.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:21:55.7344705Z copying torch\utils\_appending_byte_serializer.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:21:55.7355885Z copying torch\utils\_backport_slots.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:21:55.7365305Z copying torch\utils\_config_module.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:21:55.7385402Z copying torch\utils\_content_store.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:21:55.7395747Z copying torch\utils\_contextlib.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:21:55.7406381Z copying torch\utils\_cpp_embed_headers.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:21:55.7415842Z copying torch\utils\_cpp_extension_versioner.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:21:55.7427155Z copying torch\utils\_cxx_pytree.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:21:55.7447864Z copying torch\utils\_device.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:21:55.7458984Z copying torch\utils\_dtype_abbrs.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:21:55.7469256Z copying torch\utils\_exposed_in.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:21:55.7479317Z copying torch\utils\_filelock.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:21:55.7489290Z copying torch\utils\_foreach_utils.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:21:55.7569964Z copying torch\utils\_freeze.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:21:55.7579856Z copying torch\utils\_functools.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:21:55.7589534Z copying torch\utils\_get_clean_triton.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:21:55.7599770Z copying torch\utils\_import_utils.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:21:55.7610300Z copying torch\utils\_mode_utils.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:21:55.7615859Z copying torch\utils\_ordered_set.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:21:55.7625840Z copying torch\utils\_python_dispatch.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:21:55.7641148Z copying torch\utils\_pytree.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:21:55.7669362Z copying torch\utils\_stats.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:21:55.7678706Z copying torch\utils\_thunk.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:21:55.7684151Z copying torch\utils\_traceback.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:21:55.7699834Z copying torch\utils\_triton.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:21:55.7709738Z copying torch\utils\_typing_utils.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:21:55.7715374Z copying torch\utils\_zip.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:21:55.7725323Z copying torch\utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:21:55.7737753Z creating build\lib.win-amd64-cpython-39\torch\xpu 2025-06-01T21:21:55.7741005Z copying torch\xpu\memory.py -> build\lib.win-amd64-cpython-39\torch\xpu 2025-06-01T21:21:55.7752184Z copying torch\xpu\random.py -> build\lib.win-amd64-cpython-39\torch\xpu 2025-06-01T21:21:55.7762601Z copying torch\xpu\streams.py -> build\lib.win-amd64-cpython-39\torch\xpu 2025-06-01T21:21:55.7773202Z copying torch\xpu\_gpu_trace.py -> build\lib.win-amd64-cpython-39\torch\xpu 2025-06-01T21:21:55.7789998Z copying torch\xpu\_utils.py -> build\lib.win-amd64-cpython-39\torch\xpu 2025-06-01T21:21:55.7798679Z copying torch\xpu\__init__.py -> build\lib.win-amd64-cpython-39\torch\xpu 2025-06-01T21:21:55.7818322Z creating build\lib.win-amd64-cpython-39\torch\_awaits 2025-06-01T21:21:55.7821351Z copying torch\_awaits\__init__.py -> build\lib.win-amd64-cpython-39\torch\_awaits 2025-06-01T21:21:55.7833216Z creating build\lib.win-amd64-cpython-39\torch\_custom_op 2025-06-01T21:21:55.7836329Z copying torch\_custom_op\autograd.py -> build\lib.win-amd64-cpython-39\torch\_custom_op 2025-06-01T21:21:55.7845681Z copying torch\_custom_op\impl.py -> build\lib.win-amd64-cpython-39\torch\_custom_op 2025-06-01T21:21:55.7859783Z copying torch\_custom_op\__init__.py -> build\lib.win-amd64-cpython-39\torch\_custom_op 2025-06-01T21:21:55.7865735Z creating build\lib.win-amd64-cpython-39\torch\_decomp 2025-06-01T21:21:55.7868663Z copying torch\_decomp\decompositions.py -> build\lib.win-amd64-cpython-39\torch\_decomp 2025-06-01T21:21:55.7927025Z copying torch\_decomp\decompositions_for_jvp.py -> build\lib.win-amd64-cpython-39\torch\_decomp 2025-06-01T21:21:55.7936648Z copying torch\_decomp\decompositions_for_rng.py -> build\lib.win-amd64-cpython-39\torch\_decomp 2025-06-01T21:21:55.7950331Z copying torch\_decomp\__init__.py -> build\lib.win-amd64-cpython-39\torch\_decomp 2025-06-01T21:21:55.7965529Z creating build\lib.win-amd64-cpython-39\torch\_dispatch 2025-06-01T21:21:55.7968391Z copying torch\_dispatch\python.py -> build\lib.win-amd64-cpython-39\torch\_dispatch 2025-06-01T21:21:55.7977859Z copying torch\_dispatch\__init__.py -> build\lib.win-amd64-cpython-39\torch\_dispatch 2025-06-01T21:21:55.7990151Z creating build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:21:55.7993168Z copying torch\_dynamo\bytecode_analysis.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:21:55.8003566Z copying torch\_dynamo\bytecode_transformation.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:21:55.8027491Z copying torch\_dynamo\cache_size.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:21:55.8042649Z copying torch\_dynamo\callback.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:21:55.8057216Z copying torch\_dynamo\codegen.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:21:55.8071708Z copying torch\_dynamo\code_context.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:21:55.8082724Z copying torch\_dynamo\compiled_autograd.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:21:55.8111259Z copying torch\_dynamo\comptime.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:21:55.8122740Z copying torch\_dynamo\config.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:21:55.8138356Z copying torch\_dynamo\convert_frame.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:21:55.8161217Z copying torch\_dynamo\create_parameter_op.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:21:55.8170754Z copying torch\_dynamo\current_scope_id.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:21:55.8180805Z copying torch\_dynamo\debug_utils.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:21:55.8865831Z copying torch\_dynamo\decorators.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:21:55.8991534Z copying torch\_dynamo\device_interface.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:21:55.9005017Z copying torch\_dynamo\distributed.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:21:55.9014853Z copying torch\_dynamo\eval_frame.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:21:55.9043040Z copying torch\_dynamo\exc.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:21:55.9056694Z copying torch\_dynamo\external_utils.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:21:55.9067276Z copying torch\_dynamo\funcname_cache.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:21:55.9076873Z copying torch\_dynamo\graph_break_hints.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:21:55.9094208Z copying torch\_dynamo\graph_deduplication.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:21:55.9108732Z copying torch\_dynamo\graph_region_tracker.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:21:55.9121958Z copying torch\_dynamo\graph_utils.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:21:55.9131276Z copying torch\_dynamo\guards.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:21:55.9181541Z copying torch\_dynamo\hooks.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:21:55.9192166Z copying torch\_dynamo\logging.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:21:55.9202825Z copying torch\_dynamo\metrics_context.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:21:55.9215476Z copying torch\_dynamo\mutation_guard.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:21:55.9224997Z copying torch\_dynamo\output_graph.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:21:56.0647207Z copying torch\_dynamo\pgo.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:21:56.0660825Z copying torch\_dynamo\profiler.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:21:56.0670858Z copying torch\_dynamo\replay_record.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:21:56.0690316Z copying torch\_dynamo\resume_execution.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:21:56.0706274Z copying torch\_dynamo\side_effects.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:21:56.0756940Z copying torch\_dynamo\source.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:21:56.0771890Z copying torch\_dynamo\symbolic_convert.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:21:56.1682862Z copying torch\_dynamo\tensor_version_op.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:21:56.1693336Z copying torch\_dynamo\testing.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:21:56.1709843Z copying torch\_dynamo\test_case.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:21:56.1721814Z copying torch\_dynamo\test_dont_skip_tracing_functions.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:21:56.1731498Z copying torch\_dynamo\test_minifier_common.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:21:56.1742954Z copying torch\_dynamo\trace_rules.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:21:56.1802674Z copying torch\_dynamo\types.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:21:56.1831275Z copying torch\_dynamo\utils.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:21:56.1890959Z copying torch\_dynamo\_trace_wrapped_higher_order_op.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:21:56.1902085Z copying torch\_dynamo\__init__.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:21:56.1916125Z creating build\lib.win-amd64-cpython-39\torch\_export 2025-06-01T21:21:56.1919168Z copying torch\_export\converter.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-06-01T21:21:56.3630079Z copying torch\_export\error.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-06-01T21:21:56.3639739Z copying torch\_export\non_strict_utils.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-06-01T21:21:56.3665007Z copying torch\_export\pass_base.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-06-01T21:21:56.3689371Z copying torch\_export\tools.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-06-01T21:21:56.4678255Z copying torch\_export\utils.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-06-01T21:21:56.4702237Z copying torch\_export\verifier.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-06-01T21:21:56.4716195Z copying torch\_export\wrappers.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-06-01T21:21:56.4726580Z copying torch\_export\__init__.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-06-01T21:21:56.4741886Z creating build\lib.win-amd64-cpython-39\torch\_functorch 2025-06-01T21:21:56.4745049Z copying torch\_functorch\aot_autograd.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-06-01T21:21:56.5475830Z copying torch\_functorch\apis.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-06-01T21:21:56.5490013Z copying torch\_functorch\autograd_function.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-06-01T21:21:56.5507169Z copying torch\_functorch\batch_norm_replacement.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-06-01T21:21:56.5525467Z copying torch\_functorch\benchmark_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-06-01T21:21:56.5535671Z copying torch\_functorch\compilers.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-06-01T21:21:56.5547020Z copying torch\_functorch\compile_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-06-01T21:21:56.5555979Z copying torch\_functorch\config.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-06-01T21:21:56.5567266Z copying torch\_functorch\deprecated.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-06-01T21:21:56.5577053Z copying torch\_functorch\eager_transforms.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-06-01T21:21:56.5605210Z copying torch\_functorch\functional_call.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-06-01T21:21:56.5616565Z copying torch\_functorch\fx_minifier.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-06-01T21:21:56.5630206Z copying torch\_functorch\make_functional.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-06-01T21:21:56.5644204Z copying torch\_functorch\partitioners.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-06-01T21:21:56.5680320Z copying torch\_functorch\pyfunctorch.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-06-01T21:21:56.5690722Z copying torch\_functorch\python_key.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-06-01T21:21:56.5696303Z copying torch\_functorch\pytree_hacks.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-06-01T21:21:56.5707121Z copying torch\_functorch\top_operators_github_usage.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-06-01T21:21:56.5721335Z copying torch\_functorch\utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-06-01T21:21:56.5731645Z copying torch\_functorch\vmap.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-06-01T21:21:56.5746249Z copying torch\_functorch\__init__.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-06-01T21:21:56.5765851Z creating build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-06-01T21:21:56.5768970Z copying torch\_higher_order_ops\aoti_call_delegate.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-06-01T21:21:56.5779849Z copying torch\_higher_order_ops\associative_scan.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-06-01T21:21:56.5794804Z copying torch\_higher_order_ops\auto_functionalize.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-06-01T21:21:56.5822913Z copying torch\_higher_order_ops\base_hop.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-06-01T21:21:56.5832342Z copying torch\_higher_order_ops\cond.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-06-01T21:21:56.5846647Z copying torch\_higher_order_ops\effects.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-06-01T21:21:56.5856119Z copying torch\_higher_order_ops\executorch_call_delegate.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-06-01T21:21:56.5867191Z copying torch\_higher_order_ops\flat_apply.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-06-01T21:21:56.5878449Z copying torch\_higher_order_ops\flex_attention.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-06-01T21:21:56.5898002Z copying torch\_higher_order_ops\foreach_map.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-06-01T21:21:56.5906890Z copying torch\_higher_order_ops\hints_wrap.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-06-01T21:21:56.5917357Z copying torch\_higher_order_ops\invoke_subgraph.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-06-01T21:21:56.5933650Z copying torch\_higher_order_ops\map.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-06-01T21:21:56.5944541Z copying torch\_higher_order_ops\out_dtype.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-06-01T21:21:56.5955812Z copying torch\_higher_order_ops\run_const_graph.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-06-01T21:21:56.5966795Z copying torch\_higher_order_ops\scan.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-06-01T21:21:56.5986255Z copying torch\_higher_order_ops\schema.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-06-01T21:21:56.5995859Z copying torch\_higher_order_ops\strict_mode.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-06-01T21:21:56.6005944Z copying torch\_higher_order_ops\torchbind.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-06-01T21:21:56.6015159Z copying torch\_higher_order_ops\triton_kernel_wrap.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-06-01T21:21:56.6808317Z copying torch\_higher_order_ops\utils.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-06-01T21:21:56.6826422Z copying torch\_higher_order_ops\while_loop.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-06-01T21:21:56.6848848Z copying torch\_higher_order_ops\wrap.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-06-01T21:21:56.6861307Z copying torch\_higher_order_ops\_invoke_quant.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-06-01T21:21:56.6871934Z copying torch\_higher_order_ops\__init__.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-06-01T21:21:56.6891923Z creating build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:56.6895095Z copying torch\_inductor\analyze_preserves_zero_mask.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:56.6905626Z copying torch\_inductor\aoti_eager.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:56.6915465Z copying torch\_inductor\async_compile.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:56.6938117Z copying torch\_inductor\autotune_process.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:56.6955196Z copying torch\_inductor\bounds.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:56.6967192Z copying torch\_inductor\choices.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:56.6982104Z copying torch\_inductor\codecache.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:56.7711188Z copying torch\_inductor\comms.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:56.9876643Z copying torch\_inductor\comm_analysis.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:56.9893613Z copying torch\_inductor\comm_lowering.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:56.9904020Z copying torch\_inductor\compiler_bisector.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:56.9920373Z copying torch\_inductor\compile_fx.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:56.9957241Z copying torch\_inductor\compile_fx_async.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:56.9967912Z copying torch\_inductor\compile_fx_ext.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:56.9983090Z copying torch\_inductor\compile_fx_subproc.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:56.9992365Z copying torch\_inductor\config.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:57.0019054Z copying torch\_inductor\constant_folding.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:57.0029792Z copying torch\_inductor\cpp_builder.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:57.0262775Z copying torch\_inductor\cpu_vec_isa.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:57.0272975Z copying torch\_inductor\cudagraph_trees.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:57.0311957Z copying torch\_inductor\cudagraph_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:57.0332700Z copying torch\_inductor\custom_graph_pass.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:57.0342131Z copying torch\_inductor\debug.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:57.1679448Z copying torch\_inductor\decomposition.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:57.1698532Z copying torch\_inductor\dependencies.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:57.1713876Z copying torch\_inductor\dtype_propagation.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:57.1725451Z copying torch\_inductor\exc.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:57.1735433Z copying torch\_inductor\extern_node_serializer.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:57.1745302Z copying torch\_inductor\freezing.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:57.1755363Z copying torch\_inductor\freezing_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:57.1767024Z copying torch\_inductor\fuzzer.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:57.1786932Z copying torch\_inductor\fx_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:57.2549442Z copying torch\_inductor\graph.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:57.2690733Z copying torch\_inductor\hooks.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:57.2696429Z copying torch\_inductor\index_propagation.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:57.2707832Z copying torch\_inductor\inductor_prims.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:57.2718752Z copying torch\_inductor\ir.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:57.3491312Z copying torch\_inductor\jagged_lowerings.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:57.3501832Z copying torch\_inductor\loop_body.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:57.4196451Z copying torch\_inductor\lowering.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:57.4267507Z copying torch\_inductor\memory.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:57.4287818Z copying torch\_inductor\metrics.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:57.4294392Z copying torch\_inductor\mkldnn_ir.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:57.4313020Z copying torch\_inductor\mkldnn_lowerings.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:57.4339178Z copying torch\_inductor\mock_cache.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:57.4361638Z copying torch\_inductor\ops_handler.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:57.4379471Z copying torch\_inductor\optimize_indexing.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:57.4389179Z copying torch\_inductor\output_code.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:57.4406392Z copying torch\_inductor\pattern_matcher.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:57.5265083Z copying torch\_inductor\quantized_lowerings.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:57.5274923Z copying torch\_inductor\remote_cache.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:57.5299679Z copying torch\_inductor\scheduler.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:57.5359144Z copying torch\_inductor\select_algorithm.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:57.5396636Z copying torch\_inductor\sizevars.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:57.5415066Z copying torch\_inductor\standalone_compile.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:57.5444198Z copying torch\_inductor\subgraph_lowering.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:57.5454436Z copying torch\_inductor\template_heuristics.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:57.5471221Z copying torch\_inductor\test_case.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:57.5482135Z copying torch\_inductor\test_operators.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:57.5490988Z copying torch\_inductor\triton_bundler.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:57.5504420Z copying torch\_inductor\utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:57.5542341Z copying torch\_inductor\virtualized.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:57.5552907Z copying torch\_inductor\wrapper_benchmark.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:57.5564307Z copying torch\_inductor\__autotune_main__.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:57.5584868Z copying torch\_inductor\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:21:57.5599343Z creating build\lib.win-amd64-cpython-39\torch\_lazy 2025-06-01T21:21:57.5602585Z copying torch\_lazy\closure.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-06-01T21:21:57.5613178Z copying torch\_lazy\computation.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-06-01T21:21:57.5623932Z copying torch\_lazy\config.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-06-01T21:21:57.5629638Z copying torch\_lazy\debug.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-06-01T21:21:57.5639319Z copying torch\_lazy\device_context.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-06-01T21:21:57.5659806Z copying torch\_lazy\extract_compiled_graph.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-06-01T21:21:57.5670495Z copying torch\_lazy\ir_cache.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-06-01T21:21:57.5676089Z copying torch\_lazy\metrics.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-06-01T21:21:57.5681771Z copying torch\_lazy\tensor_factory_functions.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-06-01T21:21:57.5692474Z copying torch\_lazy\ts_backend.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-06-01T21:21:57.5698175Z copying torch\_lazy\__init__.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-06-01T21:21:57.5709622Z creating build\lib.win-amd64-cpython-39\torch\_library 2025-06-01T21:21:57.5711998Z copying torch\_library\autograd.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-06-01T21:21:57.5722092Z copying torch\_library\custom_ops.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-06-01T21:21:57.5741586Z copying torch\_library\fake_class_registry.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-06-01T21:21:57.5751476Z copying torch\_library\fake_impl.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-06-01T21:21:57.5772756Z copying torch\_library\fake_profile.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-06-01T21:21:57.5791954Z copying torch\_library\infer_schema.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-06-01T21:21:57.5796298Z copying torch\_library\simple_registry.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-06-01T21:21:57.5813670Z copying torch\_library\triton.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-06-01T21:21:57.5824439Z copying torch\_library\utils.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-06-01T21:21:57.5840743Z copying torch\_library\__init__.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-06-01T21:21:57.5848287Z creating build\lib.win-amd64-cpython-39\torch\_logging 2025-06-01T21:21:57.5851179Z copying torch\_logging\scribe.py -> build\lib.win-amd64-cpython-39\torch\_logging 2025-06-01T21:21:57.5861998Z copying torch\_logging\structured.py -> build\lib.win-amd64-cpython-39\torch\_logging 2025-06-01T21:21:57.5872336Z copying torch\_logging\_internal.py -> build\lib.win-amd64-cpython-39\torch\_logging 2025-06-01T21:21:57.5893985Z copying torch\_logging\_registrations.py -> build\lib.win-amd64-cpython-39\torch\_logging 2025-06-01T21:21:57.5912969Z copying torch\_logging\__init__.py -> build\lib.win-amd64-cpython-39\torch\_logging 2025-06-01T21:21:57.5925240Z creating build\lib.win-amd64-cpython-39\torch\_numpy 2025-06-01T21:21:57.5927991Z copying torch\_numpy\fft.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-06-01T21:21:57.5937604Z copying torch\_numpy\linalg.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-06-01T21:21:57.5948099Z copying torch\_numpy\random.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-06-01T21:21:57.5957633Z copying torch\_numpy\_binary_ufuncs_impl.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-06-01T21:21:57.5968623Z copying torch\_numpy\_casting_dicts.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-06-01T21:21:57.5998160Z copying torch\_numpy\_dtypes.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-06-01T21:21:57.6007957Z copying torch\_numpy\_dtypes_impl.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-06-01T21:21:57.6017540Z copying torch\_numpy\_funcs.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-06-01T21:21:57.6027495Z copying torch\_numpy\_funcs_impl.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-06-01T21:21:57.6051929Z copying torch\_numpy\_getlimits.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-06-01T21:21:57.6057856Z copying torch\_numpy\_ndarray.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-06-01T21:21:57.6072064Z copying torch\_numpy\_normalizations.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-06-01T21:21:57.6082214Z copying torch\_numpy\_reductions_impl.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-06-01T21:21:57.6092293Z copying torch\_numpy\_ufuncs.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-06-01T21:21:57.6102575Z copying torch\_numpy\_unary_ufuncs_impl.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-06-01T21:21:57.6111480Z copying torch\_numpy\_util.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-06-01T21:21:57.6121779Z copying torch\_numpy\__init__.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-06-01T21:21:57.6128849Z creating build\lib.win-amd64-cpython-39\torch\_prims 2025-06-01T21:21:57.6132004Z copying torch\_prims\context.py -> build\lib.win-amd64-cpython-39\torch\_prims 2025-06-01T21:21:57.6142616Z copying torch\_prims\debug_prims.py -> build\lib.win-amd64-cpython-39\torch\_prims 2025-06-01T21:21:57.6151659Z copying torch\_prims\executor.py -> build\lib.win-amd64-cpython-39\torch\_prims 2025-06-01T21:21:57.6161184Z copying torch\_prims\rng_prims.py -> build\lib.win-amd64-cpython-39\torch\_prims 2025-06-01T21:21:57.6171148Z copying torch\_prims\__init__.py -> build\lib.win-amd64-cpython-39\torch\_prims 2025-06-01T21:21:57.6213787Z creating build\lib.win-amd64-cpython-39\torch\_prims_common 2025-06-01T21:21:57.6217035Z copying torch\_prims_common\wrappers.py -> build\lib.win-amd64-cpython-39\torch\_prims_common 2025-06-01T21:21:57.6231562Z copying torch\_prims_common\__init__.py -> build\lib.win-amd64-cpython-39\torch\_prims_common 2025-06-01T21:21:57.6377833Z creating build\lib.win-amd64-cpython-39\torch\_refs 2025-06-01T21:21:57.6380765Z copying torch\_refs\fft.py -> build\lib.win-amd64-cpython-39\torch\_refs 2025-06-01T21:21:57.6394816Z copying torch\_refs\_conversions.py -> build\lib.win-amd64-cpython-39\torch\_refs 2025-06-01T21:21:57.6403570Z copying torch\_refs\__init__.py -> build\lib.win-amd64-cpython-39\torch\_refs 2025-06-01T21:21:57.6469894Z creating build\lib.win-amd64-cpython-39\torch\_strobelight 2025-06-01T21:21:57.6483188Z copying torch\_strobelight\cli_function_profiler.py -> build\lib.win-amd64-cpython-39\torch\_strobelight 2025-06-01T21:21:57.6494344Z copying torch\_strobelight\compile_time_profiler.py -> build\lib.win-amd64-cpython-39\torch\_strobelight 2025-06-01T21:21:57.6503435Z copying torch\_strobelight\__init__.py -> build\lib.win-amd64-cpython-39\torch\_strobelight 2025-06-01T21:21:57.6520046Z creating build\lib.win-amd64-cpython-39\torch\_subclasses 2025-06-01T21:21:57.6523232Z copying torch\_subclasses\fake_impls.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-06-01T21:21:57.6541979Z copying torch\_subclasses\fake_tensor.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-06-01T21:21:57.6585273Z copying torch\_subclasses\fake_utils.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-06-01T21:21:57.6605745Z copying torch\_subclasses\functional_tensor.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-06-01T21:21:57.6623979Z copying torch\_subclasses\meta_utils.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-06-01T21:21:57.6654283Z copying torch\_subclasses\schema_check_mode.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-06-01T21:21:57.6665306Z copying torch\_subclasses\_fake_tensor_utils.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-06-01T21:21:57.6676606Z copying torch\_subclasses\__init__.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-06-01T21:21:57.6683994Z creating build\lib.win-amd64-cpython-39\torch\_vendor 2025-06-01T21:21:57.6685991Z copying torch\_vendor\__init__.py -> build\lib.win-amd64-cpython-39\torch\_vendor 2025-06-01T21:21:57.6691932Z creating build\lib.win-amd64-cpython-39\torch\ao\nn 2025-06-01T21:21:57.6695487Z copying torch\ao\nn\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn 2025-06-01T21:21:57.6705633Z creating build\lib.win-amd64-cpython-39\torch\ao\ns 2025-06-01T21:21:57.6708610Z copying torch\ao\ns\_numeric_suite.py -> build\lib.win-amd64-cpython-39\torch\ao\ns 2025-06-01T21:21:57.7336186Z copying torch\ao\ns\_numeric_suite_fx.py -> build\lib.win-amd64-cpython-39\torch\ao\ns 2025-06-01T21:21:57.7354764Z copying torch\ao\ns\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\ns 2025-06-01T21:21:57.7360745Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning 2025-06-01T21:21:57.7363736Z copying torch\ao\pruning\_mappings.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning 2025-06-01T21:21:57.8144327Z copying torch\ao\pruning\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning 2025-06-01T21:21:57.8153430Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-06-01T21:21:57.8156613Z copying torch\ao\quantization\fake_quantize.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-06-01T21:21:57.9061104Z copying torch\ao\quantization\fuser_method_mappings.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-06-01T21:21:57.9071235Z copying torch\ao\quantization\fuse_modules.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-06-01T21:21:57.9090983Z copying torch\ao\quantization\observer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-06-01T21:21:57.9798296Z copying torch\ao\quantization\qconfig.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-06-01T21:21:57.9815706Z copying torch\ao\quantization\qconfig_mapping.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-06-01T21:21:57.9826866Z copying torch\ao\quantization\quantization_mappings.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-06-01T21:21:57.9837495Z copying torch\ao\quantization\quantize.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-06-01T21:21:57.9852808Z copying torch\ao\quantization\quantize_fx.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-06-01T21:21:57.9869845Z copying torch\ao\quantization\quantize_jit.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-06-01T21:21:57.9881470Z copying torch\ao\quantization\quantize_pt2e.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-06-01T21:21:57.9892123Z copying torch\ao\quantization\quant_type.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-06-01T21:21:57.9901728Z copying torch\ao\quantization\stubs.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-06-01T21:21:57.9912401Z copying torch\ao\quantization\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-06-01T21:21:57.9928268Z copying torch\ao\quantization\_correct_bias.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-06-01T21:21:57.9940320Z copying torch\ao\quantization\_equalize.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-06-01T21:21:57.9949961Z copying torch\ao\quantization\_learnable_fake_quantize.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-06-01T21:21:57.9960017Z copying torch\ao\quantization\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-06-01T21:21:57.9971775Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic 2025-06-01T21:21:57.9974817Z copying torch\ao\nn\intrinsic\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic 2025-06-01T21:21:57.9986781Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\qat 2025-06-01T21:21:57.9989885Z copying torch\ao\nn\qat\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat 2025-06-01T21:21:57.9996579Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable 2025-06-01T21:21:57.9999824Z copying torch\ao\nn\quantizable\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable 2025-06-01T21:21:58.0007052Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantized 2025-06-01T21:21:58.0019999Z copying torch\ao\nn\quantized\functional.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized 2025-06-01T21:21:58.0034826Z copying torch\ao\nn\quantized\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized 2025-06-01T21:21:58.0042498Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\sparse 2025-06-01T21:21:58.0068392Z copying torch\ao\nn\sparse\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\sparse 2025-06-01T21:21:58.0068989Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\modules 2025-06-01T21:21:58.0069610Z copying torch\ao\nn\intrinsic\modules\fused.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\modules 2025-06-01T21:21:58.0070364Z copying torch\ao\nn\intrinsic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\modules 2025-06-01T21:21:58.0075925Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat 2025-06-01T21:21:58.0080048Z copying torch\ao\nn\intrinsic\qat\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat 2025-06-01T21:21:58.0086234Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized 2025-06-01T21:21:58.0122344Z copying torch\ao\nn\intrinsic\quantized\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized 2025-06-01T21:21:58.0129238Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat\modules 2025-06-01T21:21:58.0132284Z copying torch\ao\nn\intrinsic\qat\modules\conv_fused.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat\modules 2025-06-01T21:21:58.0153097Z copying torch\ao\nn\intrinsic\qat\modules\linear_fused.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat\modules 2025-06-01T21:21:58.0163972Z copying torch\ao\nn\intrinsic\qat\modules\linear_relu.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat\modules 2025-06-01T21:21:58.0174652Z copying torch\ao\nn\intrinsic\qat\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat\modules 2025-06-01T21:21:58.0185224Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\dynamic 2025-06-01T21:21:58.0188221Z copying torch\ao\nn\intrinsic\quantized\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\dynamic 2025-06-01T21:21:58.0195383Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules 2025-06-01T21:21:58.0198814Z copying torch\ao\nn\intrinsic\quantized\modules\bn_relu.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules 2025-06-01T21:21:58.0208167Z copying torch\ao\nn\intrinsic\quantized\modules\conv_add.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules 2025-06-01T21:21:58.0218207Z copying torch\ao\nn\intrinsic\quantized\modules\conv_relu.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules 2025-06-01T21:21:58.0229130Z copying torch\ao\nn\intrinsic\quantized\modules\linear_relu.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules 2025-06-01T21:21:58.0246323Z copying torch\ao\nn\intrinsic\quantized\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules 2025-06-01T21:21:58.0263390Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\dynamic\modules 2025-06-01T21:21:58.0266574Z 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-06-01T21:21:58.0276343Z copying torch\ao\nn\intrinsic\quantized\dynamic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\dynamic\modules 2025-06-01T21:21:58.0282620Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\qat\dynamic 2025-06-01T21:21:58.0285573Z copying torch\ao\nn\qat\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\dynamic 2025-06-01T21:21:58.0292605Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\qat\modules 2025-06-01T21:21:58.0295614Z copying torch\ao\nn\qat\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\modules 2025-06-01T21:21:58.0307644Z copying torch\ao\nn\qat\modules\embedding_ops.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\modules 2025-06-01T21:21:58.0319906Z copying torch\ao\nn\qat\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\modules 2025-06-01T21:21:58.0331806Z copying torch\ao\nn\qat\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\modules 2025-06-01T21:21:58.0337344Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\qat\dynamic\modules 2025-06-01T21:21:58.0340540Z copying torch\ao\nn\qat\dynamic\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\dynamic\modules 2025-06-01T21:21:58.0350348Z copying torch\ao\nn\qat\dynamic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\dynamic\modules 2025-06-01T21:21:58.0357472Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable\modules 2025-06-01T21:21:58.0360564Z copying torch\ao\nn\quantizable\modules\activation.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable\modules 2025-06-01T21:21:58.0381904Z copying torch\ao\nn\quantizable\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable\modules 2025-06-01T21:21:58.0397053Z copying torch\ao\nn\quantizable\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable\modules 2025-06-01T21:21:58.0403825Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic 2025-06-01T21:21:58.0407297Z copying torch\ao\nn\quantized\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic 2025-06-01T21:21:58.0415662Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-06-01T21:21:58.0420463Z copying torch\ao\nn\quantized\modules\activation.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-06-01T21:21:58.0435251Z copying torch\ao\nn\quantized\modules\batchnorm.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-06-01T21:21:58.0445722Z copying torch\ao\nn\quantized\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-06-01T21:21:58.0460216Z copying torch\ao\nn\quantized\modules\dropout.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-06-01T21:21:58.0469686Z copying torch\ao\nn\quantized\modules\embedding_ops.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-06-01T21:21:58.0491227Z copying torch\ao\nn\quantized\modules\functional_modules.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-06-01T21:21:58.0502188Z copying torch\ao\nn\quantized\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-06-01T21:21:58.0512408Z copying torch\ao\nn\quantized\modules\normalization.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-06-01T21:21:58.0523200Z copying torch\ao\nn\quantized\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-06-01T21:21:58.0532374Z copying torch\ao\nn\quantized\modules\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-06-01T21:21:58.0541435Z copying torch\ao\nn\quantized\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-06-01T21:21:58.0552311Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference 2025-06-01T21:21:58.0565463Z copying torch\ao\nn\quantized\reference\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference 2025-06-01T21:21:58.0572497Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\modules 2025-06-01T21:21:58.0575768Z copying torch\ao\nn\quantized\dynamic\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\modules 2025-06-01T21:21:58.0590651Z copying torch\ao\nn\quantized\dynamic\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\modules 2025-06-01T21:21:58.0600117Z copying torch\ao\nn\quantized\dynamic\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\modules 2025-06-01T21:21:58.0623052Z copying torch\ao\nn\quantized\dynamic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\modules 2025-06-01T21:21:58.0630209Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-06-01T21:21:58.0633302Z copying torch\ao\nn\quantized\reference\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-06-01T21:21:58.0643618Z copying torch\ao\nn\quantized\reference\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-06-01T21:21:58.0652873Z copying torch\ao\nn\quantized\reference\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-06-01T21:21:58.0668283Z copying torch\ao\nn\quantized\reference\modules\sparse.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-06-01T21:21:58.0677503Z copying torch\ao\nn\quantized\reference\modules\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-06-01T21:21:58.0688575Z copying torch\ao\nn\quantized\reference\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-06-01T21:21:58.0696425Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized 2025-06-01T21:21:58.0699279Z copying torch\ao\nn\sparse\quantized\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized 2025-06-01T21:21:58.0709688Z copying torch\ao\nn\sparse\quantized\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized 2025-06-01T21:21:58.0719368Z copying torch\ao\nn\sparse\quantized\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized 2025-06-01T21:21:58.0725771Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized\dynamic 2025-06-01T21:21:58.0728914Z copying torch\ao\nn\sparse\quantized\dynamic\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized\dynamic 2025-06-01T21:21:58.0739400Z copying torch\ao\nn\sparse\quantized\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized\dynamic 2025-06-01T21:21:58.0747776Z creating build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-06-01T21:21:58.0750918Z copying torch\ao\ns\fx\graph_matcher.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-06-01T21:21:58.0765951Z copying torch\ao\ns\fx\graph_passes.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-06-01T21:21:58.0784407Z copying torch\ao\ns\fx\mappings.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-06-01T21:21:58.0799326Z copying torch\ao\ns\fx\ns_types.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-06-01T21:21:58.0809518Z copying torch\ao\ns\fx\n_shadows_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-06-01T21:21:58.0844211Z copying torch\ao\ns\fx\pattern_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-06-01T21:21:58.0856048Z copying torch\ao\ns\fx\qconfig_multi_mapping.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-06-01T21:21:58.0865596Z copying torch\ao\ns\fx\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-06-01T21:21:58.0879402Z copying torch\ao\ns\fx\weight_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-06-01T21:21:58.0892710Z copying torch\ao\ns\fx\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-06-01T21:21:58.0898832Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler 2025-06-01T21:21:58.0902097Z copying torch\ao\pruning\scheduler\base_scheduler.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler 2025-06-01T21:21:58.0912721Z copying torch\ao\pruning\scheduler\cubic_scheduler.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler 2025-06-01T21:21:58.0922409Z copying torch\ao\pruning\scheduler\lambda_scheduler.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler 2025-06-01T21:21:58.0943141Z copying torch\ao\pruning\scheduler\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler 2025-06-01T21:21:58.0949380Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier 2025-06-01T21:21:58.0962255Z copying torch\ao\pruning\sparsifier\base_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier 2025-06-01T21:21:58.0973077Z copying torch\ao\pruning\sparsifier\nearly_diagonal_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier 2025-06-01T21:21:58.0984093Z copying torch\ao\pruning\sparsifier\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier 2025-06-01T21:21:58.1004520Z copying torch\ao\pruning\sparsifier\weight_norm_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier 2025-06-01T21:21:58.1014366Z copying torch\ao\pruning\sparsifier\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier 2025-06-01T21:21:58.1020203Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental 2025-06-01T21:21:58.1023045Z copying torch\ao\pruning\_experimental\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental 2025-06-01T21:21:58.1029080Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\activation_sparsifier 2025-06-01T21:21:58.1032502Z copying torch\ao\pruning\_experimental\activation_sparsifier\activation_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\activation_sparsifier 2025-06-01T21:21:58.1047236Z copying torch\ao\pruning\_experimental\activation_sparsifier\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\activation_sparsifier 2025-06-01T21:21:58.1053443Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_scheduler 2025-06-01T21:21:58.1056642Z copying torch\ao\pruning\_experimental\data_scheduler\base_data_scheduler.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_scheduler 2025-06-01T21:21:58.1066488Z copying torch\ao\pruning\_experimental\data_scheduler\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_scheduler 2025-06-01T21:21:58.1073382Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier 2025-06-01T21:21:58.1087214Z copying torch\ao\pruning\_experimental\data_sparsifier\base_data_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier 2025-06-01T21:21:58.1665071Z copying torch\ao\pruning\_experimental\data_sparsifier\data_norm_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier 2025-06-01T21:21:58.1675763Z copying torch\ao\pruning\_experimental\data_sparsifier\quantization_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier 2025-06-01T21:21:58.1697321Z copying torch\ao\pruning\_experimental\data_sparsifier\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier 2025-06-01T21:21:58.1705591Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-06-01T21:21:58.1708761Z copying torch\ao\pruning\_experimental\pruner\base_structured_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-06-01T21:21:58.1718977Z copying torch\ao\pruning\_experimental\pruner\FPGM_pruner.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-06-01T21:21:58.1728743Z copying torch\ao\pruning\_experimental\pruner\lstm_saliency_pruner.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-06-01T21:21:58.1749680Z copying torch\ao\pruning\_experimental\pruner\match_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-06-01T21:21:58.1759854Z copying torch\ao\pruning\_experimental\pruner\parametrization.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-06-01T21:21:58.1771115Z copying torch\ao\pruning\_experimental\pruner\prune_functions.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-06-01T21:21:58.1876739Z copying torch\ao\pruning\_experimental\pruner\saliency_pruner.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-06-01T21:21:58.1886629Z copying torch\ao\pruning\_experimental\pruner\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-06-01T21:21:58.1893153Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier\lightning 2025-06-01T21:21:58.1896240Z copying torch\ao\pruning\_experimental\data_sparsifier\lightning\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier\lightning 2025-06-01T21:21:58.1902736Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks 2025-06-01T21:21:58.1906069Z 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-06-01T21:21:58.1916595Z 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-06-01T21:21:58.1927727Z 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-06-01T21:21:58.1944953Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-06-01T21:21:58.1948364Z copying torch\ao\quantization\backend_config\backend_config.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-06-01T21:21:58.1963420Z copying torch\ao\quantization\backend_config\executorch.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-06-01T21:21:58.1976972Z copying torch\ao\quantization\backend_config\fbgemm.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-06-01T21:21:58.1986569Z copying torch\ao\quantization\backend_config\native.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-06-01T21:21:58.2020814Z copying torch\ao\quantization\backend_config\observation_type.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-06-01T21:21:58.2025421Z copying torch\ao\quantization\backend_config\onednn.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-06-01T21:21:58.2040341Z copying torch\ao\quantization\backend_config\qnnpack.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-06-01T21:21:58.2049477Z copying torch\ao\quantization\backend_config\tensorrt.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-06-01T21:21:58.2059677Z copying torch\ao\quantization\backend_config\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-06-01T21:21:58.2070219Z copying torch\ao\quantization\backend_config\x86.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-06-01T21:21:58.2079067Z copying torch\ao\quantization\backend_config\_common_operator_config_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-06-01T21:21:58.2094571Z copying torch\ao\quantization\backend_config\_qnnpack_pt2e.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-06-01T21:21:58.2106334Z copying torch\ao\quantization\backend_config\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-06-01T21:21:58.2119718Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-06-01T21:21:58.2122761Z copying torch\ao\quantization\fx\convert.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-06-01T21:21:58.2147690Z copying torch\ao\quantization\fx\custom_config.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-06-01T21:21:58.2161483Z copying torch\ao\quantization\fx\fuse.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-06-01T21:21:58.2171430Z copying torch\ao\quantization\fx\fuse_handler.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-06-01T21:21:58.2181763Z copying torch\ao\quantization\fx\graph_module.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-06-01T21:21:58.2201907Z copying torch\ao\quantization\fx\lower_to_fbgemm.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-06-01T21:21:58.2211502Z copying torch\ao\quantization\fx\lower_to_qnnpack.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-06-01T21:21:58.2217217Z copying torch\ao\quantization\fx\lstm_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-06-01T21:21:58.2228437Z copying torch\ao\quantization\fx\match_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-06-01T21:21:58.2238778Z copying torch\ao\quantization\fx\pattern_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-06-01T21:21:58.2248121Z copying torch\ao\quantization\fx\prepare.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-06-01T21:21:58.2281856Z copying torch\ao\quantization\fx\qconfig_mapping_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-06-01T21:21:58.2292718Z copying torch\ao\quantization\fx\quantize_handler.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-06-01T21:21:58.2303283Z copying torch\ao\quantization\fx\tracer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-06-01T21:21:58.2313177Z copying torch\ao\quantization\fx\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-06-01T21:21:58.2333922Z copying torch\ao\quantization\fx\_decomposed.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-06-01T21:21:58.2356787Z copying torch\ao\quantization\fx\_equalize.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-06-01T21:21:58.2383339Z copying torch\ao\quantization\fx\_lower_to_native_backend.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-06-01T21:21:58.2407705Z copying torch\ao\quantization\fx\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-06-01T21:21:58.2415970Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-06-01T21:21:58.2418892Z copying torch\ao\quantization\pt2e\duplicate_dq_pass.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-06-01T21:21:58.2429497Z copying torch\ao\quantization\pt2e\export_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-06-01T21:21:58.2439955Z copying torch\ao\quantization\pt2e\graph_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-06-01T21:21:58.2450204Z copying torch\ao\quantization\pt2e\lowering.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-06-01T21:21:58.2469030Z copying torch\ao\quantization\pt2e\port_metadata_pass.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-06-01T21:21:58.2479095Z copying torch\ao\quantization\pt2e\prepare.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-06-01T21:21:58.2493387Z copying torch\ao\quantization\pt2e\qat_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-06-01T21:21:58.2512196Z copying torch\ao\quantization\pt2e\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-06-01T21:21:58.2526858Z copying torch\ao\quantization\pt2e\_affine_quantization.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-06-01T21:21:58.2545429Z copying torch\ao\quantization\pt2e\_numeric_debugger.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-06-01T21:21:58.2556189Z copying torch\ao\quantization\pt2e\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-06-01T21:21:58.2563269Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-06-01T21:21:58.2566503Z copying torch\ao\quantization\quantizer\composable_quantizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-06-01T21:21:58.2577493Z copying torch\ao\quantization\quantizer\embedding_quantizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-06-01T21:21:58.2586644Z copying torch\ao\quantization\quantizer\quantizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-06-01T21:21:58.2605886Z copying torch\ao\quantization\quantizer\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-06-01T21:21:58.2615134Z copying torch\ao\quantization\quantizer\x86_inductor_quantizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-06-01T21:21:58.2642376Z copying torch\ao\quantization\quantizer\xnnpack_quantizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-06-01T21:21:58.2655452Z copying torch\ao\quantization\quantizer\xnnpack_quantizer_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-06-01T21:21:58.2675030Z copying torch\ao\quantization\quantizer\xpu_inductor_quantizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-06-01T21:21:58.2684665Z copying torch\ao\quantization\quantizer\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-06-01T21:21:58.2692002Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report 2025-06-01T21:21:58.2695155Z copying torch\ao\quantization\fx\_model_report\detector.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report 2025-06-01T21:21:58.2724121Z copying torch\ao\quantization\fx\_model_report\model_report.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report 2025-06-01T21:21:58.2741010Z copying torch\ao\quantization\fx\_model_report\model_report_observer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report 2025-06-01T21:21:58.2762011Z copying torch\ao\quantization\fx\_model_report\model_report_visualizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report 2025-06-01T21:21:58.2780961Z copying torch\ao\quantization\fx\_model_report\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report 2025-06-01T21:21:58.2787202Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\representation 2025-06-01T21:21:58.2790455Z copying torch\ao\quantization\pt2e\representation\rewrite.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\representation 2025-06-01T21:21:58.2806174Z copying torch\ao\quantization\pt2e\representation\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\representation 2025-06-01T21:21:58.2813322Z creating build\lib.win-amd64-cpython-39\torch\autograd\_functions 2025-06-01T21:21:58.2816565Z copying torch\autograd\_functions\tensor.py -> build\lib.win-amd64-cpython-39\torch\autograd\_functions 2025-06-01T21:21:58.2826755Z copying torch\autograd\_functions\utils.py -> build\lib.win-amd64-cpython-39\torch\autograd\_functions 2025-06-01T21:21:58.2837577Z copying torch\autograd\_functions\__init__.py -> build\lib.win-amd64-cpython-39\torch\autograd\_functions 2025-06-01T21:21:58.2845067Z creating build\lib.win-amd64-cpython-39\torch\backends\cpu 2025-06-01T21:21:58.2849633Z copying torch\backends\cpu\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\cpu 2025-06-01T21:21:58.2855842Z creating build\lib.win-amd64-cpython-39\torch\backends\cuda 2025-06-01T21:21:58.2857683Z copying torch\backends\cuda\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\cuda 2025-06-01T21:21:58.2874538Z creating build\lib.win-amd64-cpython-39\torch\backends\cudnn 2025-06-01T21:21:58.2878938Z copying torch\backends\cudnn\rnn.py -> build\lib.win-amd64-cpython-39\torch\backends\cudnn 2025-06-01T21:21:58.2887553Z copying torch\backends\cudnn\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\cudnn 2025-06-01T21:21:58.2898519Z creating build\lib.win-amd64-cpython-39\torch\backends\cusparselt 2025-06-01T21:21:58.2901587Z copying torch\backends\cusparselt\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\cusparselt 2025-06-01T21:21:58.2911771Z creating build\lib.win-amd64-cpython-39\torch\backends\kleidiai 2025-06-01T21:21:58.2926117Z copying torch\backends\kleidiai\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\kleidiai 2025-06-01T21:21:58.2931428Z creating build\lib.win-amd64-cpython-39\torch\backends\mha 2025-06-01T21:21:58.2934344Z copying torch\backends\mha\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\mha 2025-06-01T21:21:58.2945482Z creating build\lib.win-amd64-cpython-39\torch\backends\mkl 2025-06-01T21:21:58.2948298Z copying torch\backends\mkl\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\mkl 2025-06-01T21:21:58.2958923Z creating build\lib.win-amd64-cpython-39\torch\backends\mkldnn 2025-06-01T21:21:58.2961806Z copying torch\backends\mkldnn\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\mkldnn 2025-06-01T21:21:58.2972771Z creating build\lib.win-amd64-cpython-39\torch\backends\mps 2025-06-01T21:21:58.2975577Z copying torch\backends\mps\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\mps 2025-06-01T21:21:58.2985683Z creating build\lib.win-amd64-cpython-39\torch\backends\nnpack 2025-06-01T21:21:58.2988651Z copying torch\backends\nnpack\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\nnpack 2025-06-01T21:21:58.2999376Z creating build\lib.win-amd64-cpython-39\torch\backends\openmp 2025-06-01T21:21:58.3002253Z copying torch\backends\openmp\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\openmp 2025-06-01T21:21:58.3008923Z creating build\lib.win-amd64-cpython-39\torch\backends\opt_einsum 2025-06-01T21:21:58.3012133Z copying torch\backends\opt_einsum\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\opt_einsum 2025-06-01T21:21:58.3022745Z creating build\lib.win-amd64-cpython-39\torch\backends\quantized 2025-06-01T21:21:58.3025652Z copying torch\backends\quantized\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\quantized 2025-06-01T21:21:58.3036857Z creating build\lib.win-amd64-cpython-39\torch\backends\xeon 2025-06-01T21:21:58.3040098Z copying torch\backends\xeon\run_cpu.py -> build\lib.win-amd64-cpython-39\torch\backends\xeon 2025-06-01T21:21:58.3057785Z copying torch\backends\xeon\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\xeon 2025-06-01T21:21:58.3063549Z creating build\lib.win-amd64-cpython-39\torch\backends\xnnpack 2025-06-01T21:21:58.3066805Z copying torch\backends\xnnpack\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\xnnpack 2025-06-01T21:21:58.3077401Z creating build\lib.win-amd64-cpython-39\torch\backends\_coreml 2025-06-01T21:21:58.3080449Z copying torch\backends\_coreml\preprocess.py -> build\lib.win-amd64-cpython-39\torch\backends\_coreml 2025-06-01T21:21:58.3091687Z copying torch\backends\_coreml\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\_coreml 2025-06-01T21:21:58.3097591Z creating build\lib.win-amd64-cpython-39\torch\backends\_nnapi 2025-06-01T21:21:58.3100905Z copying torch\backends\_nnapi\prepare.py -> build\lib.win-amd64-cpython-39\torch\backends\_nnapi 2025-06-01T21:21:58.3111368Z copying torch\backends\_nnapi\serializer.py -> build\lib.win-amd64-cpython-39\torch\backends\_nnapi 2025-06-01T21:21:58.3145236Z copying torch\backends\_nnapi\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\_nnapi 2025-06-01T21:21:58.3151289Z creating build\lib.win-amd64-cpython-39\torch\cpu\amp 2025-06-01T21:21:58.3154441Z copying torch\cpu\amp\autocast_mode.py -> build\lib.win-amd64-cpython-39\torch\cpu\amp 2025-06-01T21:21:58.3165174Z copying torch\cpu\amp\grad_scaler.py -> build\lib.win-amd64-cpython-39\torch\cpu\amp 2025-06-01T21:21:58.3174736Z copying torch\cpu\amp\__init__.py -> build\lib.win-amd64-cpython-39\torch\cpu\amp 2025-06-01T21:21:58.3181952Z creating build\lib.win-amd64-cpython-39\torch\cuda\amp 2025-06-01T21:21:58.3185044Z copying torch\cuda\amp\autocast_mode.py -> build\lib.win-amd64-cpython-39\torch\cuda\amp 2025-06-01T21:21:58.3196133Z copying torch\cuda\amp\common.py -> build\lib.win-amd64-cpython-39\torch\cuda\amp 2025-06-01T21:21:58.3201745Z copying torch\cuda\amp\grad_scaler.py -> build\lib.win-amd64-cpython-39\torch\cuda\amp 2025-06-01T21:21:58.3210813Z copying torch\cuda\amp\__init__.py -> build\lib.win-amd64-cpython-39\torch\cuda\amp 2025-06-01T21:21:58.3217546Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms 2025-06-01T21:21:58.3221056Z copying torch\distributed\algorithms\join.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms 2025-06-01T21:21:58.3233235Z copying torch\distributed\algorithms\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms 2025-06-01T21:21:58.3239863Z creating build\lib.win-amd64-cpython-39\torch\distributed\autograd 2025-06-01T21:21:58.3252284Z copying torch\distributed\autograd\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\autograd 2025-06-01T21:21:58.3268174Z creating build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:21:58.3271232Z copying torch\distributed\checkpoint\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:21:58.3282426Z copying torch\distributed\checkpoint\default_planner.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:21:58.3297353Z copying torch\distributed\checkpoint\filesystem.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:21:58.3316090Z copying torch\distributed\checkpoint\format_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:21:58.3337556Z copying torch\distributed\checkpoint\logger.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:21:58.3347480Z copying torch\distributed\checkpoint\logging_handlers.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:21:58.3353201Z copying torch\distributed\checkpoint\metadata.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:21:58.3362738Z copying torch\distributed\checkpoint\optimizer.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:21:58.3372966Z copying torch\distributed\checkpoint\planner.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:21:58.3387463Z copying torch\distributed\checkpoint\planner_helpers.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:21:58.3402018Z copying torch\distributed\checkpoint\resharding.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:21:58.3411531Z copying torch\distributed\checkpoint\staging.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:21:58.3421306Z copying torch\distributed\checkpoint\stateful.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:21:58.3431716Z copying torch\distributed\checkpoint\state_dict.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:21:58.3453878Z copying torch\distributed\checkpoint\state_dict_loader.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:21:58.3463884Z copying torch\distributed\checkpoint\state_dict_saver.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:21:58.3473865Z copying torch\distributed\checkpoint\storage.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:21:58.3518003Z copying torch\distributed\checkpoint\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:21:58.3532602Z copying torch\distributed\checkpoint\_async_executor.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:21:58.3543376Z copying torch\distributed\checkpoint\_async_process_executor.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:21:58.3574029Z copying torch\distributed\checkpoint\_async_thread_executor.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:21:58.3583176Z copying torch\distributed\checkpoint\_checkpointer.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:21:58.3593602Z copying torch\distributed\checkpoint\_dedup_save_plans.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:21:58.3607852Z copying torch\distributed\checkpoint\_dedup_tensors.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:21:58.3617269Z copying torch\distributed\checkpoint\_extension.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:21:58.3627130Z copying torch\distributed\checkpoint\_fsspec_filesystem.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:21:58.3637391Z copying torch\distributed\checkpoint\_hf_planner.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:21:58.3647447Z copying torch\distributed\checkpoint\_hf_storage.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:21:58.3657850Z copying torch\distributed\checkpoint\_nested_dict.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:21:58.3667319Z copying torch\distributed\checkpoint\_sharded_tensor_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:21:58.3677240Z copying torch\distributed\checkpoint\_storage_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:21:58.3686068Z copying torch\distributed\checkpoint\_traverse.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:21:58.3706181Z copying torch\distributed\checkpoint\_version.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:21:58.3711687Z copying torch\distributed\checkpoint\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:21:58.3723802Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic 2025-06-01T21:21:58.3726703Z copying torch\distributed\elastic\control_plane.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic 2025-06-01T21:21:58.3737203Z copying torch\distributed\elastic\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic 2025-06-01T21:21:58.3752556Z creating build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-06-01T21:21:58.3755410Z copying torch\distributed\fsdp\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-06-01T21:21:58.4766632Z copying torch\distributed\fsdp\fully_sharded_data_parallel.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-06-01T21:21:58.4803679Z copying torch\distributed\fsdp\sharded_grad_scaler.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-06-01T21:21:58.4817336Z copying torch\distributed\fsdp\wrap.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-06-01T21:21:58.4834020Z copying torch\distributed\fsdp\_common_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-06-01T21:21:58.6332034Z copying torch\distributed\fsdp\_debug_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-06-01T21:21:58.6342318Z copying torch\distributed\fsdp\_dynamo_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-06-01T21:21:58.6351907Z copying torch\distributed\fsdp\_exec_order_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-06-01T21:21:58.6366389Z copying torch\distributed\fsdp\_flat_param.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-06-01T21:21:58.6408262Z copying torch\distributed\fsdp\_fsdp_extensions.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-06-01T21:21:58.6419016Z copying torch\distributed\fsdp\_init_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-06-01T21:21:58.6442595Z copying torch\distributed\fsdp\_limiter_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-06-01T21:21:58.6452810Z copying torch\distributed\fsdp\_optim_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-06-01T21:21:58.6506892Z copying torch\distributed\fsdp\_runtime_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-06-01T21:21:58.6514975Z copying torch\distributed\fsdp\_shard_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-06-01T21:21:58.6526347Z copying torch\distributed\fsdp\_state_dict_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-06-01T21:21:58.6545054Z copying torch\distributed\fsdp\_trace_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-06-01T21:21:58.6555060Z copying torch\distributed\fsdp\_traversal_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-06-01T21:21:58.6564907Z copying torch\distributed\fsdp\_unshard_param_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-06-01T21:21:58.6576577Z copying torch\distributed\fsdp\_wrap_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-06-01T21:21:58.7159855Z copying torch\distributed\fsdp\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-06-01T21:21:58.7171032Z creating build\lib.win-amd64-cpython-39\torch\distributed\launcher 2025-06-01T21:21:58.7174183Z copying torch\distributed\launcher\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\launcher 2025-06-01T21:21:58.7184778Z copying torch\distributed\launcher\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\launcher 2025-06-01T21:21:58.7191736Z creating build\lib.win-amd64-cpython-39\torch\distributed\nn 2025-06-01T21:21:58.7194747Z copying torch\distributed\nn\functional.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn 2025-06-01T21:21:58.7205868Z copying torch\distributed\nn\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn 2025-06-01T21:21:58.7214750Z creating build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-06-01T21:21:58.7217830Z copying torch\distributed\optim\apply_optimizer_in_backward.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-06-01T21:21:58.7227658Z copying torch\distributed\optim\functional_adadelta.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-06-01T21:21:58.7237693Z copying torch\distributed\optim\functional_adagrad.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-06-01T21:21:58.7258102Z copying torch\distributed\optim\functional_adam.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-06-01T21:21:58.7267723Z copying torch\distributed\optim\functional_adamax.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-06-01T21:21:58.7277696Z copying torch\distributed\optim\functional_adamw.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-06-01T21:21:58.7289636Z copying torch\distributed\optim\functional_rmsprop.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-06-01T21:21:58.7299464Z copying torch\distributed\optim\functional_rprop.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-06-01T21:21:58.7308611Z copying torch\distributed\optim\functional_sgd.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-06-01T21:21:58.7318094Z copying torch\distributed\optim\named_optimizer.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-06-01T21:21:58.7328161Z copying torch\distributed\optim\optimizer.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-06-01T21:21:58.7339407Z copying torch\distributed\optim\post_localSGD_optimizer.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-06-01T21:21:58.7349488Z copying torch\distributed\optim\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-06-01T21:21:58.7358738Z copying torch\distributed\optim\zero_redundancy_optimizer.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-06-01T21:21:58.7390178Z copying torch\distributed\optim\_deprecation_warning.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-06-01T21:21:58.7395974Z copying torch\distributed\optim\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-06-01T21:21:58.7408661Z creating build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-06-01T21:21:58.7411772Z copying torch\distributed\pipelining\microbatch.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-06-01T21:21:58.7426217Z copying torch\distributed\pipelining\schedules.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-06-01T21:21:58.7463423Z copying torch\distributed\pipelining\stage.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-06-01T21:21:58.7487141Z copying torch\distributed\pipelining\_backward.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-06-01T21:21:58.7506864Z copying torch\distributed\pipelining\_debug.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-06-01T21:21:58.7512224Z copying torch\distributed\pipelining\_IR.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-06-01T21:21:58.7534540Z copying torch\distributed\pipelining\_schedule_visualizer.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-06-01T21:21:58.7544924Z copying torch\distributed\pipelining\_unflatten.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-06-01T21:21:58.7554100Z copying torch\distributed\pipelining\_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-06-01T21:21:58.7563370Z copying torch\distributed\pipelining\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-06-01T21:21:58.7571420Z creating build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-06-01T21:21:58.7574343Z copying torch\distributed\rpc\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-06-01T21:21:58.7593667Z copying torch\distributed\rpc\backend_registry.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-06-01T21:21:58.7609278Z copying torch\distributed\rpc\constants.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-06-01T21:21:58.7618727Z copying torch\distributed\rpc\functions.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-06-01T21:21:58.7639680Z copying torch\distributed\rpc\internal.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-06-01T21:21:58.7649722Z copying torch\distributed\rpc\options.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-06-01T21:21:58.7659400Z copying torch\distributed\rpc\rref_proxy.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-06-01T21:21:58.7669260Z copying torch\distributed\rpc\server_process_global_profiler.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-06-01T21:21:58.7679111Z copying torch\distributed\rpc\_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-06-01T21:21:58.7688464Z copying torch\distributed\rpc\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-06-01T21:21:58.7701498Z creating build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-06-01T21:21:58.7704714Z copying torch\distributed\tensor\device_mesh.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-06-01T21:21:58.7729605Z copying torch\distributed\tensor\placement_types.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-06-01T21:21:58.7744918Z copying torch\distributed\tensor\_api.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-06-01T21:21:58.7768408Z copying torch\distributed\tensor\_collective_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-06-01T21:21:58.7789634Z copying torch\distributed\tensor\_dispatch.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-06-01T21:21:58.7803259Z copying torch\distributed\tensor\_dtensor_spec.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-06-01T21:21:58.7813915Z copying torch\distributed\tensor\_op_schema.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-06-01T21:21:58.8649994Z copying torch\distributed\tensor\_random.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-06-01T21:21:58.8666630Z copying torch\distributed\tensor\_redistribute.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-06-01T21:21:58.8681023Z copying torch\distributed\tensor\_sharding_prop.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-06-01T21:21:58.8694841Z copying torch\distributed\tensor\_shards_wrapper.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-06-01T21:21:58.8705146Z copying torch\distributed\tensor\_tp_conv.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-06-01T21:21:58.8715295Z copying torch\distributed\tensor\_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-06-01T21:21:58.8728678Z copying torch\distributed\tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-06-01T21:21:58.8740556Z creating build\lib.win-amd64-cpython-39\torch\distributed\_composable 2025-06-01T21:21:58.8743728Z copying torch\distributed\_composable\checkpoint_activation.py -> build\lib.win-amd64-cpython-39\torch\distributed\_composable 2025-06-01T21:21:58.8754435Z copying torch\distributed\_composable\contract.py -> build\lib.win-amd64-cpython-39\torch\distributed\_composable 2025-06-01T21:21:58.8765015Z copying torch\distributed\_composable\replicate.py -> build\lib.win-amd64-cpython-39\torch\distributed\_composable 2025-06-01T21:21:58.8775701Z copying torch\distributed\_composable\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_composable 2025-06-01T21:21:58.8792900Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-06-01T21:21:58.8795963Z copying torch\distributed\_shard\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-06-01T21:21:58.8807209Z copying torch\distributed\_shard\common_op_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-06-01T21:21:58.8818011Z copying torch\distributed\_shard\metadata.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-06-01T21:21:58.8828183Z copying torch\distributed\_shard\op_registry_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-06-01T21:21:58.8837298Z copying torch\distributed\_shard\sharder.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-06-01T21:21:58.8856867Z copying torch\distributed\_shard\_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-06-01T21:21:58.8865765Z copying torch\distributed\_shard\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-06-01T21:21:58.8873270Z creating build\lib.win-amd64-cpython-39\torch\distributed\_sharded_tensor 2025-06-01T21:21:58.8877120Z copying torch\distributed\_sharded_tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_sharded_tensor 2025-06-01T21:21:58.8883805Z creating build\lib.win-amd64-cpython-39\torch\distributed\_sharding_spec 2025-06-01T21:21:58.8886708Z copying torch\distributed\_sharding_spec\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_sharding_spec 2025-06-01T21:21:58.8893370Z creating build\lib.win-amd64-cpython-39\torch\distributed\_symmetric_memory 2025-06-01T21:21:58.8896588Z copying torch\distributed\_symmetric_memory\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_symmetric_memory 2025-06-01T21:21:58.8920295Z creating build\lib.win-amd64-cpython-39\torch\distributed\_tensor 2025-06-01T21:21:58.8923278Z copying torch\distributed\_tensor\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tensor 2025-06-01T21:21:58.8928821Z copying torch\distributed\_tensor\placement_types.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tensor 2025-06-01T21:21:58.8934066Z copying torch\distributed\_tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tensor 2025-06-01T21:21:58.8945514Z creating build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-06-01T21:21:58.8948493Z copying torch\distributed\_tools\common_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-06-01T21:21:58.8957772Z copying torch\distributed\_tools\fake_collectives.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-06-01T21:21:58.8967569Z copying torch\distributed\_tools\fsdp2_mem_tracker.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-06-01T21:21:58.8982736Z copying torch\distributed\_tools\ilp_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-06-01T21:21:58.9002040Z copying torch\distributed\_tools\memory_tracker.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-06-01T21:21:58.9013082Z copying torch\distributed\_tools\mem_tracker.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-06-01T21:21:58.9031389Z copying torch\distributed\_tools\mod_tracker.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-06-01T21:21:58.9041200Z copying torch\distributed\_tools\runtime_estimator.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-06-01T21:21:58.9055487Z copying torch\distributed\_tools\sac_estimator.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-06-01T21:21:58.9074298Z copying torch\distributed\_tools\sac_ilp.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-06-01T21:21:58.9083733Z copying torch\distributed\_tools\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-06-01T21:21:58.9091553Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-06-01T21:21:58.9094648Z copying torch\distributed\algorithms\ddp_comm_hooks\ddp_zero_hook.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-06-01T21:21:58.9109221Z copying torch\distributed\algorithms\ddp_comm_hooks\debugging_hooks.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-06-01T21:21:58.9118523Z copying torch\distributed\algorithms\ddp_comm_hooks\default_hooks.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-06-01T21:21:58.9139293Z copying torch\distributed\algorithms\ddp_comm_hooks\mixed_precision_hooks.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-06-01T21:21:58.9149551Z copying torch\distributed\algorithms\ddp_comm_hooks\optimizer_overlap_hooks.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-06-01T21:21:58.9161415Z copying torch\distributed\algorithms\ddp_comm_hooks\post_localSGD_hook.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-06-01T21:21:58.9172859Z copying torch\distributed\algorithms\ddp_comm_hooks\powerSGD_hook.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-06-01T21:21:58.9192841Z copying torch\distributed\algorithms\ddp_comm_hooks\quantization_hooks.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-06-01T21:21:58.9203008Z copying torch\distributed\algorithms\ddp_comm_hooks\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-06-01T21:21:58.9215349Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms\model_averaging 2025-06-01T21:21:58.9229156Z copying torch\distributed\algorithms\model_averaging\averagers.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\model_averaging 2025-06-01T21:21:58.9242829Z copying torch\distributed\algorithms\model_averaging\hierarchical_model_averager.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\model_averaging 2025-06-01T21:21:58.9253564Z copying torch\distributed\algorithms\model_averaging\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\model_averaging 2025-06-01T21:21:58.9274125Z copying torch\distributed\algorithms\model_averaging\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\model_averaging 2025-06-01T21:21:58.9280885Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_checkpoint 2025-06-01T21:21:58.9284016Z copying torch\distributed\algorithms\_checkpoint\checkpoint_wrapper.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_checkpoint 2025-06-01T21:21:58.9296565Z copying torch\distributed\algorithms\_checkpoint\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_checkpoint 2025-06-01T21:21:58.9303066Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_comm_hooks 2025-06-01T21:21:58.9306394Z copying torch\distributed\algorithms\_comm_hooks\default_hooks.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_comm_hooks 2025-06-01T21:21:58.9317174Z copying torch\distributed\algorithms\_comm_hooks\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_comm_hooks 2025-06-01T21:21:58.9324894Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_optimizer_overlap 2025-06-01T21:21:58.9328365Z copying torch\distributed\algorithms\_optimizer_overlap\optimizer_overlap.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_optimizer_overlap 2025-06-01T21:21:58.9340191Z copying torch\distributed\algorithms\_optimizer_overlap\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_optimizer_overlap 2025-06-01T21:21:58.9347748Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_quantization 2025-06-01T21:21:58.9351448Z copying torch\distributed\algorithms\_quantization\quantization.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_quantization 2025-06-01T21:21:58.9361910Z copying torch\distributed\algorithms\_quantization\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_quantization 2025-06-01T21:21:58.9367996Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent 2025-06-01T21:21:58.9371303Z copying torch\distributed\elastic\agent\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent 2025-06-01T21:21:58.9379392Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\events 2025-06-01T21:21:58.9383442Z copying torch\distributed\elastic\events\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\events 2025-06-01T21:21:58.9395714Z copying torch\distributed\elastic\events\handlers.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\events 2025-06-01T21:21:58.9402369Z copying torch\distributed\elastic\events\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\events 2025-06-01T21:21:58.9413969Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\metrics 2025-06-01T21:21:58.9417416Z copying torch\distributed\elastic\metrics\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\metrics 2025-06-01T21:21:58.9428202Z copying torch\distributed\elastic\metrics\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\metrics 2025-06-01T21:21:58.9439737Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing 2025-06-01T21:21:58.9453600Z copying torch\distributed\elastic\multiprocessing\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing 2025-06-01T21:21:58.9473340Z copying torch\distributed\elastic\multiprocessing\redirects.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing 2025-06-01T21:21:58.9483408Z copying torch\distributed\elastic\multiprocessing\tail_log.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing 2025-06-01T21:21:58.9493402Z copying torch\distributed\elastic\multiprocessing\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing 2025-06-01T21:21:58.9506177Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-06-01T21:21:58.9509238Z copying torch\distributed\elastic\rendezvous\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-06-01T21:21:58.9520595Z copying torch\distributed\elastic\rendezvous\c10d_rendezvous_backend.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-06-01T21:21:58.9547980Z copying torch\distributed\elastic\rendezvous\dynamic_rendezvous.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-06-01T21:21:58.9581185Z copying torch\distributed\elastic\rendezvous\etcd_rendezvous.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-06-01T21:21:58.9602225Z copying torch\distributed\elastic\rendezvous\etcd_rendezvous_backend.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-06-01T21:21:58.9611938Z copying torch\distributed\elastic\rendezvous\etcd_server.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-06-01T21:21:58.9621967Z copying torch\distributed\elastic\rendezvous\etcd_store.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-06-01T21:21:58.9631740Z copying torch\distributed\elastic\rendezvous\registry.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-06-01T21:21:58.9641053Z copying torch\distributed\elastic\rendezvous\static_tcp_rendezvous.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-06-01T21:21:58.9650514Z copying torch\distributed\elastic\rendezvous\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-06-01T21:21:58.9660056Z copying torch\distributed\elastic\rendezvous\_etcd_stub.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-06-01T21:21:58.9669544Z copying torch\distributed\elastic\rendezvous\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-06-01T21:21:58.9680124Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer 2025-06-01T21:21:58.9683086Z copying torch\distributed\elastic\timer\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer 2025-06-01T21:21:58.9694563Z copying torch\distributed\elastic\timer\debug_info_logging.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer 2025-06-01T21:21:58.9704360Z copying torch\distributed\elastic\timer\file_based_local_timer.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer 2025-06-01T21:21:58.9717919Z copying torch\distributed\elastic\timer\local_timer.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer 2025-06-01T21:21:58.9738474Z copying torch\distributed\elastic\timer\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer 2025-06-01T21:21:58.9750968Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-06-01T21:21:58.9754382Z copying torch\distributed\elastic\utils\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-06-01T21:21:58.9764477Z copying torch\distributed\elastic\utils\distributed.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-06-01T21:21:58.9773522Z copying torch\distributed\elastic\utils\logging.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-06-01T21:21:58.9782786Z copying torch\distributed\elastic\utils\log_level.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-06-01T21:21:58.9788407Z copying torch\distributed\elastic\utils\store.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-06-01T21:21:58.9808847Z copying torch\distributed\elastic\utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-06-01T21:21:58.9816250Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\server 2025-06-01T21:21:58.9819693Z copying torch\distributed\elastic\agent\server\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\server 2025-06-01T21:21:58.9840583Z copying torch\distributed\elastic\agent\server\health_check_server.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\server 2025-06-01T21:21:58.9853945Z copying torch\distributed\elastic\agent\server\local_elastic_agent.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\server 2025-06-01T21:21:58.9866213Z copying torch\distributed\elastic\agent\server\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\server 2025-06-01T21:21:58.9881749Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\errors 2025-06-01T21:21:58.9895023Z copying torch\distributed\elastic\multiprocessing\errors\error_handler.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\errors 2025-06-01T21:21:58.9906500Z copying torch\distributed\elastic\multiprocessing\errors\handlers.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\errors 2025-06-01T21:21:58.9912099Z copying torch\distributed\elastic\multiprocessing\errors\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\errors 2025-06-01T21:21:58.9924077Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\subprocess_handler 2025-06-01T21:21:58.9927593Z copying torch\distributed\elastic\multiprocessing\subprocess_handler\handlers.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\subprocess_handler 2025-06-01T21:21:58.9938104Z copying torch\distributed\elastic\multiprocessing\subprocess_handler\subprocess_handler.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\subprocess_handler 2025-06-01T21:21:58.9946687Z copying torch\distributed\elastic\multiprocessing\subprocess_handler\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\subprocess_handler 2025-06-01T21:21:58.9953554Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\data 2025-06-01T21:21:58.9956875Z copying torch\distributed\elastic\utils\data\cycling_iterator.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\data 2025-06-01T21:21:58.9967277Z copying torch\distributed\elastic\utils\data\elastic_distributed_sampler.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\data 2025-06-01T21:21:58.9976736Z copying torch\distributed\elastic\utils\data\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\data 2025-06-01T21:21:58.9984491Z creating build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-06-01T21:21:58.9987581Z copying torch\distributed\fsdp\_fully_shard\_fsdp_api.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-06-01T21:21:58.9998312Z copying torch\distributed\fsdp\_fully_shard\_fsdp_collectives.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-06-01T21:21:59.0014748Z copying torch\distributed\fsdp\_fully_shard\_fsdp_common.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-06-01T21:21:59.0036097Z copying torch\distributed\fsdp\_fully_shard\_fsdp_init.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-06-01T21:21:59.0045998Z copying torch\distributed\fsdp\_fully_shard\_fsdp_param.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-06-01T21:21:59.0064455Z copying torch\distributed\fsdp\_fully_shard\_fsdp_param_group.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-06-01T21:21:59.0083460Z copying torch\distributed\fsdp\_fully_shard\_fsdp_state.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-06-01T21:21:59.0097930Z copying torch\distributed\fsdp\_fully_shard\_fully_shard.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-06-01T21:21:59.0112079Z copying torch\distributed\fsdp\_fully_shard\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-06-01T21:21:59.0118561Z creating build\lib.win-amd64-cpython-39\torch\distributed\nn\api 2025-06-01T21:21:59.0121694Z copying torch\distributed\nn\api\remote_module.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn\api 2025-06-01T21:21:59.0137618Z copying torch\distributed\nn\api\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn\api 2025-06-01T21:21:59.0144011Z creating build\lib.win-amd64-cpython-39\torch\distributed\nn\jit 2025-06-01T21:21:59.0147543Z copying torch\distributed\nn\jit\instantiator.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn\jit 2025-06-01T21:21:59.0156780Z copying torch\distributed\nn\jit\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn\jit 2025-06-01T21:21:59.0163058Z creating build\lib.win-amd64-cpython-39\torch\distributed\nn\jit\templates 2025-06-01T21:21:59.0166269Z copying torch\distributed\nn\jit\templates\remote_module_template.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn\jit\templates 2025-06-01T21:21:59.0175383Z copying torch\distributed\nn\jit\templates\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn\jit\templates 2025-06-01T21:21:59.0181542Z creating build\lib.win-amd64-cpython-39\torch\distributed\rpc\_testing 2025-06-01T21:21:59.0184770Z copying torch\distributed\rpc\_testing\faulty_agent_backend_registry.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc\_testing 2025-06-01T21:21:59.0194988Z copying torch\distributed\rpc\_testing\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc\_testing 2025-06-01T21:21:59.0202088Z creating build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug 2025-06-01T21:21:59.0205194Z copying torch\distributed\tensor\debug\_comm_mode.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug 2025-06-01T21:21:59.0221223Z copying torch\distributed\tensor\debug\_op_coverage.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug 2025-06-01T21:21:59.0231844Z copying torch\distributed\tensor\debug\_visualize_sharding.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug 2025-06-01T21:21:59.0242433Z copying torch\distributed\tensor\debug\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug 2025-06-01T21:21:59.0263589Z creating build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental 2025-06-01T21:21:59.0266836Z copying torch\distributed\tensor\experimental\_attention.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental 2025-06-01T21:21:59.0291976Z copying torch\distributed\tensor\experimental\_func_map.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental 2025-06-01T21:21:59.0302537Z copying torch\distributed\tensor\experimental\_register_sharding.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental 2025-06-01T21:21:59.0322537Z copying torch\distributed\tensor\experimental\_tp_transform.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental 2025-06-01T21:21:59.0336690Z copying torch\distributed\tensor\experimental\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental 2025-06-01T21:21:59.0348063Z creating build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-06-01T21:21:59.0350982Z copying torch\distributed\tensor\parallel\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-06-01T21:21:59.0395330Z copying torch\distributed\tensor\parallel\ddp.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-06-01T21:21:59.0405008Z copying torch\distributed\tensor\parallel\fsdp.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-06-01T21:21:59.0415871Z copying torch\distributed\tensor\parallel\input_reshard.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-06-01T21:21:59.0425000Z copying torch\distributed\tensor\parallel\loss.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-06-01T21:21:59.0439759Z copying torch\distributed\tensor\parallel\style.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-06-01T21:21:59.0462492Z copying torch\distributed\tensor\parallel\_data_parallel_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-06-01T21:21:59.0472410Z copying torch\distributed\tensor\parallel\_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-06-01T21:21:59.0481480Z copying torch\distributed\tensor\parallel\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-06-01T21:21:59.0489606Z creating build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-06-01T21:21:59.0492563Z copying torch\distributed\tensor\_ops\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-06-01T21:21:59.0505307Z copying torch\distributed\tensor\_ops\_common_rules.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-06-01T21:21:59.0516123Z copying torch\distributed\tensor\_ops\_conv_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-06-01T21:21:59.0525631Z copying torch\distributed\tensor\_ops\_einsum_strategy.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-06-01T21:21:59.0545456Z copying torch\distributed\tensor\_ops\_embedding_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-06-01T21:21:59.0555012Z copying torch\distributed\tensor\_ops\_math_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-06-01T21:21:59.0574343Z copying torch\distributed\tensor\_ops\_matrix_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-06-01T21:21:59.0594160Z copying torch\distributed\tensor\_ops\_pointwise_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-06-01T21:21:59.0608931Z copying torch\distributed\tensor\_ops\_random_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-06-01T21:21:59.0618039Z copying torch\distributed\tensor\_ops\_tensor_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-06-01T21:21:59.0636958Z copying torch\distributed\tensor\_ops\_view_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-06-01T21:21:59.0650968Z copying torch\distributed\tensor\_ops\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-06-01T21:21:59.0657804Z creating build\lib.win-amd64-cpython-39\torch\distributed\_composable\fsdp 2025-06-01T21:21:59.0661046Z copying torch\distributed\_composable\fsdp\fully_shard.py -> build\lib.win-amd64-cpython-39\torch\distributed\_composable\fsdp 2025-06-01T21:21:59.0666395Z copying torch\distributed\_composable\fsdp\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_composable\fsdp 2025-06-01T21:21:59.0672858Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\checkpoint 2025-06-01T21:21:59.0675928Z copying torch\distributed\_shard\checkpoint\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\checkpoint 2025-06-01T21:21:59.0682503Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_optim 2025-06-01T21:21:59.0685730Z copying torch\distributed\_shard\sharded_optim\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_optim 2025-06-01T21:21:59.0696155Z copying torch\distributed\_shard\sharded_optim\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_optim 2025-06-01T21:21:59.0756982Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-06-01T21:21:59.0760085Z copying torch\distributed\_shard\sharded_tensor\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-06-01T21:21:59.0782861Z copying torch\distributed\_shard\sharded_tensor\logger.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-06-01T21:21:59.0791926Z copying torch\distributed\_shard\sharded_tensor\logging_handlers.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-06-01T21:21:59.0797818Z copying torch\distributed\_shard\sharded_tensor\metadata.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-06-01T21:21:59.0808386Z copying torch\distributed\_shard\sharded_tensor\reshard.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-06-01T21:21:59.0829328Z copying torch\distributed\_shard\sharded_tensor\shard.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-06-01T21:21:59.0839270Z copying torch\distributed\_shard\sharded_tensor\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-06-01T21:21:59.0850981Z copying torch\distributed\_shard\sharded_tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-06-01T21:21:59.0867253Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_plan 2025-06-01T21:21:59.0871083Z copying torch\distributed\_shard\sharding_plan\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_plan 2025-06-01T21:21:59.0881884Z copying torch\distributed\_shard\sharding_plan\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_plan 2025-06-01T21:21:59.0901904Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec 2025-06-01T21:21:59.0902666Z copying torch\distributed\_shard\sharding_spec\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec 2025-06-01T21:21:59.0903624Z copying torch\distributed\_shard\sharding_spec\chunk_sharding_spec.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec 2025-06-01T21:21:59.0914111Z copying torch\distributed\_shard\sharding_spec\_internals.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec 2025-06-01T21:21:59.0923251Z copying torch\distributed\_shard\sharding_spec\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec 2025-06-01T21:21:59.0940573Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-06-01T21:21:59.0943654Z copying torch\distributed\_shard\sharded_tensor\_ops\binary_cmp.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-06-01T21:21:59.0953228Z copying torch\distributed\_shard\sharded_tensor\_ops\init.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-06-01T21:21:59.0962790Z copying torch\distributed\_shard\sharded_tensor\_ops\misc_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-06-01T21:21:59.0968199Z copying torch\distributed\_shard\sharded_tensor\_ops\tensor_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-06-01T21:21:59.0979151Z copying torch\distributed\_shard\sharded_tensor\_ops\_common.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-06-01T21:21:59.0999222Z copying torch\distributed\_shard\sharded_tensor\_ops\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-06-01T21:21:59.1006058Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops 2025-06-01T21:21:59.1009289Z 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-06-01T21:21:59.1020116Z 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-06-01T21:21:59.1033695Z 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-06-01T21:21:59.1054178Z 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-06-01T21:21:59.1059710Z creating build\lib.win-amd64-cpython-39\torch\export\experimental 2025-06-01T21:21:59.1062659Z copying torch\export\experimental\__init__.py -> build\lib.win-amd64-cpython-39\torch\export\experimental 2025-06-01T21:21:59.1074090Z creating build\lib.win-amd64-cpython-39\torch\export\passes 2025-06-01T21:21:59.1076919Z copying torch\export\passes\__init__.py -> build\lib.win-amd64-cpython-39\torch\export\passes 2025-06-01T21:21:59.1088316Z creating build\lib.win-amd64-cpython-39\torch\export\pt2_archive 2025-06-01T21:21:59.1091413Z copying torch\export\pt2_archive\constants.py -> build\lib.win-amd64-cpython-39\torch\export\pt2_archive 2025-06-01T21:21:59.1100878Z copying torch\export\pt2_archive\_package.py -> build\lib.win-amd64-cpython-39\torch\export\pt2_archive 2025-06-01T21:21:59.1111007Z copying torch\export\pt2_archive\__init__.py -> build\lib.win-amd64-cpython-39\torch\export\pt2_archive 2025-06-01T21:21:59.1120692Z creating build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-06-01T21:21:59.1123851Z copying torch\fx\experimental\accelerator_partitioner.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-06-01T21:21:59.1144678Z copying torch\fx\experimental\const_fold.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-06-01T21:21:59.1154691Z copying torch\fx\experimental\debug.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-06-01T21:21:59.1174212Z copying torch\fx\experimental\graph_gradual_typechecker.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-06-01T21:21:59.1642683Z copying torch\fx\experimental\merge_matmul.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-06-01T21:21:59.1652069Z copying torch\fx\experimental\meta_tracer.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-06-01T21:21:59.1662493Z copying torch\fx\experimental\normalize.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-06-01T21:21:59.1672824Z copying torch\fx\experimental\optimization.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-06-01T21:21:59.1686551Z copying torch\fx\experimental\partitioner_utils.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-06-01T21:21:59.1696771Z copying torch\fx\experimental\proxy_tensor.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-06-01T21:21:59.1738250Z copying torch\fx\experimental\recording.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-06-01T21:21:59.1752020Z copying torch\fx\experimental\refinement_types.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-06-01T21:21:59.1757631Z copying torch\fx\experimental\rewriter.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-06-01T21:21:59.1768619Z copying torch\fx\experimental\schema_type_annotation.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-06-01T21:21:59.1778327Z copying torch\fx\experimental\symbolic_shapes.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-06-01T21:21:59.1891605Z copying torch\fx\experimental\sym_node.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-06-01T21:21:59.1919117Z copying torch\fx\experimental\unify_refinements.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-06-01T21:21:59.1929788Z copying torch\fx\experimental\validator.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-06-01T21:21:59.1948958Z copying torch\fx\experimental\_backward_state.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-06-01T21:21:59.1959988Z copying torch\fx\experimental\_config.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-06-01T21:21:59.1970023Z copying torch\fx\experimental\_constant_symnode.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-06-01T21:21:59.1989173Z copying torch\fx\experimental\_dynamism.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-06-01T21:21:59.1998820Z copying torch\fx\experimental\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-06-01T21:21:59.2007257Z creating build\lib.win-amd64-cpython-39\torch\fx\passes 2025-06-01T21:21:59.2010297Z copying torch\fx\passes\annotate_getitem_nodes.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-06-01T21:21:59.2020577Z copying torch\fx\passes\fake_tensor_prop.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-06-01T21:21:59.2031212Z copying torch\fx\passes\graph_drawer.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-06-01T21:21:59.2046986Z copying torch\fx\passes\graph_manipulation.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-06-01T21:21:59.2066070Z copying torch\fx\passes\graph_transform_observer.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-06-01T21:21:59.2075538Z copying torch\fx\passes\net_min_base.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-06-01T21:21:59.2093919Z copying torch\fx\passes\operator_support.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-06-01T21:21:59.2103477Z copying torch\fx\passes\param_fetch.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-06-01T21:21:59.2112805Z copying torch\fx\passes\pass_manager.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-06-01T21:21:59.2124350Z copying torch\fx\passes\reinplace.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-06-01T21:21:59.2142060Z copying torch\fx\passes\runtime_assert.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-06-01T21:21:59.2159492Z copying torch\fx\passes\shape_prop.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-06-01T21:21:59.2170216Z copying torch\fx\passes\splitter_base.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-06-01T21:21:59.2188292Z copying torch\fx\passes\split_module.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-06-01T21:21:59.2203331Z copying torch\fx\passes\split_utils.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-06-01T21:21:59.2226749Z copying torch\fx\passes\tools_common.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-06-01T21:21:59.2236449Z copying torch\fx\passes\_tensorify_python_scalars.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-06-01T21:21:59.2248102Z copying torch\fx\passes\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-06-01T21:21:59.2256121Z creating build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-06-01T21:21:59.2259232Z copying torch\fx\experimental\migrate_gradual_types\constraint.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-06-01T21:21:59.2276476Z copying torch\fx\experimental\migrate_gradual_types\constraint_generator.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-06-01T21:21:59.2305536Z copying torch\fx\experimental\migrate_gradual_types\constraint_transformation.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-06-01T21:21:59.2336491Z copying torch\fx\experimental\migrate_gradual_types\operation.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-06-01T21:21:59.2342339Z copying torch\fx\experimental\migrate_gradual_types\transform_to_z3.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-06-01T21:21:59.2356702Z copying torch\fx\experimental\migrate_gradual_types\util.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-06-01T21:21:59.2365951Z copying torch\fx\experimental\migrate_gradual_types\z3_types.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-06-01T21:21:59.2374893Z copying torch\fx\experimental\migrate_gradual_types\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-06-01T21:21:59.2381727Z creating build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-06-01T21:21:59.2384824Z copying torch\fx\experimental\unification\core.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-06-01T21:21:59.2395065Z copying torch\fx\experimental\unification\dispatch.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-06-01T21:21:59.2401342Z copying torch\fx\experimental\unification\match.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-06-01T21:21:59.2411304Z copying torch\fx\experimental\unification\more.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-06-01T21:21:59.2421581Z copying torch\fx\experimental\unification\unification_tools.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-06-01T21:21:59.2442050Z copying torch\fx\experimental\unification\utils.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-06-01T21:21:59.2451740Z copying torch\fx\experimental\unification\variable.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-06-01T21:21:59.2461206Z copying torch\fx\experimental\unification\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-06-01T21:21:59.2468497Z creating build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-06-01T21:21:59.2471717Z copying torch\fx\experimental\unification\multipledispatch\conflict.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-06-01T21:21:59.2481389Z copying torch\fx\experimental\unification\multipledispatch\core.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-06-01T21:21:59.2493252Z copying torch\fx\experimental\unification\multipledispatch\dispatcher.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-06-01T21:21:59.2503313Z copying torch\fx\experimental\unification\multipledispatch\utils.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-06-01T21:21:59.2517924Z copying torch\fx\experimental\unification\multipledispatch\variadic.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-06-01T21:21:59.2538276Z copying torch\fx\experimental\unification\multipledispatch\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-06-01T21:21:59.2544725Z creating build\lib.win-amd64-cpython-39\torch\fx\passes\backends 2025-06-01T21:21:59.2547804Z copying torch\fx\passes\backends\cudagraphs.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\backends 2025-06-01T21:21:59.2558935Z copying torch\fx\passes\backends\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\backends 2025-06-01T21:21:59.2564697Z creating build\lib.win-amd64-cpython-39\torch\fx\passes\dialect 2025-06-01T21:21:59.2577443Z copying torch\fx\passes\dialect\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\dialect 2025-06-01T21:21:59.2583613Z creating build\lib.win-amd64-cpython-39\torch\fx\passes\infra 2025-06-01T21:21:59.2586595Z copying torch\fx\passes\infra\partitioner.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\infra 2025-06-01T21:21:59.2601083Z copying torch\fx\passes\infra\pass_base.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\infra 2025-06-01T21:21:59.2610118Z copying torch\fx\passes\infra\pass_manager.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\infra 2025-06-01T21:21:59.2619810Z copying torch\fx\passes\infra\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\infra 2025-06-01T21:21:59.2636514Z creating build\lib.win-amd64-cpython-39\torch\fx\passes\tests 2025-06-01T21:21:59.2639621Z copying torch\fx\passes\tests\test_pass_manager.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\tests 2025-06-01T21:21:59.2649580Z copying torch\fx\passes\tests\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\tests 2025-06-01T21:21:59.2656067Z creating build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-06-01T21:21:59.2659053Z copying torch\fx\passes\utils\common.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-06-01T21:21:59.2669185Z copying torch\fx\passes\utils\fuser_utils.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-06-01T21:21:59.2679212Z copying torch\fx\passes\utils\matcher_utils.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-06-01T21:21:59.2692998Z copying torch\fx\passes\utils\matcher_with_name_node_map_utils.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-06-01T21:21:59.2712453Z copying torch\fx\passes\utils\source_matcher_utils.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-06-01T21:21:59.2722198Z copying torch\fx\passes\utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-06-01T21:21:59.2729357Z creating build\lib.win-amd64-cpython-39\torch\fx\passes\dialect\common 2025-06-01T21:21:59.2732737Z copying torch\fx\passes\dialect\common\cse_pass.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\dialect\common 2025-06-01T21:21:59.2743840Z copying torch\fx\passes\dialect\common\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\dialect\common 2025-06-01T21:21:59.2749603Z creating build\lib.win-amd64-cpython-39\torch\jit\mobile 2025-06-01T21:21:59.2752467Z copying torch\jit\mobile\__init__.py -> build\lib.win-amd64-cpython-39\torch\jit\mobile 2025-06-01T21:21:59.2764085Z creating build\lib.win-amd64-cpython-39\torch\jit\_passes 2025-06-01T21:21:59.2767327Z copying torch\jit\_passes\_property_propagation.py -> build\lib.win-amd64-cpython-39\torch\jit\_passes 2025-06-01T21:21:59.2777120Z copying torch\jit\_passes\__init__.py -> build\lib.win-amd64-cpython-39\torch\jit\_passes 2025-06-01T21:21:59.2783826Z creating build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-06-01T21:21:59.2786723Z copying torch\masked\maskedtensor\binary.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-06-01T21:21:59.2797660Z copying torch\masked\maskedtensor\core.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-06-01T21:21:59.2808448Z copying torch\masked\maskedtensor\creation.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-06-01T21:21:59.2814361Z copying torch\masked\maskedtensor\passthrough.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-06-01T21:21:59.2824963Z copying torch\masked\maskedtensor\reductions.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-06-01T21:21:59.2844383Z copying torch\masked\maskedtensor\unary.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-06-01T21:21:59.2855049Z copying torch\masked\maskedtensor\_ops_refs.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-06-01T21:21:59.2870737Z copying torch\masked\maskedtensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-06-01T21:21:59.2877587Z creating build\lib.win-amd64-cpython-39\torch\nested\_internal 2025-06-01T21:21:59.2881333Z copying torch\nested\_internal\nested_int.py -> build\lib.win-amd64-cpython-39\torch\nested\_internal 2025-06-01T21:21:59.2891337Z copying torch\nested\_internal\nested_tensor.py -> build\lib.win-amd64-cpython-39\torch\nested\_internal 2025-06-01T21:21:59.2907159Z copying torch\nested\_internal\ops.py -> build\lib.win-amd64-cpython-39\torch\nested\_internal 2025-06-01T21:21:59.2942537Z copying torch\nested\_internal\sdpa.py -> build\lib.win-amd64-cpython-39\torch\nested\_internal 2025-06-01T21:21:59.2969405Z copying torch\nested\_internal\__init__.py -> build\lib.win-amd64-cpython-39\torch\nested\_internal 2025-06-01T21:21:59.2975397Z creating build\lib.win-amd64-cpython-39\torch\nn\attention 2025-06-01T21:21:59.2978344Z copying torch\nn\attention\bias.py -> build\lib.win-amd64-cpython-39\torch\nn\attention 2025-06-01T21:21:59.2988751Z copying torch\nn\attention\flex_attention.py -> build\lib.win-amd64-cpython-39\torch\nn\attention 2025-06-01T21:21:59.3011955Z copying torch\nn\attention\_utils.py -> build\lib.win-amd64-cpython-39\torch\nn\attention 2025-06-01T21:21:59.3020823Z copying torch\nn\attention\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\attention 2025-06-01T21:21:59.3031482Z creating build\lib.win-amd64-cpython-39\torch\nn\backends 2025-06-01T21:21:59.3034606Z copying torch\nn\backends\thnn.py -> build\lib.win-amd64-cpython-39\torch\nn\backends 2025-06-01T21:21:59.3040100Z copying torch\nn\backends\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\backends 2025-06-01T21:21:59.3045621Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic 2025-06-01T21:21:59.3048445Z copying torch\nn\intrinsic\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic 2025-06-01T21:21:59.3063237Z creating build\lib.win-amd64-cpython-39\torch\nn\modules 2025-06-01T21:21:59.3066229Z copying torch\nn\modules\activation.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-06-01T21:21:59.3089030Z copying torch\nn\modules\adaptive.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-06-01T21:21:59.3099423Z copying torch\nn\modules\batchnorm.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-06-01T21:21:59.3116761Z copying torch\nn\modules\channelshuffle.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-06-01T21:21:59.3135808Z copying torch\nn\modules\container.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-06-01T21:21:59.4005768Z copying torch\nn\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-06-01T21:21:59.4033074Z copying torch\nn\modules\distance.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-06-01T21:21:59.4041661Z copying torch\nn\modules\dropout.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-06-01T21:21:59.4051619Z copying torch\nn\modules\flatten.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-06-01T21:21:59.4062318Z copying torch\nn\modules\fold.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-06-01T21:21:59.4074003Z copying torch\nn\modules\instancenorm.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-06-01T21:21:59.4090031Z copying torch\nn\modules\lazy.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-06-01T21:21:59.4100370Z copying torch\nn\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-06-01T21:21:59.4110681Z copying torch\nn\modules\loss.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-06-01T21:21:59.4145100Z copying torch\nn\modules\module.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-06-01T21:21:59.4187578Z copying torch\nn\modules\normalization.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-06-01T21:21:59.4198501Z copying torch\nn\modules\padding.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-06-01T21:21:59.4212957Z copying torch\nn\modules\pixelshuffle.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-06-01T21:21:59.4252976Z copying torch\nn\modules\pooling.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-06-01T21:21:59.4275314Z copying torch\nn\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-06-01T21:21:59.4301836Z copying torch\nn\modules\sparse.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-06-01T21:21:59.4317561Z copying torch\nn\modules\transformer.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-06-01T21:21:59.4340412Z copying torch\nn\modules\upsampling.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-06-01T21:21:59.4349673Z copying torch\nn\modules\utils.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-06-01T21:21:59.4358943Z copying torch\nn\modules\_functions.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-06-01T21:21:59.4370206Z copying torch\nn\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-06-01T21:21:59.4382991Z creating build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-06-01T21:21:59.4386382Z copying torch\nn\parallel\comm.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-06-01T21:21:59.4395885Z copying torch\nn\parallel\data_parallel.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-06-01T21:21:59.4407249Z copying torch\nn\parallel\distributed.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-06-01T21:21:59.4446498Z copying torch\nn\parallel\parallel_apply.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-06-01T21:21:59.4467712Z copying torch\nn\parallel\replicate.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-06-01T21:21:59.4478427Z copying torch\nn\parallel\scatter_gather.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-06-01T21:21:59.4487903Z copying torch\nn\parallel\_functions.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-06-01T21:21:59.4498646Z copying torch\nn\parallel\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-06-01T21:21:59.4509200Z creating build\lib.win-amd64-cpython-39\torch\nn\qat 2025-06-01T21:21:59.4512044Z copying torch\nn\qat\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\qat 2025-06-01T21:21:59.4518554Z creating build\lib.win-amd64-cpython-39\torch\nn\quantizable 2025-06-01T21:21:59.4521454Z copying torch\nn\quantizable\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantizable 2025-06-01T21:21:59.4527831Z creating build\lib.win-amd64-cpython-39\torch\nn\quantized 2025-06-01T21:21:59.4530844Z copying torch\nn\quantized\functional.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized 2025-06-01T21:21:59.4536128Z copying torch\nn\quantized\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized 2025-06-01T21:21:59.4549109Z creating build\lib.win-amd64-cpython-39\torch\nn\utils 2025-06-01T21:21:59.4552005Z copying torch\nn\utils\clip_grad.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-06-01T21:21:59.4562737Z copying torch\nn\utils\convert_parameters.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-06-01T21:21:59.4575975Z copying torch\nn\utils\fusion.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-06-01T21:21:59.4585992Z copying torch\nn\utils\init.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-06-01T21:21:59.4596765Z copying torch\nn\utils\memory_format.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-06-01T21:21:59.4616234Z copying torch\nn\utils\parametrizations.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-06-01T21:21:59.4630799Z copying torch\nn\utils\parametrize.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-06-01T21:21:59.4648661Z copying torch\nn\utils\prune.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-06-01T21:21:59.4671567Z copying torch\nn\utils\rnn.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-06-01T21:21:59.4687577Z copying torch\nn\utils\spectral_norm.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-06-01T21:21:59.4696797Z copying torch\nn\utils\stateless.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-06-01T21:21:59.4707125Z copying torch\nn\utils\weight_norm.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-06-01T21:21:59.4717241Z copying torch\nn\utils\_deprecation_utils.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-06-01T21:21:59.4728095Z copying torch\nn\utils\_named_member_accessor.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-06-01T21:21:59.4740737Z copying torch\nn\utils\_per_sample_grad.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-06-01T21:21:59.4750511Z copying torch\nn\utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-06-01T21:21:59.4760996Z creating build\lib.win-amd64-cpython-39\torch\nn\attention\experimental 2025-06-01T21:21:59.4774464Z copying torch\nn\attention\experimental\_paged_attention.py -> build\lib.win-amd64-cpython-39\torch\nn\attention\experimental 2025-06-01T21:21:59.4785004Z copying torch\nn\attention\experimental\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\attention\experimental 2025-06-01T21:21:59.4791607Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\modules 2025-06-01T21:21:59.4794548Z copying torch\nn\intrinsic\modules\fused.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\modules 2025-06-01T21:21:59.4800124Z copying torch\nn\intrinsic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\modules 2025-06-01T21:21:59.4806446Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat 2025-06-01T21:21:59.4809653Z copying torch\nn\intrinsic\qat\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat 2025-06-01T21:21:59.4816604Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized 2025-06-01T21:21:59.4853242Z copying torch\nn\intrinsic\quantized\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized 2025-06-01T21:21:59.4860443Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\modules 2025-06-01T21:21:59.4863418Z copying torch\nn\intrinsic\qat\modules\conv_fused.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\modules 2025-06-01T21:21:59.4873952Z copying torch\nn\intrinsic\qat\modules\linear_fused.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\modules 2025-06-01T21:21:59.4884312Z copying torch\nn\intrinsic\qat\modules\linear_relu.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\modules 2025-06-01T21:21:59.4890271Z copying torch\nn\intrinsic\qat\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\modules 2025-06-01T21:21:59.4901440Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\dynamic 2025-06-01T21:21:59.4904516Z copying torch\nn\intrinsic\quantized\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\dynamic 2025-06-01T21:21:59.4934587Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\modules 2025-06-01T21:21:59.4935384Z copying torch\nn\intrinsic\quantized\modules\bn_relu.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\modules 2025-06-01T21:21:59.4936312Z copying torch\nn\intrinsic\quantized\modules\conv_relu.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\modules 2025-06-01T21:21:59.4937241Z copying torch\nn\intrinsic\quantized\modules\linear_relu.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\modules 2025-06-01T21:21:59.4938358Z copying torch\nn\intrinsic\quantized\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\modules 2025-06-01T21:21:59.4940665Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\dynamic\modules 2025-06-01T21:21:59.4944125Z copying torch\nn\intrinsic\quantized\dynamic\modules\linear_relu.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\dynamic\modules 2025-06-01T21:21:59.4949748Z copying torch\nn\intrinsic\quantized\dynamic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\dynamic\modules 2025-06-01T21:21:59.4956224Z creating build\lib.win-amd64-cpython-39\torch\nn\qat\dynamic 2025-06-01T21:21:59.4959026Z copying torch\nn\qat\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\dynamic 2025-06-01T21:21:59.4966175Z creating build\lib.win-amd64-cpython-39\torch\nn\qat\modules 2025-06-01T21:21:59.4969266Z copying torch\nn\qat\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\modules 2025-06-01T21:21:59.4979616Z copying torch\nn\qat\modules\embedding_ops.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\modules 2025-06-01T21:21:59.4985165Z copying torch\nn\qat\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\modules 2025-06-01T21:21:59.4990421Z copying torch\nn\qat\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\modules 2025-06-01T21:21:59.4997279Z creating build\lib.win-amd64-cpython-39\torch\nn\qat\dynamic\modules 2025-06-01T21:21:59.5006374Z copying torch\nn\qat\dynamic\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\dynamic\modules 2025-06-01T21:21:59.5011669Z copying torch\nn\qat\dynamic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\dynamic\modules 2025-06-01T21:21:59.5018369Z creating build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules 2025-06-01T21:21:59.5021522Z copying torch\nn\quantizable\modules\activation.py -> build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules 2025-06-01T21:21:59.5027142Z copying torch\nn\quantizable\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules 2025-06-01T21:21:59.5032390Z copying torch\nn\quantizable\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules 2025-06-01T21:21:59.5039095Z creating build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic 2025-06-01T21:21:59.5041994Z copying torch\nn\quantized\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic 2025-06-01T21:21:59.5054759Z creating build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-06-01T21:21:59.5057612Z copying torch\nn\quantized\modules\activation.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-06-01T21:21:59.5063184Z copying torch\nn\quantized\modules\batchnorm.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-06-01T21:21:59.5068466Z copying torch\nn\quantized\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-06-01T21:21:59.5077743Z copying torch\nn\quantized\modules\dropout.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-06-01T21:21:59.5082973Z copying torch\nn\quantized\modules\embedding_ops.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-06-01T21:21:59.5098363Z copying torch\nn\quantized\modules\functional_modules.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-06-01T21:21:59.5103777Z copying torch\nn\quantized\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-06-01T21:21:59.5109234Z copying torch\nn\quantized\modules\normalization.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-06-01T21:21:59.5119583Z copying torch\nn\quantized\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-06-01T21:21:59.5124974Z copying torch\nn\quantized\modules\utils.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-06-01T21:21:59.5130917Z copying torch\nn\quantized\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-06-01T21:21:59.5141380Z creating build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference 2025-06-01T21:21:59.5154393Z copying torch\nn\quantized\_reference\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference 2025-06-01T21:21:59.5161211Z creating build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\modules 2025-06-01T21:21:59.5164395Z copying torch\nn\quantized\dynamic\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\modules 2025-06-01T21:21:59.5174726Z copying torch\nn\quantized\dynamic\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\modules 2025-06-01T21:21:59.5180124Z copying torch\nn\quantized\dynamic\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\modules 2025-06-01T21:21:59.5188562Z copying torch\nn\quantized\dynamic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\modules 2025-06-01T21:21:59.5204652Z creating build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-06-01T21:21:59.5207619Z copying torch\nn\quantized\_reference\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-06-01T21:21:59.5213112Z copying torch\nn\quantized\_reference\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-06-01T21:21:59.5218505Z copying torch\nn\quantized\_reference\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-06-01T21:21:59.5228566Z copying torch\nn\quantized\_reference\modules\sparse.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-06-01T21:21:59.5233885Z copying torch\nn\quantized\_reference\modules\utils.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-06-01T21:21:59.5239306Z copying torch\nn\quantized\_reference\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-06-01T21:21:59.5252072Z creating build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-06-01T21:21:59.5255200Z copying torch\nn\utils\_expanded_weights\conv_expanded_weights.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-06-01T21:21:59.5265892Z copying torch\nn\utils\_expanded_weights\conv_utils.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-06-01T21:21:59.5276412Z copying torch\nn\utils\_expanded_weights\embedding_expanded_weights.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-06-01T21:21:59.5295834Z copying torch\nn\utils\_expanded_weights\expanded_weights_impl.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-06-01T21:21:59.5305283Z copying torch\nn\utils\_expanded_weights\expanded_weights_utils.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-06-01T21:21:59.5315159Z copying torch\nn\utils\_expanded_weights\group_norm_expanded_weights.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-06-01T21:21:59.5324596Z copying torch\nn\utils\_expanded_weights\instance_norm_expanded_weights.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-06-01T21:21:59.5334310Z copying torch\nn\utils\_expanded_weights\layer_norm_expanded_weights.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-06-01T21:21:59.5343693Z copying torch\nn\utils\_expanded_weights\linear_expanded_weights.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-06-01T21:21:59.5352860Z copying torch\nn\utils\_expanded_weights\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-06-01T21:21:59.5359624Z creating build\lib.win-amd64-cpython-39\torch\onnx\ops 2025-06-01T21:21:59.5362652Z copying torch\onnx\ops\_symbolic_impl.py -> build\lib.win-amd64-cpython-39\torch\onnx\ops 2025-06-01T21:21:59.5375872Z copying torch\onnx\ops\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\ops 2025-06-01T21:21:59.5388260Z creating build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-06-01T21:21:59.5391287Z copying torch\onnx\_internal\io_adapter.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-06-01T21:21:59.5406448Z copying torch\onnx\_internal\jit_utils.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-06-01T21:21:59.5422928Z copying torch\onnx\_internal\onnxruntime.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-06-01T21:21:59.5462134Z copying torch\onnx\_internal\onnx_proto_utils.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-06-01T21:21:59.5477803Z copying torch\onnx\_internal\registration.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-06-01T21:21:59.5489038Z copying torch\onnx\_internal\_exporter_legacy.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-06-01T21:21:59.5505401Z copying torch\onnx\_internal\_lazy_import.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-06-01T21:21:59.5515883Z copying torch\onnx\_internal\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-06-01T21:21:59.5524654Z creating build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-06-01T21:21:59.5528017Z copying torch\onnx\_internal\exporter\_analysis.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-06-01T21:21:59.5538290Z copying torch\onnx\_internal\exporter\_building.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-06-01T21:21:59.5553579Z copying torch\onnx\_internal\exporter\_capture_strategies.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-06-01T21:21:59.5567562Z copying torch\onnx\_internal\exporter\_compat.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-06-01T21:21:59.5587648Z copying torch\onnx\_internal\exporter\_constants.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-06-01T21:21:59.5596518Z copying torch\onnx\_internal\exporter\_core.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-06-01T21:21:59.5626282Z copying torch\onnx\_internal\exporter\_decomp.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-06-01T21:21:59.5636555Z copying torch\onnx\_internal\exporter\_dispatching.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-06-01T21:21:59.5650255Z copying torch\onnx\_internal\exporter\_dynamic_shapes.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-06-01T21:21:59.5660281Z copying torch\onnx\_internal\exporter\_errors.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-06-01T21:21:59.5665778Z copying torch\onnx\_internal\exporter\_flags.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-06-01T21:21:59.5676191Z copying torch\onnx\_internal\exporter\_fx_passes.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-06-01T21:21:59.5685280Z copying torch\onnx\_internal\exporter\_ir_passes.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-06-01T21:21:59.5695213Z copying torch\onnx\_internal\exporter\_isolated.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-06-01T21:21:59.5710791Z copying torch\onnx\_internal\exporter\_onnx_program.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-06-01T21:21:59.5728898Z copying torch\onnx\_internal\exporter\_registration.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-06-01T21:21:59.5739521Z copying torch\onnx\_internal\exporter\_reporting.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-06-01T21:21:59.5754039Z copying torch\onnx\_internal\exporter\_schemas.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-06-01T21:21:59.5769218Z copying torch\onnx\_internal\exporter\_tensors.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-06-01T21:21:59.5778666Z copying torch\onnx\_internal\exporter\_testing.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-06-01T21:21:59.5794185Z copying torch\onnx\_internal\exporter\_type_casting.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-06-01T21:21:59.5804945Z copying torch\onnx\_internal\exporter\_verification.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-06-01T21:21:59.5856572Z copying torch\onnx\_internal\exporter\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-06-01T21:21:59.5864238Z creating build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-06-01T21:21:59.5867344Z copying torch\onnx\_internal\fx\decomposition_table.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-06-01T21:21:59.5878239Z copying torch\onnx\_internal\fx\dynamo_graph_extractor.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-06-01T21:21:59.5889575Z copying torch\onnx\_internal\fx\fx_onnx_interpreter.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-06-01T21:21:59.5918962Z copying torch\onnx\_internal\fx\onnxfunction_dispatcher.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-06-01T21:21:59.5934726Z copying torch\onnx\_internal\fx\patcher.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-06-01T21:21:59.5945145Z copying torch\onnx\_internal\fx\registration.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-06-01T21:21:59.5960292Z copying torch\onnx\_internal\fx\serialization.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-06-01T21:21:59.5969052Z copying torch\onnx\_internal\fx\type_utils.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-06-01T21:21:59.5981388Z copying torch\onnx\_internal\fx\_pass.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-06-01T21:21:59.6001904Z copying torch\onnx\_internal\fx\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-06-01T21:21:59.6002562Z creating build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib 2025-06-01T21:21:59.6015239Z copying torch\onnx\_internal\exporter\_torchlib\_tensor_typing.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib 2025-06-01T21:21:59.6030807Z copying torch\onnx\_internal\exporter\_torchlib\_torchlib_registry.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib 2025-06-01T21:21:59.6039832Z copying torch\onnx\_internal\exporter\_torchlib\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib 2025-06-01T21:21:59.6046399Z creating build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-06-01T21:21:59.6059384Z copying torch\onnx\_internal\exporter\_torchlib\ops\core.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-06-01T21:21:59.6068449Z copying torch\onnx\_internal\exporter\_torchlib\ops\hop.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-06-01T21:21:59.6077602Z copying torch\onnx\_internal\exporter\_torchlib\ops\nn.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-06-01T21:21:59.6086904Z copying torch\onnx\_internal\exporter\_torchlib\ops\symbolic.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-06-01T21:21:59.6096676Z copying torch\onnx\_internal\exporter\_torchlib\ops\symops.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-06-01T21:21:59.6110782Z copying torch\onnx\_internal\exporter\_torchlib\ops\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-06-01T21:21:59.6118194Z creating build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes 2025-06-01T21:21:59.6121331Z copying torch\onnx\_internal\fx\passes\decomp.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes 2025-06-01T21:21:59.6130755Z copying torch\onnx\_internal\fx\passes\functionalization.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes 2025-06-01T21:21:59.6140352Z copying torch\onnx\_internal\fx\passes\modularization.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes 2025-06-01T21:21:59.6159417Z copying torch\onnx\_internal\fx\passes\readability.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes 2025-06-01T21:21:59.6181894Z copying torch\onnx\_internal\fx\passes\type_promotion.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes 2025-06-01T21:21:59.6209743Z copying torch\onnx\_internal\fx\passes\virtualization.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes 2025-06-01T21:21:59.6220378Z copying torch\onnx\_internal\fx\passes\_utils.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes 2025-06-01T21:21:59.6229999Z copying torch\onnx\_internal\fx\passes\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes 2025-06-01T21:21:59.6236732Z creating build\lib.win-amd64-cpython-39\torch\optim\_multi_tensor 2025-06-01T21:21:59.6239800Z copying torch\optim\_multi_tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\optim\_multi_tensor 2025-06-01T21:21:59.6252627Z creating build\lib.win-amd64-cpython-39\torch\package\analyze 2025-06-01T21:21:59.6255839Z copying torch\package\analyze\find_first_use_of_broken_modules.py -> build\lib.win-amd64-cpython-39\torch\package\analyze 2025-06-01T21:21:59.6266006Z copying torch\package\analyze\is_from_package.py -> build\lib.win-amd64-cpython-39\torch\package\analyze 2025-06-01T21:21:59.6271661Z copying torch\package\analyze\trace_dependencies.py -> build\lib.win-amd64-cpython-39\torch\package\analyze 2025-06-01T21:21:59.6290222Z copying torch\package\analyze\__init__.py -> build\lib.win-amd64-cpython-39\torch\package\analyze 2025-06-01T21:21:59.6298572Z creating build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-06-01T21:21:59.6301740Z copying torch\quantization\fx\convert.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-06-01T21:21:59.6307362Z copying torch\quantization\fx\fuse.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-06-01T21:21:59.6312984Z copying torch\quantization\fx\fusion_patterns.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-06-01T21:21:59.6318647Z copying torch\quantization\fx\graph_module.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-06-01T21:21:59.6324316Z copying torch\quantization\fx\match_utils.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-06-01T21:21:59.6344563Z copying torch\quantization\fx\pattern_utils.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-06-01T21:21:59.6355500Z copying torch\quantization\fx\prepare.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-06-01T21:21:59.6364591Z copying torch\quantization\fx\quantization_patterns.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-06-01T21:21:59.6373829Z copying torch\quantization\fx\quantization_types.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-06-01T21:21:59.6379474Z copying torch\quantization\fx\utils.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-06-01T21:21:59.6392553Z copying torch\quantization\fx\_equalize.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-06-01T21:21:59.6401874Z copying torch\quantization\fx\__init__.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-06-01T21:21:59.6408522Z creating build\lib.win-amd64-cpython-39\torch\signal\windows 2025-06-01T21:21:59.6411579Z copying torch\signal\windows\windows.py -> build\lib.win-amd64-cpython-39\torch\signal\windows 2025-06-01T21:21:59.6427968Z copying torch\signal\windows\__init__.py -> build\lib.win-amd64-cpython-39\torch\signal\windows 2025-06-01T21:21:59.6443094Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:21:59.6456180Z copying torch\testing\_internal\autocast_test_lists.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:21:59.6476630Z copying torch\testing\_internal\autograd_function_db.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:21:59.6490648Z copying torch\testing\_internal\check_kernel_launches.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:21:59.6510357Z copying torch\testing\_internal\common_cuda.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:21:59.6521446Z copying torch\testing\_internal\common_device_type.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:21:59.6548307Z copying torch\testing\_internal\common_distributed.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:21:59.6572899Z copying torch\testing\_internal\common_dist_composable.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:21:59.6583226Z copying torch\testing\_internal\common_dtype.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:21:59.6593684Z copying torch\testing\_internal\common_fsdp.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:21:59.6620632Z copying torch\testing\_internal\common_jit.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:21:59.6631036Z copying torch\testing\_internal\common_methods_invocations.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:22:00.0163808Z copying torch\testing\_internal\common_mkldnn.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:22:00.0805666Z copying torch\testing\_internal\common_modules.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:22:00.0877623Z copying torch\testing\_internal\common_mps.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:22:00.0897910Z copying torch\testing\_internal\common_nn.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:22:00.1606743Z copying torch\testing\_internal\common_optimizers.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:22:00.1638532Z copying torch\testing\_internal\common_pruning.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:22:00.1653881Z copying torch\testing\_internal\common_quantization.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:22:00.1798568Z copying torch\testing\_internal\common_quantized.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:22:00.1812549Z copying torch\testing\_internal\common_subclass.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:22:00.1823392Z copying torch\testing\_internal\common_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:22:00.2636606Z copying torch\testing\_internal\composite_compliance.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:22:00.2650406Z copying torch\testing\_internal\custom_op_db.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:22:00.2664201Z copying torch\testing\_internal\custom_tensor.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:22:00.2673450Z copying torch\testing\_internal\dist_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:22:00.2683426Z copying torch\testing\_internal\dynamo_test_failures.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:22:00.3266438Z copying torch\testing\_internal\fake_config_module.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:22:00.3275444Z copying torch\testing\_internal\fake_config_module2.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:22:00.3281208Z copying torch\testing\_internal\fake_config_module3.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:22:00.3305932Z copying torch\testing\_internal\hop_db.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:22:00.3317613Z copying torch\testing\_internal\hypothesis_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:22:00.3328037Z copying torch\testing\_internal\inductor_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:22:00.3343408Z copying torch\testing\_internal\jit_metaprogramming_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:22:00.3482761Z copying torch\testing\_internal\jit_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:22:00.3501587Z copying torch\testing\_internal\logging_tensor.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:22:00.3511780Z copying torch\testing\_internal\logging_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:22:00.3522596Z copying torch\testing\_internal\quantization_torch_package_models.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:22:00.3532916Z copying torch\testing\_internal\static_module.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:22:00.3546649Z copying torch\testing\_internal\subclasses.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:22:00.3566308Z copying torch\testing\_internal\torchbind_impls.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:22:00.3576912Z copying torch\testing\_internal\triton_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:22:00.3591608Z copying torch\testing\_internal\two_tensor.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:22:00.3602057Z copying torch\testing\_internal\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:22:00.3608294Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\codegen 2025-06-01T21:22:00.3611370Z copying torch\testing\_internal\codegen\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\codegen 2025-06-01T21:22:00.3618322Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\data 2025-06-01T21:22:00.3621747Z copying torch\testing\_internal\data\network1.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\data 2025-06-01T21:22:00.3627184Z copying torch\testing\_internal\data\network2.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\data 2025-06-01T21:22:00.3632529Z copying torch\testing\_internal\data\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\data 2025-06-01T21:22:00.3640282Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-06-01T21:22:00.3643492Z copying torch\testing\_internal\distributed\checkpoint_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-06-01T21:22:00.3658244Z copying torch\testing\_internal\distributed\common_state_dict.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-06-01T21:22:00.3668288Z copying torch\testing\_internal\distributed\ddp_under_dist_autograd_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-06-01T21:22:00.3693400Z copying torch\testing\_internal\distributed\distributed_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-06-01T21:22:00.4369066Z copying torch\testing\_internal\distributed\distributed_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-06-01T21:22:00.4380223Z copying torch\testing\_internal\distributed\fake_pg.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-06-01T21:22:00.4395227Z copying torch\testing\_internal\distributed\multi_threaded_pg.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-06-01T21:22:00.4412659Z copying torch\testing\_internal\distributed\rpc_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-06-01T21:22:00.4426631Z copying torch\testing\_internal\distributed\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-06-01T21:22:00.4434533Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\generated 2025-06-01T21:22:00.4439402Z copying torch\testing\_internal\generated\annotated_fn_args.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\generated 2025-06-01T21:22:00.5504922Z copying torch\testing\_internal\generated\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\generated 2025-06-01T21:22:00.5510906Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo 2025-06-01T21:22:00.5513921Z copying torch\testing\_internal\opinfo\core.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo 2025-06-01T21:22:00.5555595Z copying torch\testing\_internal\opinfo\refs.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo 2025-06-01T21:22:00.5565988Z copying torch\testing\_internal\opinfo\utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo 2025-06-01T21:22:00.5580840Z copying torch\testing\_internal\opinfo\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo 2025-06-01T21:22:00.5588208Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-06-01T21:22:00.5591544Z copying torch\testing\_internal\optests\aot_autograd.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-06-01T21:22:00.5601880Z copying torch\testing\_internal\optests\autograd_registration.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-06-01T21:22:00.5978605Z copying torch\testing\_internal\optests\fake_tensor.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-06-01T21:22:00.5985991Z copying torch\testing\_internal\optests\generate_tests.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-06-01T21:22:00.6017827Z copying torch\testing\_internal\optests\make_fx.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-06-01T21:22:00.6026871Z copying torch\testing\_internal\optests\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-06-01T21:22:00.6033690Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\test_module 2025-06-01T21:22:00.6037090Z copying torch\testing\_internal\test_module\future_div.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\test_module 2025-06-01T21:22:00.6042797Z copying torch\testing\_internal\test_module\no_future_div.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\test_module 2025-06-01T21:22:00.6048170Z copying torch\testing\_internal\test_module\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\test_module 2025-06-01T21:22:00.6054055Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\nn 2025-06-01T21:22:00.6057075Z copying torch\testing\_internal\distributed\nn\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\nn 2025-06-01T21:22:00.6064136Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-06-01T21:22:00.6067262Z copying torch\testing\_internal\distributed\rpc\dist_autograd_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-06-01T21:22:00.6112049Z copying torch\testing\_internal\distributed\rpc\dist_optimizer_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-06-01T21:22:00.6128092Z copying torch\testing\_internal\distributed\rpc\faulty_agent_rpc_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-06-01T21:22:00.6149544Z copying torch\testing\_internal\distributed\rpc\faulty_rpc_agent_test_fixture.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-06-01T21:22:00.6159138Z copying torch\testing\_internal\distributed\rpc\rpc_agent_test_fixture.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-06-01T21:22:00.6168831Z copying torch\testing\_internal\distributed\rpc\rpc_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-06-01T21:22:00.6241112Z copying torch\testing\_internal\distributed\rpc\tensorpipe_rpc_agent_test_fixture.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-06-01T21:22:00.6254910Z copying torch\testing\_internal\distributed\rpc\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-06-01T21:22:00.6261330Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard 2025-06-01T21:22:00.6264540Z copying torch\testing\_internal\distributed\_shard\test_common.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard 2025-06-01T21:22:00.6274116Z copying torch\testing\_internal\distributed\_shard\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard 2025-06-01T21:22:00.6280767Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_tensor 2025-06-01T21:22:00.6284085Z copying torch\testing\_internal\distributed\_tensor\common_dtensor.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_tensor 2025-06-01T21:22:00.6298537Z copying torch\testing\_internal\distributed\_tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_tensor 2025-06-01T21:22:00.6305019Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\nn\api 2025-06-01T21:22:00.6342461Z copying torch\testing\_internal\distributed\nn\api\remote_module_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\nn\api 2025-06-01T21:22:00.6357034Z copying torch\testing\_internal\distributed\nn\api\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\nn\api 2025-06-01T21:22:00.6363464Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\examples 2025-06-01T21:22:00.6366782Z copying torch\testing\_internal\distributed\rpc\examples\parameter_server_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\examples 2025-06-01T21:22:00.6377484Z 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-06-01T21:22:00.6391219Z copying torch\testing\_internal\distributed\rpc\examples\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\examples 2025-06-01T21:22:00.6397757Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\jit 2025-06-01T21:22:00.6401054Z copying torch\testing\_internal\distributed\rpc\jit\dist_autograd_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\jit 2025-06-01T21:22:00.6411803Z copying torch\testing\_internal\distributed\rpc\jit\rpc_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\jit 2025-06-01T21:22:00.6429630Z copying torch\testing\_internal\distributed\rpc\jit\rpc_test_faulty.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\jit 2025-06-01T21:22:00.6440088Z copying torch\testing\_internal\distributed\rpc\jit\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\jit 2025-06-01T21:22:00.6446430Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard\sharded_tensor 2025-06-01T21:22:00.6449929Z 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-06-01T21:22:00.6460263Z 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-06-01T21:22:00.6469814Z copying torch\testing\_internal\distributed\_shard\sharded_tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard\sharded_tensor 2025-06-01T21:22:00.6482015Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-06-01T21:22:00.6519740Z copying torch\testing\_internal\opinfo\definitions\fft.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-06-01T21:22:00.6520743Z copying torch\testing\_internal\opinfo\definitions\linalg.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-06-01T21:22:00.6538591Z copying torch\testing\_internal\opinfo\definitions\nested.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-06-01T21:22:00.6561749Z copying torch\testing\_internal\opinfo\definitions\signal.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-06-01T21:22:00.6572659Z copying torch\testing\_internal\opinfo\definitions\sparse.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-06-01T21:22:00.6590038Z copying torch\testing\_internal\opinfo\definitions\special.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-06-01T21:22:00.6609555Z copying torch\testing\_internal\opinfo\definitions\_masked.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-06-01T21:22:00.6628804Z copying torch\testing\_internal\opinfo\definitions\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-06-01T21:22:00.6635842Z creating build\lib.win-amd64-cpython-39\torch\utils\backcompat 2025-06-01T21:22:00.6638367Z copying torch\utils\backcompat\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\backcompat 2025-06-01T21:22:00.6645007Z creating build\lib.win-amd64-cpython-39\torch\utils\benchmark 2025-06-01T21:22:00.6647894Z copying torch\utils\benchmark\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark 2025-06-01T21:22:00.6654573Z creating build\lib.win-amd64-cpython-39\torch\utils\bottleneck 2025-06-01T21:22:00.6657645Z copying torch\utils\bottleneck\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\bottleneck 2025-06-01T21:22:00.6662382Z copying torch\utils\bottleneck\__main__.py -> build\lib.win-amd64-cpython-39\torch\utils\bottleneck 2025-06-01T21:22:00.6678114Z creating build\lib.win-amd64-cpython-39\torch\utils\data 2025-06-01T21:22:00.6681204Z copying torch\utils\data\backward_compatibility.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-06-01T21:22:00.6686732Z copying torch\utils\data\dataloader.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-06-01T21:22:00.6715769Z copying torch\utils\data\dataset.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-06-01T21:22:00.6730190Z copying torch\utils\data\distributed.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-06-01T21:22:00.6749409Z copying torch\utils\data\graph.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-06-01T21:22:00.6763139Z copying torch\utils\data\graph_settings.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-06-01T21:22:00.6773104Z copying torch\utils\data\sampler.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-06-01T21:22:00.6782903Z copying torch\utils\data\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-06-01T21:22:00.6794113Z creating build\lib.win-amd64-cpython-39\torch\utils\hipify 2025-06-01T21:22:00.6797099Z copying torch\utils\hipify\constants.py -> build\lib.win-amd64-cpython-39\torch\utils\hipify 2025-06-01T21:22:00.6807752Z copying torch\utils\hipify\cuda_to_hip_mappings.py -> build\lib.win-amd64-cpython-39\torch\utils\hipify 2025-06-01T21:22:00.6926066Z copying torch\utils\hipify\hipify_python.py -> build\lib.win-amd64-cpython-39\torch\utils\hipify 2025-06-01T21:22:00.6945977Z copying torch\utils\hipify\version.py -> build\lib.win-amd64-cpython-39\torch\utils\hipify 2025-06-01T21:22:00.6961853Z copying torch\utils\hipify\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\hipify 2025-06-01T21:22:00.6968634Z creating build\lib.win-amd64-cpython-39\torch\utils\jit 2025-06-01T21:22:00.6971763Z copying torch\utils\jit\log_extract.py -> build\lib.win-amd64-cpython-39\torch\utils\jit 2025-06-01T21:22:00.6984150Z copying torch\utils\jit\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\jit 2025-06-01T21:22:00.6987415Z creating build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-06-01T21:22:00.6993197Z copying torch\utils\model_dump\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-06-01T21:22:00.7015036Z copying torch\utils\model_dump\__main__.py -> build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-06-01T21:22:00.7020989Z creating build\lib.win-amd64-cpython-39\torch\utils\serialization 2025-06-01T21:22:00.7023069Z copying torch\utils\serialization\config.py -> build\lib.win-amd64-cpython-39\torch\utils\serialization 2025-06-01T21:22:00.7028643Z copying torch\utils\serialization\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\serialization 2025-06-01T21:22:00.7036374Z creating build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-06-01T21:22:00.7039573Z copying torch\utils\tensorboard\summary.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-06-01T21:22:00.7060064Z copying torch\utils\tensorboard\writer.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-06-01T21:22:00.7084759Z copying torch\utils\tensorboard\_convert_np.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-06-01T21:22:00.7095093Z copying torch\utils\tensorboard\_embedding.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-06-01T21:22:00.7119548Z copying torch\utils\tensorboard\_onnx_graph.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-06-01T21:22:00.7129512Z copying torch\utils\tensorboard\_proto_graph.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-06-01T21:22:00.7139317Z copying torch\utils\tensorboard\_pytorch_graph.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-06-01T21:22:00.7149931Z copying torch\utils\tensorboard\_utils.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-06-01T21:22:00.7159304Z copying torch\utils\tensorboard\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-06-01T21:22:00.7170254Z creating build\lib.win-amd64-cpython-39\torch\utils\viz 2025-06-01T21:22:00.7173196Z copying torch\utils\viz\_cycles.py -> build\lib.win-amd64-cpython-39\torch\utils\viz 2025-06-01T21:22:00.7188390Z copying torch\utils\viz\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\viz 2025-06-01T21:22:00.7194739Z creating build\lib.win-amd64-cpython-39\torch\utils\_strobelight 2025-06-01T21:22:00.7198177Z copying torch\utils\_strobelight\cli_function_profiler.py -> build\lib.win-amd64-cpython-39\torch\utils\_strobelight 2025-06-01T21:22:00.7209548Z copying torch\utils\_strobelight\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\_strobelight 2025-06-01T21:22:00.7216346Z creating build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-06-01T21:22:00.7219391Z copying torch\utils\_sympy\functions.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-06-01T21:22:00.7245327Z copying torch\utils\_sympy\interp.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-06-01T21:22:00.7256748Z copying torch\utils\_sympy\numbers.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-06-01T21:22:00.7266683Z copying torch\utils\_sympy\printers.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-06-01T21:22:00.7281309Z copying torch\utils\_sympy\reference.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-06-01T21:22:00.7301802Z copying torch\utils\_sympy\singleton_int.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-06-01T21:22:00.7315704Z copying torch\utils\_sympy\solve.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-06-01T21:22:00.7325107Z copying torch\utils\_sympy\symbol.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-06-01T21:22:00.7334982Z copying torch\utils\_sympy\value_ranges.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-06-01T21:22:00.7353156Z copying torch\utils\_sympy\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-06-01T21:22:00.7359572Z creating build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-06-01T21:22:00.7362840Z copying torch\utils\benchmark\examples\compare.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-06-01T21:22:00.7373838Z copying torch\utils\benchmark\examples\fuzzer.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-06-01T21:22:00.7407257Z copying torch\utils\benchmark\examples\op_benchmark.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-06-01T21:22:00.7408114Z copying torch\utils\benchmark\examples\simple_timeit.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-06-01T21:22:00.7410227Z copying torch\utils\benchmark\examples\spectral_ops_fuzz_test.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-06-01T21:22:00.7434970Z copying torch\utils\benchmark\examples\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-06-01T21:22:00.7440994Z creating build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-06-01T21:22:00.7443871Z copying torch\utils\benchmark\op_fuzzers\binary.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-06-01T21:22:00.7454997Z copying torch\utils\benchmark\op_fuzzers\sparse_binary.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-06-01T21:22:00.7465885Z copying torch\utils\benchmark\op_fuzzers\sparse_unary.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-06-01T21:22:00.7484096Z copying torch\utils\benchmark\op_fuzzers\spectral.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-06-01T21:22:00.7504506Z copying torch\utils\benchmark\op_fuzzers\unary.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-06-01T21:22:00.7513718Z copying torch\utils\benchmark\op_fuzzers\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-06-01T21:22:00.7520990Z creating build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-06-01T21:22:00.7523965Z copying torch\utils\benchmark\utils\common.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-06-01T21:22:00.7537773Z copying torch\utils\benchmark\utils\compare.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-06-01T21:22:00.7547775Z copying torch\utils\benchmark\utils\compile.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-06-01T21:22:00.7564154Z copying torch\utils\benchmark\utils\cpp_jit.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-06-01T21:22:00.7575282Z copying torch\utils\benchmark\utils\fuzzer.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-06-01T21:22:00.7589281Z copying torch\utils\benchmark\utils\sparse_fuzzer.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-06-01T21:22:00.7608830Z copying torch\utils\benchmark\utils\timer.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-06-01T21:22:00.7622658Z copying torch\utils\benchmark\utils\_stubs.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-06-01T21:22:00.7631885Z copying torch\utils\benchmark\utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-06-01T21:22:00.7637874Z creating build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-06-01T21:22:00.7641156Z copying torch\utils\benchmark\utils\valgrind_wrapper\timer_interface.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-06-01T21:22:00.7661635Z copying torch\utils\benchmark\utils\valgrind_wrapper\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-06-01T21:22:00.7667898Z creating build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-06-01T21:22:00.7670966Z copying torch\utils\data\datapipes\datapipe.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-06-01T21:22:00.7686206Z copying torch\utils\data\datapipes\gen_pyi.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-06-01T21:22:00.7700929Z copying torch\utils\data\datapipes\_decorator.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-06-01T21:22:00.7711742Z copying torch\utils\data\datapipes\_hook_iterator.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-06-01T21:22:00.7731359Z copying torch\utils\data\datapipes\_typing.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-06-01T21:22:00.7744896Z copying torch\utils\data\datapipes\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-06-01T21:22:00.7752003Z creating build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-06-01T21:22:00.7754953Z copying torch\utils\data\_utils\collate.py -> build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-06-01T21:22:00.7766273Z copying torch\utils\data\_utils\fetch.py -> build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-06-01T21:22:00.7775796Z copying torch\utils\data\_utils\pin_memory.py -> build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-06-01T21:22:00.7785658Z copying torch\utils\data\_utils\signal_handling.py -> build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-06-01T21:22:00.7797144Z copying torch\utils\data\_utils\worker.py -> build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-06-01T21:22:00.7816691Z copying torch\utils\data\_utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-06-01T21:22:00.7832416Z creating build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe 2025-06-01T21:22:00.7835533Z copying torch\utils\data\datapipes\dataframe\dataframes.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe 2025-06-01T21:22:00.7846885Z copying torch\utils\data\datapipes\dataframe\dataframe_wrapper.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe 2025-06-01T21:22:00.7857698Z copying torch\utils\data\datapipes\dataframe\datapipes.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe 2025-06-01T21:22:00.7884235Z copying torch\utils\data\datapipes\dataframe\structures.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe 2025-06-01T21:22:00.7895419Z copying torch\utils\data\datapipes\dataframe\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe 2025-06-01T21:22:00.7908786Z creating build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-06-01T21:22:00.7912016Z copying torch\utils\data\datapipes\iter\callable.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-06-01T21:22:00.7923528Z copying torch\utils\data\datapipes\iter\combinatorics.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-06-01T21:22:00.7935009Z copying torch\utils\data\datapipes\iter\combining.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-06-01T21:22:00.7953203Z copying torch\utils\data\datapipes\iter\filelister.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-06-01T21:22:00.7975383Z copying torch\utils\data\datapipes\iter\fileopener.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-06-01T21:22:00.7991241Z copying torch\utils\data\datapipes\iter\grouping.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-06-01T21:22:00.8003618Z copying torch\utils\data\datapipes\iter\routeddecoder.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-06-01T21:22:00.8013071Z copying torch\utils\data\datapipes\iter\selecting.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-06-01T21:22:00.8022125Z copying torch\utils\data\datapipes\iter\sharding.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-06-01T21:22:00.8031246Z copying torch\utils\data\datapipes\iter\streamreader.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-06-01T21:22:00.8041006Z copying torch\utils\data\datapipes\iter\utils.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-06-01T21:22:00.8055952Z copying torch\utils\data\datapipes\iter\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-06-01T21:22:00.8068180Z creating build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-06-01T21:22:00.8071483Z copying torch\utils\data\datapipes\map\callable.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-06-01T21:22:00.8083325Z copying torch\utils\data\datapipes\map\combinatorics.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-06-01T21:22:00.8098365Z copying torch\utils\data\datapipes\map\combining.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-06-01T21:22:00.8108178Z copying torch\utils\data\datapipes\map\grouping.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-06-01T21:22:00.8117617Z copying torch\utils\data\datapipes\map\utils.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-06-01T21:22:00.8136667Z copying torch\utils\data\datapipes\map\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-06-01T21:22:00.8144331Z creating build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\utils 2025-06-01T21:22:00.8147254Z copying torch\utils\data\datapipes\utils\common.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\utils 2025-06-01T21:22:00.8158662Z copying torch\utils\data\datapipes\utils\decoder.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\utils 2025-06-01T21:22:00.8167992Z copying torch\utils\data\datapipes\utils\snapshot.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\utils 2025-06-01T21:22:00.8177178Z copying torch\utils\data\datapipes\utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\utils 2025-06-01T21:22:00.8184982Z creating build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-06-01T21:22:00.8188114Z copying torch\_dynamo\backends\common.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-06-01T21:22:00.8204614Z copying torch\_dynamo\backends\cudagraphs.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-06-01T21:22:00.8213782Z copying torch\_dynamo\backends\debugging.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-06-01T21:22:00.8224795Z copying torch\_dynamo\backends\distributed.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-06-01T21:22:00.8252489Z copying torch\_dynamo\backends\inductor.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-06-01T21:22:00.8261840Z copying torch\_dynamo\backends\onnxrt.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-06-01T21:22:00.8271815Z copying torch\_dynamo\backends\registry.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-06-01T21:22:00.8281421Z copying torch\_dynamo\backends\tensorrt.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-06-01T21:22:00.8287069Z copying torch\_dynamo\backends\torchxla.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-06-01T21:22:00.8301613Z copying torch\_dynamo\backends\tvm.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-06-01T21:22:00.8310089Z copying torch\_dynamo\backends\__init__.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-06-01T21:22:00.8317198Z creating build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-06-01T21:22:00.8320410Z copying torch\_dynamo\polyfills\builtins.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-06-01T21:22:00.8330609Z copying torch\_dynamo\polyfills\functools.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-06-01T21:22:00.8344200Z copying torch\_dynamo\polyfills\fx.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-06-01T21:22:00.8353442Z copying torch\_dynamo\polyfills\itertools.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-06-01T21:22:00.8374373Z copying torch\_dynamo\polyfills\loader.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-06-01T21:22:00.8383917Z copying torch\_dynamo\polyfills\operator.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-06-01T21:22:00.8393721Z copying torch\_dynamo\polyfills\os.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-06-01T21:22:00.8404750Z copying torch\_dynamo\polyfills\pytree.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-06-01T21:22:00.8416116Z copying torch\_dynamo\polyfills\sys.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-06-01T21:22:00.8421829Z copying torch\_dynamo\polyfills\tensor.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-06-01T21:22:00.8430895Z copying torch\_dynamo\polyfills\__init__.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-06-01T21:22:00.8442713Z creating build\lib.win-amd64-cpython-39\torch\_dynamo\repro 2025-06-01T21:22:00.8446015Z copying torch\_dynamo\repro\after_aot.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\repro 2025-06-01T21:22:00.8464829Z copying torch\_dynamo\repro\after_dynamo.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\repro 2025-06-01T21:22:00.8479489Z copying torch\_dynamo\repro\aoti.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\repro 2025-06-01T21:22:00.8493485Z copying torch\_dynamo\repro\__init__.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\repro 2025-06-01T21:22:00.8540217Z creating build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-06-01T21:22:00.8540822Z copying torch\_dynamo\variables\base.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-06-01T21:22:00.8541504Z copying torch\_dynamo\variables\builder.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-06-01T21:22:00.9275299Z copying torch\_dynamo\variables\builtin.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-06-01T21:22:00.9309475Z copying torch\_dynamo\variables\constant.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-06-01T21:22:00.9321424Z copying torch\_dynamo\variables\ctx_manager.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-06-01T21:22:00.9356578Z copying torch\_dynamo\variables\dicts.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-06-01T21:22:00.9379293Z copying torch\_dynamo\variables\distributed.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-06-01T21:22:00.9399942Z copying torch\_dynamo\variables\functions.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-06-01T21:22:00.9434155Z copying torch\_dynamo\variables\higher_order_ops.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-06-01T21:22:00.9480082Z copying torch\_dynamo\variables\iter.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-06-01T21:22:00.9498648Z copying torch\_dynamo\variables\lazy.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-06-01T21:22:00.9519935Z copying torch\_dynamo\variables\lists.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-06-01T21:22:00.9534055Z copying torch\_dynamo\variables\misc.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-06-01T21:22:00.9564089Z copying torch\_dynamo\variables\nn_module.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-06-01T21:22:00.9585450Z copying torch\_dynamo\variables\optimizer.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-06-01T21:22:00.9599680Z copying torch\_dynamo\variables\script_object.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-06-01T21:22:00.9613061Z copying torch\_dynamo\variables\sdpa.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-06-01T21:22:00.9622326Z copying torch\_dynamo\variables\tensor.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-06-01T21:22:00.9646189Z copying torch\_dynamo\variables\torch.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-06-01T21:22:00.9676062Z copying torch\_dynamo\variables\torch_function.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-06-01T21:22:00.9692038Z copying torch\_dynamo\variables\user_defined.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-06-01T21:22:00.9718421Z copying torch\_dynamo\variables\__init__.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-06-01T21:22:00.9730424Z creating build\lib.win-amd64-cpython-39\torch\_export\db 2025-06-01T21:22:00.9733487Z copying torch\_export\db\case.py -> build\lib.win-amd64-cpython-39\torch\_export\db 2025-06-01T21:22:00.9744270Z copying torch\_export\db\gen_example.py -> build\lib.win-amd64-cpython-39\torch\_export\db 2025-06-01T21:22:00.9749714Z copying torch\_export\db\logging.py -> build\lib.win-amd64-cpython-39\torch\_export\db 2025-06-01T21:22:00.9759359Z copying torch\_export\db\__init__.py -> build\lib.win-amd64-cpython-39\torch\_export\db 2025-06-01T21:22:00.9768184Z creating build\lib.win-amd64-cpython-39\torch\_export\passes 2025-06-01T21:22:00.9771214Z copying torch\_export\passes\add_runtime_assertions_for_constraints_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-06-01T21:22:00.9784287Z copying torch\_export\passes\collect_tracepoints_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-06-01T21:22:00.9795515Z copying torch\_export\passes\constant_folding.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-06-01T21:22:00.9815907Z copying torch\_export\passes\functionalize_side_effectful_ops_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-06-01T21:22:00.9824987Z copying torch\_export\passes\insert_custom_op_guards.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-06-01T21:22:00.9836515Z copying torch\_export\passes\lift_constants_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-06-01T21:22:00.9852887Z copying torch\_export\passes\remove_runtime_assertions.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-06-01T21:22:00.9861337Z copying torch\_export\passes\replace_autocast_with_hop_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-06-01T21:22:00.9873550Z copying torch\_export\passes\replace_quantized_ops_with_standard_ops_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-06-01T21:22:00.9892878Z copying torch\_export\passes\replace_set_grad_with_hop_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-06-01T21:22:00.9904278Z copying torch\_export\passes\replace_view_ops_with_view_copy_ops_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-06-01T21:22:00.9913034Z copying torch\_export\passes\replace_with_hop_pass_util.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-06-01T21:22:00.9922823Z copying torch\_export\passes\_node_metadata_hook.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-06-01T21:22:01.0063591Z copying torch\_export\passes\__init__.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-06-01T21:22:01.0064208Z creating build\lib.win-amd64-cpython-39\torch\_export\pass_infra 2025-06-01T21:22:01.0064812Z copying torch\_export\pass_infra\node_metadata.py -> build\lib.win-amd64-cpython-39\torch\_export\pass_infra 2025-06-01T21:22:01.0072594Z copying torch\_export\pass_infra\proxy_value.py -> build\lib.win-amd64-cpython-39\torch\_export\pass_infra 2025-06-01T21:22:01.0082247Z copying torch\_export\pass_infra\__init__.py -> build\lib.win-amd64-cpython-39\torch\_export\pass_infra 2025-06-01T21:22:01.0089222Z creating build\lib.win-amd64-cpython-39\torch\_export\serde 2025-06-01T21:22:01.0092230Z copying torch\_export\serde\aoti_schema.py -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-06-01T21:22:01.0098496Z copying torch\_export\serde\dynamic_shapes.py -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-06-01T21:22:01.0109178Z copying torch\_export\serde\schema.py -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-06-01T21:22:01.0120983Z copying torch\_export\serde\schema_check.py -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-06-01T21:22:01.0151563Z copying torch\_export\serde\serialize.py -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-06-01T21:22:01.0206957Z copying torch\_export\serde\union.py -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-06-01T21:22:01.0217253Z copying torch\_export\serde\__init__.py -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-06-01T21:22:01.0228964Z creating build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:22:01.0232070Z copying torch\_export\db\examples\assume_constant_result.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:22:01.0237635Z copying torch\_export\db\examples\autograd_function.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:22:01.0248281Z copying torch\_export\db\examples\class_method.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:22:01.0264269Z copying torch\_export\db\examples\cond_branch_class_method.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:22:01.0273638Z copying torch\_export\db\examples\cond_branch_nested_function.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:22:01.0283989Z copying torch\_export\db\examples\cond_branch_nonlocal_variables.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:22:01.0293551Z copying torch\_export\db\examples\cond_closed_over_variable.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:22:01.0303823Z copying torch\_export\db\examples\cond_operands.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:22:01.0313158Z copying torch\_export\db\examples\cond_predicate.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:22:01.0322430Z copying torch\_export\db\examples\constrain_as_size_example.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:22:01.0331668Z copying torch\_export\db\examples\constrain_as_value_example.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:22:01.0341328Z copying torch\_export\db\examples\decorator.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:22:01.0347003Z copying torch\_export\db\examples\dictionary.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:22:01.0357447Z copying torch\_export\db\examples\dynamic_shape_assert.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:22:01.0363347Z copying torch\_export\db\examples\dynamic_shape_constructor.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:22:01.0368983Z copying torch\_export\db\examples\dynamic_shape_if_guard.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:22:01.0378482Z copying torch\_export\db\examples\dynamic_shape_map.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:22:01.0419565Z copying torch\_export\db\examples\dynamic_shape_round.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:22:01.0431012Z copying torch\_export\db\examples\dynamic_shape_slicing.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:22:01.0442267Z copying torch\_export\db\examples\dynamic_shape_view.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:22:01.0448008Z copying torch\_export\db\examples\fn_with_kwargs.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:22:01.0456798Z copying torch\_export\db\examples\list_contains.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:22:01.0462888Z copying torch\_export\db\examples\list_unpack.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:22:01.0468772Z copying torch\_export\db\examples\model_attr_mutation.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:22:01.0478536Z copying torch\_export\db\examples\nested_function.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:22:01.0484786Z copying torch\_export\db\examples\null_context_manager.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:22:01.0528720Z copying torch\_export\db\examples\optional_input.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:22:01.0529491Z copying torch\_export\db\examples\pytree_flatten.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:22:01.0530247Z copying torch\_export\db\examples\scalar_output.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:22:01.0531027Z copying torch\_export\db\examples\specialized_attribute.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:22:01.0532279Z copying torch\_export\db\examples\static_for_loop.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:22:01.0541986Z copying torch\_export\db\examples\static_if.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:22:01.0547771Z copying torch\_export\db\examples\tensor_setattr.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:22:01.0553699Z copying torch\_export\db\examples\type_reflection_method.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:22:01.0564581Z copying torch\_export\db\examples\unsupported_operator.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:22:01.0580609Z copying torch\_export\db\examples\user_input_mutation.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:22:01.0586168Z copying torch\_export\db\examples\__init__.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:22:01.0597197Z creating build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing 2025-06-01T21:22:01.0600440Z copying torch\_functorch\_activation_checkpointing\ac_logging_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing 2025-06-01T21:22:01.0610908Z copying torch\_functorch\_activation_checkpointing\graph_info_provider.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing 2025-06-01T21:22:01.0622481Z copying torch\_functorch\_activation_checkpointing\knapsack.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing 2025-06-01T21:22:01.0644875Z copying torch\_functorch\_activation_checkpointing\knapsack_evaluator.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing 2025-06-01T21:22:01.0654411Z copying torch\_functorch\_activation_checkpointing\__init__.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing 2025-06-01T21:22:01.0667563Z creating build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-06-01T21:22:01.0670708Z copying torch\_functorch\_aot_autograd\autograd_cache.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-06-01T21:22:01.0694453Z copying torch\_functorch\_aot_autograd\collect_metadata_analysis.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-06-01T21:22:01.0716282Z copying torch\_functorch\_aot_autograd\dispatch_and_compile_graph.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-06-01T21:22:01.0741719Z copying torch\_functorch\_aot_autograd\functional_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-06-01T21:22:01.0758150Z copying torch\_functorch\_aot_autograd\input_output_analysis.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-06-01T21:22:01.0772334Z copying torch\_functorch\_aot_autograd\jit_compile_runtime_wrappers.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-06-01T21:22:01.0799806Z copying torch\_functorch\_aot_autograd\logging_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-06-01T21:22:01.0809208Z copying torch\_functorch\_aot_autograd\runtime_wrappers.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-06-01T21:22:01.0849813Z copying torch\_functorch\_aot_autograd\schemas.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-06-01T21:22:01.0869915Z copying torch\_functorch\_aot_autograd\subclass_parametrization.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-06-01T21:22:01.0879251Z copying torch\_functorch\_aot_autograd\subclass_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-06-01T21:22:01.0899113Z copying torch\_functorch\_aot_autograd\traced_function_transforms.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-06-01T21:22:01.0920837Z copying torch\_functorch\_aot_autograd\utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-06-01T21:22:01.0934420Z copying torch\_functorch\_aot_autograd\__init__.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-06-01T21:22:01.0941868Z creating build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic 2025-06-01T21:22:01.0945723Z copying torch\_inductor\autoheuristic\autoheuristic.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic 2025-06-01T21:22:01.0956912Z copying torch\_inductor\autoheuristic\autoheuristic_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic 2025-06-01T21:22:01.0968035Z copying torch\_inductor\autoheuristic\learnedheuristic_interface.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic 2025-06-01T21:22:01.1012179Z copying torch\_inductor\autoheuristic\learned_heuristic_controller.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic 2025-06-01T21:22:01.1022855Z copying torch\_inductor\autoheuristic\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic 2025-06-01T21:22:01.1033716Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:22:01.1036813Z copying torch\_inductor\codegen\aoti_hipify_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:22:01.1051193Z copying torch\_inductor\codegen\block_analysis.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:22:01.1062236Z copying torch\_inductor\codegen\common.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:22:01.1093450Z copying torch\_inductor\codegen\cpp.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:22:01.1165086Z copying torch\_inductor\codegen\cpp_bmm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:22:01.1185923Z copying torch\_inductor\codegen\cpp_flex_attention_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:22:01.1208968Z copying torch\_inductor\codegen\cpp_gemm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:22:01.1999942Z copying torch\_inductor\codegen\cpp_grouped_gemm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:22:01.2015017Z copying torch\_inductor\codegen\cpp_micro_gemm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:22:01.2042294Z copying torch\_inductor\codegen\cpp_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:22:01.2052227Z copying torch\_inductor\codegen\cpp_template_kernel.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:22:01.2067757Z copying torch\_inductor\codegen\cpp_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:22:01.2086719Z copying torch\_inductor\codegen\cpp_wrapper_cpu.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:22:01.2123189Z copying torch\_inductor\codegen\cpp_wrapper_cpu_array_ref.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:22:01.2142371Z copying torch\_inductor\codegen\cpp_wrapper_gpu.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:22:01.2156242Z copying torch\_inductor\codegen\cpp_wrapper_mps.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:22:01.2165983Z copying torch\_inductor\codegen\cpu_device_op_overrides.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:22:01.2175034Z copying torch\_inductor\codegen\cuda_combined_scheduling.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:22:01.2963377Z copying torch\_inductor\codegen\debug_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:22:01.2983959Z copying torch\_inductor\codegen\halide.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:22:01.3010856Z copying torch\_inductor\codegen\memory_planning.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:22:01.3031048Z copying torch\_inductor\codegen\mps.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:22:01.3051884Z copying torch\_inductor\codegen\mps_device_op_overrides.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:22:01.3062771Z copying torch\_inductor\codegen\multi_kernel.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:22:01.3074967Z copying torch\_inductor\codegen\simd.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:22:01.3109028Z copying torch\_inductor\codegen\simd_kernel_features.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:22:01.3124206Z copying torch\_inductor\codegen\subgraph.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:22:01.3139787Z copying torch\_inductor\codegen\triton.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:22:01.3203230Z copying torch\_inductor\codegen\triton_combo_kernel.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:22:01.3223510Z copying torch\_inductor\codegen\triton_split_scan.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:22:01.3233585Z copying torch\_inductor\codegen\triton_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:22:01.3254040Z copying torch\_inductor\codegen\wrapper.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:22:01.3299373Z copying torch\_inductor\codegen\wrapper_fxir.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:22:01.3314500Z copying torch\_inductor\codegen\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:22:01.3321450Z creating build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker 2025-06-01T21:22:01.3324758Z copying torch\_inductor\compile_worker\subproc_pool.py -> build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker 2025-06-01T21:22:01.3336149Z copying torch\_inductor\compile_worker\utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker 2025-06-01T21:22:01.3345428Z copying torch\_inductor\compile_worker\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker 2025-06-01T21:22:01.3350429Z copying torch\_inductor\compile_worker\__main__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker 2025-06-01T21:22:01.3364177Z creating build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-06-01T21:22:01.3367315Z copying torch\_inductor\fx_passes\b2b_gemm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-06-01T21:22:01.3382623Z copying torch\_inductor\fx_passes\binary_folding.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-06-01T21:22:01.3397091Z copying torch\_inductor\fx_passes\ddp_fusion.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-06-01T21:22:01.3417568Z copying torch\_inductor\fx_passes\decompose_mem_bound_mm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-06-01T21:22:01.3437503Z copying torch\_inductor\fx_passes\dedupe_symint_uses.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-06-01T21:22:01.3447329Z copying torch\_inductor\fx_passes\efficient_conv_bn_eval.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-06-01T21:22:01.3458302Z copying torch\_inductor\fx_passes\freezing_patterns.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-06-01T21:22:01.3467900Z copying torch\_inductor\fx_passes\fuse_attention.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-06-01T21:22:01.3483958Z copying torch\_inductor\fx_passes\group_batch_fusion.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-06-01T21:22:01.3512090Z copying torch\_inductor\fx_passes\joint_graph.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-06-01T21:22:01.3532844Z copying torch\_inductor\fx_passes\micro_pipeline_tp.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-06-01T21:22:01.3551249Z copying torch\_inductor\fx_passes\misc_patterns.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-06-01T21:22:01.3560965Z copying torch\_inductor\fx_passes\mkldnn_fusion.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-06-01T21:22:01.4199618Z copying torch\_inductor\fx_passes\numeric_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-06-01T21:22:01.4496041Z copying torch\_inductor\fx_passes\pad_mm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-06-01T21:22:01.4510148Z copying torch\_inductor\fx_passes\post_grad.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-06-01T21:22:01.4535237Z copying torch\_inductor\fx_passes\pre_grad.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-06-01T21:22:01.4551932Z copying torch\_inductor\fx_passes\quantization.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-06-01T21:22:01.4597777Z copying torch\_inductor\fx_passes\reinplace.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-06-01T21:22:01.4614329Z copying torch\_inductor\fx_passes\replace_random.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-06-01T21:22:01.4632794Z copying torch\_inductor\fx_passes\split_cat.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-06-01T21:22:01.4678231Z copying torch\_inductor\fx_passes\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-06-01T21:22:01.4685263Z creating build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-06-01T21:22:01.4688209Z copying torch\_inductor\kernel\bmm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-06-01T21:22:01.4699852Z copying torch\_inductor\kernel\conv.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-06-01T21:22:01.4713939Z copying torch\_inductor\kernel\flex_attention.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-06-01T21:22:01.4757089Z copying torch\_inductor\kernel\flex_decoding.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-06-01T21:22:01.4773322Z copying torch\_inductor\kernel\mm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-06-01T21:22:01.4807585Z copying torch\_inductor\kernel\mm_common.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-06-01T21:22:01.4817608Z copying torch\_inductor\kernel\mm_plus_mm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-06-01T21:22:01.4827542Z copying torch\_inductor\kernel\mm_scaled_grouped.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-06-01T21:22:01.4837580Z copying torch\_inductor\kernel\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-06-01T21:22:01.4844620Z creating build\lib.win-amd64-cpython-39\torch\_inductor\package 2025-06-01T21:22:01.4847969Z copying torch\_inductor\package\build_package.py -> build\lib.win-amd64-cpython-39\torch\_inductor\package 2025-06-01T21:22:01.4853579Z copying torch\_inductor\package\package.py -> build\lib.win-amd64-cpython-39\torch\_inductor\package 2025-06-01T21:22:01.4865723Z copying torch\_inductor\package\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\package 2025-06-01T21:22:01.4874120Z creating build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-06-01T21:22:01.4877219Z copying torch\_inductor\runtime\autotune_cache.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-06-01T21:22:01.4899052Z copying torch\_inductor\runtime\benchmarking.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-06-01T21:22:01.4908071Z copying torch\_inductor\runtime\cache_dir_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-06-01T21:22:01.4917963Z copying torch\_inductor\runtime\compile_tasks.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-06-01T21:22:01.4941941Z copying torch\_inductor\runtime\coordinate_descent_tuner.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-06-01T21:22:01.4952013Z copying torch\_inductor\runtime\halide_helpers.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-06-01T21:22:01.4962821Z copying torch\_inductor\runtime\hints.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-06-01T21:22:01.4971551Z copying torch\_inductor\runtime\runtime_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-06-01T21:22:01.4982953Z copying torch\_inductor\runtime\static_cuda_launcher.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-06-01T21:22:01.4992813Z copying torch\_inductor\runtime\triton_compat.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-06-01T21:22:01.5002214Z copying torch\_inductor\runtime\triton_helpers.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-06-01T21:22:01.5016288Z copying torch\_inductor\runtime\triton_heuristics.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-06-01T21:22:01.5053158Z copying torch\_inductor\runtime\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-06-01T21:22:01.5059205Z creating build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-06-01T21:22:01.5062511Z copying torch\_inductor\autoheuristic\artifacts\_MixedMMA100.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-06-01T21:22:01.5076344Z copying torch\_inductor\autoheuristic\artifacts\_MixedMMH100.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-06-01T21:22:01.5086370Z copying torch\_inductor\autoheuristic\artifacts\_MMRankingA100.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-06-01T21:22:01.5117407Z copying torch\_inductor\autoheuristic\artifacts\_MMRankingH100.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-06-01T21:22:01.5130566Z copying torch\_inductor\autoheuristic\artifacts\_PadMMA100.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-06-01T21:22:01.5139868Z copying torch\_inductor\autoheuristic\artifacts\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-06-01T21:22:01.5147024Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-06-01T21:22:01.5150202Z copying torch\_inductor\codegen\cuda\cuda_cpp_scheduling.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-06-01T21:22:01.5161027Z copying torch\_inductor\codegen\cuda\cuda_env.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-06-01T21:22:01.5170236Z copying torch\_inductor\codegen\cuda\cuda_kernel.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-06-01T21:22:01.5185223Z copying torch\_inductor\codegen\cuda\cuda_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-06-01T21:22:01.5204818Z copying torch\_inductor\codegen\cuda\cutlass_cache.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-06-01T21:22:01.5214356Z copying torch\_inductor\codegen\cuda\cutlass_presets.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-06-01T21:22:01.5229494Z copying torch\_inductor\codegen\cuda\cutlass_python_evt.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-06-01T21:22:01.5239816Z copying torch\_inductor\codegen\cuda\cutlass_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-06-01T21:22:01.5255012Z copying torch\_inductor\codegen\cuda\device_op_overrides.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-06-01T21:22:01.5265953Z copying torch\_inductor\codegen\cuda\gemm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-06-01T21:22:01.5294285Z copying torch\_inductor\codegen\cuda\serialization.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-06-01T21:22:01.5312216Z copying torch\_inductor\codegen\cuda\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-06-01T21:22:01.5320297Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-06-01T21:22:01.5323124Z copying torch\_inductor\codegen\rocm\ck_conv_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-06-01T21:22:01.5340225Z copying torch\_inductor\codegen\rocm\ck_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-06-01T21:22:01.5350750Z copying torch\_inductor\codegen\rocm\ck_tile_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-06-01T21:22:01.5360558Z copying torch\_inductor\codegen\rocm\ck_tile_universal_gemm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-06-01T21:22:01.5391350Z copying torch\_inductor\codegen\rocm\ck_universal_gemm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-06-01T21:22:01.5420225Z copying torch\_inductor\codegen\rocm\compile_command.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-06-01T21:22:01.5430966Z copying torch\_inductor\codegen\rocm\rocm_benchmark_request.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-06-01T21:22:01.5441605Z copying torch\_inductor\codegen\rocm\rocm_cpp_scheduling.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-06-01T21:22:01.5458082Z copying torch\_inductor\codegen\rocm\rocm_kernel.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-06-01T21:22:01.5472832Z copying torch\_inductor\codegen\rocm\rocm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-06-01T21:22:01.5484081Z copying torch\_inductor\codegen\rocm\rocm_template_buffer.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-06-01T21:22:01.5494452Z copying torch\_inductor\codegen\rocm\rocm_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-06-01T21:22:01.5500250Z copying torch\_inductor\codegen\rocm\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-06-01T21:22:01.5506452Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen\xpu 2025-06-01T21:22:01.5509863Z copying torch\_inductor\codegen\xpu\device_op_overrides.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\xpu 2025-06-01T21:22:01.5520469Z copying torch\_inductor\codegen\xpu\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\xpu 2025-06-01T21:22:01.5531407Z creating build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-06-01T21:22:01.5534810Z copying torch\_inductor\fx_passes\serialized_patterns\addmm_pattern.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-06-01T21:22:01.5546264Z copying torch\_inductor\fx_passes\serialized_patterns\bmm_pattern.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-06-01T21:22:01.5555853Z copying torch\_inductor\fx_passes\serialized_patterns\mm_pattern.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-06-01T21:22:01.5575311Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_1.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-06-01T21:22:01.5590897Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_10.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-06-01T21:22:01.5602368Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_11.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-06-01T21:22:01.5614497Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_12.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-06-01T21:22:01.5626249Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_13.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-06-01T21:22:01.5638237Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_14.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-06-01T21:22:01.5649816Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_15.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-06-01T21:22:01.5676182Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_16.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-06-01T21:22:01.5855983Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_17.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-06-01T21:22:01.5870687Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_18.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-06-01T21:22:01.5889919Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_19.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-06-01T21:22:01.5901261Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_2.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-06-01T21:22:01.5915999Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_20.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-06-01T21:22:01.5929840Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_3.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-06-01T21:22:01.5940718Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_4.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-06-01T21:22:01.5952466Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_5.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-06-01T21:22:01.5972725Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_6.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-06-01T21:22:01.5984389Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_7.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-06-01T21:22:01.5995586Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_8.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-06-01T21:22:01.6006375Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_9.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-06-01T21:22:01.6019072Z copying torch\_inductor\fx_passes\serialized_patterns\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-06-01T21:22:01.6025050Z creating build\lib.win-amd64-cpython-39\torch\_numpy\testing 2025-06-01T21:22:01.6028286Z copying torch\_numpy\testing\utils.py -> build\lib.win-amd64-cpython-39\torch\_numpy\testing 2025-06-01T21:22:01.6062485Z copying torch\_numpy\testing\__init__.py -> build\lib.win-amd64-cpython-39\torch\_numpy\testing 2025-06-01T21:22:01.6069664Z creating build\lib.win-amd64-cpython-39\torch\_refs\linalg 2025-06-01T21:22:01.6073017Z copying torch\_refs\linalg\__init__.py -> build\lib.win-amd64-cpython-39\torch\_refs\linalg 2025-06-01T21:22:01.6084793Z creating build\lib.win-amd64-cpython-39\torch\_refs\nn 2025-06-01T21:22:01.6087641Z copying torch\_refs\nn\__init__.py -> build\lib.win-amd64-cpython-39\torch\_refs\nn 2025-06-01T21:22:01.6098524Z creating build\lib.win-amd64-cpython-39\torch\_refs\special 2025-06-01T21:22:01.6111657Z copying torch\_refs\special\__init__.py -> build\lib.win-amd64-cpython-39\torch\_refs\special 2025-06-01T21:22:01.6123492Z creating build\lib.win-amd64-cpython-39\torch\_refs\nn\functional 2025-06-01T21:22:01.6126413Z copying torch\_refs\nn\functional\__init__.py -> build\lib.win-amd64-cpython-39\torch\_refs\nn\functional 2025-06-01T21:22:01.6147360Z creating build\lib.win-amd64-cpython-39\torch\_vendor\packaging 2025-06-01T21:22:01.6150625Z copying torch\_vendor\packaging\version.py -> build\lib.win-amd64-cpython-39\torch\_vendor\packaging 2025-06-01T21:22:01.6166963Z copying torch\_vendor\packaging\_structures.py -> build\lib.win-amd64-cpython-39\torch\_vendor\packaging 2025-06-01T21:22:01.6176944Z copying torch\_vendor\packaging\__init__.py -> build\lib.win-amd64-cpython-39\torch\_vendor\packaging 2025-06-01T21:22:01.6183794Z creating build\lib.win-amd64-cpython-39\torchgen\aoti 2025-06-01T21:22:01.6186901Z copying torchgen\aoti\fallback_ops.py -> build\lib.win-amd64-cpython-39\torchgen\aoti 2025-06-01T21:22:01.6196960Z copying torchgen\aoti\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\aoti 2025-06-01T21:22:01.6204062Z creating build\lib.win-amd64-cpython-39\torchgen\api 2025-06-01T21:22:01.6206931Z copying torchgen\api\autograd.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-06-01T21:22:01.6226676Z copying torchgen\api\cpp.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-06-01T21:22:01.6239239Z copying torchgen\api\dispatcher.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-06-01T21:22:01.6248891Z copying torchgen\api\functionalization.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-06-01T21:22:01.6258248Z copying torchgen\api\lazy.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-06-01T21:22:01.6281541Z copying torchgen\api\meta.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-06-01T21:22:01.6286828Z copying torchgen\api\native.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-06-01T21:22:01.6296366Z copying torchgen\api\python.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-06-01T21:22:01.6318935Z copying torchgen\api\structured.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-06-01T21:22:01.6328273Z copying torchgen\api\translate.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-06-01T21:22:01.6343685Z copying torchgen\api\ufunc.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-06-01T21:22:01.6352979Z copying torchgen\api\unboxing.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-06-01T21:22:01.6363356Z copying torchgen\api\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-06-01T21:22:01.6369509Z creating build\lib.win-amd64-cpython-39\torchgen\dest 2025-06-01T21:22:01.6372589Z copying torchgen\dest\lazy_ir.py -> build\lib.win-amd64-cpython-39\torchgen\dest 2025-06-01T21:22:01.6388196Z copying torchgen\dest\lazy_ts_lowering.py -> build\lib.win-amd64-cpython-39\torchgen\dest 2025-06-01T21:22:01.6397248Z copying torchgen\dest\native_functions.py -> build\lib.win-amd64-cpython-39\torchgen\dest 2025-06-01T21:22:01.6406987Z copying torchgen\dest\register_dispatch_key.py -> build\lib.win-amd64-cpython-39\torchgen\dest 2025-06-01T21:22:01.6435787Z copying torchgen\dest\ufunc.py -> build\lib.win-amd64-cpython-39\torchgen\dest 2025-06-01T21:22:01.6450681Z copying torchgen\dest\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\dest 2025-06-01T21:22:01.6464537Z creating build\lib.win-amd64-cpython-39\torchgen\executorch 2025-06-01T21:22:01.6467423Z copying torchgen\executorch\model.py -> build\lib.win-amd64-cpython-39\torchgen\executorch 2025-06-01T21:22:01.6477898Z copying torchgen\executorch\parse.py -> build\lib.win-amd64-cpython-39\torchgen\executorch 2025-06-01T21:22:01.6487180Z copying torchgen\executorch\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\executorch 2025-06-01T21:22:01.6493334Z creating build\lib.win-amd64-cpython-39\torchgen\operator_versions 2025-06-01T21:22:01.6496566Z copying torchgen\operator_versions\gen_mobile_upgraders.py -> build\lib.win-amd64-cpython-39\torchgen\operator_versions 2025-06-01T21:22:01.6508190Z copying torchgen\operator_versions\gen_mobile_upgraders_constant.py -> build\lib.win-amd64-cpython-39\torchgen\operator_versions 2025-06-01T21:22:01.6514025Z copying torchgen\operator_versions\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\operator_versions 2025-06-01T21:22:01.6529837Z creating build\lib.win-amd64-cpython-39\torchgen\selective_build 2025-06-01T21:22:01.6532835Z copying torchgen\selective_build\operator.py -> build\lib.win-amd64-cpython-39\torchgen\selective_build 2025-06-01T21:22:01.6543674Z copying torchgen\selective_build\selector.py -> build\lib.win-amd64-cpython-39\torchgen\selective_build 2025-06-01T21:22:01.6553532Z copying torchgen\selective_build\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\selective_build 2025-06-01T21:22:01.6559794Z creating build\lib.win-amd64-cpython-39\torchgen\static_runtime 2025-06-01T21:22:01.6573024Z copying torchgen\static_runtime\config.py -> build\lib.win-amd64-cpython-39\torchgen\static_runtime 2025-06-01T21:22:01.6584096Z copying torchgen\static_runtime\generator.py -> build\lib.win-amd64-cpython-39\torchgen\static_runtime 2025-06-01T21:22:01.6600091Z copying torchgen\static_runtime\gen_static_runtime_ops.py -> build\lib.win-amd64-cpython-39\torchgen\static_runtime 2025-06-01T21:22:01.6619385Z copying torchgen\static_runtime\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\static_runtime 2025-06-01T21:22:01.6659105Z creating build\lib.win-amd64-cpython-39\torchgen\api\types 2025-06-01T21:22:01.6662266Z copying torchgen\api\types\signatures.py -> build\lib.win-amd64-cpython-39\torchgen\api\types 2025-06-01T21:22:01.6673836Z copying torchgen\api\types\types.py -> build\lib.win-amd64-cpython-39\torchgen\api\types 2025-06-01T21:22:01.6683074Z copying torchgen\api\types\types_base.py -> build\lib.win-amd64-cpython-39\torchgen\api\types 2025-06-01T21:22:01.6696209Z copying torchgen\api\types\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\api\types 2025-06-01T21:22:01.6702939Z creating build\lib.win-amd64-cpython-39\torchgen\executorch\api 2025-06-01T21:22:01.6705912Z copying torchgen\executorch\api\custom_ops.py -> build\lib.win-amd64-cpython-39\torchgen\executorch\api 2025-06-01T21:22:01.6716204Z copying torchgen\executorch\api\et_cpp.py -> build\lib.win-amd64-cpython-39\torchgen\executorch\api 2025-06-01T21:22:01.6725858Z copying torchgen\executorch\api\unboxing.py -> build\lib.win-amd64-cpython-39\torchgen\executorch\api 2025-06-01T21:22:01.6735751Z copying torchgen\executorch\api\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\executorch\api 2025-06-01T21:22:01.6741575Z creating build\lib.win-amd64-cpython-39\torchgen\executorch\api\types 2025-06-01T21:22:01.6744514Z copying torchgen\executorch\api\types\signatures.py -> build\lib.win-amd64-cpython-39\torchgen\executorch\api\types 2025-06-01T21:22:01.6753909Z copying torchgen\executorch\api\types\types.py -> build\lib.win-amd64-cpython-39\torchgen\executorch\api\types 2025-06-01T21:22:01.6763230Z copying torchgen\executorch\api\types\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\executorch\api\types 2025-06-01T21:22:02.5350664Z copying torch\return_types.pyi -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:22:02.5383372Z copying torch\_VF.pyi -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:22:02.6453763Z copying torch\py.typed -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:22:02.6458513Z creating build\lib.win-amd64-cpython-39\torch\bin 2025-06-01T21:22:02.6461108Z copying torch\bin\asmjit.dll -> build\lib.win-amd64-cpython-39\torch\bin 2025-06-01T21:22:02.6470799Z copying torch\bin\fbgemm.dll -> build\lib.win-amd64-cpython-39\torch\bin 2025-06-01T21:22:02.6524122Z copying torch\bin\FileStoreTest.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-06-01T21:22:02.6533958Z copying torch\bin\protoc.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-06-01T21:22:02.6565808Z copying torch\bin\TCPStoreTest.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-06-01T21:22:02.6585615Z copying torch\bin\test_api.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-06-01T21:22:02.6667487Z copying torch\bin\test_edge_op_registration.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-06-01T21:22:02.6677327Z copying torch\bin\test_jit.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-06-01T21:22:02.6729095Z copying torch\bin\test_lazy.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-06-01T21:22:02.6754750Z copying torch\bin\test_nativert.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-06-01T21:22:02.6765937Z copying torch\bin\test_tensorexpr.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-06-01T21:22:02.6818447Z copying torch\bin\tutorial_tensorexpr.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-06-01T21:22:02.6825916Z creating build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.6828707Z copying torch\test\apply_utils_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.6838522Z copying torch\test\atest.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.6848789Z copying torch\test\backend_fallback_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.6858835Z copying torch\test\basic.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.6880373Z copying torch\test\broadcast_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.6890481Z copying torch\test\c10_accumulate_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.6901244Z copying torch\test\c10_ArrayRef_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.6910541Z copying torch\test\c10_bfloat16_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.6920397Z copying torch\test\c10_Bitset_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.6930609Z copying torch\test\c10_bit_cast_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.6940638Z copying torch\test\c10_CompileTimeFunctionPointer_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.6950916Z copying torch\test\c10_complex_math_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.6962029Z copying torch\test\c10_complex_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.6972481Z copying torch\test\c10_ConstexprCrc_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.6982172Z copying torch\test\c10_cow_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.6992189Z copying torch\test\c10_DeadlockDetection_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7001957Z copying torch\test\c10_DeviceGuard_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7011570Z copying torch\test\c10_Device_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7031142Z copying torch\test\c10_DispatchKeySet_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7041413Z copying torch\test\c10_Enumerate_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7051266Z copying torch\test\c10_error_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7060696Z copying torch\test\c10_exception_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7070064Z copying torch\test\c10_flags_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7086405Z copying torch\test\c10_generic_math_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7089336Z copying torch\test\c10_Half_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7098588Z copying torch\test\c10_InlineDeviceGuard_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7108310Z copying torch\test\c10_InlineStreamGuard_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7127796Z copying torch\test\c10_IntrusiveList_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7137656Z copying torch\test\c10_intrusive_ptr_benchmark.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7146729Z copying torch\test\c10_intrusive_ptr_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7162284Z copying torch\test\c10_irange_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7171493Z copying torch\test\c10_lazy_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7181048Z copying torch\test\c10_LeftRight_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7190416Z copying torch\test\c10_logging_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7200274Z copying torch\test\c10_Metaprogramming_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7220549Z copying torch\test\c10_NetworkFlow_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7231061Z copying torch\test\c10_optional_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7242131Z copying torch\test\c10_ordered_preserving_dict_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7252220Z copying torch\test\c10_registry_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7261755Z copying torch\test\c10_Scalar_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7271457Z copying torch\test\c10_Semaphore_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7281024Z copying torch\test\c10_SizesAndStrides_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7290636Z copying torch\test\c10_small_vector_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7306271Z copying torch\test\c10_ssize_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7325553Z copying torch\test\c10_StreamGuard_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7335175Z copying torch\test\c10_string_util_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7350345Z copying torch\test\c10_string_view_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7359527Z copying torch\test\c10_SymInt_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7369798Z copying torch\test\c10_Synchronized_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7379918Z copying torch\test\c10_tempfile_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7389388Z copying torch\test\c10_ThreadLocal_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7399680Z copying torch\test\c10_typeid_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7419095Z copying torch\test\c10_TypeIndex_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7428740Z copying torch\test\c10_TypeList_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7438017Z copying torch\test\c10_TypeTraits_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7447287Z copying torch\test\CppSignature_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7457103Z copying torch\test\cpu_allocator_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7466883Z copying torch\test\cpu_generator_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7477626Z copying torch\test\cpu_profiling_allocator_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7487890Z copying torch\test\cpu_rng_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7500223Z copying torch\test\Dict_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7531088Z copying torch\test\Dimname_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7540869Z copying torch\test\dlconvertor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7550649Z copying torch\test\extension_backend_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7561010Z copying torch\test\half_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7570960Z copying torch\test\IListRef_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7581825Z copying torch\test\inline_container_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7592313Z copying torch\test\ivalue_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7604103Z copying torch\test\KernelFunction_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7615417Z copying torch\test\kernel_function_legacy_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7640990Z copying torch\test\kernel_function_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7654673Z copying torch\test\kernel_lambda_legacy_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7668518Z copying torch\test\kernel_lambda_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7681014Z copying torch\test\kernel_stackbased_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7691450Z copying torch\test\lazy_tensor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7701049Z copying torch\test\legacy_vmap_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7712198Z copying torch\test\List_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7724615Z copying torch\test\make_boxed_from_unboxed_functor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7737035Z copying torch\test\math_kernel_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7746890Z copying torch\test\MaybeOwned_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7757365Z copying torch\test\memory_format_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7767324Z copying torch\test\memory_overlapping_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7777312Z copying torch\test\mobile_memory_cleanup.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7787113Z copying torch\test\NamedTensor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7797447Z copying torch\test\native_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7807888Z copying torch\test\operators_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7828018Z copying torch\test\operator_name_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7837885Z copying torch\test\op_allowlist_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7847322Z copying torch\test\op_registration_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7870561Z copying torch\test\packedtensoraccessor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7880301Z copying torch\test\pow_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7891339Z copying torch\test\quantized_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7902210Z copying torch\test\reduce_ops_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7912389Z copying torch\test\reportMemoryUsage_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7922456Z copying torch\test\scalar_tensor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7933176Z copying torch\test\scalar_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7944340Z copying torch\test\StorageUtils_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7954556Z copying torch\test\stride_properties_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7964885Z copying torch\test\tensor_iterator_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7976289Z copying torch\test\test_parallel.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7987055Z copying torch\test\thread_init_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.7994760Z copying torch\test\type_ptr_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.8004334Z copying torch\test\type_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.8014910Z copying torch\test\undefined_tensor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.8036442Z copying torch\test\verify_api_visibility.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.8044203Z copying torch\test\weakref_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.8054137Z copying torch\test\wrapdim_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.8064014Z copying torch\test\xla_tensor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:22:02.8074985Z copying torch\distributed\optim\zero_redundancy_optimizer.pyi -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-06-01T21:22:02.8087542Z copying torch\jit\_script.pyi -> build\lib.win-amd64-cpython-39\torch\jit 2025-06-01T21:22:02.8100680Z copying torch\nn\functional.pyi -> build\lib.win-amd64-cpython-39\torch\nn 2025-06-01T21:22:02.8119064Z copying torch\nn\parameter.pyi -> build\lib.win-amd64-cpython-39\torch\nn 2025-06-01T21:22:02.8130614Z copying torch\optim\_multi_tensor\__init__.pyi -> build\lib.win-amd64-cpython-39\torch\optim\_multi_tensor 2025-06-01T21:22:02.8137247Z copying torch\utils\_config_typing.pyi -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:22:02.8149436Z copying torch\utils\data\datapipes\datapipe.pyi -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-06-01T21:22:02.8169629Z creating build\lib.win-amd64-cpython-39\torch\_C 2025-06-01T21:22:02.8172754Z copying torch\_C\_aoti.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-06-01T21:22:02.8183961Z copying torch\_C\_autograd.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-06-01T21:22:02.8194215Z copying torch\_C\_cpu.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-06-01T21:22:02.8200719Z copying torch\_C\_cudnn.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-06-01T21:22:02.8206536Z copying torch\_C\_cusparselt.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-06-01T21:22:02.8223053Z copying torch\_C\_distributed_autograd.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-06-01T21:22:02.8233433Z copying torch\_C\_distributed_c10d.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-06-01T21:22:02.8248149Z copying torch\_C\_distributed_rpc.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-06-01T21:22:02.8259049Z copying torch\_C\_distributed_rpc_testing.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-06-01T21:22:02.8269769Z copying torch\_C\_functions.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-06-01T21:22:02.8280720Z copying torch\_C\_functorch.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-06-01T21:22:02.8291272Z copying torch\_C\_instruction_counter.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-06-01T21:22:02.8297882Z copying torch\_C\_itt.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-06-01T21:22:02.8303813Z copying torch\_C\_lazy.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-06-01T21:22:02.8313960Z copying torch\_C\_lazy_ts_backend.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-06-01T21:22:02.8320104Z copying torch\_C\_monitor.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-06-01T21:22:02.8329904Z copying torch\_C\_nn.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-06-01T21:22:02.8340060Z copying torch\_C\_nvtx.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-06-01T21:22:02.8346120Z copying torch\_C\_onnx.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-06-01T21:22:02.8356724Z copying torch\_C\_profiler.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-06-01T21:22:02.8368032Z copying torch\_C\_VariableFunctions.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-06-01T21:22:02.8736232Z copying torch\_C\_verbose.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-06-01T21:22:02.8742407Z copying torch\_C\__init__.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-06-01T21:22:02.8870433Z creating build\lib.win-amd64-cpython-39\torch\_C\_dynamo 2025-06-01T21:22:02.8883498Z copying torch\_C\_dynamo\compiled_autograd.pyi -> build\lib.win-amd64-cpython-39\torch\_C\_dynamo 2025-06-01T21:22:02.8889823Z copying torch\_C\_dynamo\eval_frame.pyi -> build\lib.win-amd64-cpython-39\torch\_C\_dynamo 2025-06-01T21:22:02.8900719Z copying torch\_C\_dynamo\guards.pyi -> build\lib.win-amd64-cpython-39\torch\_C\_dynamo 2025-06-01T21:22:02.8911340Z copying torch\_C\_dynamo\__init__.pyi -> build\lib.win-amd64-cpython-39\torch\_C\_dynamo 2025-06-01T21:22:02.8916615Z creating build\lib.win-amd64-cpython-39\torch\_C\_export 2025-06-01T21:22:02.8919677Z copying torch\_C\_export\pt2_archive_constants.pyi -> build\lib.win-amd64-cpython-39\torch\_C\_export 2025-06-01T21:22:02.8929835Z copying torch\_C\_export\__init__.pyi -> build\lib.win-amd64-cpython-39\torch\_C\_export 2025-06-01T21:22:02.8935136Z creating build\lib.win-amd64-cpython-39\torch\_C_flatbuffer 2025-06-01T21:22:02.8948338Z copying torch\_C_flatbuffer\__init__.pyi -> build\lib.win-amd64-cpython-39\torch\_C_flatbuffer 2025-06-01T21:22:02.8953662Z creating build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:22:02.8956312Z copying torch\lib\shm.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:22:02.8962707Z copying torch\lib\shm.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:22:02.8968151Z creating build\lib.win-amd64-cpython-39\torch\lib\libshm 2025-06-01T21:22:02.8971224Z copying torch\lib\libshm\alloc_info.h -> build\lib.win-amd64-cpython-39\torch\lib\libshm 2025-06-01T21:22:02.8977490Z copying torch\lib\libshm\err.h -> build\lib.win-amd64-cpython-39\torch\lib\libshm 2025-06-01T21:22:02.8988412Z copying torch\lib\libshm\libshm.h -> build\lib.win-amd64-cpython-39\torch\lib\libshm 2025-06-01T21:22:02.8999285Z copying torch\lib\libshm\socket.h -> build\lib.win-amd64-cpython-39\torch\lib\libshm 2025-06-01T21:22:02.9008161Z creating build\lib.win-amd64-cpython-39\torch\lib\libshm_windows 2025-06-01T21:22:02.9011141Z copying torch\lib\libshm_windows\libshm.h -> build\lib.win-amd64-cpython-39\torch\lib\libshm_windows 2025-06-01T21:22:02.9016611Z creating build\lib.win-amd64-cpython-39\torch\include 2025-06-01T21:22:02.9019423Z copying torch\include\advisor-annotate.h -> build\lib.win-amd64-cpython-39\torch\include 2025-06-01T21:22:02.9026247Z copying torch\include\cpuinfo.h -> build\lib.win-amd64-cpython-39\torch\include 2025-06-01T21:22:02.9033582Z copying torch\include\dnnl.h -> build\lib.win-amd64-cpython-39\torch\include 2025-06-01T21:22:02.9039714Z copying torch\include\dnnl_config.h -> build\lib.win-amd64-cpython-39\torch\include 2025-06-01T21:22:02.9045935Z copying torch\include\dnnl_debug.h -> build\lib.win-amd64-cpython-39\torch\include 2025-06-01T21:22:02.9062386Z copying torch\include\dnnl_ocl.h -> build\lib.win-amd64-cpython-39\torch\include 2025-06-01T21:22:02.9068310Z copying torch\include\dnnl_sycl.h -> build\lib.win-amd64-cpython-39\torch\include 2025-06-01T21:22:02.9074634Z copying torch\include\dnnl_sycl_types.h -> build\lib.win-amd64-cpython-39\torch\include 2025-06-01T21:22:02.9081252Z copying torch\include\dnnl_threadpool.h -> build\lib.win-amd64-cpython-39\torch\include 2025-06-01T21:22:02.9090163Z copying torch\include\dnnl_types.h -> build\lib.win-amd64-cpython-39\torch\include 2025-06-01T21:22:02.9095252Z copying torch\include\dnnl_version.h -> build\lib.win-amd64-cpython-39\torch\include 2025-06-01T21:22:02.9115908Z copying torch\include\experiments-config.h -> build\lib.win-amd64-cpython-39\torch\include 2025-06-01T21:22:02.9116549Z copying torch\include\fp16.h -> build\lib.win-amd64-cpython-39\torch\include 2025-06-01T21:22:02.9117079Z copying torch\include\fxdiv.h -> build\lib.win-amd64-cpython-39\torch\include 2025-06-01T21:22:02.9122618Z copying torch\include\ittnotify-zca.h -> build\lib.win-amd64-cpython-39\torch\include 2025-06-01T21:22:02.9128810Z copying torch\include\ittnotify.h -> build\lib.win-amd64-cpython-39\torch\include 2025-06-01T21:22:02.9137385Z copying torch\include\jitprofiling.h -> build\lib.win-amd64-cpython-39\torch\include 2025-06-01T21:22:02.9144297Z copying torch\include\libittnotify.h -> build\lib.win-amd64-cpython-39\torch\include 2025-06-01T21:22:02.9150241Z copying torch\include\libshm.h -> build\lib.win-amd64-cpython-39\torch\include 2025-06-01T21:22:02.9156422Z copying torch\include\psimd.h -> build\lib.win-amd64-cpython-39\torch\include 2025-06-01T21:22:02.9164058Z copying torch\include\pthreadpool.h -> build\lib.win-amd64-cpython-39\torch\include 2025-06-01T21:22:02.9172003Z copying torch\include\sleef.h -> build\lib.win-amd64-cpython-39\torch\include 2025-06-01T21:22:02.9180853Z copying torch\include\xnnpack.h -> build\lib.win-amd64-cpython-39\torch\include 2025-06-01T21:22:02.9188312Z creating build\lib.win-amd64-cpython-39\torch\include\asmjit 2025-06-01T21:22:02.9341807Z copying torch\include\asmjit\a64.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit 2025-06-01T21:22:02.9348532Z copying torch\include\asmjit\arm.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit 2025-06-01T21:22:02.9356744Z copying torch\include\asmjit\asmjit-scope-begin.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit 2025-06-01T21:22:02.9363222Z copying torch\include\asmjit\asmjit-scope-end.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit 2025-06-01T21:22:02.9369517Z copying torch\include\asmjit\asmjit.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit 2025-06-01T21:22:02.9480597Z copying torch\include\asmjit\core.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit 2025-06-01T21:22:02.9487925Z copying torch\include\asmjit\x86.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit 2025-06-01T21:22:02.9493383Z creating build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-06-01T21:22:02.9496263Z copying torch\include\asmjit\arm\a64assembler.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-06-01T21:22:02.9502933Z copying torch\include\asmjit\arm\a64builder.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-06-01T21:22:02.9509405Z copying torch\include\asmjit\arm\a64compiler.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-06-01T21:22:02.9515864Z copying torch\include\asmjit\arm\a64emitter.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-06-01T21:22:02.9639751Z copying torch\include\asmjit\arm\a64globals.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-06-01T21:22:02.9647697Z copying torch\include\asmjit\arm\a64instdb.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-06-01T21:22:02.9654048Z copying torch\include\asmjit\arm\a64operand.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-06-01T21:22:02.9661196Z copying torch\include\asmjit\arm\armglobals.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-06-01T21:22:02.9667353Z copying torch\include\asmjit\arm\armoperand.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-06-01T21:22:02.9674208Z copying torch\include\asmjit\arm\armutils.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-06-01T21:22:02.9679882Z creating build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:22:02.9682664Z copying torch\include\asmjit\core\api-config.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:22:02.9689727Z copying torch\include\asmjit\core\archcommons.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:22:02.9696025Z copying torch\include\asmjit\core\archtraits.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:22:02.9702418Z copying torch\include\asmjit\core\assembler.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:22:02.9717326Z copying torch\include\asmjit\core\builder.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:22:02.9724418Z copying torch\include\asmjit\core\codebuffer.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:22:02.9730670Z copying torch\include\asmjit\core\codeholder.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:22:02.9737672Z copying torch\include\asmjit\core\compiler.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:22:02.9744592Z copying torch\include\asmjit\core\compilerdefs.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:22:02.9751266Z copying torch\include\asmjit\core\constpool.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:22:02.9757799Z copying torch\include\asmjit\core\cpuinfo.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:22:02.9765060Z copying torch\include\asmjit\core\emitter.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:22:02.9772062Z copying torch\include\asmjit\core\environment.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:22:02.9779115Z copying torch\include\asmjit\core\errorhandler.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:22:02.9785716Z copying torch\include\asmjit\core\formatter.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:22:02.9792165Z copying torch\include\asmjit\core\func.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:22:02.9799609Z copying torch\include\asmjit\core\globals.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:22:02.9806111Z copying torch\include\asmjit\core\inst.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:22:02.9813176Z copying torch\include\asmjit\core\jitallocator.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:22:02.9820496Z copying torch\include\asmjit\core\jitruntime.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:22:02.9826977Z copying torch\include\asmjit\core\logger.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:22:02.9865932Z copying torch\include\asmjit\core\operand.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:22:02.9875857Z copying torch\include\asmjit\core\osutils.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:22:02.9882714Z copying torch\include\asmjit\core\string.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:22:02.9890642Z copying torch\include\asmjit\core\support.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:22:02.9900339Z copying torch\include\asmjit\core\target.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:22:02.9911308Z copying torch\include\asmjit\core\type.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:22:02.9919023Z copying torch\include\asmjit\core\virtmem.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:22:02.9926339Z copying torch\include\asmjit\core\zone.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:22:02.9933299Z copying torch\include\asmjit\core\zonehash.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:22:02.9945994Z copying torch\include\asmjit\core\zonelist.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:22:02.9952358Z copying torch\include\asmjit\core\zonestack.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:22:02.9958960Z copying torch\include\asmjit\core\zonestring.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:22:02.9965440Z copying torch\include\asmjit\core\zonetree.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:22:02.9971920Z copying torch\include\asmjit\core\zonevector.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:22:02.9978080Z creating build\lib.win-amd64-cpython-39\torch\include\asmjit\x86 2025-06-01T21:22:02.9981082Z copying torch\include\asmjit\x86\x86assembler.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\x86 2025-06-01T21:22:02.9988151Z copying torch\include\asmjit\x86\x86builder.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\x86 2025-06-01T21:22:02.9994588Z copying torch\include\asmjit\x86\x86compiler.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\x86 2025-06-01T21:22:03.0001757Z copying torch\include\asmjit\x86\x86emitter.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\x86 2025-06-01T21:22:03.0020472Z copying torch\include\asmjit\x86\x86globals.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\x86 2025-06-01T21:22:03.0028888Z copying torch\include\asmjit\x86\x86instdb.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\x86 2025-06-01T21:22:03.0036140Z copying torch\include\asmjit\x86\x86operand.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\x86 2025-06-01T21:22:03.0042681Z creating build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0045549Z copying torch\include\ATen\AccumulateType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0052041Z copying torch\include\ATen\ArrayRef.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0057784Z copying torch\include\ATen\ATen.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0064052Z copying torch\include\ATen\autocast_mode.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0071072Z copying torch\include\ATen\Backend.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0086019Z copying torch\include\ATen\Backtrace.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0092009Z copying torch\include\ATen\BlasBackend.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0098404Z copying torch\include\ATen\CachedTensorUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0104870Z copying torch\include\ATen\ceil_div.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0110818Z copying torch\include\ATen\code_template.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0117140Z copying torch\include\ATen\CollapseDims.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0123630Z copying torch\include\ATen\CompositeExplicitAutogradFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0130042Z copying torch\include\ATen\CompositeExplicitAutogradFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0137492Z copying torch\include\ATen\CompositeExplicitAutogradNonFunctionalFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0144197Z copying torch\include\ATen\CompositeExplicitAutogradNonFunctionalFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0151077Z copying torch\include\ATen\CompositeImplicitAutogradFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0157660Z copying torch\include\ATen\CompositeImplicitAutogradFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0165300Z copying torch\include\ATen\CompositeImplicitAutogradNestedTensorFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0172158Z copying torch\include\ATen\CompositeImplicitAutogradNestedTensorFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0186962Z copying torch\include\ATen\Config.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0193001Z copying torch\include\ATen\Context.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0199717Z copying torch\include\ATen\cpp_custom_type_hack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0206018Z copying torch\include\ATen\CPUApplyUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0212466Z copying torch\include\ATen\CPUFixedAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0219464Z copying torch\include\ATen\CPUFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0226636Z copying torch\include\ATen\CPUFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0234987Z copying torch\include\ATen\CPUGeneratorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0241953Z copying torch\include\ATen\CUDAFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0248978Z copying torch\include\ATen\CUDAFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0266503Z copying torch\include\ATen\Device.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0273013Z copying torch\include\ATen\DeviceAccelerator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0279343Z copying torch\include\ATen\DeviceGuard.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0285893Z copying torch\include\ATen\Dimname.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0291760Z copying torch\include\ATen\DimVector.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0297717Z copying torch\include\ATen\Dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0304839Z copying torch\include\ATen\Dispatch_v2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0312058Z copying torch\include\ATen\div_rtn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0318070Z copying torch\include\ATen\DLConvertor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0324310Z copying torch\include\ATen\dlpack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0330519Z copying torch\include\ATen\DynamicLibrary.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0336844Z copying torch\include\ATen\EmptyTensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0351911Z copying torch\include\ATen\ExpandBase.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0358120Z copying torch\include\ATen\ExpandUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0364958Z copying torch\include\ATen\Formatting.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0371696Z copying torch\include\ATen\FunctionalStorageImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0377855Z copying torch\include\ATen\FunctionalTensorWrapper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0384463Z copying torch\include\ATen\Functions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0391580Z copying torch\include\ATen\FuncTorchTLS.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0397912Z copying torch\include\ATen\Generator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0403971Z copying torch\include\ATen\InferSize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0410516Z copying torch\include\ATen\InitialTensorOptions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0426511Z copying torch\include\ATen\jiterator_macros.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0432891Z copying torch\include\ATen\jit_macros.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0439106Z copying torch\include\ATen\Layout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0445136Z copying torch\include\ATen\LegacyBatchedFallback.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0451510Z copying torch\include\ATen\LegacyBatchedTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0457855Z copying torch\include\ATen\LegacyVmapMode.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0464615Z copying torch\include\ATen\LegacyVmapTransforms.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0470869Z copying torch\include\ATen\LinalgBackend.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0477251Z copying torch\include\ATen\MapAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0483562Z copying torch\include\ATen\MatrixRef.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0508076Z copying torch\include\ATen\MemoryOverlap.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0514563Z copying torch\include\ATen\MetaFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0521081Z copying torch\include\ATen\MetaFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0527669Z copying torch\include\ATen\MethodOperators.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0534236Z copying torch\include\ATen\NamedTensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0540709Z copying torch\include\ATen\NamedTensorUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0578370Z copying torch\include\ATen\NativeFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0586100Z copying torch\include\ATen\NativeMetaFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0593570Z copying torch\include\ATen\NestedTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0609965Z copying torch\include\ATen\NumericUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0617436Z copying torch\include\ATen\OpaqueTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0624857Z copying torch\include\ATen\Operators.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0633086Z copying torch\include\ATen\OpMathType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0640276Z copying torch\include\ATen\PadNd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0646801Z copying torch\include\ATen\Parallel-inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0653305Z copying torch\include\ATen\Parallel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0659779Z copying torch\include\ATen\ParallelFuture.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0666264Z copying torch\include\ATen\ParallelNative.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0673057Z copying torch\include\ATen\ParallelOpenMP.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0688878Z copying torch\include\ATen\PTThreadPool.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0695294Z copying torch\include\ATen\PythonTorchFunctionTLS.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0701728Z copying torch\include\ATen\record_function.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0708787Z copying torch\include\ATen\RedispatchFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0735162Z copying torch\include\ATen\RegistrationDeclarations.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0749935Z copying torch\include\ATen\ROCmFABackend.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0756469Z copying torch\include\ATen\SavedTensorHooks.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0762965Z copying torch\include\ATen\Scalar.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0768851Z copying torch\include\ATen\ScalarOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0775287Z copying torch\include\ATen\ScalarType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0781457Z copying torch\include\ATen\SDPBackend.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0787542Z copying torch\include\ATen\SequenceNumber.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0793686Z copying torch\include\ATen\SmallVector.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0799843Z copying torch\include\ATen\SparseCsrTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0806333Z copying torch\include\ATen\SparseCsrTensorUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0813201Z copying torch\include\ATen\SparseTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0819967Z copying torch\include\ATen\Storage.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0826001Z copying torch\include\ATen\StorageUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0832336Z copying torch\include\ATen\Tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0838642Z copying torch\include\ATen\TensorAccessor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0855006Z copying torch\include\ATen\TensorGeometry.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0861557Z copying torch\include\ATen\TensorIndexing.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0868496Z copying torch\include\ATen\TensorIterator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0875693Z copying torch\include\ATen\TensorIteratorInternal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0882286Z copying torch\include\ATen\TensorMeta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0888769Z copying torch\include\ATen\TensorNames.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0895507Z copying torch\include\ATen\TensorOperators.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0902171Z copying torch\include\ATen\TensorOptions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0908601Z copying torch\include\ATen\TensorSubclassLikeUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0915254Z copying torch\include\ATen\TensorUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0921851Z copying torch\include\ATen\ThreadLocalPythonObjects.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0928265Z copying torch\include\ATen\ThreadLocalState.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0934857Z copying torch\include\ATen\TracerMode.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0941905Z copying torch\include\ATen\TypeDefault.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0948063Z copying torch\include\ATen\Utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0954373Z copying torch\include\ATen\Version.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0960582Z copying torch\include\ATen\VmapGeneratedPlumbing.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0983328Z copying torch\include\ATen\WrapDimUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0990191Z copying torch\include\ATen\WrapDimUtilsMulti.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:22:03.0996582Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.0999589Z copying torch\include\ATen\core\alias_info.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1006097Z copying torch\include\ATen\core\Array.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1013088Z copying torch\include\ATen\core\ATenGeneral.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1018799Z copying torch\include\ATen\core\ATenOpList.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1034769Z copying torch\include\ATen\core\ATen_fwd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1041237Z copying torch\include\ATen\core\aten_interned_strings.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1048543Z copying torch\include\ATen\core\ATen_pch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1055267Z copying torch\include\ATen\core\Backtrace.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1061461Z copying torch\include\ATen\core\blob.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1067838Z copying torch\include\ATen\core\builtin_function.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1074235Z copying torch\include\ATen\core\CachingHostAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1081168Z copying torch\include\ATen\core\CheckMemoryFormat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1087720Z copying torch\include\ATen\core\class_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1094683Z copying torch\include\ATen\core\custom_class.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1102699Z copying torch\include\ATen\core\DeprecatedTypeProperties.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1110300Z copying torch\include\ATen\core\DeprecatedTypePropertiesRegistry.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1116632Z copying torch\include\ATen\core\Dict.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1128069Z copying torch\include\ATen\core\Dict_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1134489Z copying torch\include\ATen\core\Dimname.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1141176Z copying torch\include\ATen\core\DimVector.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1147801Z copying torch\include\ATen\core\DistributionsHelper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1154257Z copying torch\include\ATen\core\dynamic_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1170091Z copying torch\include\ATen\core\enum_tag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1176126Z copying torch\include\ATen\core\enum_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1182572Z copying torch\include\ATen\core\Formatting.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1189249Z copying torch\include\ATen\core\function.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1195380Z copying torch\include\ATen\core\functional.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1226882Z copying torch\include\ATen\core\function_schema.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1233816Z copying torch\include\ATen\core\function_schema_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1245325Z copying torch\include\ATen\core\Generator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1251977Z copying torch\include\ATen\core\GeneratorForPrivateuseone.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1258343Z copying torch\include\ATen\core\grad_mode.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1264895Z copying torch\include\ATen\core\IListRef.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1280481Z copying torch\include\ATen\core\IListRef_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1287073Z copying torch\include\ATen\core\interned_strings.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1293843Z copying torch\include\ATen\core\interned_strings_class.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1300307Z copying torch\include\ATen\core\ivalue.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1307555Z copying torch\include\ATen\core\ivalue_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1315591Z copying torch\include\ATen\core\ivalue_to.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1322106Z copying torch\include\ATen\core\jit_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1329767Z copying torch\include\ATen\core\jit_type_base.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1336891Z copying torch\include\ATen\core\LegacyTypeDispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1343438Z copying torch\include\ATen\core\List.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1350230Z copying torch\include\ATen\core\List_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1356712Z copying torch\include\ATen\core\MT19937RNGEngine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1373012Z copying torch\include\ATen\core\NamedTensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1379746Z copying torch\include\ATen\core\NestedIntSymNodeImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1386461Z copying torch\include\ATen\core\operator_name.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1392975Z copying torch\include\ATen\core\PhiloxRNGEngine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1399504Z copying torch\include\ATen\core\PythonFallbackKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1406074Z copying torch\include\ATen\core\PythonOpRegistrationTrampoline.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1412555Z copying torch\include\ATen\core\qualified_name.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1419123Z copying torch\include\ATen\core\QuantizerBase.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1430122Z copying torch\include\ATen\core\Range.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1436209Z copying torch\include\ATen\core\Reduction.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1452255Z copying torch\include\ATen\core\rref_interface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1459193Z copying torch\include\ATen\core\Scalar.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1465482Z copying torch\include\ATen\core\ScalarType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1471600Z copying torch\include\ATen\core\stack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1477929Z copying torch\include\ATen\core\symbol.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1484192Z copying torch\include\ATen\core\Tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1490598Z copying torch\include\ATen\core\TensorAccessor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1497120Z copying torch\include\ATen\core\TensorBase.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1504455Z copying torch\include\ATen\core\TensorBody.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1514097Z copying torch\include\ATen\core\TorchDispatchUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1520568Z copying torch\include\ATen\core\TransformationHelper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1545896Z copying torch\include\ATen\core\typeid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1552304Z copying torch\include\ATen\core\type_factory.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1564267Z copying torch\include\ATen\core\type_ptr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1570652Z copying torch\include\ATen\core\UndefinedTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1576883Z copying torch\include\ATen\core\UnsafeFromTH.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1583621Z copying torch\include\ATen\core\VariableHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1589973Z copying torch\include\ATen\core\Variadic.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1596539Z copying torch\include\ATen\core\Vitals.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:22:03.1609302Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing 2025-06-01T21:22:03.1610010Z copying torch\include\ATen\core\boxing\BoxedKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing 2025-06-01T21:22:03.1615983Z copying torch\include\ATen\core\boxing\BoxedKernel_impl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing 2025-06-01T21:22:03.1622308Z copying torch\include\ATen\core\boxing\KernelFunction.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing 2025-06-01T21:22:03.1628903Z copying torch\include\ATen\core\boxing\KernelFunction_impl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing 2025-06-01T21:22:03.1644537Z copying torch\include\ATen\core\boxing\OperatorKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing 2025-06-01T21:22:03.1650072Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl 2025-06-01T21:22:03.1653114Z copying torch\include\ATen\core\boxing\impl\boxing.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl 2025-06-01T21:22:03.1659596Z 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-06-01T21:22:03.1666665Z copying torch\include\ATen\core\boxing\impl\test_helpers.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl 2025-06-01T21:22:03.1673337Z copying torch\include\ATen\core\boxing\impl\WrapFunctionIntoFunctor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl 2025-06-01T21:22:03.1689092Z copying torch\include\ATen\core\boxing\impl\WrapFunctionIntoRuntimeFunctor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl 2025-06-01T21:22:03.1694467Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-06-01T21:22:03.1697726Z copying torch\include\ATen\core\dispatch\CppSignature.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-06-01T21:22:03.1703764Z copying torch\include\ATen\core\dispatch\Dispatcher.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-06-01T21:22:03.1710665Z copying torch\include\ATen\core\dispatch\DispatchKeyExtractor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-06-01T21:22:03.1716987Z copying torch\include\ATen\core\dispatch\ObservedOperators.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-06-01T21:22:03.1732539Z copying torch\include\ATen\core\dispatch\OperatorEntry.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-06-01T21:22:03.1739001Z copying torch\include\ATen\core\dispatch\OperatorOptions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-06-01T21:22:03.1745494Z copying torch\include\ATen\core\dispatch\RegistrationHandleRAII.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-06-01T21:22:03.1750905Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\core\op_registration 2025-06-01T21:22:03.1754006Z copying torch\include\ATen\core\op_registration\adaption.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\op_registration 2025-06-01T21:22:03.1760345Z copying torch\include\ATen\core\op_registration\infer_schema.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\op_registration 2025-06-01T21:22:03.1766852Z copying torch\include\ATen\core\op_registration\op_allowlist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\op_registration 2025-06-01T21:22:03.1773476Z copying torch\include\ATen\core\op_registration\op_registration.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\op_registration 2025-06-01T21:22:03.1788618Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu 2025-06-01T21:22:03.1791459Z copying torch\include\ATen\cpu\FlushDenormal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu 2025-06-01T21:22:03.1797400Z copying torch\include\ATen\cpu\Utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu 2025-06-01T21:22:03.1803595Z copying torch\include\ATen\cpu\vml.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu 2025-06-01T21:22:03.1808886Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-06-01T21:22:03.1811998Z copying torch\include\ATen\cpu\vec\functional.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-06-01T21:22:03.1817948Z copying torch\include\ATen\cpu\vec\functional_base.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-06-01T21:22:03.1831015Z copying torch\include\ATen\cpu\vec\functional_bfloat16.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-06-01T21:22:03.1837684Z copying torch\include\ATen\cpu\vec\intrinsics.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-06-01T21:22:03.1853559Z copying torch\include\ATen\cpu\vec\vec.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-06-01T21:22:03.1859915Z copying torch\include\ATen\cpu\vec\vec_base.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-06-01T21:22:03.1867089Z copying torch\include\ATen\cpu\vec\vec_convert.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-06-01T21:22:03.1873778Z copying torch\include\ATen\cpu\vec\vec_half.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-06-01T21:22:03.1891507Z copying torch\include\ATen\cpu\vec\vec_mask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-06-01T21:22:03.1931034Z copying torch\include\ATen\cpu\vec\vec_n.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-06-01T21:22:03.1936662Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-06-01T21:22:03.1939698Z copying torch\include\ATen\cpu\vec\sve\sve_helper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-06-01T21:22:03.1946159Z copying torch\include\ATen\cpu\vec\sve\vec_bfloat16.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-06-01T21:22:03.1953082Z copying torch\include\ATen\cpu\vec\sve\vec_common_sve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-06-01T21:22:03.1959470Z copying torch\include\ATen\cpu\vec\sve\vec_double.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-06-01T21:22:03.1970768Z copying torch\include\ATen\cpu\vec\sve\vec_float.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-06-01T21:22:03.1977780Z copying torch\include\ATen\cpu\vec\sve\vec_int.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-06-01T21:22:03.1984909Z copying torch\include\ATen\cpu\vec\sve\vec_qint.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-06-01T21:22:03.1991060Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128 2025-06-01T21:22:03.1993919Z copying torch\include\ATen\cpu\vec\vec128\vec128.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128 2025-06-01T21:22:03.2000066Z copying torch\include\ATen\cpu\vec\vec128\vec128_bfloat16_neon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128 2025-06-01T21:22:03.2007063Z copying torch\include\ATen\cpu\vec\vec128\vec128_convert.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128 2025-06-01T21:22:03.2013789Z copying torch\include\ATen\cpu\vec\vec128\vec128_float_neon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128 2025-06-01T21:22:03.2030612Z copying torch\include\ATen\cpu\vec\vec128\vec128_half_neon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128 2025-06-01T21:22:03.2038123Z 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-06-01T21:22:03.2043405Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-06-01T21:22:03.2046287Z copying torch\include\ATen\cpu\vec\vec256\missing_vld1_neon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-06-01T21:22:03.2053688Z copying torch\include\ATen\cpu\vec\vec256\missing_vst1_neon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-06-01T21:22:03.2059603Z copying torch\include\ATen\cpu\vec\vec256\vec256.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-06-01T21:22:03.2065749Z copying torch\include\ATen\cpu\vec\vec256\vec256_16bit_float.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-06-01T21:22:03.2082556Z copying torch\include\ATen\cpu\vec\vec256\vec256_bfloat16.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-06-01T21:22:03.2088743Z copying torch\include\ATen\cpu\vec\vec256\vec256_complex_double.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-06-01T21:22:03.2095745Z copying torch\include\ATen\cpu\vec\vec256\vec256_complex_float.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-06-01T21:22:03.2102872Z copying torch\include\ATen\cpu\vec\vec256\vec256_convert.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-06-01T21:22:03.2109693Z copying torch\include\ATen\cpu\vec\vec256\vec256_double.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-06-01T21:22:03.2116246Z copying torch\include\ATen\cpu\vec\vec256\vec256_float.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-06-01T21:22:03.2124219Z copying torch\include\ATen\cpu\vec\vec256\vec256_half.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-06-01T21:22:03.2130820Z copying torch\include\ATen\cpu\vec\vec256\vec256_int.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-06-01T21:22:03.2138752Z copying torch\include\ATen\cpu\vec\vec256\vec256_mask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-06-01T21:22:03.2145442Z copying torch\include\ATen\cpu\vec\vec256\vec256_qint.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-06-01T21:22:03.2152078Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx 2025-06-01T21:22:03.2155242Z 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-06-01T21:22:03.2161728Z 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-06-01T21:22:03.2168240Z 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-06-01T21:22:03.2189144Z 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-06-01T21:22:03.2196294Z 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-06-01T21:22:03.2203264Z 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-06-01T21:22:03.2210229Z 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-06-01T21:22:03.2216779Z 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-06-01T21:22:03.2223493Z 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-06-01T21:22:03.2230291Z 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-06-01T21:22:03.2236781Z 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-06-01T21:22:03.2243758Z 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-06-01T21:22:03.2250865Z 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-06-01T21:22:03.2256827Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\zarch 2025-06-01T21:22:03.2259842Z 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-06-01T21:22:03.2266726Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-06-01T21:22:03.2269605Z copying torch\include\ATen\cpu\vec\vec512\vec512.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-06-01T21:22:03.2276535Z copying torch\include\ATen\cpu\vec\vec512\vec512_bfloat16.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-06-01T21:22:03.2283935Z copying torch\include\ATen\cpu\vec\vec512\vec512_complex_double.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-06-01T21:22:03.2290801Z copying torch\include\ATen\cpu\vec\vec512\vec512_complex_float.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-06-01T21:22:03.2307860Z copying torch\include\ATen\cpu\vec\vec512\vec512_convert.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-06-01T21:22:03.2314491Z copying torch\include\ATen\cpu\vec\vec512\vec512_double.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-06-01T21:22:03.2321486Z copying torch\include\ATen\cpu\vec\vec512\vec512_float.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-06-01T21:22:03.2328382Z copying torch\include\ATen\cpu\vec\vec512\vec512_float8.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-06-01T21:22:03.2335319Z copying torch\include\ATen\cpu\vec\vec512\vec512_int.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-06-01T21:22:03.2342856Z copying torch\include\ATen\cpu\vec\vec512\vec512_mask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-06-01T21:22:03.2349294Z copying torch\include\ATen\cpu\vec\vec512\vec512_qint.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-06-01T21:22:03.2355743Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:22:03.2358767Z copying torch\include\ATen\cuda\ATenCUDAGeneral.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:22:03.2364821Z copying torch\include\ATen\cuda\CachingHostAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:22:03.2370882Z copying torch\include\ATen\cuda\cub.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:22:03.2377360Z copying torch\include\ATen\cuda\CUDABlas.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:22:03.2384307Z copying torch\include\ATen\cuda\CUDAContext.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:22:03.2400776Z copying torch\include\ATen\cuda\CUDAContextLight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:22:03.2407318Z copying torch\include\ATen\cuda\CUDADataType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:22:03.2414350Z copying torch\include\ATen\cuda\CUDADevice.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:22:03.2420713Z copying torch\include\ATen\cuda\CUDAEvent.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:22:03.2427315Z copying torch\include\ATen\cuda\CUDAGeneratorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:22:03.2433999Z copying torch\include\ATen\cuda\CUDAGraph.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:22:03.2440516Z copying torch\include\ATen\cuda\CUDASparse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:22:03.2447256Z copying torch\include\ATen\cuda\CUDASparseBlas.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:22:03.2453923Z copying torch\include\ATen\cuda\CUDASparseDescriptors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:22:03.2460585Z copying torch\include\ATen\cuda\CUDAUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:22:03.2467091Z copying torch\include\ATen\cuda\EmptyTensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:22:03.2473535Z copying torch\include\ATen\cuda\Exceptions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:22:03.2480097Z copying torch\include\ATen\cuda\jiterator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:22:03.2486600Z copying torch\include\ATen\cuda\jiterator_impl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:22:03.2493278Z copying torch\include\ATen\cuda\llvm_jit_strings.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:22:03.2509290Z copying torch\include\ATen\cuda\PeerToPeerAccess.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:22:03.2515710Z copying torch\include\ATen\cuda\PhiloxCudaState.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:22:03.2522260Z copying torch\include\ATen\cuda\PinnedMemoryAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:22:03.2528292Z copying torch\include\ATen\cuda\Sleep.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:22:03.2534280Z copying torch\include\ATen\cuda\ThrustAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:22:03.2540274Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-06-01T21:22:03.2543144Z copying torch\include\ATen\cuda\detail\CUDAHooks.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-06-01T21:22:03.2549515Z copying torch\include\ATen\cuda\detail\DeviceThreadHandles.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-06-01T21:22:03.2555915Z copying torch\include\ATen\cuda\detail\KernelUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-06-01T21:22:03.2562256Z copying torch\include\ATen\cuda\detail\LazyNVRTC.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-06-01T21:22:03.2577260Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-06-01T21:22:03.2580479Z copying torch\include\ATen\cuda\tunable\GemmCommon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-06-01T21:22:03.2587232Z copying torch\include\ATen\cuda\tunable\GemmHipblaslt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-06-01T21:22:03.2594004Z copying torch\include\ATen\cuda\tunable\GemmRocblas.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-06-01T21:22:03.2600332Z copying torch\include\ATen\cuda\tunable\StreamTimer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-06-01T21:22:03.2617575Z copying torch\include\ATen\cuda\tunable\Tunable.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-06-01T21:22:03.2624802Z copying torch\include\ATen\cuda\tunable\TunableGemm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-06-01T21:22:03.2631657Z copying torch\include\ATen\cuda\tunable\TunableOp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-06-01T21:22:03.2637677Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-06-01T21:22:03.2640678Z copying torch\include\ATen\cudnn\cudnn-wrapper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-06-01T21:22:03.2646918Z copying torch\include\ATen\cudnn\Descriptors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-06-01T21:22:03.2653570Z copying torch\include\ATen\cudnn\Handle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-06-01T21:22:03.2659438Z copying torch\include\ATen\cudnn\Handles.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-06-01T21:22:03.2665597Z copying torch\include\ATen\cudnn\Types.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-06-01T21:22:03.2681223Z copying torch\include\ATen\cudnn\Utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-06-01T21:22:03.2686304Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-06-01T21:22:03.2689248Z copying torch\include\ATen\detail\AcceleratorHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-06-01T21:22:03.2695510Z copying torch\include\ATen\detail\CUDAHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-06-01T21:22:03.2701878Z copying torch\include\ATen\detail\FunctionTraits.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-06-01T21:22:03.2718192Z copying torch\include\ATen\detail\HIPHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-06-01T21:22:03.2724621Z copying torch\include\ATen\detail\HPUHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-06-01T21:22:03.2730870Z copying torch\include\ATen\detail\IPUHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-06-01T21:22:03.2737059Z copying torch\include\ATen\detail\MAIAHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-06-01T21:22:03.2743419Z copying torch\include\ATen\detail\MPSHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-06-01T21:22:03.2749719Z copying torch\include\ATen\detail\MTIAHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-06-01T21:22:03.2756083Z copying torch\include\ATen\detail\PrivateUse1HooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-06-01T21:22:03.2762317Z copying torch\include\ATen\detail\XPUHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-06-01T21:22:03.2767842Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-06-01T21:22:03.2770778Z copying torch\include\ATen\functorch\ADInterpreters.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-06-01T21:22:03.2777160Z copying torch\include\ATen\functorch\BatchedFallback.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-06-01T21:22:03.2783594Z copying torch\include\ATen\functorch\BatchedTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-06-01T21:22:03.2799720Z copying torch\include\ATen\functorch\BatchingMetaprogramming.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-06-01T21:22:03.2810464Z copying torch\include\ATen\functorch\BatchRulesHelper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-06-01T21:22:03.2817127Z copying torch\include\ATen\functorch\DynamicLayer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-06-01T21:22:03.2823648Z copying torch\include\ATen\functorch\FunctionalizeInterpreter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-06-01T21:22:03.2829853Z copying torch\include\ATen\functorch\Interpreter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-06-01T21:22:03.2836245Z copying torch\include\ATen\functorch\LegacyVmapTransforms.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-06-01T21:22:03.2843012Z copying torch\include\ATen\functorch\Macros.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-06-01T21:22:03.2849046Z copying torch\include\ATen\functorch\PlumbingHelper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-06-01T21:22:03.2855270Z copying torch\include\ATen\functorch\TensorWrapper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-06-01T21:22:03.2861714Z copying torch\include\ATen\functorch\VmapInterpreter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-06-01T21:22:03.2867373Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\hip\impl 2025-06-01T21:22:03.2871543Z copying torch\include\ATen\hip\impl\HIPAllocatorMasqueradingAsCUDA.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\hip\impl 2025-06-01T21:22:03.2878095Z copying torch\include\ATen\hip\impl\HIPCachingAllocatorMasqueradingAsCUDA.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\hip\impl 2025-06-01T21:22:03.2884317Z copying torch\include\ATen\hip\impl\HIPGuardImplMasqueradingAsCUDA.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\hip\impl 2025-06-01T21:22:03.2900479Z copying torch\include\ATen\hip\impl\HIPStreamMasqueradingAsCUDA.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\hip\impl 2025-06-01T21:22:03.2905948Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\metal 2025-06-01T21:22:03.2908904Z copying torch\include\ATen\metal\Context.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\metal 2025-06-01T21:22:03.2914191Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-06-01T21:22:03.2917089Z copying torch\include\ATen\miopen\Descriptors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-06-01T21:22:03.2923553Z copying torch\include\ATen\miopen\Exceptions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-06-01T21:22:03.2930013Z copying torch\include\ATen\miopen\Handle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-06-01T21:22:03.2936128Z copying torch\include\ATen\miopen\miopen-wrapper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-06-01T21:22:03.2952500Z copying torch\include\ATen\miopen\Types.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-06-01T21:22:03.2958607Z copying torch\include\ATen\miopen\Utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-06-01T21:22:03.2964044Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-06-01T21:22:03.2966902Z copying torch\include\ATen\mps\EmptyTensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-06-01T21:22:03.2973342Z copying torch\include\ATen\mps\IndexKernels.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-06-01T21:22:03.2979773Z copying torch\include\ATen\mps\MPSAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-06-01T21:22:03.2986899Z copying torch\include\ATen\mps\MPSAllocatorInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-06-01T21:22:03.3002529Z copying torch\include\ATen\mps\MPSDevice.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-06-01T21:22:03.3010003Z copying torch\include\ATen\mps\MPSEvent.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-06-01T21:22:03.3015751Z copying torch\include\ATen\mps\MPSGeneratorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-06-01T21:22:03.3022190Z copying torch\include\ATen\mps\MPSGuardImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-06-01T21:22:03.3028840Z copying torch\include\ATen\mps\MPSHooks.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-06-01T21:22:03.3035202Z copying torch\include\ATen\mps\MPSProfiler.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-06-01T21:22:03.3042451Z copying torch\include\ATen\mps\MPSStream.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-06-01T21:22:03.3048048Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3051090Z copying torch\include\ATen\native\Activation.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3062453Z copying torch\include\ATen\native\AdaptivePooling.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3068728Z copying torch\include\ATen\native\AmpKernels.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3075139Z copying torch\include\ATen\native\BatchLinearAlgebra.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3091329Z copying torch\include\ATen\native\batch_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3097767Z copying torch\include\ATen\native\BinaryOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3104521Z copying torch\include\ATen\native\BucketizationUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3110934Z copying torch\include\ATen\native\CanUse32BitIndexMath.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3129189Z copying torch\include\ATen\native\ComplexHelper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3130409Z copying torch\include\ATen\native\CompositeRandomAccessor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3136934Z copying torch\include\ATen\native\CompositeRandomAccessorCommon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3143437Z copying torch\include\ATen\native\ConvolutionMM3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3149542Z copying torch\include\ATen\native\ConvUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3157513Z copying torch\include\ATen\native\Copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3163990Z copying torch\include\ATen\native\CPUBlas.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3170277Z copying torch\include\ATen\native\CPUFallback.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3206463Z copying torch\include\ATen\native\Cross.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3212802Z copying torch\include\ATen\native\DilatedConvolutionUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3219105Z copying torch\include\ATen\native\DispatchStub.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3225994Z copying torch\include\ATen\native\Distance.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3232264Z copying torch\include\ATen\native\Distributions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3248047Z copying torch\include\ATen\native\DistributionTemplates.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3254890Z copying torch\include\ATen\native\EmbeddingBag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3261307Z copying torch\include\ATen\native\Fill.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3272429Z copying torch\include\ATen\native\ForeachUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3279290Z copying torch\include\ATen\native\FractionalMaxPooling.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3286342Z copying torch\include\ATen\native\FunctionOfAMatrixUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3292533Z copying torch\include\ATen\native\FusedAdagrad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3303770Z copying torch\include\ATen\native\FusedAdam.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3310243Z copying torch\include\ATen\native\FusedSGD.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3316331Z copying torch\include\ATen\native\Gelu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3322624Z copying torch\include\ATen\native\GridSampler.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3338777Z copying torch\include\ATen\native\GridSamplerUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3345338Z copying torch\include\ATen\native\group_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3352255Z copying torch\include\ATen\native\Histogram.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3358594Z copying torch\include\ATen\native\im2col.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3370128Z copying torch\include\ATen\native\im2col_shape_check.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3376594Z copying torch\include\ATen\native\IndexingUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3383092Z copying torch\include\ATen\native\IndexKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3389540Z copying torch\include\ATen\native\layer_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3400678Z copying torch\include\ATen\native\Lerp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3406981Z copying torch\include\ATen\native\LinearAlgebra.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3413416Z copying torch\include\ATen\native\LinearAlgebraUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3429743Z copying torch\include\ATen\native\LossMulti.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3441005Z copying torch\include\ATen\native\Math.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3449242Z copying torch\include\ATen\native\MathBitFallThroughLists.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3455692Z copying torch\include\ATen\native\MathBitsFallback.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3462300Z copying torch\include\ATen\native\MaxPooling.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3468761Z copying torch\include\ATen\native\NonEmptyUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3475144Z copying torch\include\ATen\native\NonSymbolicBC.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3481742Z copying torch\include\ATen\native\Normalization.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3488075Z copying torch\include\ATen\native\Padding.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3494461Z copying torch\include\ATen\native\PixelShuffle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3511320Z copying torch\include\ATen\native\PointwiseOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3517848Z copying torch\include\ATen\native\Pool.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3524094Z copying torch\include\ATen\native\Pow.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3530402Z copying torch\include\ATen\native\RangeFactories.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3536569Z copying torch\include\ATen\native\RangeUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3543224Z copying torch\include\ATen\native\ReduceAllOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3549317Z copying torch\include\ATen\native\ReduceOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3556043Z copying torch\include\ATen\native\ReduceOpsUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3563048Z copying torch\include\ATen\native\ReductionType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3569463Z copying torch\include\ATen\native\Repeat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3575760Z copying torch\include\ATen\native\Resize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3582342Z copying torch\include\ATen\native\ResizeCommon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3607595Z copying torch\include\ATen\native\RNN.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3613881Z copying torch\include\ATen\native\ScatterGatherChecks.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3620244Z copying torch\include\ATen\native\SegmentReduce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3627033Z copying torch\include\ATen\native\SharedReduceOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3634179Z copying torch\include\ATen\native\SobolEngineOpsUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3640488Z copying torch\include\ATen\native\Sorting.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3646453Z copying torch\include\ATen\native\SortingUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3657531Z copying torch\include\ATen\native\SparseTensorUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3664529Z copying torch\include\ATen\native\SpectralOpsUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3670908Z copying torch\include\ATen\native\StridedRandomAccessor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3686492Z copying torch\include\ATen\native\TensorAdvancedIndexing.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3697967Z copying torch\include\ATen\native\TensorAdvancedIndexingUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3704553Z copying torch\include\ATen\native\TensorCompare.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3710863Z copying torch\include\ATen\native\TensorConversions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3717646Z copying torch\include\ATen\native\TensorDimApply.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3724671Z copying torch\include\ATen\native\TensorFactories.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3731063Z copying torch\include\ATen\native\TensorIterator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3737293Z copying torch\include\ATen\native\TensorIteratorDynamicCasting.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3743702Z copying torch\include\ATen\native\TensorProperties.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3759866Z copying torch\include\ATen\native\TensorShape.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3766660Z copying torch\include\ATen\native\TensorTransformations.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3773166Z copying torch\include\ATen\native\TopKImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3779367Z copying torch\include\ATen\native\TransposeType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3785672Z copying torch\include\ATen\native\TriangularOpsUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3792054Z copying torch\include\ATen\native\TypeProperties.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3798328Z copying torch\include\ATen\native\UnaryOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3804478Z copying torch\include\ATen\native\Unfold2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3810768Z copying torch\include\ATen\native\Unfold3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3816958Z copying torch\include\ATen\native\UnfoldBackward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3823614Z copying torch\include\ATen\native\UpSample.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3858563Z copying torch\include\ATen\native\verbose_wrapper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3870016Z copying torch\include\ATen\native\vol2col.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:22:03.3908847Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\ao_sparse\quantized\cpu 2025-06-01T21:22:03.3913953Z 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-06-01T21:22:03.3920382Z 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-06-01T21:22:03.3926610Z 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-06-01T21:22:03.3932034Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:22:03.3934946Z copying torch\include\ATen\native\cpu\AtomicAddFloat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:22:03.3941459Z copying torch\include\ATen\native\cpu\avx_mathfun.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:22:03.3948051Z copying torch\include\ATen\native\cpu\CatKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:22:03.3954036Z copying torch\include\ATen\native\cpu\ChannelShuffleKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:22:03.3964656Z copying torch\include\ATen\native\cpu\CopyKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:22:03.3970916Z copying torch\include\ATen\native\cpu\DepthwiseConvKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:22:03.3976996Z copying torch\include\ATen\native\cpu\DistributionTemplates.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:22:03.3983896Z copying torch\include\ATen\native\cpu\Elu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:22:03.3990093Z copying torch\include\ATen\native\cpu\Gelu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:22:03.3996328Z copying torch\include\ATen\native\cpu\GridSamplerKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:22:03.4003537Z copying torch\include\ATen\native\cpu\IndexKernelUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:22:03.4010090Z copying torch\include\ATen\native\cpu\Intrinsics.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:22:03.4016407Z copying torch\include\ATen\native\cpu\int_mm_kernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:22:03.4029067Z copying torch\include\ATen\native\cpu\IsContiguous.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:22:03.4035463Z copying torch\include\ATen\native\cpu\LogAddExp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:22:03.4041948Z copying torch\include\ATen\native\cpu\Loops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:22:03.4048660Z copying torch\include\ATen\native\cpu\MaxUnpoolKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:22:03.4062447Z copying torch\include\ATen\native\cpu\mixed_data_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:22:03.4068750Z copying torch\include\ATen\native\cpu\moments_utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:22:03.4081198Z copying torch\include\ATen\native\cpu\PixelShuffleKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:22:03.4096423Z copying torch\include\ATen\native\cpu\Reduce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:22:03.4103304Z copying torch\include\ATen\native\cpu\ReducedPrecisionFloatGemvFastPathKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:22:03.4109635Z copying torch\include\ATen\native\cpu\ReduceUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:22:03.4116205Z copying torch\include\ATen\native\cpu\SampledAddmmKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:22:03.4122599Z copying torch\include\ATen\native\cpu\SerialStackImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:22:03.4129067Z copying torch\include\ATen\native\cpu\SoftmaxKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:22:03.4135692Z copying torch\include\ATen\native\cpu\SpmmReduceKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:22:03.4142737Z copying torch\include\ATen\native\cpu\StackKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:22:03.4149388Z copying torch\include\ATen\native\cpu\UpSampleKernelAVXAntialias.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:22:03.4156752Z copying torch\include\ATen\native\cpu\utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:22:03.4163171Z copying torch\include\ATen\native\cpu\WeightNormKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:22:03.4186207Z copying torch\include\ATen\native\cpu\zmath.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:22:03.4191781Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:03.4195201Z copying torch\include\ATen\native\cuda\Activation.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:03.4202511Z copying torch\include\ATen\native\cuda\BinaryInternal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:03.4209144Z copying torch\include\ATen\native\cuda\CompositeRandomAccessor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:03.4215512Z copying torch\include\ATen\native\cuda\Copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:03.4231008Z copying torch\include\ATen\native\cuda\CuFFTPlanCache.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:03.4237822Z copying torch\include\ATen\native\cuda\CuFFTUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:03.4249320Z copying torch\include\ATen\native\cuda\Distributions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:03.4255787Z copying torch\include\ATen\native\cuda\DistributionTemplates.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:03.4262835Z copying torch\include\ATen\native\cuda\GridSampler.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:03.4269050Z copying torch\include\ATen\native\cuda\GroupMM.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:03.4275183Z copying torch\include\ATen\native\cuda\IndexKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:03.4281247Z copying torch\include\ATen\native\cuda\IndexKernelUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:03.4287754Z copying torch\include\ATen\native\cuda\jit_utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:03.4294068Z copying torch\include\ATen\native\cuda\LaunchUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:03.4300210Z copying torch\include\ATen\native\cuda\MiscUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:03.4306493Z copying torch\include\ATen\native\cuda\ReduceOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:03.4312698Z copying torch\include\ATen\native\cuda\Resize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:03.4318919Z copying torch\include\ATen\native\cuda\RowwiseScaledMM.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:03.4330040Z copying torch\include\ATen\native\cuda\ScaledGroupMM.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:03.4336416Z copying torch\include\ATen\native\cuda\ScanKernels.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:03.4352970Z copying torch\include\ATen\native\cuda\Sort.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:03.4359073Z copying torch\include\ATen\native\cuda\Sorting.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:03.4369756Z copying torch\include\ATen\native\cuda\SortStable.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:03.4375873Z copying torch\include\ATen\native\cuda\TensorModeKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:03.4382083Z copying torch\include\ATen\native\cuda\TensorTopK.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:03.4388144Z copying torch\include\ATen\native\cuda\thread_constants.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:03.4398945Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip 2025-06-01T21:22:03.4401842Z copying torch\include\ATen\native\hip\ck_bgemm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip 2025-06-01T21:22:03.4408080Z copying torch\include\ATen\native\hip\ck_gemm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip 2025-06-01T21:22:03.4414446Z copying torch\include\ATen\native\hip\ck_gemm_template.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip 2025-06-01T21:22:03.4420621Z copying torch\include\ATen\native\hip\ck_types.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip 2025-06-01T21:22:03.4426193Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip\bgemm_kernels 2025-06-01T21:22:03.4439098Z 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-06-01T21:22:03.4445630Z 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-06-01T21:22:03.4451031Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\kleidiai 2025-06-01T21:22:03.4454125Z copying torch\include\ATen\native\kleidiai\kai_kernels.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\kleidiai 2025-06-01T21:22:03.4465948Z copying torch\include\ATen\native\kleidiai\kai_pack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\kleidiai 2025-06-01T21:22:03.4472357Z copying torch\include\ATen\native\kleidiai\kai_ukernel_interface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\kleidiai 2025-06-01T21:22:03.4477940Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu 2025-06-01T21:22:03.4482144Z copying torch\include\ATen\native\mkldnn\xpu\FusionUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu 2025-06-01T21:22:03.4487624Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail 2025-06-01T21:22:03.4490477Z copying torch\include\ATen\native\mkldnn\xpu\detail\Attr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail 2025-06-01T21:22:03.4501639Z copying torch\include\ATen\native\mkldnn\xpu\detail\DnnlExt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail 2025-06-01T21:22:03.4508490Z copying torch\include\ATen\native\mkldnn\xpu\detail\LRUCache.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail 2025-06-01T21:22:03.4514951Z copying torch\include\ATen\native\mkldnn\xpu\detail\oneDNN.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail 2025-06-01T21:22:03.4521298Z copying torch\include\ATen\native\mkldnn\xpu\detail\oneDNNContext.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail 2025-06-01T21:22:03.4527657Z copying torch\include\ATen\native\mkldnn\xpu\detail\Utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail 2025-06-01T21:22:03.4544102Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-06-01T21:22:03.4546880Z copying torch\include\ATen\native\mps\Copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-06-01T21:22:03.4555342Z copying torch\include\ATen\native\mps\MetalShaderLibrary.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-06-01T21:22:03.4565499Z copying torch\include\ATen\native\mps\MPSGraphSequoiaOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-06-01T21:22:03.4571850Z copying torch\include\ATen\native\mps\MPSGraphSonomaOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-06-01T21:22:03.4588679Z copying torch\include\ATen\native\mps\MPSGraphVenturaOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-06-01T21:22:03.4594918Z copying torch\include\ATen\native\mps\OperationUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-06-01T21:22:03.4601894Z copying torch\include\ATen\native\mps\TensorFactory.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-06-01T21:22:03.4607475Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-06-01T21:22:03.4610506Z copying torch\include\ATen\native\mps\operations\BinaryKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-06-01T21:22:03.4617431Z copying torch\include\ATen\native\mps\operations\FusedAdamAmsgradKernelImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-06-01T21:22:03.4628634Z copying torch\include\ATen\native\mps\operations\FusedAdamKernelImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-06-01T21:22:03.4649984Z copying torch\include\ATen\native\mps\operations\FusedAdamWAmsgradKernelImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-06-01T21:22:03.4657070Z copying torch\include\ATen\native\mps\operations\FusedAdamWKernelImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-06-01T21:22:03.4668084Z copying torch\include\ATen\native\mps\operations\Indexing.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-06-01T21:22:03.4674231Z copying torch\include\ATen\native\mps\operations\MultiTensorApply.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-06-01T21:22:03.4680599Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested 2025-06-01T21:22:03.4683794Z copying torch\include\ATen\native\nested\NestedTensorBinaryOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested 2025-06-01T21:22:03.4689937Z copying torch\include\ATen\native\nested\NestedTensorMath.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested 2025-06-01T21:22:03.4700881Z copying torch\include\ATen\native\nested\NestedTensorTransformerFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested 2025-06-01T21:22:03.4717661Z copying torch\include\ATen\native\nested\NestedTensorTransformerUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested 2025-06-01T21:22:03.4723961Z copying torch\include\ATen\native\nested\NestedTensorUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested 2025-06-01T21:22:03.4729617Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-06-01T21:22:03.4732633Z copying torch\include\ATen\native\quantized\AffineQuantizer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-06-01T21:22:03.4738871Z copying torch\include\ATen\native\quantized\AffineQuantizerBase.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-06-01T21:22:03.4745208Z copying torch\include\ATen\native\quantized\ConvUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-06-01T21:22:03.4761008Z copying torch\include\ATen\native\quantized\Copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-06-01T21:22:03.4766957Z copying torch\include\ATen\native\quantized\FakeQuantAffine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-06-01T21:22:03.4773130Z copying torch\include\ATen\native\quantized\IndexKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-06-01T21:22:03.4779277Z copying torch\include\ATen\native\quantized\library.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-06-01T21:22:03.4797512Z copying torch\include\ATen\native\quantized\PackedParams.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-06-01T21:22:03.4798409Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-06-01T21:22:03.4799181Z copying torch\include\ATen\native\quantized\cpu\ACLUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-06-01T21:22:03.4804655Z copying torch\include\ATen\native\quantized\cpu\BinaryOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-06-01T21:22:03.4810581Z copying torch\include\ATen\native\quantized\cpu\conv_serialization.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-06-01T21:22:03.4816945Z copying torch\include\ATen\native\quantized\cpu\EmbeddingPackedParams.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-06-01T21:22:03.4833673Z copying torch\include\ATen\native\quantized\cpu\fbgemm_utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-06-01T21:22:03.4839773Z copying torch\include\ATen\native\quantized\cpu\init_qnnpack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-06-01T21:22:03.4850853Z copying torch\include\ATen\native\quantized\cpu\OnednnUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-06-01T21:22:03.4857165Z copying torch\include\ATen\native\quantized\cpu\qconv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-06-01T21:22:03.4863505Z copying torch\include\ATen\native\quantized\cpu\qembeddingbag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-06-01T21:22:03.4870316Z copying torch\include\ATen\native\quantized\cpu\qembeddingbag_prepack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-06-01T21:22:03.4881329Z copying torch\include\ATen\native\quantized\cpu\qlinear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-06-01T21:22:03.4887506Z copying torch\include\ATen\native\quantized\cpu\QnnpackUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-06-01T21:22:03.4894272Z copying torch\include\ATen\native\quantized\cpu\QuantizedOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-06-01T21:22:03.4900611Z copying torch\include\ATen\native\quantized\cpu\QuantUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-06-01T21:22:03.4912250Z copying torch\include\ATen\native\quantized\cpu\RuyUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-06-01T21:22:03.4918381Z copying torch\include\ATen\native\quantized\cpu\XnnpackUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-06-01T21:22:03.4924202Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cudnn 2025-06-01T21:22:03.4927000Z copying torch\include\ATen\native\quantized\cudnn\utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cudnn 2025-06-01T21:22:03.4932387Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers 2025-06-01T21:22:03.4935590Z copying torch\include\ATen\native\transformers\attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers 2025-06-01T21:22:03.4948008Z copying torch\include\ATen\native\transformers\sdp_utils_cpp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers 2025-06-01T21:22:03.4953708Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda 2025-06-01T21:22:03.4956762Z copying torch\include\ATen\native\transformers\cuda\sdp_utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda 2025-06-01T21:22:03.4962266Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\flash_attn 2025-06-01T21:22:03.4965330Z 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-06-01T21:22:03.4971791Z 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-06-01T21:22:03.4977281Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention 2025-06-01T21:22:03.4980562Z 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-06-01T21:22:03.4987271Z 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-06-01T21:22:03.4993938Z 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-06-01T21:22:03.5016757Z 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-06-01T21:22:03.5024411Z 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-06-01T21:22:03.5029954Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue 2025-06-01T21:22:03.5033147Z 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-06-01T21:22:03.5040298Z 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-06-01T21:22:03.5051796Z 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-06-01T21:22:03.5067407Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-06-01T21:22:03.5070407Z 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-06-01T21:22:03.5076845Z 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-06-01T21:22:03.5089431Z 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-06-01T21:22:03.5096343Z 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-06-01T21:22:03.5113063Z 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-06-01T21:22:03.5123891Z 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-06-01T21:22:03.5131331Z 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-06-01T21:22:03.5138426Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-06-01T21:22:03.5141975Z 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-06-01T21:22:03.5149299Z 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-06-01T21:22:03.5161303Z 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-06-01T21:22:03.5177780Z 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-06-01T21:22:03.5185261Z 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-06-01T21:22:03.5196863Z 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-06-01T21:22:03.5203363Z 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-06-01T21:22:03.5208754Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernels 2025-06-01T21:22:03.5211821Z 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-06-01T21:22:03.5219425Z 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-06-01T21:22:03.5230752Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\transform 2025-06-01T21:22:03.5233946Z 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-06-01T21:22:03.5239108Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\hip 2025-06-01T21:22:03.5251380Z copying torch\include\ATen\native\transformers\hip\aotriton_adapter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\hip 2025-06-01T21:22:03.5256747Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\hip\flash_attn 2025-06-01T21:22:03.5259809Z 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-06-01T21:22:03.5272330Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\hip\flash_attn\ck 2025-06-01T21:22:03.5275427Z 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-06-01T21:22:03.5280939Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\utils 2025-06-01T21:22:03.5283831Z copying torch\include\ATen\native\utils\Factory.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\utils 2025-06-01T21:22:03.5289717Z copying torch\include\ATen\native\utils\ParamsHash.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\utils 2025-06-01T21:22:03.5316342Z copying torch\include\ATen\native\utils\ParamUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\utils 2025-06-01T21:22:03.5326824Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5329828Z copying torch\include\ATen\ops\abs.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5335894Z copying torch\include\ATen\ops\absolute.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5342396Z copying torch\include\ATen\ops\absolute_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5348443Z copying torch\include\ATen\ops\absolute_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5369074Z copying torch\include\ATen\ops\absolute_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5376086Z copying torch\include\ATen\ops\abs_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5382635Z copying torch\include\ATen\ops\abs_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5394279Z copying torch\include\ATen\ops\abs_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5400878Z copying torch\include\ATen\ops\abs_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5407506Z copying torch\include\ATen\ops\abs_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5413445Z copying torch\include\ATen\ops\acos.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5424146Z copying torch\include\ATen\ops\acosh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5430828Z copying torch\include\ATen\ops\acosh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5437074Z copying torch\include\ATen\ops\acosh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5443272Z copying torch\include\ATen\ops\acosh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5449579Z copying torch\include\ATen\ops\acosh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5456044Z copying torch\include\ATen\ops\acosh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5462466Z copying torch\include\ATen\ops\acosh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5468870Z copying torch\include\ATen\ops\acosh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5483227Z copying torch\include\ATen\ops\acos_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5500042Z copying torch\include\ATen\ops\acos_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5506320Z copying torch\include\ATen\ops\acos_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5512686Z copying torch\include\ATen\ops\acos_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5518950Z copying torch\include\ATen\ops\acos_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5525456Z copying torch\include\ATen\ops\acos_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5531902Z copying torch\include\ATen\ops\acos_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5538262Z copying torch\include\ATen\ops\adaptive_avg_pool1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5550505Z copying torch\include\ATen\ops\adaptive_avg_pool1d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5557172Z copying torch\include\ATen\ops\adaptive_avg_pool1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5573343Z copying torch\include\ATen\ops\adaptive_avg_pool1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5579831Z copying torch\include\ATen\ops\adaptive_avg_pool1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5591909Z copying torch\include\ATen\ops\adaptive_avg_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5598957Z copying torch\include\ATen\ops\adaptive_avg_pool2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5605435Z copying torch\include\ATen\ops\adaptive_avg_pool2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5612329Z copying torch\include\ATen\ops\adaptive_avg_pool2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5624415Z copying torch\include\ATen\ops\adaptive_avg_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5631886Z copying torch\include\ATen\ops\adaptive_avg_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5648146Z copying torch\include\ATen\ops\adaptive_avg_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5654726Z copying torch\include\ATen\ops\adaptive_avg_pool3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5665853Z copying torch\include\ATen\ops\adaptive_avg_pool3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5672586Z copying torch\include\ATen\ops\adaptive_avg_pool3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5679100Z copying torch\include\ATen\ops\adaptive_avg_pool3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5686125Z copying torch\include\ATen\ops\adaptive_avg_pool3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5697953Z copying torch\include\ATen\ops\adaptive_avg_pool3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5704554Z copying torch\include\ATen\ops\adaptive_avg_pool3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5711075Z copying torch\include\ATen\ops\adaptive_avg_pool3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5717679Z copying torch\include\ATen\ops\adaptive_avg_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5729030Z copying torch\include\ATen\ops\adaptive_avg_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5754430Z copying torch\include\ATen\ops\adaptive_max_pool1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5761296Z copying torch\include\ATen\ops\adaptive_max_pool1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5767660Z copying torch\include\ATen\ops\adaptive_max_pool1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5779209Z copying torch\include\ATen\ops\adaptive_max_pool1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5785848Z copying torch\include\ATen\ops\adaptive_max_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5792500Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5799408Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5806152Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5812895Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5819483Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5826219Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5846625Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5853144Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5860655Z copying torch\include\ATen\ops\adaptive_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5867050Z copying torch\include\ATen\ops\adaptive_max_pool2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5878742Z copying torch\include\ATen\ops\adaptive_max_pool2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5885231Z copying torch\include\ATen\ops\adaptive_max_pool2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5891871Z copying torch\include\ATen\ops\adaptive_max_pool2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5908374Z copying torch\include\ATen\ops\adaptive_max_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5919403Z copying torch\include\ATen\ops\adaptive_max_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5959241Z copying torch\include\ATen\ops\adaptive_max_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5966009Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5973176Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5988244Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.5995267Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6002011Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6008774Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6024296Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6031027Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6038557Z copying torch\include\ATen\ops\adaptive_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6075058Z copying torch\include\ATen\ops\adaptive_max_pool3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6081697Z copying torch\include\ATen\ops\adaptive_max_pool3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6088444Z copying torch\include\ATen\ops\adaptive_max_pool3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6095239Z copying torch\include\ATen\ops\adaptive_max_pool3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6102183Z copying torch\include\ATen\ops\adaptive_max_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6108897Z copying torch\include\ATen\ops\adaptive_max_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6115580Z copying torch\include\ATen\ops\add.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6121948Z copying torch\include\ATen\ops\addbmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6128183Z copying torch\include\ATen\ops\addbmm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6135441Z copying torch\include\ATen\ops\addbmm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6143215Z copying torch\include\ATen\ops\addbmm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6149896Z copying torch\include\ATen\ops\addbmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6156504Z copying torch\include\ATen\ops\addbmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6168793Z copying torch\include\ATen\ops\addcdiv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6175641Z copying torch\include\ATen\ops\addcdiv_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6182458Z copying torch\include\ATen\ops\addcdiv_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6189074Z copying torch\include\ATen\ops\addcdiv_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6209232Z copying torch\include\ATen\ops\addcdiv_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6215787Z copying torch\include\ATen\ops\addcdiv_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6222335Z copying torch\include\ATen\ops\addcdiv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6228905Z copying torch\include\ATen\ops\addcdiv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6235399Z copying torch\include\ATen\ops\addcmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6242284Z copying torch\include\ATen\ops\addcmul_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6248560Z copying torch\include\ATen\ops\addcmul_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6254986Z copying torch\include\ATen\ops\addcmul_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6266021Z copying torch\include\ATen\ops\addcmul_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6272678Z copying torch\include\ATen\ops\addcmul_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6279170Z copying torch\include\ATen\ops\addcmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6285881Z copying torch\include\ATen\ops\addcmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6296296Z copying torch\include\ATen\ops\addmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6303057Z copying torch\include\ATen\ops\addmm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6309297Z copying torch\include\ATen\ops\addmm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6315604Z copying torch\include\ATen\ops\addmm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6327368Z copying torch\include\ATen\ops\addmm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6333927Z copying torch\include\ATen\ops\addmm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6340510Z copying torch\include\ATen\ops\addmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6346946Z copying torch\include\ATen\ops\addmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6359630Z copying torch\include\ATen\ops\addmv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6366259Z copying torch\include\ATen\ops\addmv_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6384179Z copying torch\include\ATen\ops\addmv_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6390598Z copying torch\include\ATen\ops\addmv_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6402416Z copying torch\include\ATen\ops\addmv_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6409034Z copying torch\include\ATen\ops\addmv_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6415499Z copying torch\include\ATen\ops\addmv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6422041Z copying torch\include\ATen\ops\addmv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6433586Z copying torch\include\ATen\ops\addr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6440054Z copying torch\include\ATen\ops\addr_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6446353Z copying torch\include\ATen\ops\addr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6452679Z copying torch\include\ATen\ops\addr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6465580Z copying torch\include\ATen\ops\addr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6472105Z copying torch\include\ATen\ops\addr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6478744Z copying torch\include\ATen\ops\add_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6485284Z copying torch\include\ATen\ops\add_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6502859Z copying torch\include\ATen\ops\add_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6506341Z copying torch\include\ATen\ops\add_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6512879Z copying torch\include\ATen\ops\add_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6518872Z copying torch\include\ATen\ops\add_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6525793Z copying torch\include\ATen\ops\add_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6532241Z copying torch\include\ATen\ops\add_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6538475Z copying torch\include\ATen\ops\adjoint.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6544845Z copying torch\include\ATen\ops\adjoint_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6557238Z copying torch\include\ATen\ops\adjoint_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6563524Z copying torch\include\ATen\ops\adjoint_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6570081Z copying torch\include\ATen\ops\affine_grid_generator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6576969Z copying torch\include\ATen\ops\affine_grid_generator_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6588498Z copying torch\include\ATen\ops\affine_grid_generator_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6595117Z copying torch\include\ATen\ops\affine_grid_generator_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6602039Z copying torch\include\ATen\ops\affine_grid_generator_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6608546Z copying torch\include\ATen\ops\affine_grid_generator_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6630346Z copying torch\include\ATen\ops\affine_grid_generator_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6636831Z copying torch\include\ATen\ops\affine_grid_generator_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6643197Z copying torch\include\ATen\ops\alias.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6649445Z copying torch\include\ATen\ops\alias_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6660374Z copying torch\include\ATen\ops\alias_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6667376Z copying torch\include\ATen\ops\alias_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6674406Z copying torch\include\ATen\ops\alias_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6680832Z copying torch\include\ATen\ops\alias_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6691304Z copying torch\include\ATen\ops\alias_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6698073Z copying torch\include\ATen\ops\alias_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6734830Z copying torch\include\ATen\ops\alias_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6741691Z copying torch\include\ATen\ops\align_as.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6752956Z copying torch\include\ATen\ops\align_as_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6759338Z copying torch\include\ATen\ops\align_as_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6765666Z copying torch\include\ATen\ops\align_as_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6772233Z copying torch\include\ATen\ops\align_tensors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6779116Z copying torch\include\ATen\ops\align_tensors_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6786176Z copying torch\include\ATen\ops\align_tensors_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6793033Z copying torch\include\ATen\ops\align_tensors_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6799451Z copying torch\include\ATen\ops\align_to.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6805845Z copying torch\include\ATen\ops\align_to_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6812305Z copying torch\include\ATen\ops\align_to_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6819127Z copying torch\include\ATen\ops\align_to_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6825699Z copying torch\include\ATen\ops\all.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6836378Z copying torch\include\ATen\ops\allclose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6843081Z copying torch\include\ATen\ops\allclose_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6849582Z copying torch\include\ATen\ops\allclose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6855850Z copying torch\include\ATen\ops\allclose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6862890Z copying torch\include\ATen\ops\all_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6869432Z copying torch\include\ATen\ops\all_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6876154Z copying torch\include\ATen\ops\all_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6882576Z copying torch\include\ATen\ops\all_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6897231Z copying torch\include\ATen\ops\all_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6904076Z copying torch\include\ATen\ops\all_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6910662Z copying torch\include\ATen\ops\all_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6917216Z copying torch\include\ATen\ops\all_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6924227Z copying torch\include\ATen\ops\all_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6930653Z copying torch\include\ATen\ops\alpha_dropout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6937636Z copying torch\include\ATen\ops\alpha_dropout_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6944214Z copying torch\include\ATen\ops\alpha_dropout_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6967159Z copying torch\include\ATen\ops\alpha_dropout_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6973930Z copying torch\include\ATen\ops\amax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6980816Z copying torch\include\ATen\ops\amax_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6987284Z copying torch\include\ATen\ops\amax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.6999611Z copying torch\include\ATen\ops\amax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7006074Z copying torch\include\ATen\ops\amax_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7012775Z copying torch\include\ATen\ops\amax_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7019429Z copying torch\include\ATen\ops\amax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7035030Z copying torch\include\ATen\ops\amax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7041927Z copying torch\include\ATen\ops\amin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7048810Z copying torch\include\ATen\ops\aminmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7055542Z copying torch\include\ATen\ops\aminmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7066169Z copying torch\include\ATen\ops\aminmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7073061Z copying torch\include\ATen\ops\aminmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7079515Z copying torch\include\ATen\ops\aminmax_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7086074Z copying torch\include\ATen\ops\aminmax_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7097065Z copying torch\include\ATen\ops\aminmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7104073Z copying torch\include\ATen\ops\aminmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7111199Z copying torch\include\ATen\ops\amin_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7117568Z copying torch\include\ATen\ops\amin_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7124316Z copying torch\include\ATen\ops\amin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7130928Z copying torch\include\ATen\ops\amin_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7137959Z copying torch\include\ATen\ops\amin_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7145385Z copying torch\include\ATen\ops\amin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7158482Z copying torch\include\ATen\ops\amin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7164857Z copying torch\include\ATen\ops\and.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7171519Z copying torch\include\ATen\ops\and_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7178010Z copying torch\include\ATen\ops\and_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7189916Z copying torch\include\ATen\ops\and_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7196117Z copying torch\include\ATen\ops\angle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7202373Z copying torch\include\ATen\ops\angle_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7209168Z copying torch\include\ATen\ops\angle_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7221546Z copying torch\include\ATen\ops\angle_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7228289Z copying torch\include\ATen\ops\angle_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7234689Z copying torch\include\ATen\ops\any.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7241417Z copying torch\include\ATen\ops\any_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7252668Z copying torch\include\ATen\ops\any_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7259184Z copying torch\include\ATen\ops\any_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7265723Z copying torch\include\ATen\ops\any_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7272094Z copying torch\include\ATen\ops\any_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7290335Z copying torch\include\ATen\ops\any_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7296870Z copying torch\include\ATen\ops\any_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7303595Z copying torch\include\ATen\ops\any_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7310032Z copying torch\include\ATen\ops\any_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7321267Z copying torch\include\ATen\ops\arange.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7327728Z copying torch\include\ATen\ops\arange_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7334105Z copying torch\include\ATen\ops\arange_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7340598Z copying torch\include\ATen\ops\arange_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7347290Z copying torch\include\ATen\ops\arange_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7374584Z copying torch\include\ATen\ops\arange_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7381275Z copying torch\include\ATen\ops\arange_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7387957Z copying torch\include\ATen\ops\arccos.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7399332Z copying torch\include\ATen\ops\arccosh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7406741Z copying torch\include\ATen\ops\arccosh_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7413458Z copying torch\include\ATen\ops\arccosh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7421049Z copying torch\include\ATen\ops\arccosh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7434528Z copying torch\include\ATen\ops\arccos_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7442258Z copying torch\include\ATen\ops\arccos_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7449564Z copying torch\include\ATen\ops\arccos_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7456197Z copying torch\include\ATen\ops\arcsin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7467426Z copying torch\include\ATen\ops\arcsinh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7474149Z copying torch\include\ATen\ops\arcsinh_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7480634Z copying torch\include\ATen\ops\arcsinh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7487545Z copying torch\include\ATen\ops\arcsinh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7494501Z copying torch\include\ATen\ops\arcsin_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7501222Z copying torch\include\ATen\ops\arcsin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7507717Z copying torch\include\ATen\ops\arcsin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7514198Z copying torch\include\ATen\ops\arctan.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7520351Z copying torch\include\ATen\ops\arctan2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7526855Z copying torch\include\ATen\ops\arctan2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7533345Z copying torch\include\ATen\ops\arctan2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7539851Z copying torch\include\ATen\ops\arctan2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7546763Z copying torch\include\ATen\ops\arctanh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7553924Z copying torch\include\ATen\ops\arctanh_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7560340Z copying torch\include\ATen\ops\arctanh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7566705Z copying torch\include\ATen\ops\arctanh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7578131Z copying torch\include\ATen\ops\arctan_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7584901Z copying torch\include\ATen\ops\arctan_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7591448Z copying torch\include\ATen\ops\arctan_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7598033Z copying torch\include\ATen\ops\argmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7604982Z copying torch\include\ATen\ops\argmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7611661Z copying torch\include\ATen\ops\argmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7618193Z copying torch\include\ATen\ops\argmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7624787Z copying torch\include\ATen\ops\argmax_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7636690Z copying torch\include\ATen\ops\argmax_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7643183Z copying torch\include\ATen\ops\argmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7649758Z copying torch\include\ATen\ops\argmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7656395Z copying torch\include\ATen\ops\argmin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7663246Z copying torch\include\ATen\ops\argmin_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7669513Z copying torch\include\ATen\ops\argmin_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7676222Z copying torch\include\ATen\ops\argmin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7682776Z copying torch\include\ATen\ops\argmin_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7689654Z copying torch\include\ATen\ops\argmin_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7697288Z copying torch\include\ATen\ops\argmin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7705064Z copying torch\include\ATen\ops\argmin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7712847Z copying torch\include\ATen\ops\argsort.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7725256Z copying torch\include\ATen\ops\argsort_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7732108Z copying torch\include\ATen\ops\argsort_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7739189Z copying torch\include\ATen\ops\argsort_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7745951Z copying torch\include\ATen\ops\argwhere.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7752551Z copying torch\include\ATen\ops\argwhere_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7758929Z copying torch\include\ATen\ops\argwhere_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7765769Z copying torch\include\ATen\ops\argwhere_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7772106Z copying torch\include\ATen\ops\asin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7783585Z copying torch\include\ATen\ops\asinh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7790245Z copying torch\include\ATen\ops\asinh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7796596Z copying torch\include\ATen\ops\asinh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7803127Z copying torch\include\ATen\ops\asinh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7814452Z copying torch\include\ATen\ops\asinh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7820970Z copying torch\include\ATen\ops\asinh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7827659Z copying torch\include\ATen\ops\asinh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7839511Z copying torch\include\ATen\ops\asinh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7851625Z copying torch\include\ATen\ops\asin_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7857950Z copying torch\include\ATen\ops\asin_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7864546Z copying torch\include\ATen\ops\asin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7871022Z copying torch\include\ATen\ops\asin_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7882592Z copying torch\include\ATen\ops\asin_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7889270Z copying torch\include\ATen\ops\asin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7895891Z copying torch\include\ATen\ops\asin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7902649Z copying torch\include\ATen\ops\as_strided.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7910270Z copying torch\include\ATen\ops\as_strided_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7916651Z copying torch\include\ATen\ops\as_strided_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7923661Z copying torch\include\ATen\ops\as_strided_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7930260Z copying torch\include\ATen\ops\as_strided_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7937030Z copying torch\include\ATen\ops\as_strided_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7956143Z copying torch\include\ATen\ops\as_strided_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7962884Z copying torch\include\ATen\ops\as_strided_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.7969417Z copying torch\include\ATen\ops\as_strided_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8027302Z copying torch\include\ATen\ops\as_strided_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8033907Z copying torch\include\ATen\ops\as_strided_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8040494Z copying torch\include\ATen\ops\as_strided_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8047384Z copying torch\include\ATen\ops\as_strided_scatter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8054629Z copying torch\include\ATen\ops\as_strided_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8061567Z copying torch\include\ATen\ops\as_strided_scatter_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8068234Z copying torch\include\ATen\ops\as_strided_scatter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8074952Z copying torch\include\ATen\ops\as_strided_scatter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8085005Z copying torch\include\ATen\ops\atan.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8124422Z copying torch\include\ATen\ops\atan2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8131323Z copying torch\include\ATen\ops\atan2_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8137883Z copying torch\include\ATen\ops\atan2_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8151547Z copying torch\include\ATen\ops\atan2_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8159172Z copying torch\include\ATen\ops\atan2_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8165981Z copying torch\include\ATen\ops\atan2_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8172642Z copying torch\include\ATen\ops\atan2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8185106Z copying torch\include\ATen\ops\atan2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8191665Z copying torch\include\ATen\ops\atanh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8198696Z copying torch\include\ATen\ops\atanh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8204912Z copying torch\include\ATen\ops\atanh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8211392Z copying torch\include\ATen\ops\atanh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8218101Z copying torch\include\ATen\ops\atanh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8224498Z copying torch\include\ATen\ops\atanh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8230851Z copying torch\include\ATen\ops\atanh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8242348Z copying torch\include\ATen\ops\atanh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8249308Z copying torch\include\ATen\ops\atan_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8255774Z copying torch\include\ATen\ops\atan_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8262313Z copying torch\include\ATen\ops\atan_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8273724Z copying torch\include\ATen\ops\atan_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8280097Z copying torch\include\ATen\ops\atan_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8286619Z copying torch\include\ATen\ops\atan_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8292920Z copying torch\include\ATen\ops\atan_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8305322Z copying torch\include\ATen\ops\atleast_1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8311849Z copying torch\include\ATen\ops\atleast_1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8318460Z copying torch\include\ATen\ops\atleast_1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8324799Z copying torch\include\ATen\ops\atleast_1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8335697Z copying torch\include\ATen\ops\atleast_2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8342616Z copying torch\include\ATen\ops\atleast_2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8348935Z copying torch\include\ATen\ops\atleast_2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8355240Z copying torch\include\ATen\ops\atleast_2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8361943Z copying torch\include\ATen\ops\atleast_3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8368802Z copying torch\include\ATen\ops\atleast_3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8375163Z copying torch\include\ATen\ops\atleast_3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8381665Z copying torch\include\ATen\ops\atleast_3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8393049Z copying torch\include\ATen\ops\avg_pool1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8399949Z copying torch\include\ATen\ops\avg_pool1d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8406760Z copying torch\include\ATen\ops\avg_pool1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8413456Z copying torch\include\ATen\ops\avg_pool1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8420097Z copying torch\include\ATen\ops\avg_pool1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8426752Z copying torch\include\ATen\ops\avg_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8433723Z copying torch\include\ATen\ops\avg_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8440773Z copying torch\include\ATen\ops\avg_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8447445Z copying torch\include\ATen\ops\avg_pool2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8454205Z copying torch\include\ATen\ops\avg_pool2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8461164Z copying torch\include\ATen\ops\avg_pool2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8467931Z copying torch\include\ATen\ops\avg_pool2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8479064Z copying torch\include\ATen\ops\avg_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8485767Z copying torch\include\ATen\ops\avg_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8492952Z copying torch\include\ATen\ops\avg_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8499494Z copying torch\include\ATen\ops\avg_pool2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8516649Z copying torch\include\ATen\ops\avg_pool2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8523276Z copying torch\include\ATen\ops\avg_pool2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8530024Z copying torch\include\ATen\ops\avg_pool2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8536744Z copying torch\include\ATen\ops\avg_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8548634Z copying torch\include\ATen\ops\avg_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8555682Z copying torch\include\ATen\ops\avg_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8562480Z copying torch\include\ATen\ops\avg_pool3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8569686Z copying torch\include\ATen\ops\avg_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8576573Z copying torch\include\ATen\ops\avg_pool3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8583488Z copying torch\include\ATen\ops\avg_pool3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8590479Z copying torch\include\ATen\ops\avg_pool3d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8597348Z copying torch\include\ATen\ops\avg_pool3d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8604108Z copying torch\include\ATen\ops\avg_pool3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8617744Z copying torch\include\ATen\ops\avg_pool3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8625397Z copying torch\include\ATen\ops\avg_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8631748Z copying torch\include\ATen\ops\avg_pool3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8642929Z copying torch\include\ATen\ops\avg_pool3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8650325Z copying torch\include\ATen\ops\avg_pool3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8657926Z copying torch\include\ATen\ops\avg_pool3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8698889Z copying torch\include\ATen\ops\avg_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8710707Z copying torch\include\ATen\ops\avg_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8717374Z copying torch\include\ATen\ops\baddbmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8724058Z copying torch\include\ATen\ops\baddbmm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8730340Z copying torch\include\ATen\ops\baddbmm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8741546Z copying torch\include\ATen\ops\baddbmm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8748015Z copying torch\include\ATen\ops\baddbmm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8754849Z copying torch\include\ATen\ops\baddbmm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8761251Z copying torch\include\ATen\ops\baddbmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8768080Z copying torch\include\ATen\ops\baddbmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8774572Z copying torch\include\ATen\ops\bartlett_window.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8781634Z copying torch\include\ATen\ops\bartlett_window_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8787998Z copying torch\include\ATen\ops\bartlett_window_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8794795Z copying torch\include\ATen\ops\bartlett_window_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8801438Z copying torch\include\ATen\ops\batch_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8809085Z copying torch\include\ATen\ops\batch_norm_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8815247Z copying torch\include\ATen\ops\batch_norm_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8821966Z copying torch\include\ATen\ops\batch_norm_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8828874Z copying torch\include\ATen\ops\batch_norm_backward_elemt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8835920Z copying torch\include\ATen\ops\batch_norm_backward_elemt_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8843504Z copying torch\include\ATen\ops\batch_norm_backward_elemt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8852981Z copying torch\include\ATen\ops\batch_norm_backward_elemt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8860938Z copying torch\include\ATen\ops\batch_norm_backward_elemt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8867246Z copying torch\include\ATen\ops\batch_norm_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8873923Z copying torch\include\ATen\ops\batch_norm_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8885115Z copying torch\include\ATen\ops\batch_norm_backward_reduce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8892207Z copying torch\include\ATen\ops\batch_norm_backward_reduce_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8899103Z copying torch\include\ATen\ops\batch_norm_backward_reduce_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8906865Z copying torch\include\ATen\ops\batch_norm_backward_reduce_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8912978Z copying torch\include\ATen\ops\batch_norm_backward_reduce_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8919985Z copying torch\include\ATen\ops\batch_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8926548Z copying torch\include\ATen\ops\batch_norm_elemt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8933282Z copying torch\include\ATen\ops\batch_norm_elemt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8941470Z copying torch\include\ATen\ops\batch_norm_elemt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8947620Z copying torch\include\ATen\ops\batch_norm_elemt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8954608Z copying torch\include\ATen\ops\batch_norm_gather_stats.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8961788Z copying torch\include\ATen\ops\batch_norm_gather_stats_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8973199Z copying torch\include\ATen\ops\batch_norm_gather_stats_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8981326Z copying torch\include\ATen\ops\batch_norm_gather_stats_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8987597Z copying torch\include\ATen\ops\batch_norm_gather_stats_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.8994561Z copying torch\include\ATen\ops\batch_norm_gather_stats_with_counts.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.9007196Z 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-06-01T21:22:03.9015578Z 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-06-01T21:22:03.9024340Z copying torch\include\ATen\ops\batch_norm_gather_stats_with_counts_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.9030807Z copying torch\include\ATen\ops\batch_norm_gather_stats_with_counts_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.9042726Z copying torch\include\ATen\ops\batch_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.9050322Z copying torch\include\ATen\ops\batch_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.9057137Z copying torch\include\ATen\ops\batch_norm_stats.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.9064686Z copying torch\include\ATen\ops\batch_norm_stats_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.9076224Z copying torch\include\ATen\ops\batch_norm_stats_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.9083139Z copying torch\include\ATen\ops\batch_norm_stats_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.9089971Z copying torch\include\ATen\ops\batch_norm_stats_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.9096799Z copying torch\include\ATen\ops\batch_norm_update_stats.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.9109156Z copying torch\include\ATen\ops\batch_norm_update_stats_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.9117212Z copying torch\include\ATen\ops\batch_norm_update_stats_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.9123865Z copying torch\include\ATen\ops\batch_norm_update_stats_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.9131058Z copying torch\include\ATen\ops\batch_norm_update_stats_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.9137341Z copying torch\include\ATen\ops\batch_norm_update_stats_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.9146170Z copying torch\include\ATen\ops\bernoulli.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.9154053Z copying torch\include\ATen\ops\bernoulli_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.9162049Z copying torch\include\ATen\ops\bernoulli_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.9172066Z copying torch\include\ATen\ops\bernoulli_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:03.9184104Z copying torch\include\ATen\ops\bernoulli_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.0647209Z copying torch\include\ATen\ops\bernoulli_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.0653191Z copying torch\include\ATen\ops\bernoulli_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.0695222Z copying torch\include\ATen\ops\bernoulli_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.0706828Z copying torch\include\ATen\ops\bilinear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.0714788Z copying torch\include\ATen\ops\bilinear_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.0740844Z copying torch\include\ATen\ops\bilinear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.0747180Z copying torch\include\ATen\ops\bilinear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.0753847Z copying torch\include\ATen\ops\binary_cross_entropy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.0760483Z copying torch\include\ATen\ops\binary_cross_entropy_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.0767836Z copying torch\include\ATen\ops\binary_cross_entropy_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.0779728Z copying torch\include\ATen\ops\binary_cross_entropy_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.0786477Z copying torch\include\ATen\ops\binary_cross_entropy_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.0793094Z copying torch\include\ATen\ops\binary_cross_entropy_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.0799690Z copying torch\include\ATen\ops\binary_cross_entropy_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.0812312Z copying torch\include\ATen\ops\binary_cross_entropy_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.0818894Z copying torch\include\ATen\ops\binary_cross_entropy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.0826940Z copying torch\include\ATen\ops\binary_cross_entropy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.0833670Z copying torch\include\ATen\ops\binary_cross_entropy_with_logits.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.0845734Z copying torch\include\ATen\ops\binary_cross_entropy_with_logits_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.0852390Z copying torch\include\ATen\ops\binary_cross_entropy_with_logits_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.0859078Z copying torch\include\ATen\ops\binary_cross_entropy_with_logits_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.0865751Z copying torch\include\ATen\ops\bincount.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.0878023Z copying torch\include\ATen\ops\bincount_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.0884518Z copying torch\include\ATen\ops\bincount_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.0891075Z copying torch\include\ATen\ops\bincount_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.0897663Z copying torch\include\ATen\ops\bincount_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.0904385Z copying torch\include\ATen\ops\bincount_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.0911203Z copying torch\include\ATen\ops\binomial.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.0917794Z copying torch\include\ATen\ops\binomial_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.0924367Z copying torch\include\ATen\ops\binomial_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.0935635Z copying torch\include\ATen\ops\binomial_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.0942262Z copying torch\include\ATen\ops\binomial_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.0948796Z copying torch\include\ATen\ops\binomial_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.0955340Z copying torch\include\ATen\ops\bitwise_and.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.0962285Z copying torch\include\ATen\ops\bitwise_and_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.0968958Z copying torch\include\ATen\ops\bitwise_and_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.0976232Z copying torch\include\ATen\ops\bitwise_and_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.0983045Z copying torch\include\ATen\ops\bitwise_and_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.0995959Z copying torch\include\ATen\ops\bitwise_and_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1003715Z copying torch\include\ATen\ops\bitwise_and_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1009672Z copying torch\include\ATen\ops\bitwise_and_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1016281Z copying torch\include\ATen\ops\bitwise_and_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1030748Z copying torch\include\ATen\ops\bitwise_left_shift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1038438Z copying torch\include\ATen\ops\bitwise_left_shift_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1045154Z copying torch\include\ATen\ops\bitwise_left_shift_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1051827Z copying torch\include\ATen\ops\bitwise_left_shift_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1058649Z copying torch\include\ATen\ops\bitwise_left_shift_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1066895Z copying torch\include\ATen\ops\bitwise_left_shift_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1072919Z copying torch\include\ATen\ops\bitwise_left_shift_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1079838Z copying torch\include\ATen\ops\bitwise_left_shift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1086693Z copying torch\include\ATen\ops\bitwise_left_shift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1093612Z copying torch\include\ATen\ops\bitwise_not.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1101539Z copying torch\include\ATen\ops\bitwise_not_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1107521Z copying torch\include\ATen\ops\bitwise_not_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1122710Z copying torch\include\ATen\ops\bitwise_not_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1129957Z copying torch\include\ATen\ops\bitwise_not_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1136164Z copying torch\include\ATen\ops\bitwise_not_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1142915Z copying torch\include\ATen\ops\bitwise_not_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1150043Z copying torch\include\ATen\ops\bitwise_not_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1156907Z copying torch\include\ATen\ops\bitwise_or.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1179010Z copying torch\include\ATen\ops\bitwise_or_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1180186Z copying torch\include\ATen\ops\bitwise_or_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1181068Z copying torch\include\ATen\ops\bitwise_or_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1186823Z copying torch\include\ATen\ops\bitwise_or_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1193572Z copying torch\include\ATen\ops\bitwise_or_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1200506Z copying torch\include\ATen\ops\bitwise_or_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1207177Z copying torch\include\ATen\ops\bitwise_or_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1214291Z copying torch\include\ATen\ops\bitwise_or_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1221163Z copying torch\include\ATen\ops\bitwise_right_shift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1229723Z copying torch\include\ATen\ops\bitwise_right_shift_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1235325Z copying torch\include\ATen\ops\bitwise_right_shift_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1241948Z copying torch\include\ATen\ops\bitwise_right_shift_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1248634Z copying torch\include\ATen\ops\bitwise_right_shift_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1255175Z copying torch\include\ATen\ops\bitwise_right_shift_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1262190Z copying torch\include\ATen\ops\bitwise_right_shift_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1269062Z copying torch\include\ATen\ops\bitwise_right_shift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1275696Z copying torch\include\ATen\ops\bitwise_right_shift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1282296Z copying torch\include\ATen\ops\bitwise_xor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1294400Z copying torch\include\ATen\ops\bitwise_xor_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1301383Z copying torch\include\ATen\ops\bitwise_xor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1307990Z copying torch\include\ATen\ops\bitwise_xor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1314736Z copying torch\include\ATen\ops\bitwise_xor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1326588Z copying torch\include\ATen\ops\bitwise_xor_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1333026Z copying torch\include\ATen\ops\bitwise_xor_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1339744Z copying torch\include\ATen\ops\bitwise_xor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1346350Z copying torch\include\ATen\ops\bitwise_xor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1360068Z copying torch\include\ATen\ops\blackman_window.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1366945Z copying torch\include\ATen\ops\blackman_window_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1373667Z copying torch\include\ATen\ops\blackman_window_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1380320Z copying torch\include\ATen\ops\blackman_window_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1392396Z copying torch\include\ATen\ops\block_diag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1399359Z copying torch\include\ATen\ops\block_diag_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1405733Z copying torch\include\ATen\ops\block_diag_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1411921Z copying torch\include\ATen\ops\block_diag_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1418460Z copying torch\include\ATen\ops\bmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1426316Z copying torch\include\ATen\ops\bmm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1432842Z copying torch\include\ATen\ops\bmm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1439285Z copying torch\include\ATen\ops\bmm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1451013Z copying torch\include\ATen\ops\bmm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1457121Z copying torch\include\ATen\ops\bmm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1463755Z copying torch\include\ATen\ops\bmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1470135Z copying torch\include\ATen\ops\bmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1481072Z copying torch\include\ATen\ops\broadcast_tensors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1488190Z copying torch\include\ATen\ops\broadcast_tensors_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1495405Z copying torch\include\ATen\ops\broadcast_tensors_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1503805Z copying torch\include\ATen\ops\broadcast_tensors_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1515594Z copying torch\include\ATen\ops\broadcast_to.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1522489Z copying torch\include\ATen\ops\broadcast_to_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1529336Z copying torch\include\ATen\ops\broadcast_to_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1536531Z copying torch\include\ATen\ops\broadcast_to_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1545017Z copying torch\include\ATen\ops\bucketize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1552191Z copying torch\include\ATen\ops\bucketize_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1559593Z copying torch\include\ATen\ops\bucketize_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1566983Z copying torch\include\ATen\ops\bucketize_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1573731Z copying torch\include\ATen\ops\bucketize_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1580522Z copying torch\include\ATen\ops\bucketize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1587238Z copying torch\include\ATen\ops\can_cast.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1594045Z copying torch\include\ATen\ops\can_cast_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1605878Z copying torch\include\ATen\ops\can_cast_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1612162Z copying torch\include\ATen\ops\can_cast_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1618864Z copying torch\include\ATen\ops\cartesian_prod.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1625753Z copying torch\include\ATen\ops\cartesian_prod_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1638322Z copying torch\include\ATen\ops\cartesian_prod_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1678587Z copying torch\include\ATen\ops\cartesian_prod_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1684838Z copying torch\include\ATen\ops\cat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1691674Z copying torch\include\ATen\ops\cat_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1704163Z copying torch\include\ATen\ops\cat_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1710710Z copying torch\include\ATen\ops\cat_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1717099Z copying torch\include\ATen\ops\cat_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1723380Z copying torch\include\ATen\ops\cat_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1734851Z copying torch\include\ATen\ops\cat_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1741384Z copying torch\include\ATen\ops\cat_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1748008Z copying torch\include\ATen\ops\cat_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1754526Z copying torch\include\ATen\ops\cauchy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1766739Z copying torch\include\ATen\ops\cauchy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1773529Z copying torch\include\ATen\ops\cauchy_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1779810Z copying torch\include\ATen\ops\cauchy_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1786410Z copying torch\include\ATen\ops\cauchy_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1808287Z copying torch\include\ATen\ops\cauchy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1815646Z copying torch\include\ATen\ops\cauchy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1822751Z copying torch\include\ATen\ops\ccol_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1829153Z copying torch\include\ATen\ops\ccol_indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1839774Z copying torch\include\ATen\ops\ccol_indices_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1847053Z copying torch\include\ATen\ops\ccol_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1854188Z copying torch\include\ATen\ops\ccol_indices_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1861965Z copying torch\include\ATen\ops\ccol_indices_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1873671Z copying torch\include\ATen\ops\ccol_indices_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1880203Z copying torch\include\ATen\ops\ccol_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1886632Z copying torch\include\ATen\ops\ccol_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1893145Z copying torch\include\ATen\ops\cdist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1904551Z copying torch\include\ATen\ops\cdist_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1911143Z copying torch\include\ATen\ops\cdist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1917555Z copying torch\include\ATen\ops\cdist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1924991Z copying torch\include\ATen\ops\ceil.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1940243Z copying torch\include\ATen\ops\ceil_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1946749Z copying torch\include\ATen\ops\ceil_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1953880Z copying torch\include\ATen\ops\ceil_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1960067Z copying torch\include\ATen\ops\ceil_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1966513Z copying torch\include\ATen\ops\ceil_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1973026Z copying torch\include\ATen\ops\ceil_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1979613Z copying torch\include\ATen\ops\ceil_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1986089Z copying torch\include\ATen\ops\celu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1994028Z copying torch\include\ATen\ops\celu_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.1999649Z copying torch\include\ATen\ops\celu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2006210Z copying torch\include\ATen\ops\celu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2012604Z copying torch\include\ATen\ops\chain_matmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2024841Z copying torch\include\ATen\ops\chain_matmul_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2031512Z copying torch\include\ATen\ops\chain_matmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2037937Z copying torch\include\ATen\ops\chain_matmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2045062Z copying torch\include\ATen\ops\chalf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2051249Z copying torch\include\ATen\ops\chalf_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2058008Z copying torch\include\ATen\ops\chalf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2064475Z copying torch\include\ATen\ops\chalf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2071124Z copying torch\include\ATen\ops\channel_shuffle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2084107Z copying torch\include\ATen\ops\channel_shuffle_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2090828Z copying torch\include\ATen\ops\channel_shuffle_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2097647Z copying torch\include\ATen\ops\channel_shuffle_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2104318Z copying torch\include\ATen\ops\channel_shuffle_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2116613Z copying torch\include\ATen\ops\channel_shuffle_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2123049Z copying torch\include\ATen\ops\cholesky.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2129404Z copying torch\include\ATen\ops\cholesky_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2136053Z copying torch\include\ATen\ops\cholesky_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2146537Z copying torch\include\ATen\ops\cholesky_inverse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2153026Z copying torch\include\ATen\ops\cholesky_inverse_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2159781Z copying torch\include\ATen\ops\cholesky_inverse_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2166313Z copying torch\include\ATen\ops\cholesky_inverse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2177921Z copying torch\include\ATen\ops\cholesky_inverse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2184666Z copying torch\include\ATen\ops\cholesky_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2191198Z copying torch\include\ATen\ops\cholesky_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2199061Z copying torch\include\ATen\ops\cholesky_solve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2204778Z copying torch\include\ATen\ops\cholesky_solve_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2211344Z copying torch\include\ATen\ops\cholesky_solve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2218118Z copying torch\include\ATen\ops\cholesky_solve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2224815Z copying torch\include\ATen\ops\choose_qparams_optimized.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2236703Z copying torch\include\ATen\ops\choose_qparams_optimized_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2243166Z copying torch\include\ATen\ops\choose_qparams_optimized_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2249829Z copying torch\include\ATen\ops\choose_qparams_optimized_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2256128Z copying torch\include\ATen\ops\chunk.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2268076Z copying torch\include\ATen\ops\chunk_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2274544Z copying torch\include\ATen\ops\chunk_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2281071Z copying torch\include\ATen\ops\chunk_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2287481Z copying torch\include\ATen\ops\clamp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2305772Z copying torch\include\ATen\ops\clamp_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2306745Z copying torch\include\ATen\ops\clamp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2315795Z copying torch\include\ATen\ops\clamp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2322923Z copying torch\include\ATen\ops\clamp_max.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2332804Z copying torch\include\ATen\ops\clamp_max_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2340126Z copying torch\include\ATen\ops\clamp_max_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2346733Z copying torch\include\ATen\ops\clamp_max_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2353283Z copying torch\include\ATen\ops\clamp_max_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2366924Z copying torch\include\ATen\ops\clamp_max_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2374300Z copying torch\include\ATen\ops\clamp_max_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2380361Z copying torch\include\ATen\ops\clamp_max_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2387170Z copying torch\include\ATen\ops\clamp_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2394024Z copying torch\include\ATen\ops\clamp_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2400741Z copying torch\include\ATen\ops\clamp_min.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2408768Z copying torch\include\ATen\ops\clamp_min_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2414678Z copying torch\include\ATen\ops\clamp_min_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2421557Z copying torch\include\ATen\ops\clamp_min_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2428279Z copying torch\include\ATen\ops\clamp_min_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2435296Z copying torch\include\ATen\ops\clamp_min_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2442878Z copying torch\include\ATen\ops\clamp_min_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2448639Z copying torch\include\ATen\ops\clamp_min_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2455773Z copying torch\include\ATen\ops\clamp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2462344Z copying torch\include\ATen\ops\clamp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2469385Z copying torch\include\ATen\ops\clip.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2476001Z copying torch\include\ATen\ops\clip_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2482570Z copying torch\include\ATen\ops\clip_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2489613Z copying torch\include\ATen\ops\clip_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2495984Z copying torch\include\ATen\ops\clone.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2502758Z copying torch\include\ATen\ops\clone_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2509297Z copying torch\include\ATen\ops\clone_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2515807Z copying torch\include\ATen\ops\clone_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2522424Z copying torch\include\ATen\ops\coalesce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2528885Z copying torch\include\ATen\ops\coalesce_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2535391Z copying torch\include\ATen\ops\coalesce_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2542066Z copying torch\include\ATen\ops\coalesce_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2548864Z copying torch\include\ATen\ops\col2im.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2555040Z copying torch\include\ATen\ops\col2im_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2561737Z copying torch\include\ATen\ops\col2im_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2568416Z copying torch\include\ATen\ops\col2im_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2575025Z copying torch\include\ATen\ops\col2im_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2581897Z copying torch\include\ATen\ops\column_stack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2588843Z copying torch\include\ATen\ops\column_stack_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2595609Z copying torch\include\ATen\ops\column_stack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2602020Z copying torch\include\ATen\ops\column_stack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2609247Z copying torch\include\ATen\ops\col_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2615835Z copying torch\include\ATen\ops\col_indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2622561Z copying torch\include\ATen\ops\col_indices_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2629590Z copying torch\include\ATen\ops\col_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2636469Z copying torch\include\ATen\ops\col_indices_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2643469Z copying torch\include\ATen\ops\col_indices_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2650409Z copying torch\include\ATen\ops\col_indices_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2663733Z copying torch\include\ATen\ops\col_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2670384Z copying torch\include\ATen\ops\col_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2677106Z copying torch\include\ATen\ops\combinations.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2685091Z copying torch\include\ATen\ops\combinations_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2694576Z copying torch\include\ATen\ops\combinations_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2701230Z copying torch\include\ATen\ops\combinations_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2714015Z copying torch\include\ATen\ops\complex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2714858Z copying torch\include\ATen\ops\complex_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2720407Z copying torch\include\ATen\ops\complex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2727106Z copying torch\include\ATen\ops\complex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2733807Z copying torch\include\ATen\ops\complex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2740621Z copying torch\include\ATen\ops\complex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2747143Z copying torch\include\ATen\ops\concat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2753848Z copying torch\include\ATen\ops\concatenate.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2760774Z copying torch\include\ATen\ops\concatenate_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2767495Z copying torch\include\ATen\ops\concatenate_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2774095Z copying torch\include\ATen\ops\concatenate_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2781041Z copying torch\include\ATen\ops\concat_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2787572Z copying torch\include\ATen\ops\concat_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2794121Z copying torch\include\ATen\ops\concat_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2801039Z copying torch\include\ATen\ops\conj.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2807431Z copying torch\include\ATen\ops\conj_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2813867Z copying torch\include\ATen\ops\conj_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2820270Z copying torch\include\ATen\ops\conj_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2826566Z copying torch\include\ATen\ops\conj_physical.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2833675Z copying torch\include\ATen\ops\conj_physical_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2840621Z copying torch\include\ATen\ops\conj_physical_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2847288Z copying torch\include\ATen\ops\conj_physical_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2854007Z copying torch\include\ATen\ops\conj_physical_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2860652Z copying torch\include\ATen\ops\conj_physical_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2867343Z copying torch\include\ATen\ops\conj_physical_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2874145Z copying torch\include\ATen\ops\constant_pad_nd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2880957Z copying torch\include\ATen\ops\constant_pad_nd_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2887417Z copying torch\include\ATen\ops\constant_pad_nd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2894123Z copying torch\include\ATen\ops\constant_pad_nd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2900783Z copying torch\include\ATen\ops\contiguous.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2920959Z copying torch\include\ATen\ops\contiguous_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2927400Z copying torch\include\ATen\ops\contiguous_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2933729Z copying torch\include\ATen\ops\contiguous_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2940317Z copying torch\include\ATen\ops\conv1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2946824Z copying torch\include\ATen\ops\conv1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2953620Z copying torch\include\ATen\ops\conv1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2960815Z copying torch\include\ATen\ops\conv1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2967548Z copying torch\include\ATen\ops\conv2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.2974195Z copying torch\include\ATen\ops\conv2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3019499Z copying torch\include\ATen\ops\conv2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3020785Z copying torch\include\ATen\ops\conv2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3021825Z copying torch\include\ATen\ops\conv3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3023082Z copying torch\include\ATen\ops\conv3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3024405Z copying torch\include\ATen\ops\conv3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3025513Z copying torch\include\ATen\ops\conv3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3029039Z copying torch\include\ATen\ops\convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3038141Z copying torch\include\ATen\ops\convolution_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3047813Z copying torch\include\ATen\ops\convolution_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3056372Z copying torch\include\ATen\ops\convolution_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3063367Z copying torch\include\ATen\ops\convolution_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3070287Z copying torch\include\ATen\ops\convolution_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3077517Z copying torch\include\ATen\ops\convolution_backward_overrideable.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3085596Z copying torch\include\ATen\ops\convolution_backward_overrideable_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3091522Z copying torch\include\ATen\ops\convolution_backward_overrideable_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3098172Z copying torch\include\ATen\ops\convolution_backward_overrideable_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3105442Z copying torch\include\ATen\ops\convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3112293Z copying torch\include\ATen\ops\convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3120026Z copying torch\include\ATen\ops\convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3126263Z copying torch\include\ATen\ops\convolution_overrideable.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3133541Z copying torch\include\ATen\ops\convolution_overrideable_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3140424Z copying torch\include\ATen\ops\convolution_overrideable_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3148532Z copying torch\include\ATen\ops\convolution_overrideable_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3154864Z copying torch\include\ATen\ops\conv_depthwise3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3161894Z copying torch\include\ATen\ops\conv_depthwise3d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3168674Z copying torch\include\ATen\ops\conv_depthwise3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3175373Z copying torch\include\ATen\ops\conv_depthwise3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3183281Z copying torch\include\ATen\ops\conv_depthwise3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3191606Z copying torch\include\ATen\ops\conv_tbc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3196890Z copying torch\include\ATen\ops\conv_tbc_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3206093Z copying torch\include\ATen\ops\conv_tbc_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3210079Z copying torch\include\ATen\ops\conv_tbc_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3217214Z copying torch\include\ATen\ops\conv_tbc_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3224358Z copying torch\include\ATen\ops\conv_tbc_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3282515Z copying torch\include\ATen\ops\conv_tbc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3289346Z copying torch\include\ATen\ops\conv_tbc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3296342Z copying torch\include\ATen\ops\conv_transpose1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3303485Z copying torch\include\ATen\ops\conv_transpose1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3310119Z copying torch\include\ATen\ops\conv_transpose1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3317027Z copying torch\include\ATen\ops\conv_transpose1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3323521Z copying torch\include\ATen\ops\conv_transpose2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3331661Z copying torch\include\ATen\ops\conv_transpose2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3337487Z copying torch\include\ATen\ops\conv_transpose2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3344452Z copying torch\include\ATen\ops\conv_transpose2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3351249Z copying torch\include\ATen\ops\conv_transpose3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3358224Z copying torch\include\ATen\ops\conv_transpose3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3364903Z copying torch\include\ATen\ops\conv_transpose3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3371620Z copying torch\include\ATen\ops\conv_transpose3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3378220Z copying torch\include\ATen\ops\copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3384618Z copying torch\include\ATen\ops\copysign.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3391373Z copying torch\include\ATen\ops\copysign_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3398203Z copying torch\include\ATen\ops\copysign_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3404840Z copying torch\include\ATen\ops\copysign_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3411461Z copying torch\include\ATen\ops\copysign_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3418077Z copying torch\include\ATen\ops\copysign_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3424922Z copying torch\include\ATen\ops\copysign_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3431556Z copying torch\include\ATen\ops\copysign_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3438498Z copying torch\include\ATen\ops\copysign_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3446161Z copying torch\include\ATen\ops\copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3452755Z copying torch\include\ATen\ops\copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3459340Z copying torch\include\ATen\ops\copy_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3465990Z copying torch\include\ATen\ops\copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3472874Z copying torch\include\ATen\ops\copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3479450Z copying torch\include\ATen\ops\copy_sparse_to_sparse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3486827Z copying torch\include\ATen\ops\copy_sparse_to_sparse_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3493735Z copying torch\include\ATen\ops\copy_sparse_to_sparse_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3500748Z copying torch\include\ATen\ops\copy_sparse_to_sparse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3507586Z copying torch\include\ATen\ops\copy_sparse_to_sparse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3514420Z copying torch\include\ATen\ops\corrcoef.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3521659Z copying torch\include\ATen\ops\corrcoef_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3527798Z copying torch\include\ATen\ops\corrcoef_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3534462Z copying torch\include\ATen\ops\corrcoef_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3541283Z copying torch\include\ATen\ops\cos.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3547632Z copying torch\include\ATen\ops\cosh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3555453Z copying torch\include\ATen\ops\cosh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3561301Z copying torch\include\ATen\ops\cosh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3568043Z copying torch\include\ATen\ops\cosh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3574902Z copying torch\include\ATen\ops\cosh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3581512Z copying torch\include\ATen\ops\cosh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3589851Z copying torch\include\ATen\ops\cosh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3595993Z copying torch\include\ATen\ops\cosh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3633172Z copying torch\include\ATen\ops\cosine_embedding_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3641163Z copying torch\include\ATen\ops\cosine_embedding_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3647183Z copying torch\include\ATen\ops\cosine_embedding_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3653832Z copying torch\include\ATen\ops\cosine_embedding_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3660671Z copying torch\include\ATen\ops\cosine_similarity.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3667958Z copying torch\include\ATen\ops\cosine_similarity_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3675727Z copying torch\include\ATen\ops\cosine_similarity_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3682321Z copying torch\include\ATen\ops\cosine_similarity_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3697364Z copying torch\include\ATen\ops\cos_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3698409Z copying torch\include\ATen\ops\cos_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3704121Z copying torch\include\ATen\ops\cos_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3710998Z copying torch\include\ATen\ops\cos_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3717371Z copying torch\include\ATen\ops\cos_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3724049Z copying torch\include\ATen\ops\cos_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3731782Z copying torch\include\ATen\ops\cos_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3737055Z copying torch\include\ATen\ops\count_nonzero.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3744529Z copying torch\include\ATen\ops\count_nonzero_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3751267Z copying torch\include\ATen\ops\count_nonzero_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3757781Z copying torch\include\ATen\ops\count_nonzero_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3764569Z copying torch\include\ATen\ops\count_nonzero_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3771168Z copying torch\include\ATen\ops\count_nonzero_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3778648Z copying torch\include\ATen\ops\cov.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3784279Z copying torch\include\ATen\ops\cov_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3790629Z copying torch\include\ATen\ops\cov_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3797105Z copying torch\include\ATen\ops\cov_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3803301Z copying torch\include\ATen\ops\cross.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3809774Z copying torch\include\ATen\ops\cross_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3816413Z copying torch\include\ATen\ops\cross_entropy_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3823555Z copying torch\include\ATen\ops\cross_entropy_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3830049Z copying torch\include\ATen\ops\cross_entropy_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3836724Z copying torch\include\ATen\ops\cross_entropy_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3843424Z copying torch\include\ATen\ops\cross_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3863890Z copying torch\include\ATen\ops\cross_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3870652Z copying torch\include\ATen\ops\crow_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3877583Z copying torch\include\ATen\ops\crow_indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3884241Z copying torch\include\ATen\ops\crow_indices_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3892011Z copying torch\include\ATen\ops\crow_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3898544Z copying torch\include\ATen\ops\crow_indices_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3905565Z copying torch\include\ATen\ops\crow_indices_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3912257Z copying torch\include\ATen\ops\crow_indices_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3920344Z copying torch\include\ATen\ops\crow_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3926102Z copying torch\include\ATen\ops\crow_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3932615Z copying torch\include\ATen\ops\ctc_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3939406Z copying torch\include\ATen\ops\ctc_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3946300Z copying torch\include\ATen\ops\ctc_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3952904Z copying torch\include\ATen\ops\ctc_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3960388Z copying torch\include\ATen\ops\cudnn_affine_grid_generator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3979992Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3987154Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.3994370Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4001119Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4007925Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4015278Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4022979Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4035001Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4043001Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4049677Z copying torch\include\ATen\ops\cudnn_batch_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4057566Z copying torch\include\ATen\ops\cudnn_batch_norm_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4064112Z copying torch\include\ATen\ops\cudnn_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4071026Z copying torch\include\ATen\ops\cudnn_batch_norm_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4077921Z copying torch\include\ATen\ops\cudnn_batch_norm_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4085741Z copying torch\include\ATen\ops\cudnn_batch_norm_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4091986Z copying torch\include\ATen\ops\cudnn_batch_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4098902Z copying torch\include\ATen\ops\cudnn_batch_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4106063Z copying torch\include\ATen\ops\cudnn_batch_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4112894Z copying torch\include\ATen\ops\cudnn_batch_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4120406Z copying torch\include\ATen\ops\cudnn_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4127021Z copying torch\include\ATen\ops\cudnn_convolution_add_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4134183Z copying torch\include\ATen\ops\cudnn_convolution_add_relu_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4141154Z copying torch\include\ATen\ops\cudnn_convolution_add_relu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4149162Z copying torch\include\ATen\ops\cudnn_convolution_add_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4155179Z copying torch\include\ATen\ops\cudnn_convolution_add_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4162042Z copying torch\include\ATen\ops\cudnn_convolution_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4168786Z copying torch\include\ATen\ops\cudnn_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4175524Z copying torch\include\ATen\ops\cudnn_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4182834Z copying torch\include\ATen\ops\cudnn_convolution_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4189549Z copying torch\include\ATen\ops\cudnn_convolution_relu_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4196661Z copying torch\include\ATen\ops\cudnn_convolution_relu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4203616Z copying torch\include\ATen\ops\cudnn_convolution_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4210358Z copying torch\include\ATen\ops\cudnn_convolution_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4217251Z copying torch\include\ATen\ops\cudnn_convolution_transpose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4224506Z copying torch\include\ATen\ops\cudnn_convolution_transpose_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4232153Z copying torch\include\ATen\ops\cudnn_convolution_transpose_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4238981Z copying torch\include\ATen\ops\cudnn_convolution_transpose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4245709Z copying torch\include\ATen\ops\cudnn_convolution_transpose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4252315Z copying torch\include\ATen\ops\cudnn_grid_sampler.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4258838Z copying torch\include\ATen\ops\cudnn_grid_sampler_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4265755Z copying torch\include\ATen\ops\cudnn_grid_sampler_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4272950Z copying torch\include\ATen\ops\cudnn_grid_sampler_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4279767Z copying torch\include\ATen\ops\cudnn_grid_sampler_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4286665Z copying torch\include\ATen\ops\cudnn_grid_sampler_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4293655Z copying torch\include\ATen\ops\cudnn_grid_sampler_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4300631Z copying torch\include\ATen\ops\cudnn_grid_sampler_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4307419Z copying torch\include\ATen\ops\cudnn_grid_sampler_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4313983Z copying torch\include\ATen\ops\cudnn_grid_sampler_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4321010Z copying torch\include\ATen\ops\cudnn_is_acceptable.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4327984Z copying torch\include\ATen\ops\cudnn_is_acceptable_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4334688Z copying torch\include\ATen\ops\cudnn_is_acceptable_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4341144Z copying torch\include\ATen\ops\cudnn_is_acceptable_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4347734Z copying torch\include\ATen\ops\cummax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4354341Z copying torch\include\ATen\ops\cummaxmin_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4361145Z copying torch\include\ATen\ops\cummaxmin_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4367696Z copying torch\include\ATen\ops\cummaxmin_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4374202Z copying torch\include\ATen\ops\cummaxmin_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4381126Z copying torch\include\ATen\ops\cummax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4387844Z copying torch\include\ATen\ops\cummax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4394473Z copying torch\include\ATen\ops\cummax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4401052Z copying torch\include\ATen\ops\cummax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4407722Z copying torch\include\ATen\ops\cummin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4414211Z copying torch\include\ATen\ops\cummin_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4420891Z copying torch\include\ATen\ops\cummin_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4427342Z copying torch\include\ATen\ops\cummin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4433926Z copying torch\include\ATen\ops\cummin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4441270Z copying torch\include\ATen\ops\cumprod.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4447778Z copying torch\include\ATen\ops\cumprod_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4454735Z copying torch\include\ATen\ops\cumprod_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4461647Z copying torch\include\ATen\ops\cumprod_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4467709Z copying torch\include\ATen\ops\cumprod_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4474587Z copying torch\include\ATen\ops\cumprod_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4481433Z copying torch\include\ATen\ops\cumprod_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4488535Z copying torch\include\ATen\ops\cumprod_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4494898Z copying torch\include\ATen\ops\cumprod_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4501770Z copying torch\include\ATen\ops\cumprod_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4508485Z copying torch\include\ATen\ops\cumprod_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4515732Z copying torch\include\ATen\ops\cumprod_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4522954Z copying torch\include\ATen\ops\cumprod_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4529697Z copying torch\include\ATen\ops\cumsum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4536557Z copying torch\include\ATen\ops\cumsum_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4543625Z copying torch\include\ATen\ops\cumsum_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4716912Z copying torch\include\ATen\ops\cumsum_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4717907Z copying torch\include\ATen\ops\cumsum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4718645Z copying torch\include\ATen\ops\cumsum_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4719390Z copying torch\include\ATen\ops\cumsum_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4720128Z copying torch\include\ATen\ops\cumsum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4720821Z copying torch\include\ATen\ops\cumsum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4722943Z copying torch\include\ATen\ops\cumulative_trapezoid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4723878Z copying torch\include\ATen\ops\cumulative_trapezoid_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4724908Z copying torch\include\ATen\ops\cumulative_trapezoid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4725720Z copying torch\include\ATen\ops\cumulative_trapezoid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4726441Z copying torch\include\ATen\ops\data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4727238Z copying torch\include\ATen\ops\data_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4729398Z copying torch\include\ATen\ops\data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4730089Z copying torch\include\ATen\ops\data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4730749Z copying torch\include\ATen\ops\deg2rad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4731569Z copying torch\include\ATen\ops\deg2rad_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4732415Z copying torch\include\ATen\ops\deg2rad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4733223Z copying torch\include\ATen\ops\deg2rad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4735261Z copying torch\include\ATen\ops\dense_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4736079Z copying torch\include\ATen\ops\dense_dim_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4737007Z copying torch\include\ATen\ops\dense_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4737723Z copying torch\include\ATen\ops\dense_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4738405Z copying torch\include\ATen\ops\dequantize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4739243Z copying torch\include\ATen\ops\dequantize_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4741538Z copying torch\include\ATen\ops\dequantize_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4742409Z copying torch\include\ATen\ops\dequantize_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4743197Z copying torch\include\ATen\ops\dequantize_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4743923Z copying torch\include\ATen\ops\dequantize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4745430Z copying torch\include\ATen\ops\det.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4752481Z copying torch\include\ATen\ops\detach.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4759040Z copying torch\include\ATen\ops\detach_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4764988Z copying torch\include\ATen\ops\detach_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4771991Z copying torch\include\ATen\ops\detach_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4779086Z copying torch\include\ATen\ops\detach_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4786074Z copying torch\include\ATen\ops\detach_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4792386Z copying torch\include\ATen\ops\detach_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4799067Z copying torch\include\ATen\ops\detach_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4805461Z copying torch\include\ATen\ops\detach_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4812438Z copying torch\include\ATen\ops\det_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4818917Z copying torch\include\ATen\ops\det_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4825274Z copying torch\include\ATen\ops\det_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4831647Z copying torch\include\ATen\ops\diag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4838049Z copying torch\include\ATen\ops\diagflat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4844706Z copying torch\include\ATen\ops\diagflat_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4850891Z copying torch\include\ATen\ops\diagflat_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4857336Z copying torch\include\ATen\ops\diagflat_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4864073Z copying torch\include\ATen\ops\diagonal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4870414Z copying torch\include\ATen\ops\diagonal_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4877198Z copying torch\include\ATen\ops\diagonal_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4883966Z copying torch\include\ATen\ops\diagonal_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4890614Z copying torch\include\ATen\ops\diagonal_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4897815Z copying torch\include\ATen\ops\diagonal_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4904666Z copying torch\include\ATen\ops\diagonal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4911329Z copying torch\include\ATen\ops\diagonal_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4918458Z copying torch\include\ATen\ops\diagonal_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4925384Z copying torch\include\ATen\ops\diagonal_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4932367Z copying torch\include\ATen\ops\diagonal_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4939100Z copying torch\include\ATen\ops\diagonal_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4946229Z copying torch\include\ATen\ops\diagonal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4952547Z copying torch\include\ATen\ops\diagonal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4959161Z copying torch\include\ATen\ops\diagonal_scatter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4966293Z copying torch\include\ATen\ops\diagonal_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4973265Z copying torch\include\ATen\ops\diagonal_scatter_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.4979976Z copying torch\include\ATen\ops\diagonal_scatter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5005818Z copying torch\include\ATen\ops\diagonal_scatter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5012687Z copying torch\include\ATen\ops\diag_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5019157Z copying torch\include\ATen\ops\diag_embed.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5026314Z copying torch\include\ATen\ops\diag_embed_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5033195Z copying torch\include\ATen\ops\diag_embed_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5040120Z copying torch\include\ATen\ops\diag_embed_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5047101Z copying torch\include\ATen\ops\diag_embed_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5053691Z copying torch\include\ATen\ops\diag_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5060177Z copying torch\include\ATen\ops\diag_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5066570Z copying torch\include\ATen\ops\diff.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5073149Z copying torch\include\ATen\ops\diff_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5079699Z copying torch\include\ATen\ops\diff_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5086155Z copying torch\include\ATen\ops\diff_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5092516Z copying torch\include\ATen\ops\digamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5099240Z copying torch\include\ATen\ops\digamma_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5105933Z copying torch\include\ATen\ops\digamma_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5113791Z copying torch\include\ATen\ops\digamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5119877Z copying torch\include\ATen\ops\digamma_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5126415Z copying torch\include\ATen\ops\digamma_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5133268Z copying torch\include\ATen\ops\digamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5139949Z copying torch\include\ATen\ops\digamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5146731Z copying torch\include\ATen\ops\dist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5154197Z copying torch\include\ATen\ops\dist_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5160010Z copying torch\include\ATen\ops\dist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5166579Z copying torch\include\ATen\ops\dist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5172986Z copying torch\include\ATen\ops\div.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5179353Z copying torch\include\ATen\ops\divide.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5186083Z copying torch\include\ATen\ops\divide_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5224575Z copying torch\include\ATen\ops\divide_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5225299Z copying torch\include\ATen\ops\divide_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5226175Z copying torch\include\ATen\ops\div_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5227162Z copying torch\include\ATen\ops\div_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5227991Z copying torch\include\ATen\ops\div_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5230812Z copying torch\include\ATen\ops\div_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5237281Z copying torch\include\ATen\ops\div_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5243835Z copying torch\include\ATen\ops\div_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5250404Z copying torch\include\ATen\ops\div_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5256889Z copying torch\include\ATen\ops\div_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5263591Z copying torch\include\ATen\ops\dot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5270062Z copying torch\include\ATen\ops\dot_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5276549Z copying torch\include\ATen\ops\dot_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5283013Z copying torch\include\ATen\ops\dot_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5289416Z copying torch\include\ATen\ops\dot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5296055Z copying torch\include\ATen\ops\dot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5302569Z copying torch\include\ATen\ops\dropout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5309713Z copying torch\include\ATen\ops\dropout_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5316145Z copying torch\include\ATen\ops\dropout_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5322523Z copying torch\include\ATen\ops\dropout_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5328961Z copying torch\include\ATen\ops\dsplit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5335597Z copying torch\include\ATen\ops\dsplit_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5342108Z copying torch\include\ATen\ops\dsplit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5348887Z copying torch\include\ATen\ops\dsplit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5355374Z copying torch\include\ATen\ops\dstack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5361823Z copying torch\include\ATen\ops\dstack_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5368195Z copying torch\include\ATen\ops\dstack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5374484Z copying torch\include\ATen\ops\dstack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5381069Z copying torch\include\ATen\ops\einsum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5387644Z copying torch\include\ATen\ops\einsum_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5394301Z copying torch\include\ATen\ops\einsum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5400804Z copying torch\include\ATen\ops\einsum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5407160Z copying torch\include\ATen\ops\elu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5413451Z copying torch\include\ATen\ops\elu_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5449583Z copying torch\include\ATen\ops\elu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5456254Z copying torch\include\ATen\ops\elu_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5463272Z copying torch\include\ATen\ops\elu_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5469998Z copying torch\include\ATen\ops\elu_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5476921Z copying torch\include\ATen\ops\elu_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5484391Z copying torch\include\ATen\ops\elu_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5490155Z copying torch\include\ATen\ops\elu_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5497196Z copying torch\include\ATen\ops\elu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5503970Z copying torch\include\ATen\ops\elu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5510203Z copying torch\include\ATen\ops\elu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5516566Z copying torch\include\ATen\ops\elu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5523042Z copying torch\include\ATen\ops\elu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5529485Z copying torch\include\ATen\ops\elu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5535976Z copying torch\include\ATen\ops\elu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5542401Z copying torch\include\ATen\ops\embedding.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5548996Z copying torch\include\ATen\ops\embedding_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5555857Z copying torch\include\ATen\ops\embedding_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5562448Z copying torch\include\ATen\ops\embedding_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5569017Z copying torch\include\ATen\ops\embedding_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5589342Z copying torch\include\ATen\ops\embedding_bag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5596667Z copying torch\include\ATen\ops\embedding_bag_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5604908Z copying torch\include\ATen\ops\embedding_bag_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5610545Z copying torch\include\ATen\ops\embedding_bag_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5617765Z copying torch\include\ATen\ops\embedding_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5624637Z copying torch\include\ATen\ops\embedding_dense_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5631868Z copying torch\include\ATen\ops\embedding_dense_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5639256Z copying torch\include\ATen\ops\embedding_dense_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5645718Z copying torch\include\ATen\ops\embedding_dense_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5652531Z copying torch\include\ATen\ops\embedding_dense_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5659242Z copying torch\include\ATen\ops\embedding_dense_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5666010Z copying torch\include\ATen\ops\embedding_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5673470Z copying torch\include\ATen\ops\embedding_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5680004Z copying torch\include\ATen\ops\embedding_renorm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5687127Z copying torch\include\ATen\ops\embedding_renorm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5693841Z copying torch\include\ATen\ops\embedding_renorm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5700889Z copying torch\include\ATen\ops\embedding_renorm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5740429Z copying torch\include\ATen\ops\embedding_renorm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5741250Z copying torch\include\ATen\ops\embedding_renorm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5742011Z copying torch\include\ATen\ops\embedding_renorm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5742794Z copying torch\include\ATen\ops\embedding_sparse_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5743739Z copying torch\include\ATen\ops\embedding_sparse_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5747096Z copying torch\include\ATen\ops\embedding_sparse_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5753850Z copying torch\include\ATen\ops\embedding_sparse_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5760575Z copying torch\include\ATen\ops\empty.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5767458Z copying torch\include\ATen\ops\empty_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5775202Z copying torch\include\ATen\ops\empty_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5781193Z copying torch\include\ATen\ops\empty_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5787879Z copying torch\include\ATen\ops\empty_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5794690Z copying torch\include\ATen\ops\empty_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5801616Z copying torch\include\ATen\ops\empty_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5808054Z copying torch\include\ATen\ops\empty_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5814650Z copying torch\include\ATen\ops\empty_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5821794Z copying torch\include\ATen\ops\empty_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5828325Z copying torch\include\ATen\ops\empty_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5834869Z copying torch\include\ATen\ops\empty_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5841754Z copying torch\include\ATen\ops\empty_permuted.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5848850Z copying torch\include\ATen\ops\empty_permuted_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5855562Z copying torch\include\ATen\ops\empty_permuted_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5862570Z copying torch\include\ATen\ops\empty_permuted_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5869421Z copying torch\include\ATen\ops\empty_quantized.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5876464Z copying torch\include\ATen\ops\empty_quantized_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5883249Z copying torch\include\ATen\ops\empty_quantized_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5889767Z copying torch\include\ATen\ops\empty_quantized_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5896306Z copying torch\include\ATen\ops\empty_strided.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5903509Z copying torch\include\ATen\ops\empty_strided_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5910106Z copying torch\include\ATen\ops\empty_strided_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5916903Z copying torch\include\ATen\ops\empty_strided_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5923649Z copying torch\include\ATen\ops\empty_strided_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5930564Z copying torch\include\ATen\ops\empty_strided_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5937211Z copying torch\include\ATen\ops\empty_strided_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5943906Z copying torch\include\ATen\ops\eq.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5950087Z copying torch\include\ATen\ops\equal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5956298Z copying torch\include\ATen\ops\equal_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5962808Z copying torch\include\ATen\ops\equal_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5969483Z copying torch\include\ATen\ops\equal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5976260Z copying torch\include\ATen\ops\equal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5983496Z copying torch\include\ATen\ops\eq_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5989821Z copying torch\include\ATen\ops\eq_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.5996348Z copying torch\include\ATen\ops\eq_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6002838Z copying torch\include\ATen\ops\eq_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6009154Z copying torch\include\ATen\ops\eq_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6015625Z copying torch\include\ATen\ops\eq_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6022391Z copying torch\include\ATen\ops\eq_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6028611Z copying torch\include\ATen\ops\erf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6034793Z copying torch\include\ATen\ops\erfc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6041442Z copying torch\include\ATen\ops\erfc_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6060732Z copying torch\include\ATen\ops\erfc_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6067530Z copying torch\include\ATen\ops\erfc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6073701Z copying torch\include\ATen\ops\erfc_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6080128Z copying torch\include\ATen\ops\erfc_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6086842Z copying torch\include\ATen\ops\erfc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6093489Z copying torch\include\ATen\ops\erfc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6100160Z copying torch\include\ATen\ops\erfinv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6106812Z copying torch\include\ATen\ops\erfinv_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6113549Z copying torch\include\ATen\ops\erfinv_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6120498Z copying torch\include\ATen\ops\erfinv_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6127842Z copying torch\include\ATen\ops\erfinv_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6134413Z copying torch\include\ATen\ops\erfinv_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6141400Z copying torch\include\ATen\ops\erfinv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6148311Z copying torch\include\ATen\ops\erfinv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6182087Z copying torch\include\ATen\ops\erf_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6188685Z copying torch\include\ATen\ops\erf_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6195326Z copying torch\include\ATen\ops\erf_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6202242Z copying torch\include\ATen\ops\erf_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6209417Z copying torch\include\ATen\ops\erf_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6216553Z copying torch\include\ATen\ops\erf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6224159Z copying torch\include\ATen\ops\erf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6231136Z copying torch\include\ATen\ops\exp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6237488Z copying torch\include\ATen\ops\exp2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6244601Z copying torch\include\ATen\ops\exp2_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6251313Z copying torch\include\ATen\ops\exp2_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6258050Z copying torch\include\ATen\ops\exp2_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6265531Z copying torch\include\ATen\ops\exp2_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6271232Z copying torch\include\ATen\ops\exp2_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6277846Z copying torch\include\ATen\ops\exp2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6284544Z copying torch\include\ATen\ops\exp2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6290796Z copying torch\include\ATen\ops\expand.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6297576Z copying torch\include\ATen\ops\expand_as.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6304429Z copying torch\include\ATen\ops\expand_as_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6311863Z copying torch\include\ATen\ops\expand_as_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6317345Z copying torch\include\ATen\ops\expand_as_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6324161Z copying torch\include\ATen\ops\expand_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6330821Z copying torch\include\ATen\ops\expand_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6337907Z copying torch\include\ATen\ops\expand_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6344722Z copying torch\include\ATen\ops\expand_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6351461Z copying torch\include\ATen\ops\expand_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6358347Z copying torch\include\ATen\ops\expand_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6364972Z copying torch\include\ATen\ops\expand_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6371469Z copying torch\include\ATen\ops\expand_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6378158Z copying torch\include\ATen\ops\expm1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6385151Z copying torch\include\ATen\ops\expm1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6391570Z copying torch\include\ATen\ops\expm1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6398083Z copying torch\include\ATen\ops\expm1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6404934Z copying torch\include\ATen\ops\expm1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6411217Z copying torch\include\ATen\ops\expm1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6418270Z copying torch\include\ATen\ops\expm1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6425275Z copying torch\include\ATen\ops\expm1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6431957Z copying torch\include\ATen\ops\exponential.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6439064Z copying torch\include\ATen\ops\exponential_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6445399Z copying torch\include\ATen\ops\exponential_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6451951Z copying torch\include\ATen\ops\exponential_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6458526Z copying torch\include\ATen\ops\exponential_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6465193Z copying torch\include\ATen\ops\exponential_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6471893Z copying torch\include\ATen\ops\exponential_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6479186Z copying torch\include\ATen\ops\exp_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6485720Z copying torch\include\ATen\ops\exp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6492331Z copying torch\include\ATen\ops\exp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6502155Z copying torch\include\ATen\ops\exp_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6507634Z copying torch\include\ATen\ops\exp_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6514100Z copying torch\include\ATen\ops\exp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6520689Z copying torch\include\ATen\ops\exp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6526964Z copying torch\include\ATen\ops\eye.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6533799Z copying torch\include\ATen\ops\eye_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6541018Z copying torch\include\ATen\ops\eye_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6547345Z copying torch\include\ATen\ops\eye_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6554064Z copying torch\include\ATen\ops\eye_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6560659Z copying torch\include\ATen\ops\eye_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6567236Z copying torch\include\ATen\ops\eye_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6574291Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6580799Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6588038Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6595349Z 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-06-01T21:22:04.6602357Z 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-06-01T21:22:04.6609255Z 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-06-01T21:22:04.6616832Z 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-06-01T21:22:04.6624033Z 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-06-01T21:22:04.6631119Z 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-06-01T21:22:04.6638065Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6645356Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6652597Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6660367Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6667938Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6674937Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6682065Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6689406Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6696882Z 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-06-01T21:22:04.6704145Z 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-06-01T21:22:04.6711834Z 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-06-01T21:22:04.6720234Z 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-06-01T21:22:04.6727340Z 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-06-01T21:22:04.6734453Z 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-06-01T21:22:04.6759204Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6766405Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6773772Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6780751Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6787783Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6794478Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6801832Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6808824Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6815907Z 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-06-01T21:22:04.6822723Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6829623Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6836691Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6843453Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6850210Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6857534Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6864779Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6872061Z 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-06-01T21:22:04.6879132Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6886215Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6893226Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6900146Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6907091Z copying torch\include\ATen\ops\fbgemm_linear_quantize_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6914624Z copying torch\include\ATen\ops\fbgemm_linear_quantize_weight_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6921760Z copying torch\include\ATen\ops\fbgemm_linear_quantize_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6928608Z copying torch\include\ATen\ops\fbgemm_linear_quantize_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6936052Z copying torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6943528Z copying torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6950620Z copying torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6957289Z copying torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6964414Z copying torch\include\ATen\ops\fbgemm_pack_quantized_matrix.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6971723Z copying torch\include\ATen\ops\fbgemm_pack_quantized_matrix_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6978704Z copying torch\include\ATen\ops\fbgemm_pack_quantized_matrix_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6985688Z copying torch\include\ATen\ops\fbgemm_pack_quantized_matrix_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6992707Z copying torch\include\ATen\ops\feature_alpha_dropout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.6999942Z copying torch\include\ATen\ops\feature_alpha_dropout_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7006729Z copying torch\include\ATen\ops\feature_alpha_dropout_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7013540Z copying torch\include\ATen\ops\feature_alpha_dropout_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7020506Z copying torch\include\ATen\ops\feature_dropout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7027651Z copying torch\include\ATen\ops\feature_dropout_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7034707Z copying torch\include\ATen\ops\feature_dropout_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7041489Z copying torch\include\ATen\ops\feature_dropout_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7048137Z copying torch\include\ATen\ops\fft_fft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7054624Z copying torch\include\ATen\ops\fft_fft2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7061636Z copying torch\include\ATen\ops\fft_fft2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7068272Z copying torch\include\ATen\ops\fft_fft2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7075102Z copying torch\include\ATen\ops\fft_fft2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7082022Z copying torch\include\ATen\ops\fft_fftfreq.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7089373Z copying torch\include\ATen\ops\fft_fftfreq_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7096087Z copying torch\include\ATen\ops\fft_fftfreq_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7102939Z copying torch\include\ATen\ops\fft_fftfreq_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7109753Z copying torch\include\ATen\ops\fft_fftn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7116633Z copying torch\include\ATen\ops\fft_fftn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7123389Z copying torch\include\ATen\ops\fft_fftn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7130040Z copying torch\include\ATen\ops\fft_fftn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7137199Z copying torch\include\ATen\ops\fft_fftshift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7144505Z copying torch\include\ATen\ops\fft_fftshift_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7151378Z copying torch\include\ATen\ops\fft_fftshift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7157852Z copying torch\include\ATen\ops\fft_fftshift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7165117Z copying torch\include\ATen\ops\fft_fft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7171903Z copying torch\include\ATen\ops\fft_fft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7178625Z copying torch\include\ATen\ops\fft_fft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7185755Z copying torch\include\ATen\ops\fft_hfft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7192418Z copying torch\include\ATen\ops\fft_hfft2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7199550Z copying torch\include\ATen\ops\fft_hfft2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7206179Z copying torch\include\ATen\ops\fft_hfft2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7213039Z copying torch\include\ATen\ops\fft_hfft2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7219745Z copying torch\include\ATen\ops\fft_hfftn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7226974Z copying torch\include\ATen\ops\fft_hfftn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7233756Z copying torch\include\ATen\ops\fft_hfftn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7240679Z copying torch\include\ATen\ops\fft_hfftn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7247607Z copying torch\include\ATen\ops\fft_hfft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7254199Z copying torch\include\ATen\ops\fft_hfft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7261264Z copying torch\include\ATen\ops\fft_hfft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7267744Z copying torch\include\ATen\ops\fft_ifft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7274012Z copying torch\include\ATen\ops\fft_ifft2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7315391Z copying torch\include\ATen\ops\fft_ifft2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7321805Z copying torch\include\ATen\ops\fft_ifft2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7328539Z copying torch\include\ATen\ops\fft_ifft2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7335224Z copying torch\include\ATen\ops\fft_ifftn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7342452Z copying torch\include\ATen\ops\fft_ifftn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7349183Z copying torch\include\ATen\ops\fft_ifftn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7377119Z copying torch\include\ATen\ops\fft_ifftn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7383856Z copying torch\include\ATen\ops\fft_ifftshift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7390771Z copying torch\include\ATen\ops\fft_ifftshift_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7397477Z copying torch\include\ATen\ops\fft_ifftshift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7403762Z copying torch\include\ATen\ops\fft_ifftshift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7411096Z copying torch\include\ATen\ops\fft_ifft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7417570Z copying torch\include\ATen\ops\fft_ifft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7424242Z copying torch\include\ATen\ops\fft_ifft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7430761Z copying torch\include\ATen\ops\fft_ihfft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7437345Z copying torch\include\ATen\ops\fft_ihfft2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7444356Z copying torch\include\ATen\ops\fft_ihfft2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7451109Z copying torch\include\ATen\ops\fft_ihfft2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7457561Z copying torch\include\ATen\ops\fft_ihfft2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7464276Z copying torch\include\ATen\ops\fft_ihfftn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7471232Z copying torch\include\ATen\ops\fft_ihfftn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7477881Z copying torch\include\ATen\ops\fft_ihfftn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7484383Z copying torch\include\ATen\ops\fft_ihfftn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7491767Z copying torch\include\ATen\ops\fft_ihfft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7498558Z copying torch\include\ATen\ops\fft_ihfft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7505315Z copying torch\include\ATen\ops\fft_ihfft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7511839Z copying torch\include\ATen\ops\fft_irfft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7518395Z copying torch\include\ATen\ops\fft_irfft2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7525553Z copying torch\include\ATen\ops\fft_irfft2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7532598Z copying torch\include\ATen\ops\fft_irfft2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7539251Z copying torch\include\ATen\ops\fft_irfft2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7546305Z copying torch\include\ATen\ops\fft_irfftn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7553836Z copying torch\include\ATen\ops\fft_irfftn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7560442Z copying torch\include\ATen\ops\fft_irfftn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7567177Z copying torch\include\ATen\ops\fft_irfftn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7574316Z copying torch\include\ATen\ops\fft_irfft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7581143Z copying torch\include\ATen\ops\fft_irfft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7587840Z copying torch\include\ATen\ops\fft_irfft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7594605Z copying torch\include\ATen\ops\fft_rfft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7601303Z copying torch\include\ATen\ops\fft_rfft2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7608672Z copying torch\include\ATen\ops\fft_rfft2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7615288Z copying torch\include\ATen\ops\fft_rfft2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7622174Z copying torch\include\ATen\ops\fft_rfft2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7629015Z copying torch\include\ATen\ops\fft_rfftfreq.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7636119Z copying torch\include\ATen\ops\fft_rfftfreq_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7642929Z copying torch\include\ATen\ops\fft_rfftfreq_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7649923Z copying torch\include\ATen\ops\fft_rfftfreq_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7656741Z copying torch\include\ATen\ops\fft_rfftn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7663944Z copying torch\include\ATen\ops\fft_rfftn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7670714Z copying torch\include\ATen\ops\fft_rfftn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7677401Z copying torch\include\ATen\ops\fft_rfftn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7684538Z copying torch\include\ATen\ops\fft_rfft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7691286Z copying torch\include\ATen\ops\fft_rfft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7698085Z copying torch\include\ATen\ops\fft_rfft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7705129Z copying torch\include\ATen\ops\fill.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7711880Z copying torch\include\ATen\ops\fill_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7719440Z copying torch\include\ATen\ops\fill_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7726712Z copying torch\include\ATen\ops\fill_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7733363Z copying torch\include\ATen\ops\fill_diagonal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7740370Z copying torch\include\ATen\ops\fill_diagonal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7747104Z copying torch\include\ATen\ops\fill_diagonal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7754163Z copying torch\include\ATen\ops\fill_diagonal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7760963Z copying torch\include\ATen\ops\fill_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7767430Z copying torch\include\ATen\ops\fill_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7774006Z copying torch\include\ATen\ops\fill_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7780473Z copying torch\include\ATen\ops\fix.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7786960Z copying torch\include\ATen\ops\fix_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7793469Z copying torch\include\ATen\ops\fix_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7800146Z copying torch\include\ATen\ops\fix_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7806742Z copying torch\include\ATen\ops\flatten.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7813304Z copying torch\include\ATen\ops\flatten_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7819939Z copying torch\include\ATen\ops\flatten_dense_tensors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7826955Z copying torch\include\ATen\ops\flatten_dense_tensors_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7833383Z copying torch\include\ATen\ops\flatten_dense_tensors_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7839669Z copying torch\include\ATen\ops\flatten_dense_tensors_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7846303Z copying torch\include\ATen\ops\flatten_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7853195Z copying torch\include\ATen\ops\flatten_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7859851Z copying torch\include\ATen\ops\flip.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7866221Z copying torch\include\ATen\ops\fliplr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7872728Z copying torch\include\ATen\ops\fliplr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7879837Z copying torch\include\ATen\ops\fliplr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7886352Z copying torch\include\ATen\ops\fliplr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7892989Z copying torch\include\ATen\ops\flipud.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7899481Z copying torch\include\ATen\ops\flipud_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7906360Z copying torch\include\ATen\ops\flipud_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7912813Z copying torch\include\ATen\ops\flipud_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7919778Z copying torch\include\ATen\ops\flip_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7927250Z copying torch\include\ATen\ops\flip_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7933970Z copying torch\include\ATen\ops\flip_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7940855Z copying torch\include\ATen\ops\flip_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7947437Z copying torch\include\ATen\ops\flip_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7953905Z copying torch\include\ATen\ops\float_power.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7961111Z copying torch\include\ATen\ops\float_power_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7967816Z copying torch\include\ATen\ops\float_power_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7974471Z copying torch\include\ATen\ops\float_power_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7981277Z copying torch\include\ATen\ops\floor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7988107Z copying torch\include\ATen\ops\floor_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.7994878Z copying torch\include\ATen\ops\floor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8002036Z copying torch\include\ATen\ops\floor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8009329Z copying torch\include\ATen\ops\floor_divide.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8016422Z copying torch\include\ATen\ops\floor_divide_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8023235Z copying torch\include\ATen\ops\floor_divide_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8030033Z copying torch\include\ATen\ops\floor_divide_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8036866Z copying torch\include\ATen\ops\floor_divide_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8043628Z copying torch\include\ATen\ops\floor_divide_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8050318Z copying torch\include\ATen\ops\floor_divide_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8057267Z copying torch\include\ATen\ops\floor_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8064085Z copying torch\include\ATen\ops\floor_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8070944Z copying torch\include\ATen\ops\floor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8077817Z copying torch\include\ATen\ops\floor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8084610Z copying torch\include\ATen\ops\fmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8091382Z copying torch\include\ATen\ops\fmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8098083Z copying torch\include\ATen\ops\fmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8104884Z copying torch\include\ATen\ops\fmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8111726Z copying torch\include\ATen\ops\fmax_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8118485Z copying torch\include\ATen\ops\fmax_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8125137Z copying torch\include\ATen\ops\fmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8131854Z copying torch\include\ATen\ops\fmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8138230Z copying torch\include\ATen\ops\fmin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8145208Z copying torch\include\ATen\ops\fmin_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8151755Z copying torch\include\ATen\ops\fmin_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8158431Z copying torch\include\ATen\ops\fmin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8165304Z copying torch\include\ATen\ops\fmin_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8191379Z copying torch\include\ATen\ops\fmin_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8198000Z copying torch\include\ATen\ops\fmin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8204827Z copying torch\include\ATen\ops\fmin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8211150Z copying torch\include\ATen\ops\fmod.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8218066Z copying torch\include\ATen\ops\fmod_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8224792Z copying torch\include\ATen\ops\fmod_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8231433Z copying torch\include\ATen\ops\fmod_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8238148Z copying torch\include\ATen\ops\fmod_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8244736Z copying torch\include\ATen\ops\fmod_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8251210Z copying torch\include\ATen\ops\fmod_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8257758Z copying torch\include\ATen\ops\fmod_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8264316Z copying torch\include\ATen\ops\fmod_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8270651Z copying torch\include\ATen\ops\frac.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8277376Z copying torch\include\ATen\ops\fractional_max_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8284397Z copying torch\include\ATen\ops\fractional_max_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8291590Z copying torch\include\ATen\ops\fractional_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8298271Z copying torch\include\ATen\ops\fractional_max_pool2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8305172Z copying torch\include\ATen\ops\fractional_max_pool2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8312047Z copying torch\include\ATen\ops\fractional_max_pool2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8318764Z copying torch\include\ATen\ops\fractional_max_pool2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8326381Z copying torch\include\ATen\ops\fractional_max_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8333943Z copying torch\include\ATen\ops\fractional_max_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8341215Z copying torch\include\ATen\ops\fractional_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8348122Z copying torch\include\ATen\ops\fractional_max_pool2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8355019Z copying torch\include\ATen\ops\fractional_max_pool2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8361903Z copying torch\include\ATen\ops\fractional_max_pool2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8368826Z copying torch\include\ATen\ops\fractional_max_pool2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8375528Z copying torch\include\ATen\ops\fractional_max_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8382204Z copying torch\include\ATen\ops\fractional_max_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8389013Z copying torch\include\ATen\ops\fractional_max_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8395672Z copying torch\include\ATen\ops\fractional_max_pool3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8402746Z copying torch\include\ATen\ops\fractional_max_pool3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8409728Z copying torch\include\ATen\ops\fractional_max_pool3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8416576Z copying torch\include\ATen\ops\fractional_max_pool3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8423436Z copying torch\include\ATen\ops\fractional_max_pool3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8430539Z copying torch\include\ATen\ops\fractional_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8437263Z copying torch\include\ATen\ops\fractional_max_pool3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8444457Z copying torch\include\ATen\ops\fractional_max_pool3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8451079Z copying torch\include\ATen\ops\fractional_max_pool3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8457863Z copying torch\include\ATen\ops\fractional_max_pool3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8464716Z copying torch\include\ATen\ops\fractional_max_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8471417Z copying torch\include\ATen\ops\fractional_max_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8478401Z copying torch\include\ATen\ops\frac_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8484979Z copying torch\include\ATen\ops\frac_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8491611Z copying torch\include\ATen\ops\frac_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8498974Z copying torch\include\ATen\ops\frac_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8505509Z copying torch\include\ATen\ops\frac_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8512083Z copying torch\include\ATen\ops\frac_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8518788Z copying torch\include\ATen\ops\frac_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8524847Z copying torch\include\ATen\ops\frexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8531908Z copying torch\include\ATen\ops\frexp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8538681Z copying torch\include\ATen\ops\frexp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8545421Z copying torch\include\ATen\ops\frexp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8552083Z copying torch\include\ATen\ops\frexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8559371Z copying torch\include\ATen\ops\frexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8566108Z copying torch\include\ATen\ops\frobenius_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8573161Z copying torch\include\ATen\ops\frobenius_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8579958Z copying torch\include\ATen\ops\frobenius_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8586669Z copying torch\include\ATen\ops\frobenius_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8593829Z copying torch\include\ATen\ops\from_blob.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8600408Z copying torch\include\ATen\ops\from_file.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8607558Z copying torch\include\ATen\ops\from_file_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8614067Z copying torch\include\ATen\ops\from_file_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8620784Z copying torch\include\ATen\ops\from_file_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8627554Z copying torch\include\ATen\ops\from_file_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8634486Z copying torch\include\ATen\ops\full.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8641227Z copying torch\include\ATen\ops\full_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8648043Z copying torch\include\ATen\ops\full_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8655016Z copying torch\include\ATen\ops\full_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8661794Z copying torch\include\ATen\ops\full_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8668568Z copying torch\include\ATen\ops\full_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8675474Z copying torch\include\ATen\ops\full_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8681997Z copying torch\include\ATen\ops\full_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8688602Z copying torch\include\ATen\ops\fused_moving_avg_obs_fake_quant.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8696032Z 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-06-01T21:22:04.8702850Z copying torch\include\ATen\ops\fused_moving_avg_obs_fake_quant_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8709844Z copying torch\include\ATen\ops\fused_moving_avg_obs_fake_quant_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8716431Z copying torch\include\ATen\ops\gather.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8723388Z copying torch\include\ATen\ops\gather_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8731329Z copying torch\include\ATen\ops\gather_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8739088Z copying torch\include\ATen\ops\gather_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8746829Z copying torch\include\ATen\ops\gather_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8754842Z copying torch\include\ATen\ops\gather_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8761699Z copying torch\include\ATen\ops\gather_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8768604Z copying torch\include\ATen\ops\gather_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8775469Z copying torch\include\ATen\ops\gather_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8782483Z copying torch\include\ATen\ops\gather_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8789629Z copying torch\include\ATen\ops\gather_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8853062Z copying torch\include\ATen\ops\gather_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8853800Z copying torch\include\ATen\ops\gather_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8854477Z copying torch\include\ATen\ops\gcd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8855338Z copying torch\include\ATen\ops\gcd_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8856241Z copying torch\include\ATen\ops\gcd_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8856970Z copying torch\include\ATen\ops\gcd_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8857660Z copying torch\include\ATen\ops\gcd_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8858365Z copying torch\include\ATen\ops\gcd_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8859067Z copying torch\include\ATen\ops\gcd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8859835Z copying torch\include\ATen\ops\gcd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8861834Z copying torch\include\ATen\ops\ge.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8867777Z copying torch\include\ATen\ops\gelu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8874028Z copying torch\include\ATen\ops\gelu_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8881053Z copying torch\include\ATen\ops\gelu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8887743Z copying torch\include\ATen\ops\gelu_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8894295Z copying torch\include\ATen\ops\gelu_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8901045Z copying torch\include\ATen\ops\gelu_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8907800Z copying torch\include\ATen\ops\gelu_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8914408Z copying torch\include\ATen\ops\gelu_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8920907Z copying torch\include\ATen\ops\gelu_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8927910Z copying torch\include\ATen\ops\gelu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8934506Z copying torch\include\ATen\ops\gelu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8941180Z copying torch\include\ATen\ops\gelu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8947608Z copying torch\include\ATen\ops\gelu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8954246Z copying torch\include\ATen\ops\gelu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8960844Z copying torch\include\ATen\ops\gelu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8967309Z copying torch\include\ATen\ops\gelu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8973536Z copying torch\include\ATen\ops\geometric.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8980777Z copying torch\include\ATen\ops\geometric_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8987516Z copying torch\include\ATen\ops\geometric_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.8994081Z copying torch\include\ATen\ops\geometric_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9000680Z copying torch\include\ATen\ops\geometric_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9007340Z copying torch\include\ATen\ops\geometric_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9013969Z copying torch\include\ATen\ops\geometric_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9020714Z copying torch\include\ATen\ops\geqrf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9031724Z copying torch\include\ATen\ops\geqrf_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9035892Z copying torch\include\ATen\ops\geqrf_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9043262Z copying torch\include\ATen\ops\geqrf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9082392Z copying torch\include\ATen\ops\geqrf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9088857Z copying torch\include\ATen\ops\ger.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9095414Z copying torch\include\ATen\ops\ger_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9102001Z copying torch\include\ATen\ops\ger_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9108518Z copying torch\include\ATen\ops\ger_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9115140Z copying torch\include\ATen\ops\ge_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9121610Z copying torch\include\ATen\ops\ge_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9280091Z copying torch\include\ATen\ops\ge_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9287816Z copying torch\include\ATen\ops\ge_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9295190Z copying torch\include\ATen\ops\ge_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9301883Z copying torch\include\ATen\ops\ge_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9308686Z copying torch\include\ATen\ops\ge_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9314968Z copying torch\include\ATen\ops\glu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9321481Z copying torch\include\ATen\ops\glu_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9328180Z copying torch\include\ATen\ops\glu_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9335131Z copying torch\include\ATen\ops\glu_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9341895Z copying torch\include\ATen\ops\glu_backward_jvp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9349039Z copying torch\include\ATen\ops\glu_backward_jvp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9356005Z copying torch\include\ATen\ops\glu_backward_jvp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9362616Z copying torch\include\ATen\ops\glu_backward_jvp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9369218Z copying torch\include\ATen\ops\glu_backward_jvp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9375658Z copying torch\include\ATen\ops\glu_backward_jvp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9382761Z copying torch\include\ATen\ops\glu_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9389529Z copying torch\include\ATen\ops\glu_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9396303Z copying torch\include\ATen\ops\glu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9402539Z copying torch\include\ATen\ops\glu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9409213Z copying torch\include\ATen\ops\glu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9416554Z copying torch\include\ATen\ops\glu_jvp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9423420Z copying torch\include\ATen\ops\glu_jvp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9430134Z copying torch\include\ATen\ops\glu_jvp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9437016Z copying torch\include\ATen\ops\glu_jvp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9443600Z copying torch\include\ATen\ops\glu_jvp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9450264Z copying torch\include\ATen\ops\glu_jvp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9456880Z copying torch\include\ATen\ops\glu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9463228Z copying torch\include\ATen\ops\glu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9469751Z copying torch\include\ATen\ops\glu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9476297Z copying torch\include\ATen\ops\glu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9482991Z copying torch\include\ATen\ops\gradient.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9489967Z copying torch\include\ATen\ops\gradient_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9497226Z copying torch\include\ATen\ops\gradient_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9503775Z copying torch\include\ATen\ops\gradient_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9510233Z copying torch\include\ATen\ops\greater.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9516765Z copying torch\include\ATen\ops\greater_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9523308Z copying torch\include\ATen\ops\greater_equal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9530784Z copying torch\include\ATen\ops\greater_equal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9537743Z copying torch\include\ATen\ops\greater_equal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9544574Z copying torch\include\ATen\ops\greater_equal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9551651Z copying torch\include\ATen\ops\greater_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9559222Z copying torch\include\ATen\ops\greater_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9565503Z copying torch\include\ATen\ops\grid_sampler.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9572158Z copying torch\include\ATen\ops\grid_sampler_2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9579153Z copying torch\include\ATen\ops\grid_sampler_2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9586361Z copying torch\include\ATen\ops\grid_sampler_2d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9593359Z copying torch\include\ATen\ops\grid_sampler_2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9600244Z copying torch\include\ATen\ops\grid_sampler_2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9607094Z copying torch\include\ATen\ops\grid_sampler_2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9614203Z copying torch\include\ATen\ops\grid_sampler_2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9621070Z copying torch\include\ATen\ops\grid_sampler_2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9629184Z copying torch\include\ATen\ops\grid_sampler_2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9635134Z copying torch\include\ATen\ops\grid_sampler_2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9641946Z copying torch\include\ATen\ops\grid_sampler_2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9648664Z copying torch\include\ATen\ops\grid_sampler_2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9655494Z copying torch\include\ATen\ops\grid_sampler_3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9663526Z copying torch\include\ATen\ops\grid_sampler_3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9669891Z copying torch\include\ATen\ops\grid_sampler_3d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9677005Z copying torch\include\ATen\ops\grid_sampler_3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9684140Z copying torch\include\ATen\ops\grid_sampler_3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9690812Z copying torch\include\ATen\ops\grid_sampler_3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9697922Z copying torch\include\ATen\ops\grid_sampler_3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9705070Z copying torch\include\ATen\ops\grid_sampler_3d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9711962Z copying torch\include\ATen\ops\grid_sampler_3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9720246Z copying torch\include\ATen\ops\grid_sampler_3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9727155Z copying torch\include\ATen\ops\grid_sampler_3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9734191Z copying torch\include\ATen\ops\grid_sampler_3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9742920Z copying torch\include\ATen\ops\grid_sampler_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9750071Z copying torch\include\ATen\ops\grid_sampler_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9757017Z copying torch\include\ATen\ops\grid_sampler_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9764062Z copying torch\include\ATen\ops\group_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9771281Z copying torch\include\ATen\ops\group_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9777711Z copying torch\include\ATen\ops\group_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9784657Z copying torch\include\ATen\ops\group_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9801048Z copying torch\include\ATen\ops\gru.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9807357Z copying torch\include\ATen\ops\gru_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9814077Z copying torch\include\ATen\ops\gru_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9820773Z copying torch\include\ATen\ops\gru_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9828275Z copying torch\include\ATen\ops\gru_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9835028Z copying torch\include\ATen\ops\gru_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9841579Z copying torch\include\ATen\ops\gru_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9847933Z copying torch\include\ATen\ops\gru_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9854119Z copying torch\include\ATen\ops\gt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9860901Z copying torch\include\ATen\ops\gt_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9867345Z copying torch\include\ATen\ops\gt_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9873918Z copying torch\include\ATen\ops\gt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9880560Z copying torch\include\ATen\ops\gt_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9887224Z copying torch\include\ATen\ops\gt_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9893899Z copying torch\include\ATen\ops\gt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9900741Z copying torch\include\ATen\ops\gt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9907199Z copying torch\include\ATen\ops\hamming_window.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9914242Z copying torch\include\ATen\ops\hamming_window_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9920697Z copying torch\include\ATen\ops\hamming_window_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9927865Z copying torch\include\ATen\ops\hamming_window_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9934360Z copying torch\include\ATen\ops\hann_window.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9941562Z copying torch\include\ATen\ops\hann_window_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9948266Z copying torch\include\ATen\ops\hann_window_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9955365Z copying torch\include\ATen\ops\hann_window_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9962114Z copying torch\include\ATen\ops\hardshrink.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9968818Z copying torch\include\ATen\ops\hardshrink_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9976045Z copying torch\include\ATen\ops\hardshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9982993Z copying torch\include\ATen\ops\hardshrink_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9989768Z copying torch\include\ATen\ops\hardshrink_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:04.9996621Z copying torch\include\ATen\ops\hardshrink_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0003609Z copying torch\include\ATen\ops\hardshrink_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0011034Z copying torch\include\ATen\ops\hardshrink_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0017917Z copying torch\include\ATen\ops\hardshrink_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0025899Z copying torch\include\ATen\ops\hardshrink_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0033323Z copying torch\include\ATen\ops\hardshrink_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0041027Z copying torch\include\ATen\ops\hardshrink_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0048700Z copying torch\include\ATen\ops\hardshrink_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0056534Z copying torch\include\ATen\ops\hardshrink_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0063651Z copying torch\include\ATen\ops\hardshrink_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0070554Z copying torch\include\ATen\ops\hardshrink_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0077730Z copying torch\include\ATen\ops\hardsigmoid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0084611Z copying torch\include\ATen\ops\hardsigmoid_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0091977Z copying torch\include\ATen\ops\hardsigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0098830Z copying torch\include\ATen\ops\hardsigmoid_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0105442Z copying torch\include\ATen\ops\hardsigmoid_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0112382Z copying torch\include\ATen\ops\hardsigmoid_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0119329Z copying torch\include\ATen\ops\hardsigmoid_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0126124Z copying torch\include\ATen\ops\hardsigmoid_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0132660Z copying torch\include\ATen\ops\hardsigmoid_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0139758Z copying torch\include\ATen\ops\hardsigmoid_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0146542Z copying torch\include\ATen\ops\hardsigmoid_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0153340Z copying torch\include\ATen\ops\hardsigmoid_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0160115Z copying torch\include\ATen\ops\hardsigmoid_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0166886Z copying torch\include\ATen\ops\hardsigmoid_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0173734Z copying torch\include\ATen\ops\hardsigmoid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0180604Z copying torch\include\ATen\ops\hardsigmoid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0187184Z copying torch\include\ATen\ops\hardswish.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0193957Z copying torch\include\ATen\ops\hardswish_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0200918Z copying torch\include\ATen\ops\hardswish_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0207428Z copying torch\include\ATen\ops\hardswish_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0214380Z copying torch\include\ATen\ops\hardswish_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0221249Z copying torch\include\ATen\ops\hardswish_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0227917Z copying torch\include\ATen\ops\hardswish_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0234663Z copying torch\include\ATen\ops\hardswish_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0241374Z copying torch\include\ATen\ops\hardswish_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0248121Z copying torch\include\ATen\ops\hardswish_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0254862Z copying torch\include\ATen\ops\hardswish_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0262204Z copying torch\include\ATen\ops\hardswish_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0268857Z copying torch\include\ATen\ops\hardtanh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0275292Z copying torch\include\ATen\ops\hardtanh_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0282205Z copying torch\include\ATen\ops\hardtanh_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0288760Z copying torch\include\ATen\ops\hardtanh_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0295311Z copying torch\include\ATen\ops\hardtanh_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0302718Z copying torch\include\ATen\ops\hardtanh_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0310128Z copying torch\include\ATen\ops\hardtanh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0317776Z copying torch\include\ATen\ops\hardtanh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0325273Z copying torch\include\ATen\ops\hardtanh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0337066Z copying torch\include\ATen\ops\hardtanh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0344961Z copying torch\include\ATen\ops\hardtanh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0351907Z copying torch\include\ATen\ops\heaviside.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0359482Z copying torch\include\ATen\ops\heaviside_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0584762Z copying torch\include\ATen\ops\heaviside_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0591683Z copying torch\include\ATen\ops\heaviside_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0598345Z copying torch\include\ATen\ops\heaviside_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0605477Z copying torch\include\ATen\ops\heaviside_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0612180Z copying torch\include\ATen\ops\heaviside_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0618857Z copying torch\include\ATen\ops\heaviside_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0625935Z copying torch\include\ATen\ops\hinge_embedding_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0632923Z copying torch\include\ATen\ops\hinge_embedding_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0644452Z copying torch\include\ATen\ops\hinge_embedding_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0651152Z copying torch\include\ATen\ops\hinge_embedding_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.0657805Z copying torch\include\ATen\ops\histc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.2964383Z copying torch\include\ATen\ops\histc_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.2971566Z copying torch\include\ATen\ops\histc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.2978752Z copying torch\include\ATen\ops\histc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.2986025Z copying torch\include\ATen\ops\histc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.2993249Z copying torch\include\ATen\ops\histogram.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3005847Z copying torch\include\ATen\ops\histogramdd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3013399Z copying torch\include\ATen\ops\histogramdd_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3020563Z copying torch\include\ATen\ops\histogramdd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3027735Z copying torch\include\ATen\ops\histogramdd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3034928Z copying torch\include\ATen\ops\histogram_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3041899Z copying torch\include\ATen\ops\histogram_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3053291Z copying torch\include\ATen\ops\histogram_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3060654Z copying torch\include\ATen\ops\hsplit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3067446Z copying torch\include\ATen\ops\hsplit_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3074307Z copying torch\include\ATen\ops\hsplit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3081235Z copying torch\include\ATen\ops\hsplit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3088275Z copying torch\include\ATen\ops\hspmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3095496Z copying torch\include\ATen\ops\hspmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3102483Z copying torch\include\ATen\ops\hspmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3109546Z copying torch\include\ATen\ops\hstack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3116404Z copying torch\include\ATen\ops\hstack_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3123412Z copying torch\include\ATen\ops\hstack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3130222Z copying torch\include\ATen\ops\hstack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3137031Z copying torch\include\ATen\ops\huber_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3143996Z copying torch\include\ATen\ops\huber_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3151315Z copying torch\include\ATen\ops\huber_loss_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3158269Z copying torch\include\ATen\ops\huber_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3165249Z copying torch\include\ATen\ops\huber_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3172504Z copying torch\include\ATen\ops\huber_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3179586Z copying torch\include\ATen\ops\huber_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3186641Z copying torch\include\ATen\ops\huber_loss_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3193550Z copying torch\include\ATen\ops\huber_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3200324Z copying torch\include\ATen\ops\huber_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3211882Z copying torch\include\ATen\ops\huber_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3218922Z copying torch\include\ATen\ops\hypot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3226171Z copying torch\include\ATen\ops\hypot_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3232953Z copying torch\include\ATen\ops\hypot_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3245066Z copying torch\include\ATen\ops\hypot_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3251881Z copying torch\include\ATen\ops\hypot_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3258750Z copying torch\include\ATen\ops\hypot_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3265719Z copying torch\include\ATen\ops\hypot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3277521Z copying torch\include\ATen\ops\hypot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3284323Z copying torch\include\ATen\ops\i0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3291274Z copying torch\include\ATen\ops\i0_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3297745Z copying torch\include\ATen\ops\i0_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3310012Z copying torch\include\ATen\ops\i0_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3316663Z copying torch\include\ATen\ops\i0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3322790Z copying torch\include\ATen\ops\i0_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3329585Z copying torch\include\ATen\ops\i0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3341094Z copying torch\include\ATen\ops\i0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3347310Z copying torch\include\ATen\ops\igamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3353735Z copying torch\include\ATen\ops\igammac.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3360459Z copying torch\include\ATen\ops\igammac_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3366822Z copying torch\include\ATen\ops\igammac_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3373452Z copying torch\include\ATen\ops\igammac_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3379994Z copying torch\include\ATen\ops\igammac_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3387049Z copying torch\include\ATen\ops\igammac_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3398619Z copying torch\include\ATen\ops\igammac_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3405927Z copying torch\include\ATen\ops\igammac_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3413238Z copying torch\include\ATen\ops\igamma_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3419822Z copying torch\include\ATen\ops\igamma_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3426473Z copying torch\include\ATen\ops\igamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3433159Z copying torch\include\ATen\ops\igamma_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3439897Z copying torch\include\ATen\ops\igamma_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3446518Z copying torch\include\ATen\ops\igamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3453190Z copying torch\include\ATen\ops\igamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3460123Z copying torch\include\ATen\ops\im2col.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3466525Z copying torch\include\ATen\ops\im2col_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3472792Z copying torch\include\ATen\ops\im2col_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3487562Z copying torch\include\ATen\ops\im2col_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3520059Z copying torch\include\ATen\ops\im2col_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3526826Z copying torch\include\ATen\ops\imag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3533131Z copying torch\include\ATen\ops\imag_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3539719Z copying torch\include\ATen\ops\imag_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3546515Z copying torch\include\ATen\ops\imag_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3553076Z copying torch\include\ATen\ops\index.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3559399Z copying torch\include\ATen\ops\index_add.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3566516Z copying torch\include\ATen\ops\index_add_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3573482Z copying torch\include\ATen\ops\index_add_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3580381Z copying torch\include\ATen\ops\index_add_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3587129Z copying torch\include\ATen\ops\index_add_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3593859Z copying torch\include\ATen\ops\index_add_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3600981Z copying torch\include\ATen\ops\index_add_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3607791Z copying torch\include\ATen\ops\index_add_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3614518Z copying torch\include\ATen\ops\index_add_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3621987Z copying torch\include\ATen\ops\index_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3628663Z copying torch\include\ATen\ops\index_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3636390Z copying torch\include\ATen\ops\index_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3643510Z copying torch\include\ATen\ops\index_copy_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3650451Z copying torch\include\ATen\ops\index_copy_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3696652Z copying torch\include\ATen\ops\index_copy_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3703471Z copying torch\include\ATen\ops\index_copy_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3710645Z copying torch\include\ATen\ops\index_copy_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3717315Z copying torch\include\ATen\ops\index_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3724236Z copying torch\include\ATen\ops\index_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3731262Z copying torch\include\ATen\ops\index_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3738011Z copying torch\include\ATen\ops\index_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3744914Z copying torch\include\ATen\ops\index_fill.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3752067Z copying torch\include\ATen\ops\index_fill_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3773561Z copying torch\include\ATen\ops\index_fill_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3774489Z copying torch\include\ATen\ops\index_fill_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3775290Z copying torch\include\ATen\ops\index_fill_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3782725Z copying torch\include\ATen\ops\index_fill_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3789418Z copying torch\include\ATen\ops\index_fill_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3797470Z copying torch\include\ATen\ops\index_fill_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3803116Z copying torch\include\ATen\ops\index_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3809949Z copying torch\include\ATen\ops\index_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3816585Z copying torch\include\ATen\ops\index_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3824785Z copying torch\include\ATen\ops\index_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3830222Z copying torch\include\ATen\ops\index_put.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3837209Z copying torch\include\ATen\ops\index_put_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3844186Z copying torch\include\ATen\ops\index_put_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3850832Z copying torch\include\ATen\ops\index_put_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3857548Z copying torch\include\ATen\ops\index_reduce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3864898Z copying torch\include\ATen\ops\index_reduce_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3871838Z copying torch\include\ATen\ops\index_reduce_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3878228Z copying torch\include\ATen\ops\index_reduce_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3889007Z copying torch\include\ATen\ops\index_reduce_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3895977Z copying torch\include\ATen\ops\index_reduce_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3902512Z copying torch\include\ATen\ops\index_reduce_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3909112Z copying torch\include\ATen\ops\index_reduce_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3924068Z copying torch\include\ATen\ops\index_select.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3929621Z copying torch\include\ATen\ops\index_select_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3936363Z copying torch\include\ATen\ops\index_select_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3943792Z copying torch\include\ATen\ops\index_select_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3950526Z copying torch\include\ATen\ops\index_select_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3957460Z copying torch\include\ATen\ops\index_select_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3964206Z copying torch\include\ATen\ops\index_select_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3970868Z copying torch\include\ATen\ops\index_select_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3982788Z copying torch\include\ATen\ops\index_select_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3989529Z copying torch\include\ATen\ops\index_select_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.3996368Z copying torch\include\ATen\ops\indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4003426Z copying torch\include\ATen\ops\indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4014097Z copying torch\include\ATen\ops\indices_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4021262Z copying torch\include\ATen\ops\indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4028043Z copying torch\include\ATen\ops\indices_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4034621Z copying torch\include\ATen\ops\indices_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4046126Z copying torch\include\ATen\ops\indices_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4052734Z copying torch\include\ATen\ops\indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4060040Z copying torch\include\ATen\ops\indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4066920Z copying torch\include\ATen\ops\infinitely_differentiable_gelu_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4074203Z copying torch\include\ATen\ops\infinitely_differentiable_gelu_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4080786Z copying torch\include\ATen\ops\infinitely_differentiable_gelu_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4087626Z copying torch\include\ATen\ops\infinitely_differentiable_gelu_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4094141Z copying torch\include\ATen\ops\inner.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4100888Z copying torch\include\ATen\ops\inner_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4107373Z copying torch\include\ATen\ops\inner_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4114258Z copying torch\include\ATen\ops\inner_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4120969Z copying torch\include\ATen\ops\instance_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4127947Z copying torch\include\ATen\ops\instance_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4135350Z copying torch\include\ATen\ops\instance_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4153386Z copying torch\include\ATen\ops\instance_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4159674Z copying torch\include\ATen\ops\int_repr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4171053Z copying torch\include\ATen\ops\int_repr_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4177726Z copying torch\include\ATen\ops\int_repr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4184674Z copying torch\include\ATen\ops\int_repr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4191403Z copying torch\include\ATen\ops\inverse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4199061Z copying torch\include\ATen\ops\inverse_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4205083Z copying torch\include\ATen\ops\inverse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4211748Z copying torch\include\ATen\ops\inverse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4218414Z copying torch\include\ATen\ops\isclose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4225566Z copying torch\include\ATen\ops\isclose_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4232406Z copying torch\include\ATen\ops\isclose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4238680Z copying torch\include\ATen\ops\isclose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4245314Z copying torch\include\ATen\ops\isfinite.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4257181Z copying torch\include\ATen\ops\isfinite_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4264874Z copying torch\include\ATen\ops\isfinite_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4272057Z copying torch\include\ATen\ops\isfinite_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4279074Z copying torch\include\ATen\ops\isin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4285907Z copying torch\include\ATen\ops\isinf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4292554Z copying torch\include\ATen\ops\isinf_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4299358Z copying torch\include\ATen\ops\isinf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4305777Z copying torch\include\ATen\ops\isinf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4312937Z copying torch\include\ATen\ops\isin_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4319584Z copying torch\include\ATen\ops\isin_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4326154Z copying torch\include\ATen\ops\isin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4332562Z copying torch\include\ATen\ops\isin_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4339754Z copying torch\include\ATen\ops\isin_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4346055Z copying torch\include\ATen\ops\isin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4352505Z copying torch\include\ATen\ops\isin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4358761Z copying torch\include\ATen\ops\isnan.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4365444Z copying torch\include\ATen\ops\isnan_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4372466Z copying torch\include\ATen\ops\isnan_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4378993Z copying torch\include\ATen\ops\isnan_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4386320Z copying torch\include\ATen\ops\isnan_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4394058Z copying torch\include\ATen\ops\isnan_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4401751Z copying torch\include\ATen\ops\isneginf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4409357Z copying torch\include\ATen\ops\isneginf_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4415803Z copying torch\include\ATen\ops\isneginf_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4423014Z copying torch\include\ATen\ops\isneginf_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4429673Z copying torch\include\ATen\ops\isneginf_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4436430Z copying torch\include\ATen\ops\isneginf_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4443012Z copying torch\include\ATen\ops\isneginf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4449881Z copying torch\include\ATen\ops\isneginf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4456791Z copying torch\include\ATen\ops\isposinf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4463891Z copying torch\include\ATen\ops\isposinf_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4470582Z copying torch\include\ATen\ops\isposinf_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4477477Z copying torch\include\ATen\ops\isposinf_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4484260Z copying torch\include\ATen\ops\isposinf_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4491728Z copying torch\include\ATen\ops\isposinf_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4498283Z copying torch\include\ATen\ops\isposinf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4505248Z copying torch\include\ATen\ops\isposinf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4512271Z copying torch\include\ATen\ops\isreal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4518662Z copying torch\include\ATen\ops\isreal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4525193Z copying torch\include\ATen\ops\isreal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4531570Z copying torch\include\ATen\ops\isreal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4538264Z copying torch\include\ATen\ops\istft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4544923Z copying torch\include\ATen\ops\istft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4551459Z copying torch\include\ATen\ops\istft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4558084Z copying torch\include\ATen\ops\istft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4564998Z copying torch\include\ATen\ops\is_coalesced.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4571614Z copying torch\include\ATen\ops\is_coalesced_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4578205Z copying torch\include\ATen\ops\is_coalesced_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4584669Z copying torch\include\ATen\ops\is_coalesced_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4591362Z copying torch\include\ATen\ops\is_complex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4598348Z copying torch\include\ATen\ops\is_complex_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4605027Z copying torch\include\ATen\ops\is_complex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4611467Z copying torch\include\ATen\ops\is_complex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4618304Z copying torch\include\ATen\ops\is_conj.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4625014Z copying torch\include\ATen\ops\is_conj_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4631326Z copying torch\include\ATen\ops\is_conj_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4637674Z copying torch\include\ATen\ops\is_conj_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4644361Z copying torch\include\ATen\ops\is_distributed.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4651331Z copying torch\include\ATen\ops\is_distributed_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4657777Z copying torch\include\ATen\ops\is_distributed_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4664243Z copying torch\include\ATen\ops\is_distributed_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4671464Z copying torch\include\ATen\ops\is_floating_point.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4678047Z copying torch\include\ATen\ops\is_floating_point_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4684531Z copying torch\include\ATen\ops\is_floating_point_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4690878Z copying torch\include\ATen\ops\is_floating_point_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4697477Z copying torch\include\ATen\ops\is_inference.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4704357Z copying torch\include\ATen\ops\is_inference_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4739599Z copying torch\include\ATen\ops\is_inference_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4746298Z copying torch\include\ATen\ops\is_inference_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4752974Z copying torch\include\ATen\ops\is_leaf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4759390Z copying torch\include\ATen\ops\is_leaf_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4766895Z copying torch\include\ATen\ops\is_leaf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4775014Z copying torch\include\ATen\ops\is_leaf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4783197Z copying torch\include\ATen\ops\is_neg.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4790419Z copying torch\include\ATen\ops\is_neg_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4798308Z copying torch\include\ATen\ops\is_neg_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4805009Z copying torch\include\ATen\ops\is_neg_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4811841Z copying torch\include\ATen\ops\is_nonzero.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4819019Z copying torch\include\ATen\ops\is_nonzero_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4825919Z copying torch\include\ATen\ops\is_nonzero_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4832570Z copying torch\include\ATen\ops\is_nonzero_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4839476Z copying torch\include\ATen\ops\is_pinned.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4846041Z copying torch\include\ATen\ops\is_pinned_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4852798Z copying torch\include\ATen\ops\is_pinned_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4859398Z copying torch\include\ATen\ops\is_pinned_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4866150Z copying torch\include\ATen\ops\is_same_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4872916Z copying torch\include\ATen\ops\is_same_size_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4879442Z copying torch\include\ATen\ops\is_same_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4886258Z copying torch\include\ATen\ops\is_same_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4892984Z copying torch\include\ATen\ops\is_set_to.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4899286Z copying torch\include\ATen\ops\is_set_to_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4906100Z copying torch\include\ATen\ops\is_set_to_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4912949Z copying torch\include\ATen\ops\is_set_to_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4919110Z copying torch\include\ATen\ops\is_set_to_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4925694Z copying torch\include\ATen\ops\is_signed.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4932499Z copying torch\include\ATen\ops\is_signed_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4938970Z copying torch\include\ATen\ops\is_signed_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4946133Z copying torch\include\ATen\ops\is_signed_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4952909Z copying torch\include\ATen\ops\is_vulkan_available.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4959987Z copying torch\include\ATen\ops\is_vulkan_available_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4966582Z copying torch\include\ATen\ops\is_vulkan_available_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4973035Z copying torch\include\ATen\ops\is_vulkan_available_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4979496Z copying torch\include\ATen\ops\item.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4985986Z copying torch\include\ATen\ops\item_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4992354Z copying torch\include\ATen\ops\item_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.4998935Z copying torch\include\ATen\ops\item_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5005333Z copying torch\include\ATen\ops\kaiser_window.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5012257Z copying torch\include\ATen\ops\kaiser_window_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5019109Z copying torch\include\ATen\ops\kaiser_window_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5025833Z copying torch\include\ATen\ops\kaiser_window_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5032299Z copying torch\include\ATen\ops\kl_div.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5038875Z copying torch\include\ATen\ops\kl_div_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5045646Z copying torch\include\ATen\ops\kl_div_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5052250Z copying torch\include\ATen\ops\kl_div_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5058755Z copying torch\include\ATen\ops\kron.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5065388Z copying torch\include\ATen\ops\kron_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5071786Z copying torch\include\ATen\ops\kron_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5078808Z copying torch\include\ATen\ops\kron_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5084763Z copying torch\include\ATen\ops\kthvalue.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5091403Z copying torch\include\ATen\ops\kthvalue_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5098226Z copying torch\include\ATen\ops\kthvalue_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5105089Z copying torch\include\ATen\ops\kthvalue_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5111631Z copying torch\include\ATen\ops\kthvalue_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5118162Z copying torch\include\ATen\ops\kthvalue_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5124782Z copying torch\include\ATen\ops\kthvalue_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5131359Z copying torch\include\ATen\ops\l1_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5137872Z copying torch\include\ATen\ops\l1_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5144281Z copying torch\include\ATen\ops\l1_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5150796Z copying torch\include\ATen\ops\l1_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5157397Z copying torch\include\ATen\ops\layer_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5164109Z copying torch\include\ATen\ops\layer_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5170561Z copying torch\include\ATen\ops\layer_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5177189Z copying torch\include\ATen\ops\layer_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5183872Z copying torch\include\ATen\ops\lcm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5190440Z copying torch\include\ATen\ops\lcm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5197120Z copying torch\include\ATen\ops\lcm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5203509Z copying torch\include\ATen\ops\lcm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5210214Z copying torch\include\ATen\ops\lcm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5216435Z copying torch\include\ATen\ops\lcm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5223046Z copying torch\include\ATen\ops\lcm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5229400Z copying torch\include\ATen\ops\lcm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5235494Z copying torch\include\ATen\ops\ldexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5241928Z copying torch\include\ATen\ops\ldexp_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5248319Z copying torch\include\ATen\ops\ldexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5255077Z copying torch\include\ATen\ops\ldexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5261793Z copying torch\include\ATen\ops\le.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5268011Z copying torch\include\ATen\ops\leaky_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5274621Z copying torch\include\ATen\ops\leaky_relu_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5283877Z copying torch\include\ATen\ops\leaky_relu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5326497Z copying torch\include\ATen\ops\leaky_relu_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5327378Z copying torch\include\ATen\ops\leaky_relu_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5328194Z copying torch\include\ATen\ops\leaky_relu_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5329017Z copying torch\include\ATen\ops\leaky_relu_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5329838Z copying torch\include\ATen\ops\leaky_relu_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5330635Z copying torch\include\ATen\ops\leaky_relu_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5336195Z copying torch\include\ATen\ops\leaky_relu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5344309Z copying torch\include\ATen\ops\leaky_relu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5350529Z copying torch\include\ATen\ops\leaky_relu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5356902Z copying torch\include\ATen\ops\leaky_relu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5364186Z copying torch\include\ATen\ops\leaky_relu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5370719Z copying torch\include\ATen\ops\leaky_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5377631Z copying torch\include\ATen\ops\leaky_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5384196Z copying torch\include\ATen\ops\lerp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5390886Z copying torch\include\ATen\ops\lerp_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5397599Z copying torch\include\ATen\ops\lerp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5404220Z copying torch\include\ATen\ops\lerp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5410771Z copying torch\include\ATen\ops\lerp_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5417346Z copying torch\include\ATen\ops\lerp_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5424063Z copying torch\include\ATen\ops\lerp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5430775Z copying torch\include\ATen\ops\lerp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5436871Z copying torch\include\ATen\ops\less.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5443477Z copying torch\include\ATen\ops\less_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5449855Z copying torch\include\ATen\ops\less_equal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5456882Z copying torch\include\ATen\ops\less_equal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5463444Z copying torch\include\ATen\ops\less_equal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5470004Z copying torch\include\ATen\ops\less_equal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5476583Z copying torch\include\ATen\ops\less_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5483049Z copying torch\include\ATen\ops\less_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5489729Z copying torch\include\ATen\ops\le_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5496250Z copying torch\include\ATen\ops\le_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.5503114Z copying torch\include\ATen\ops\le_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.6789903Z copying torch\include\ATen\ops\le_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.6796876Z copying torch\include\ATen\ops\le_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.6802688Z copying torch\include\ATen\ops\le_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.6809192Z copying torch\include\ATen\ops\le_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.6815412Z copying torch\include\ATen\ops\lgamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.6822151Z copying torch\include\ATen\ops\lgamma_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.6828769Z copying torch\include\ATen\ops\lgamma_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.6835896Z copying torch\include\ATen\ops\lgamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.6842513Z copying torch\include\ATen\ops\lgamma_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.6849150Z copying torch\include\ATen\ops\lgamma_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.6855713Z copying torch\include\ATen\ops\lgamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.6862475Z copying torch\include\ATen\ops\lgamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.6869018Z copying torch\include\ATen\ops\lift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.6875912Z copying torch\include\ATen\ops\lift_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.6883392Z copying torch\include\ATen\ops\lift_fresh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.6889428Z copying torch\include\ATen\ops\lift_fresh_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.6895922Z copying torch\include\ATen\ops\lift_fresh_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.6903259Z copying torch\include\ATen\ops\lift_fresh_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.6909925Z copying torch\include\ATen\ops\lift_fresh_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.6916433Z copying torch\include\ATen\ops\lift_fresh_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.6923024Z copying torch\include\ATen\ops\lift_fresh_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.6929760Z copying torch\include\ATen\ops\lift_fresh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.6936390Z copying torch\include\ATen\ops\lift_fresh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.6943192Z copying torch\include\ATen\ops\lift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.6949499Z copying torch\include\ATen\ops\lift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.6955837Z copying torch\include\ATen\ops\linalg_cholesky.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.6962870Z copying torch\include\ATen\ops\linalg_cholesky_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.6969244Z copying torch\include\ATen\ops\linalg_cholesky_ex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.6976285Z copying torch\include\ATen\ops\linalg_cholesky_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.6983125Z copying torch\include\ATen\ops\linalg_cholesky_ex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.6990024Z copying torch\include\ATen\ops\linalg_cholesky_ex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.6996724Z copying torch\include\ATen\ops\linalg_cholesky_ex_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7003447Z copying torch\include\ATen\ops\linalg_cholesky_ex_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7010070Z copying torch\include\ATen\ops\linalg_cholesky_ex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7016772Z copying torch\include\ATen\ops\linalg_cholesky_ex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7023749Z copying torch\include\ATen\ops\linalg_cholesky_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7030417Z copying torch\include\ATen\ops\linalg_cholesky_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7037014Z copying torch\include\ATen\ops\linalg_cond.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7044169Z copying torch\include\ATen\ops\linalg_cond_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7050710Z copying torch\include\ATen\ops\linalg_cond_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7057886Z copying torch\include\ATen\ops\linalg_cond_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7064465Z copying torch\include\ATen\ops\linalg_cross.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7071802Z copying torch\include\ATen\ops\linalg_cross_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7078352Z copying torch\include\ATen\ops\linalg_cross_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7086232Z copying torch\include\ATen\ops\linalg_cross_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7092257Z copying torch\include\ATen\ops\linalg_cross_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7098964Z copying torch\include\ATen\ops\linalg_cross_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7105634Z copying torch\include\ATen\ops\linalg_cross_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7122522Z copying torch\include\ATen\ops\linalg_cross_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7129269Z copying torch\include\ATen\ops\linalg_det.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7136456Z copying torch\include\ATen\ops\linalg_det_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7143220Z copying torch\include\ATen\ops\linalg_det_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7149654Z copying torch\include\ATen\ops\linalg_det_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7156777Z copying torch\include\ATen\ops\linalg_diagonal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7163832Z copying torch\include\ATen\ops\linalg_diagonal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7170392Z copying torch\include\ATen\ops\linalg_diagonal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7176992Z copying torch\include\ATen\ops\linalg_diagonal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7183682Z copying torch\include\ATen\ops\linalg_eig.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7190480Z copying torch\include\ATen\ops\linalg_eigh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7198494Z copying torch\include\ATen\ops\linalg_eigh_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7204412Z copying torch\include\ATen\ops\linalg_eigh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7211170Z copying torch\include\ATen\ops\linalg_eigh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7218038Z copying torch\include\ATen\ops\linalg_eigvals.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7225168Z copying torch\include\ATen\ops\linalg_eigvalsh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7232901Z copying torch\include\ATen\ops\linalg_eigvalsh_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7239227Z copying torch\include\ATen\ops\linalg_eigvalsh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7246080Z copying torch\include\ATen\ops\linalg_eigvalsh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7253151Z copying torch\include\ATen\ops\linalg_eigvals_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7261238Z copying torch\include\ATen\ops\linalg_eigvals_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7267325Z copying torch\include\ATen\ops\linalg_eigvals_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7274464Z copying torch\include\ATen\ops\linalg_eigvals_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7281077Z copying torch\include\ATen\ops\linalg_eigvals_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7320005Z copying torch\include\ATen\ops\linalg_eig_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7320876Z copying torch\include\ATen\ops\linalg_eig_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7321633Z copying torch\include\ATen\ops\linalg_eig_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7322354Z copying torch\include\ATen\ops\linalg_eig_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7323118Z copying torch\include\ATen\ops\linalg_householder_product.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7327478Z copying torch\include\ATen\ops\linalg_householder_product_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7334758Z copying torch\include\ATen\ops\linalg_householder_product_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7341914Z copying torch\include\ATen\ops\linalg_householder_product_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7349362Z copying torch\include\ATen\ops\linalg_householder_product_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7356102Z copying torch\include\ATen\ops\linalg_inv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7363092Z copying torch\include\ATen\ops\linalg_inv_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7370972Z copying torch\include\ATen\ops\linalg_inv_ex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7376911Z copying torch\include\ATen\ops\linalg_inv_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7383468Z copying torch\include\ATen\ops\linalg_inv_ex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7390101Z copying torch\include\ATen\ops\linalg_inv_ex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7396742Z copying torch\include\ATen\ops\linalg_inv_ex_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7403542Z copying torch\include\ATen\ops\linalg_inv_ex_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7410050Z copying torch\include\ATen\ops\linalg_inv_ex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7416806Z copying torch\include\ATen\ops\linalg_inv_ex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7423578Z copying torch\include\ATen\ops\linalg_inv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7429945Z copying torch\include\ATen\ops\linalg_inv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7437569Z copying torch\include\ATen\ops\linalg_ldl_factor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7443935Z copying torch\include\ATen\ops\linalg_ldl_factor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7450504Z copying torch\include\ATen\ops\linalg_ldl_factor_ex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7458685Z copying torch\include\ATen\ops\linalg_ldl_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7464758Z copying torch\include\ATen\ops\linalg_ldl_factor_ex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7471652Z copying torch\include\ATen\ops\linalg_ldl_factor_ex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7478249Z copying torch\include\ATen\ops\linalg_ldl_factor_ex_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7485034Z copying torch\include\ATen\ops\linalg_ldl_factor_ex_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7491533Z copying torch\include\ATen\ops\linalg_ldl_factor_ex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7498377Z copying torch\include\ATen\ops\linalg_ldl_factor_ex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7505163Z copying torch\include\ATen\ops\linalg_ldl_factor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7511851Z copying torch\include\ATen\ops\linalg_ldl_factor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7518386Z copying torch\include\ATen\ops\linalg_ldl_solve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7525493Z copying torch\include\ATen\ops\linalg_ldl_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7532128Z copying torch\include\ATen\ops\linalg_ldl_solve_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7539157Z copying torch\include\ATen\ops\linalg_ldl_solve_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7546109Z copying torch\include\ATen\ops\linalg_ldl_solve_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7552948Z copying torch\include\ATen\ops\linalg_ldl_solve_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7559899Z copying torch\include\ATen\ops\linalg_ldl_solve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7566484Z copying torch\include\ATen\ops\linalg_ldl_solve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7573011Z copying torch\include\ATen\ops\linalg_lstsq.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7580031Z copying torch\include\ATen\ops\linalg_lstsq_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7586965Z copying torch\include\ATen\ops\linalg_lstsq_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7594081Z copying torch\include\ATen\ops\linalg_lstsq_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7600617Z copying torch\include\ATen\ops\linalg_lstsq_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7607241Z copying torch\include\ATen\ops\linalg_lstsq_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7613829Z copying torch\include\ATen\ops\linalg_lu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7621117Z copying torch\include\ATen\ops\linalg_lu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7627633Z copying torch\include\ATen\ops\linalg_lu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7634609Z copying torch\include\ATen\ops\linalg_lu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7641264Z copying torch\include\ATen\ops\linalg_lu_factor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7648322Z copying torch\include\ATen\ops\linalg_lu_factor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7654973Z copying torch\include\ATen\ops\linalg_lu_factor_ex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7662509Z copying torch\include\ATen\ops\linalg_lu_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7669058Z copying torch\include\ATen\ops\linalg_lu_factor_ex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7676066Z copying torch\include\ATen\ops\linalg_lu_factor_ex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7730080Z copying torch\include\ATen\ops\linalg_lu_factor_ex_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7736820Z copying torch\include\ATen\ops\linalg_lu_factor_ex_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7743636Z copying torch\include\ATen\ops\linalg_lu_factor_ex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7750398Z copying torch\include\ATen\ops\linalg_lu_factor_ex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7756946Z copying torch\include\ATen\ops\linalg_lu_factor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7763764Z copying torch\include\ATen\ops\linalg_lu_factor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7770640Z copying torch\include\ATen\ops\linalg_lu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7777487Z copying torch\include\ATen\ops\linalg_lu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7784229Z copying torch\include\ATen\ops\linalg_lu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7790962Z copying torch\include\ATen\ops\linalg_lu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7797798Z copying torch\include\ATen\ops\linalg_lu_solve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7804971Z copying torch\include\ATen\ops\linalg_lu_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7811506Z copying torch\include\ATen\ops\linalg_lu_solve_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7818376Z copying torch\include\ATen\ops\linalg_lu_solve_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7825123Z copying torch\include\ATen\ops\linalg_lu_solve_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7831919Z copying torch\include\ATen\ops\linalg_lu_solve_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7838619Z copying torch\include\ATen\ops\linalg_lu_solve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7845340Z copying torch\include\ATen\ops\linalg_lu_solve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7852166Z copying torch\include\ATen\ops\linalg_matmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7859154Z copying torch\include\ATen\ops\linalg_matmul_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7866316Z copying torch\include\ATen\ops\linalg_matmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7906387Z copying torch\include\ATen\ops\linalg_matmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7907226Z copying torch\include\ATen\ops\linalg_matrix_exp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7908130Z copying torch\include\ATen\ops\linalg_matrix_exp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7909059Z copying torch\include\ATen\ops\linalg_matrix_exp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7909889Z copying torch\include\ATen\ops\linalg_matrix_exp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7913128Z copying torch\include\ATen\ops\linalg_matrix_exp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7920119Z copying torch\include\ATen\ops\linalg_matrix_exp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7926792Z copying torch\include\ATen\ops\linalg_matrix_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7934148Z copying torch\include\ATen\ops\linalg_matrix_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7941104Z copying torch\include\ATen\ops\linalg_matrix_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7947669Z copying torch\include\ATen\ops\linalg_matrix_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7954313Z copying torch\include\ATen\ops\linalg_matrix_power.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7961703Z copying torch\include\ATen\ops\linalg_matrix_power_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7968348Z copying torch\include\ATen\ops\linalg_matrix_power_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7975105Z copying torch\include\ATen\ops\linalg_matrix_power_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7981844Z copying torch\include\ATen\ops\linalg_matrix_rank.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7989070Z copying torch\include\ATen\ops\linalg_matrix_rank_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.7995773Z copying torch\include\ATen\ops\linalg_matrix_rank_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8002713Z copying torch\include\ATen\ops\linalg_matrix_rank_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8009355Z copying torch\include\ATen\ops\linalg_multi_dot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8016298Z copying torch\include\ATen\ops\linalg_multi_dot_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8022960Z copying torch\include\ATen\ops\linalg_multi_dot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8029687Z copying torch\include\ATen\ops\linalg_multi_dot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8036164Z copying torch\include\ATen\ops\linalg_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8043495Z copying torch\include\ATen\ops\linalg_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8050208Z copying torch\include\ATen\ops\linalg_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8057046Z copying torch\include\ATen\ops\linalg_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8063964Z copying torch\include\ATen\ops\linalg_pinv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8072207Z copying torch\include\ATen\ops\linalg_pinv_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8078529Z copying torch\include\ATen\ops\linalg_pinv_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8085509Z copying torch\include\ATen\ops\linalg_pinv_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8092498Z copying torch\include\ATen\ops\linalg_pinv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8100457Z copying torch\include\ATen\ops\linalg_pinv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8106929Z copying torch\include\ATen\ops\linalg_qr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8114093Z copying torch\include\ATen\ops\linalg_qr_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8120770Z copying torch\include\ATen\ops\linalg_qr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8127586Z copying torch\include\ATen\ops\linalg_qr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8135156Z copying torch\include\ATen\ops\linalg_qr_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8141711Z copying torch\include\ATen\ops\linalg_qr_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8148868Z copying torch\include\ATen\ops\linalg_qr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8155681Z copying torch\include\ATen\ops\linalg_qr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8163486Z copying torch\include\ATen\ops\linalg_slogdet.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8169853Z copying torch\include\ATen\ops\linalg_slogdet_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8176685Z copying torch\include\ATen\ops\linalg_slogdet_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8183560Z copying torch\include\ATen\ops\linalg_slogdet_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8190481Z copying torch\include\ATen\ops\linalg_solve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8198267Z copying torch\include\ATen\ops\linalg_solve_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8204705Z copying torch\include\ATen\ops\linalg_solve_ex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8211838Z copying torch\include\ATen\ops\linalg_solve_ex_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8218597Z copying torch\include\ATen\ops\linalg_solve_ex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8225427Z copying torch\include\ATen\ops\linalg_solve_ex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8232604Z copying torch\include\ATen\ops\linalg_solve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8239482Z copying torch\include\ATen\ops\linalg_solve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8246145Z copying torch\include\ATen\ops\linalg_solve_triangular.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8253122Z copying torch\include\ATen\ops\linalg_solve_triangular_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8260355Z copying torch\include\ATen\ops\linalg_solve_triangular_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8267159Z copying torch\include\ATen\ops\linalg_solve_triangular_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8273927Z copying torch\include\ATen\ops\linalg_solve_triangular_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8280708Z copying torch\include\ATen\ops\linalg_svd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8287877Z copying torch\include\ATen\ops\linalg_svdvals.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8303018Z copying torch\include\ATen\ops\linalg_svdvals_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8309989Z copying torch\include\ATen\ops\linalg_svdvals_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8316872Z copying torch\include\ATen\ops\linalg_svdvals_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8324013Z copying torch\include\ATen\ops\linalg_svd_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8330830Z copying torch\include\ATen\ops\linalg_svd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8337685Z copying torch\include\ATen\ops\linalg_svd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8344718Z copying torch\include\ATen\ops\linalg_tensorinv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8351703Z copying torch\include\ATen\ops\linalg_tensorinv_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8358521Z copying torch\include\ATen\ops\linalg_tensorinv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8365173Z copying torch\include\ATen\ops\linalg_tensorinv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8371887Z copying torch\include\ATen\ops\linalg_tensorsolve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8378914Z copying torch\include\ATen\ops\linalg_tensorsolve_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8386036Z copying torch\include\ATen\ops\linalg_tensorsolve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8392761Z copying torch\include\ATen\ops\linalg_tensorsolve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8399440Z copying torch\include\ATen\ops\linalg_vander.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8406430Z copying torch\include\ATen\ops\linalg_vander_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8413463Z copying torch\include\ATen\ops\linalg_vander_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8419876Z copying torch\include\ATen\ops\linalg_vander_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8426529Z copying torch\include\ATen\ops\linalg_vecdot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.8433748Z copying torch\include\ATen\ops\linalg_vecdot_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9547196Z copying torch\include\ATen\ops\linalg_vecdot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9553938Z copying torch\include\ATen\ops\linalg_vecdot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9561162Z copying torch\include\ATen\ops\linalg_vector_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9581116Z copying torch\include\ATen\ops\linalg_vector_norm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9582304Z copying torch\include\ATen\ops\linalg_vector_norm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9583228Z copying torch\include\ATen\ops\linalg_vector_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9589542Z copying torch\include\ATen\ops\linalg_vector_norm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9596355Z copying torch\include\ATen\ops\linalg_vector_norm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9602981Z copying torch\include\ATen\ops\linalg_vector_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9610193Z copying torch\include\ATen\ops\linalg_vector_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9616677Z copying torch\include\ATen\ops\linear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9624482Z copying torch\include\ATen\ops\linear_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9630888Z copying torch\include\ATen\ops\linear_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9637703Z copying torch\include\ATen\ops\linear_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9644305Z copying torch\include\ATen\ops\linear_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9651242Z copying torch\include\ATen\ops\linear_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9658328Z copying torch\include\ATen\ops\linear_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9665155Z copying torch\include\ATen\ops\linear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9672015Z copying torch\include\ATen\ops\linear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9679071Z copying torch\include\ATen\ops\linspace.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9685917Z copying torch\include\ATen\ops\linspace_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9692697Z copying torch\include\ATen\ops\linspace_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9699611Z copying torch\include\ATen\ops\linspace_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9706512Z copying torch\include\ATen\ops\linspace_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9713139Z copying torch\include\ATen\ops\linspace_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9720030Z copying torch\include\ATen\ops\linspace_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9764582Z copying torch\include\ATen\ops\log.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9770939Z copying torch\include\ATen\ops\log10.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9777873Z copying torch\include\ATen\ops\log10_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9784984Z copying torch\include\ATen\ops\log10_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9791750Z copying torch\include\ATen\ops\log10_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9798250Z copying torch\include\ATen\ops\log10_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9805014Z copying torch\include\ATen\ops\log10_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9812335Z copying torch\include\ATen\ops\log10_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9820079Z copying torch\include\ATen\ops\log10_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9826624Z copying torch\include\ATen\ops\log1p.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9833345Z copying torch\include\ATen\ops\log1p_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9839718Z copying torch\include\ATen\ops\log1p_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9846365Z copying torch\include\ATen\ops\log1p_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9853563Z copying torch\include\ATen\ops\log1p_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9860546Z copying torch\include\ATen\ops\log1p_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9867706Z copying torch\include\ATen\ops\log1p_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9874705Z copying torch\include\ATen\ops\log1p_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9882035Z copying torch\include\ATen\ops\log2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9889136Z copying torch\include\ATen\ops\log2_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9897213Z copying torch\include\ATen\ops\log2_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9904653Z copying torch\include\ATen\ops\log2_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9911508Z copying torch\include\ATen\ops\log2_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9917909Z copying torch\include\ATen\ops\log2_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9924675Z copying torch\include\ATen\ops\log2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9931464Z copying torch\include\ATen\ops\log2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9938133Z copying torch\include\ATen\ops\logaddexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9944796Z copying torch\include\ATen\ops\logaddexp2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9952112Z copying torch\include\ATen\ops\logaddexp2_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9958597Z copying torch\include\ATen\ops\logaddexp2_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9965258Z copying torch\include\ATen\ops\logaddexp2_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9971798Z copying torch\include\ATen\ops\logaddexp2_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9978784Z copying torch\include\ATen\ops\logaddexp2_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9985514Z copying torch\include\ATen\ops\logaddexp2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9992058Z copying torch\include\ATen\ops\logaddexp2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:05.9999214Z copying torch\include\ATen\ops\logaddexp_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0006800Z copying torch\include\ATen\ops\logaddexp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0013962Z copying torch\include\ATen\ops\logaddexp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0020339Z copying torch\include\ATen\ops\logaddexp_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0027377Z copying torch\include\ATen\ops\logaddexp_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0034103Z copying torch\include\ATen\ops\logaddexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0040911Z copying torch\include\ATen\ops\logaddexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0047598Z copying torch\include\ATen\ops\logcumsumexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0054398Z copying torch\include\ATen\ops\logcumsumexp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0061606Z copying torch\include\ATen\ops\logcumsumexp_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0068197Z copying torch\include\ATen\ops\logcumsumexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0074980Z copying torch\include\ATen\ops\logcumsumexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0081583Z copying torch\include\ATen\ops\logdet.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0087975Z copying torch\include\ATen\ops\logdet_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0094574Z copying torch\include\ATen\ops\logdet_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0101022Z copying torch\include\ATen\ops\logdet_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0107905Z copying torch\include\ATen\ops\logical_and.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0114726Z copying torch\include\ATen\ops\logical_and_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0121522Z copying torch\include\ATen\ops\logical_and_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0128091Z copying torch\include\ATen\ops\logical_and_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0134694Z copying torch\include\ATen\ops\logical_and_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0141494Z copying torch\include\ATen\ops\logical_and_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0148172Z copying torch\include\ATen\ops\logical_not.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0155170Z copying torch\include\ATen\ops\logical_not_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0161827Z copying torch\include\ATen\ops\logical_not_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0168735Z copying torch\include\ATen\ops\logical_not_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0175426Z copying torch\include\ATen\ops\logical_not_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0182627Z copying torch\include\ATen\ops\logical_not_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0189219Z copying torch\include\ATen\ops\logical_or.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0196197Z copying torch\include\ATen\ops\logical_or_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0202942Z copying torch\include\ATen\ops\logical_or_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0209534Z copying torch\include\ATen\ops\logical_or_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0216151Z copying torch\include\ATen\ops\logical_or_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0223069Z copying torch\include\ATen\ops\logical_or_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0229707Z copying torch\include\ATen\ops\logical_xor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0236764Z copying torch\include\ATen\ops\logical_xor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0243322Z copying torch\include\ATen\ops\logical_xor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0250000Z copying torch\include\ATen\ops\logical_xor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0256630Z copying torch\include\ATen\ops\logical_xor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0263390Z copying torch\include\ATen\ops\logical_xor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0270260Z copying torch\include\ATen\ops\logit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0276595Z copying torch\include\ATen\ops\logit_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0283708Z copying torch\include\ATen\ops\logit_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0290268Z copying torch\include\ATen\ops\logit_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0296963Z copying torch\include\ATen\ops\logit_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0303813Z copying torch\include\ATen\ops\logit_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0310518Z copying torch\include\ATen\ops\logit_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0317762Z copying torch\include\ATen\ops\logit_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0324495Z copying torch\include\ATen\ops\logit_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0331512Z copying torch\include\ATen\ops\logit_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0338528Z copying torch\include\ATen\ops\logit_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0346420Z copying torch\include\ATen\ops\logit_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0354134Z copying torch\include\ATen\ops\logit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0361982Z copying torch\include\ATen\ops\logit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0369678Z copying torch\include\ATen\ops\logspace.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0377267Z copying torch\include\ATen\ops\logspace_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0384234Z copying torch\include\ATen\ops\logspace_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0391092Z copying torch\include\ATen\ops\logspace_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0397901Z copying torch\include\ATen\ops\logspace_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0404609Z copying torch\include\ATen\ops\logspace_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0411490Z copying torch\include\ATen\ops\logspace_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0418198Z copying torch\include\ATen\ops\logsumexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0425649Z copying torch\include\ATen\ops\logsumexp_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0432383Z copying torch\include\ATen\ops\logsumexp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0439367Z copying torch\include\ATen\ops\logsumexp_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0445926Z copying torch\include\ATen\ops\logsumexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0452558Z copying torch\include\ATen\ops\logsumexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0459822Z copying torch\include\ATen\ops\log_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0466466Z copying torch\include\ATen\ops\log_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0473041Z copying torch\include\ATen\ops\log_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0479514Z copying torch\include\ATen\ops\log_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0485629Z copying torch\include\ATen\ops\log_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0492157Z copying torch\include\ATen\ops\log_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0498836Z copying torch\include\ATen\ops\log_normal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0505819Z copying torch\include\ATen\ops\log_normal_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0512763Z copying torch\include\ATen\ops\log_normal_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0519822Z copying torch\include\ATen\ops\log_normal_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0526003Z copying torch\include\ATen\ops\log_normal_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0532487Z copying torch\include\ATen\ops\log_normal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0539039Z copying torch\include\ATen\ops\log_normal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0545774Z copying torch\include\ATen\ops\log_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0552061Z copying torch\include\ATen\ops\log_sigmoid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0605117Z copying torch\include\ATen\ops\log_sigmoid_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0612763Z copying torch\include\ATen\ops\log_sigmoid_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0619498Z copying torch\include\ATen\ops\log_sigmoid_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0626530Z copying torch\include\ATen\ops\log_sigmoid_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0633360Z copying torch\include\ATen\ops\log_sigmoid_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0641425Z copying torch\include\ATen\ops\log_sigmoid_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0647258Z copying torch\include\ATen\ops\log_sigmoid_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0654085Z copying torch\include\ATen\ops\log_sigmoid_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0661180Z copying torch\include\ATen\ops\log_sigmoid_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0668018Z copying torch\include\ATen\ops\log_sigmoid_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0675881Z copying torch\include\ATen\ops\log_sigmoid_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0681767Z copying torch\include\ATen\ops\log_sigmoid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0688373Z copying torch\include\ATen\ops\log_sigmoid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0695202Z copying torch\include\ATen\ops\log_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0702318Z copying torch\include\ATen\ops\log_softmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0710203Z copying torch\include\ATen\ops\log_softmax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0716469Z copying torch\include\ATen\ops\log_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0723185Z copying torch\include\ATen\ops\log_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0729954Z copying torch\include\ATen\ops\lshift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0736666Z copying torch\include\ATen\ops\lshift_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0744480Z copying torch\include\ATen\ops\lshift_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0751005Z copying torch\include\ATen\ops\lshift_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0757974Z copying torch\include\ATen\ops\lshift_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0764735Z copying torch\include\ATen\ops\lshift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0771521Z copying torch\include\ATen\ops\lshift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0778637Z copying torch\include\ATen\ops\lstm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0785096Z copying torch\include\ATen\ops\lstm_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0792037Z copying torch\include\ATen\ops\lstm_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0798574Z copying torch\include\ATen\ops\lstm_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0815612Z copying torch\include\ATen\ops\lstm_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0816454Z copying torch\include\ATen\ops\lstm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0821566Z copying torch\include\ATen\ops\lstm_mps_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0828074Z copying torch\include\ATen\ops\lstm_mps_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0834868Z copying torch\include\ATen\ops\lstm_mps_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0841760Z copying torch\include\ATen\ops\lstm_mps_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0848395Z copying torch\include\ATen\ops\lstm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0855119Z copying torch\include\ATen\ops\lstm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0861651Z copying torch\include\ATen\ops\lt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0868898Z copying torch\include\ATen\ops\lt_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0875358Z copying torch\include\ATen\ops\lt_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0881834Z copying torch\include\ATen\ops\lt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0888214Z copying torch\include\ATen\ops\lt_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0894516Z copying torch\include\ATen\ops\lt_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0901743Z copying torch\include\ATen\ops\lt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0908310Z copying torch\include\ATen\ops\lt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0914583Z copying torch\include\ATen\ops\lu_solve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0921533Z copying torch\include\ATen\ops\lu_solve_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0928022Z copying torch\include\ATen\ops\lu_solve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0934564Z copying torch\include\ATen\ops\lu_solve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0941540Z copying torch\include\ATen\ops\lu_unpack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0948497Z copying torch\include\ATen\ops\lu_unpack_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0955162Z copying torch\include\ATen\ops\lu_unpack_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0961939Z copying torch\include\ATen\ops\lu_unpack_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0968675Z copying torch\include\ATen\ops\lu_unpack_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0975449Z copying torch\include\ATen\ops\lu_unpack_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0982329Z copying torch\include\ATen\ops\lu_unpack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0988829Z copying torch\include\ATen\ops\lu_unpack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.0995451Z copying torch\include\ATen\ops\margin_ranking_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1002330Z copying torch\include\ATen\ops\margin_ranking_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1008865Z copying torch\include\ATen\ops\margin_ranking_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1015658Z copying torch\include\ATen\ops\margin_ranking_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1022278Z copying torch\include\ATen\ops\masked_fill.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1029129Z copying torch\include\ATen\ops\masked_fill_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1035816Z copying torch\include\ATen\ops\masked_fill_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1042292Z copying torch\include\ATen\ops\masked_fill_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1048829Z copying torch\include\ATen\ops\masked_fill_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1055633Z copying torch\include\ATen\ops\masked_fill_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1062810Z copying torch\include\ATen\ops\masked_fill_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1069443Z copying torch\include\ATen\ops\masked_scatter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1076364Z copying torch\include\ATen\ops\masked_scatter_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1083881Z copying torch\include\ATen\ops\masked_scatter_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1090515Z copying torch\include\ATen\ops\masked_scatter_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1097463Z copying torch\include\ATen\ops\masked_scatter_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1104850Z copying torch\include\ATen\ops\masked_scatter_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1112592Z copying torch\include\ATen\ops\masked_scatter_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1119066Z copying torch\include\ATen\ops\masked_scatter_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1126103Z copying torch\include\ATen\ops\masked_scatter_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1133184Z copying torch\include\ATen\ops\masked_scatter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1139776Z copying torch\include\ATen\ops\masked_scatter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1146636Z copying torch\include\ATen\ops\masked_select.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1153755Z copying torch\include\ATen\ops\masked_select_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1195998Z copying torch\include\ATen\ops\masked_select_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1202741Z copying torch\include\ATen\ops\masked_select_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1209443Z copying torch\include\ATen\ops\masked_select_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1216468Z copying torch\include\ATen\ops\masked_select_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1223288Z copying torch\include\ATen\ops\masked_select_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1230361Z copying torch\include\ATen\ops\masked_select_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1237984Z copying torch\include\ATen\ops\masked_select_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1244100Z copying torch\include\ATen\ops\matmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1250264Z copying torch\include\ATen\ops\matmul_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1257409Z copying torch\include\ATen\ops\matmul_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1264029Z copying torch\include\ATen\ops\matmul_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1270771Z copying torch\include\ATen\ops\matmul_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1278698Z copying torch\include\ATen\ops\matmul_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1285196Z copying torch\include\ATen\ops\matmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1292095Z copying torch\include\ATen\ops\matmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1299000Z copying torch\include\ATen\ops\matrix_exp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1321788Z copying torch\include\ATen\ops\matrix_exp_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1322727Z copying torch\include\ATen\ops\matrix_exp_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1323669Z copying torch\include\ATen\ops\matrix_exp_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1328278Z copying torch\include\ATen\ops\matrix_exp_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1335373Z copying torch\include\ATen\ops\matrix_exp_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1342178Z copying torch\include\ATen\ops\matrix_exp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1348759Z copying torch\include\ATen\ops\matrix_exp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1355418Z copying torch\include\ATen\ops\matrix_H.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1362222Z copying torch\include\ATen\ops\matrix_H_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1369042Z copying torch\include\ATen\ops\matrix_H_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1375885Z copying torch\include\ATen\ops\matrix_H_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1382717Z copying torch\include\ATen\ops\matrix_power.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1389661Z copying torch\include\ATen\ops\matrix_power_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1396337Z copying torch\include\ATen\ops\matrix_power_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1403015Z copying torch\include\ATen\ops\matrix_power_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1409588Z copying torch\include\ATen\ops\max.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1416162Z copying torch\include\ATen\ops\maximum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1423049Z copying torch\include\ATen\ops\maximum_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1429607Z copying torch\include\ATen\ops\maximum_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1441348Z copying torch\include\ATen\ops\maximum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1444961Z copying torch\include\ATen\ops\maximum_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1451578Z copying torch\include\ATen\ops\maximum_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1458517Z copying torch\include\ATen\ops\maximum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1464896Z copying torch\include\ATen\ops\maximum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1471872Z copying torch\include\ATen\ops\max_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1478696Z copying torch\include\ATen\ops\max_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1485275Z copying torch\include\ATen\ops\max_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1491823Z copying torch\include\ATen\ops\max_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1498142Z copying torch\include\ATen\ops\max_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1504648Z copying torch\include\ATen\ops\max_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1511142Z copying torch\include\ATen\ops\max_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1517649Z copying torch\include\ATen\ops\max_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1524162Z copying torch\include\ATen\ops\max_pool1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1530851Z copying torch\include\ATen\ops\max_pool1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1537646Z copying torch\include\ATen\ops\max_pool1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1544606Z copying torch\include\ATen\ops\max_pool1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1551280Z copying torch\include\ATen\ops\max_pool1d_with_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1558734Z copying torch\include\ATen\ops\max_pool1d_with_indices_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1565876Z copying torch\include\ATen\ops\max_pool1d_with_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1572816Z copying torch\include\ATen\ops\max_pool1d_with_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1579631Z copying torch\include\ATen\ops\max_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1586645Z copying torch\include\ATen\ops\max_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1593786Z copying torch\include\ATen\ops\max_pool2d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1600705Z copying torch\include\ATen\ops\max_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1632001Z copying torch\include\ATen\ops\max_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1639426Z copying torch\include\ATen\ops\max_pool2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1647457Z copying torch\include\ATen\ops\max_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1654365Z copying torch\include\ATen\ops\max_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1661614Z copying torch\include\ATen\ops\max_pool2d_with_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1668864Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1676359Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1683184Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1690808Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1697874Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1705157Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1712053Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1719024Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1726592Z copying torch\include\ATen\ops\max_pool2d_with_indices_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1733601Z copying torch\include\ATen\ops\max_pool2d_with_indices_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1740741Z copying torch\include\ATen\ops\max_pool2d_with_indices_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1747598Z copying torch\include\ATen\ops\max_pool2d_with_indices_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1754677Z copying torch\include\ATen\ops\max_pool2d_with_indices_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1761882Z copying torch\include\ATen\ops\max_pool2d_with_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1768903Z copying torch\include\ATen\ops\max_pool2d_with_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1775588Z copying torch\include\ATen\ops\max_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1813299Z copying torch\include\ATen\ops\max_pool3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1820832Z copying torch\include\ATen\ops\max_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1828586Z copying torch\include\ATen\ops\max_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1835685Z copying torch\include\ATen\ops\max_pool3d_with_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1842719Z copying torch\include\ATen\ops\max_pool3d_with_indices_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1849989Z copying torch\include\ATen\ops\max_pool3d_with_indices_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1857046Z copying torch\include\ATen\ops\max_pool3d_with_indices_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1864104Z copying torch\include\ATen\ops\max_pool3d_with_indices_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1871022Z copying torch\include\ATen\ops\max_pool3d_with_indices_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1877856Z copying torch\include\ATen\ops\max_pool3d_with_indices_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1885135Z copying torch\include\ATen\ops\max_pool3d_with_indices_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1891890Z copying torch\include\ATen\ops\max_pool3d_with_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1898589Z copying torch\include\ATen\ops\max_pool3d_with_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1905248Z copying torch\include\ATen\ops\max_unpool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1912121Z copying torch\include\ATen\ops\max_unpool2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1918745Z copying torch\include\ATen\ops\max_unpool2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1925830Z copying torch\include\ATen\ops\max_unpool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1932221Z copying torch\include\ATen\ops\max_unpool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1938835Z copying torch\include\ATen\ops\max_unpool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1945811Z copying torch\include\ATen\ops\max_unpool3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1952646Z copying torch\include\ATen\ops\max_unpool3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1959336Z copying torch\include\ATen\ops\max_unpool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1967292Z copying torch\include\ATen\ops\max_unpool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1973154Z copying torch\include\ATen\ops\mean.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1979928Z copying torch\include\ATen\ops\mean_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1986841Z copying torch\include\ATen\ops\mean_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.1993515Z copying torch\include\ATen\ops\mean_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2000547Z copying torch\include\ATen\ops\mean_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2007196Z copying torch\include\ATen\ops\mean_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2014328Z copying torch\include\ATen\ops\mean_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2021084Z copying torch\include\ATen\ops\mean_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2027557Z copying torch\include\ATen\ops\mean_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2034482Z copying torch\include\ATen\ops\mean_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2040798Z copying torch\include\ATen\ops\median.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2047322Z copying torch\include\ATen\ops\median_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2053950Z copying torch\include\ATen\ops\median_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2060518Z copying torch\include\ATen\ops\median_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2068355Z copying torch\include\ATen\ops\median_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2074054Z copying torch\include\ATen\ops\median_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2081002Z copying torch\include\ATen\ops\median_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2087928Z copying torch\include\ATen\ops\meshgrid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2094656Z copying torch\include\ATen\ops\meshgrid_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2102612Z copying torch\include\ATen\ops\meshgrid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2108377Z copying torch\include\ATen\ops\meshgrid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2115147Z copying torch\include\ATen\ops\mH.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2121808Z copying torch\include\ATen\ops\mH_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2128214Z copying torch\include\ATen\ops\mH_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2134772Z copying torch\include\ATen\ops\mH_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2141217Z copying torch\include\ATen\ops\min.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2148338Z copying torch\include\ATen\ops\minimum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2154458Z copying torch\include\ATen\ops\minimum_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2161025Z copying torch\include\ATen\ops\minimum_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2167769Z copying torch\include\ATen\ops\minimum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2174587Z copying torch\include\ATen\ops\minimum_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2182476Z copying torch\include\ATen\ops\minimum_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2188470Z copying torch\include\ATen\ops\minimum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2195289Z copying torch\include\ATen\ops\minimum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2202980Z copying torch\include\ATen\ops\min_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2209723Z copying torch\include\ATen\ops\min_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2216928Z copying torch\include\ATen\ops\min_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2223223Z copying torch\include\ATen\ops\min_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2229988Z copying torch\include\ATen\ops\min_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2236953Z copying torch\include\ATen\ops\min_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2243537Z copying torch\include\ATen\ops\min_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2250067Z copying torch\include\ATen\ops\min_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2257254Z copying torch\include\ATen\ops\miopen_batch_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2263224Z copying torch\include\ATen\ops\miopen_batch_norm_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2270173Z copying torch\include\ATen\ops\miopen_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2276987Z copying torch\include\ATen\ops\miopen_batch_norm_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2284043Z copying torch\include\ATen\ops\miopen_batch_norm_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2291621Z copying torch\include\ATen\ops\miopen_batch_norm_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2298311Z copying torch\include\ATen\ops\miopen_batch_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2305269Z copying torch\include\ATen\ops\miopen_batch_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2312193Z copying torch\include\ATen\ops\miopen_batch_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2326846Z copying torch\include\ATen\ops\miopen_batch_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2327640Z copying torch\include\ATen\ops\miopen_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2334493Z copying torch\include\ATen\ops\miopen_convolution_add_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2341656Z copying torch\include\ATen\ops\miopen_convolution_add_relu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2348694Z copying torch\include\ATen\ops\miopen_convolution_add_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2355613Z copying torch\include\ATen\ops\miopen_convolution_add_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2362859Z copying torch\include\ATen\ops\miopen_convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2404646Z copying torch\include\ATen\ops\miopen_convolution_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2411827Z copying torch\include\ATen\ops\miopen_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2418591Z copying torch\include\ATen\ops\miopen_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2425558Z copying torch\include\ATen\ops\miopen_convolution_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2432518Z copying torch\include\ATen\ops\miopen_convolution_relu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2439662Z copying torch\include\ATen\ops\miopen_convolution_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2446413Z copying torch\include\ATen\ops\miopen_convolution_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2453344Z copying torch\include\ATen\ops\miopen_convolution_transpose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2460482Z copying torch\include\ATen\ops\miopen_convolution_transpose_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2467601Z copying torch\include\ATen\ops\miopen_convolution_transpose_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2474613Z copying torch\include\ATen\ops\miopen_convolution_transpose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2482002Z copying torch\include\ATen\ops\miopen_convolution_transpose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2488659Z copying torch\include\ATen\ops\miopen_depthwise_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2496141Z copying torch\include\ATen\ops\miopen_depthwise_convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2503259Z copying torch\include\ATen\ops\miopen_depthwise_convolution_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2510608Z copying torch\include\ATen\ops\miopen_depthwise_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2517664Z copying torch\include\ATen\ops\miopen_depthwise_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2524439Z copying torch\include\ATen\ops\miopen_rnn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2531312Z copying torch\include\ATen\ops\miopen_rnn_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2538848Z copying torch\include\ATen\ops\miopen_rnn_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2545751Z copying torch\include\ATen\ops\miopen_rnn_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2552604Z copying torch\include\ATen\ops\miopen_rnn_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2559371Z copying torch\include\ATen\ops\miopen_rnn_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2566520Z copying torch\include\ATen\ops\miopen_rnn_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2573398Z copying torch\include\ATen\ops\miopen_rnn_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2580826Z copying torch\include\ATen\ops\miopen_rnn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2587496Z copying torch\include\ATen\ops\miopen_rnn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2594245Z copying torch\include\ATen\ops\mish.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2600751Z copying torch\include\ATen\ops\mish_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2607944Z copying torch\include\ATen\ops\mish_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2615306Z copying torch\include\ATen\ops\mish_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2621890Z copying torch\include\ATen\ops\mish_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2628765Z copying torch\include\ATen\ops\mish_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2635460Z copying torch\include\ATen\ops\mish_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2643369Z copying torch\include\ATen\ops\mish_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2649525Z copying torch\include\ATen\ops\mish_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2656200Z copying torch\include\ATen\ops\mish_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2662990Z copying torch\include\ATen\ops\mish_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2669495Z copying torch\include\ATen\ops\mish_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2677274Z copying torch\include\ATen\ops\mish_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2683402Z copying torch\include\ATen\ops\mish_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2689788Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2696669Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2703885Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2711231Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2717877Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2724956Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2731728Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2738601Z copying torch\include\ATen\ops\mkldnn_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2746595Z copying torch\include\ATen\ops\mkldnn_convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2752681Z copying torch\include\ATen\ops\mkldnn_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2759532Z copying torch\include\ATen\ops\mkldnn_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2766520Z copying torch\include\ATen\ops\mkldnn_linear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2774764Z copying torch\include\ATen\ops\mkldnn_linear_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2781200Z copying torch\include\ATen\ops\mkldnn_linear_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2788075Z copying torch\include\ATen\ops\mkldnn_linear_backward_input.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2795398Z copying torch\include\ATen\ops\mkldnn_linear_backward_input_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2802163Z copying torch\include\ATen\ops\mkldnn_linear_backward_input_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2809372Z copying torch\include\ATen\ops\mkldnn_linear_backward_input_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2816159Z copying torch\include\ATen\ops\mkldnn_linear_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2823530Z copying torch\include\ATen\ops\mkldnn_linear_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2830522Z copying torch\include\ATen\ops\mkldnn_linear_backward_weights.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2837865Z copying torch\include\ATen\ops\mkldnn_linear_backward_weights_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2845018Z copying torch\include\ATen\ops\mkldnn_linear_backward_weights_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2853224Z copying torch\include\ATen\ops\mkldnn_linear_backward_weights_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2859305Z copying torch\include\ATen\ops\mkldnn_linear_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2866258Z copying torch\include\ATen\ops\mkldnn_linear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2873055Z copying torch\include\ATen\ops\mkldnn_linear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2879893Z copying torch\include\ATen\ops\mkldnn_max_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2886814Z copying torch\include\ATen\ops\mkldnn_max_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2894246Z copying torch\include\ATen\ops\mkldnn_max_pool2d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2901051Z copying torch\include\ATen\ops\mkldnn_max_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2907806Z copying torch\include\ATen\ops\mkldnn_max_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2915141Z copying torch\include\ATen\ops\mkldnn_max_pool2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2922542Z copying torch\include\ATen\ops\mkldnn_max_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2928520Z copying torch\include\ATen\ops\mkldnn_max_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2935355Z copying torch\include\ATen\ops\mkldnn_max_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2942284Z copying torch\include\ATen\ops\mkldnn_max_pool3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2949387Z copying torch\include\ATen\ops\mkldnn_max_pool3d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2962527Z copying torch\include\ATen\ops\mkldnn_max_pool3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2969349Z copying torch\include\ATen\ops\mkldnn_max_pool3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2990867Z copying torch\include\ATen\ops\mkldnn_max_pool3d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.2997846Z copying torch\include\ATen\ops\mkldnn_max_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3004653Z copying torch\include\ATen\ops\mkldnn_max_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3011582Z copying torch\include\ATen\ops\mkldnn_reorder_conv2d_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3019463Z copying torch\include\ATen\ops\mkldnn_reorder_conv2d_weight_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3025962Z copying torch\include\ATen\ops\mkldnn_reorder_conv2d_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3033039Z copying torch\include\ATen\ops\mkldnn_reorder_conv2d_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3039918Z copying torch\include\ATen\ops\mkldnn_reorder_conv3d_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3048033Z copying torch\include\ATen\ops\mkldnn_reorder_conv3d_weight_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3054500Z copying torch\include\ATen\ops\mkldnn_reorder_conv3d_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3061800Z copying torch\include\ATen\ops\mkldnn_reorder_conv3d_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3068652Z copying torch\include\ATen\ops\mkldnn_rnn_layer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3076459Z copying torch\include\ATen\ops\mkldnn_rnn_layer_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3083133Z copying torch\include\ATen\ops\mkldnn_rnn_layer_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3090286Z copying torch\include\ATen\ops\mkldnn_rnn_layer_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3097164Z copying torch\include\ATen\ops\mkldnn_rnn_layer_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3105080Z copying torch\include\ATen\ops\mkldnn_rnn_layer_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3111394Z copying torch\include\ATen\ops\mkldnn_rnn_layer_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3118558Z copying torch\include\ATen\ops\mkldnn_rnn_layer_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3125447Z copying torch\include\ATen\ops\mkldnn_rnn_layer_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3132258Z copying torch\include\ATen\ops\mkldnn_rnn_layer_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3139437Z copying torch\include\ATen\ops\mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3146065Z copying torch\include\ATen\ops\mm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3152698Z copying torch\include\ATen\ops\mm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3159497Z copying torch\include\ATen\ops\mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3166234Z copying torch\include\ATen\ops\mm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3173496Z copying torch\include\ATen\ops\mm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3179513Z copying torch\include\ATen\ops\mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3186096Z copying torch\include\ATen\ops\mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3192360Z copying torch\include\ATen\ops\mode.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3199271Z copying torch\include\ATen\ops\mode_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3206144Z copying torch\include\ATen\ops\mode_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3213771Z copying torch\include\ATen\ops\mode_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3219944Z copying torch\include\ATen\ops\mode_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3226706Z copying torch\include\ATen\ops\mode_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3233399Z copying torch\include\ATen\ops\mode_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3239876Z copying torch\include\ATen\ops\moveaxis.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3246634Z copying torch\include\ATen\ops\moveaxis_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3254015Z copying torch\include\ATen\ops\moveaxis_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3260486Z copying torch\include\ATen\ops\moveaxis_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3267208Z copying torch\include\ATen\ops\movedim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3274086Z copying torch\include\ATen\ops\movedim_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3280717Z copying torch\include\ATen\ops\movedim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3288296Z copying torch\include\ATen\ops\movedim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3294577Z copying torch\include\ATen\ops\mps_convolution_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3302185Z copying torch\include\ATen\ops\mps_convolution_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3308778Z copying torch\include\ATen\ops\mps_convolution_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3315936Z copying torch\include\ATen\ops\mps_convolution_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3322862Z copying torch\include\ATen\ops\mps_convolution_transpose_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3330727Z copying torch\include\ATen\ops\mps_convolution_transpose_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3337497Z copying torch\include\ATen\ops\mps_convolution_transpose_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3344554Z copying torch\include\ATen\ops\mps_convolution_transpose_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3351208Z copying torch\include\ATen\ops\mse_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3357842Z copying torch\include\ATen\ops\mse_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3364796Z copying torch\include\ATen\ops\mse_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3372052Z copying torch\include\ATen\ops\mse_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3378737Z copying torch\include\ATen\ops\mse_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3385480Z copying torch\include\ATen\ops\mse_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3392527Z copying torch\include\ATen\ops\mse_loss_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3399154Z copying torch\include\ATen\ops\mse_loss_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3406116Z copying torch\include\ATen\ops\mse_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3413246Z copying torch\include\ATen\ops\mse_loss_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3419871Z copying torch\include\ATen\ops\mse_loss_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3426678Z copying torch\include\ATen\ops\mse_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3433483Z copying torch\include\ATen\ops\mse_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3440042Z copying torch\include\ATen\ops\msort.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3446642Z copying torch\include\ATen\ops\msort_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3453294Z copying torch\include\ATen\ops\msort_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3459938Z copying torch\include\ATen\ops\msort_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3466514Z copying torch\include\ATen\ops\mT.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3472902Z copying torch\include\ATen\ops\mT_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3479438Z copying torch\include\ATen\ops\mT_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3486306Z copying torch\include\ATen\ops\mT_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3512085Z copying torch\include\ATen\ops\mul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3518409Z copying torch\include\ATen\ops\multilabel_margin_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3525380Z copying torch\include\ATen\ops\multilabel_margin_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3532250Z copying torch\include\ATen\ops\multilabel_margin_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3539016Z copying torch\include\ATen\ops\multilabel_margin_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3545752Z copying torch\include\ATen\ops\multilabel_margin_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3552516Z copying torch\include\ATen\ops\multilabel_margin_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3559478Z copying torch\include\ATen\ops\multilabel_margin_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3573334Z copying torch\include\ATen\ops\multilabel_margin_loss_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3580763Z copying torch\include\ATen\ops\multilabel_margin_loss_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3587587Z copying torch\include\ATen\ops\multilabel_margin_loss_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3594256Z copying torch\include\ATen\ops\multilabel_margin_loss_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3600867Z copying torch\include\ATen\ops\multilabel_margin_loss_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3607566Z copying torch\include\ATen\ops\multilabel_margin_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3614455Z copying torch\include\ATen\ops\multilabel_margin_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3621139Z copying torch\include\ATen\ops\multinomial.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3627872Z copying torch\include\ATen\ops\multinomial_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3634523Z copying torch\include\ATen\ops\multinomial_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3641394Z copying torch\include\ATen\ops\multinomial_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3648216Z copying torch\include\ATen\ops\multinomial_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3655048Z copying torch\include\ATen\ops\multiply.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3662103Z copying torch\include\ATen\ops\multiply_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3669088Z copying torch\include\ATen\ops\multiply_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3676567Z copying torch\include\ATen\ops\multiply_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3683345Z copying torch\include\ATen\ops\multi_margin_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3690175Z copying torch\include\ATen\ops\multi_margin_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3696982Z copying torch\include\ATen\ops\multi_margin_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3704084Z copying torch\include\ATen\ops\multi_margin_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3711236Z copying torch\include\ATen\ops\multi_margin_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3718173Z copying torch\include\ATen\ops\multi_margin_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3725106Z copying torch\include\ATen\ops\multi_margin_loss_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3731948Z copying torch\include\ATen\ops\multi_margin_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3738749Z copying torch\include\ATen\ops\multi_margin_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3745720Z copying torch\include\ATen\ops\multi_margin_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3752821Z copying torch\include\ATen\ops\mul_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3759711Z copying torch\include\ATen\ops\mul_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3766332Z copying torch\include\ATen\ops\mul_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3773322Z copying torch\include\ATen\ops\mul_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3779834Z copying torch\include\ATen\ops\mul_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3786236Z copying torch\include\ATen\ops\mul_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3792849Z copying torch\include\ATen\ops\mul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3818462Z copying torch\include\ATen\ops\mul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3829172Z copying torch\include\ATen\ops\mv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3831254Z copying torch\include\ATen\ops\mvlgamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3851832Z copying torch\include\ATen\ops\mvlgamma_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3852737Z copying torch\include\ATen\ops\mvlgamma_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3853692Z copying torch\include\ATen\ops\mvlgamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3860706Z copying torch\include\ATen\ops\mvlgamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3867502Z copying torch\include\ATen\ops\mvlgamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3875920Z copying torch\include\ATen\ops\mv_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3881542Z copying torch\include\ATen\ops\mv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3888515Z copying torch\include\ATen\ops\mv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3894688Z copying torch\include\ATen\ops\nanmean.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3902752Z copying torch\include\ATen\ops\nanmean_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3908129Z copying torch\include\ATen\ops\nanmean_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3914533Z copying torch\include\ATen\ops\nanmean_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3921055Z copying torch\include\ATen\ops\nanmedian.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3927895Z copying torch\include\ATen\ops\nanmedian_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3936916Z copying torch\include\ATen\ops\nanmedian_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3944326Z copying torch\include\ATen\ops\nanmedian_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3950860Z copying torch\include\ATen\ops\nanmedian_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3957594Z copying torch\include\ATen\ops\nanmedian_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3964164Z copying torch\include\ATen\ops\nanmedian_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3970873Z copying torch\include\ATen\ops\nanquantile.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3977746Z copying torch\include\ATen\ops\nanquantile_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3984719Z copying torch\include\ATen\ops\nanquantile_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3991478Z copying torch\include\ATen\ops\nanquantile_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.3998118Z copying torch\include\ATen\ops\nansum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4004419Z copying torch\include\ATen\ops\nansum_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4010989Z copying torch\include\ATen\ops\nansum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4017646Z copying torch\include\ATen\ops\nansum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4024382Z copying torch\include\ATen\ops\nansum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4030893Z copying torch\include\ATen\ops\nan_to_num.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4037885Z copying torch\include\ATen\ops\nan_to_num_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4044426Z copying torch\include\ATen\ops\nan_to_num_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4051051Z copying torch\include\ATen\ops\nan_to_num_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4057575Z copying torch\include\ATen\ops\nan_to_num_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4064287Z copying torch\include\ATen\ops\nan_to_num_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4070932Z copying torch\include\ATen\ops\narrow.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4077710Z copying torch\include\ATen\ops\narrow_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4084456Z copying torch\include\ATen\ops\narrow_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4091604Z copying torch\include\ATen\ops\narrow_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4098277Z copying torch\include\ATen\ops\narrow_copy_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4105493Z copying torch\include\ATen\ops\narrow_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4112156Z copying torch\include\ATen\ops\narrow_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4118952Z copying torch\include\ATen\ops\narrow_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4125821Z copying torch\include\ATen\ops\narrow_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4132944Z copying torch\include\ATen\ops\native_batch_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4139604Z copying torch\include\ATen\ops\native_batch_norm_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4147708Z copying torch\include\ATen\ops\native_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4154634Z copying torch\include\ATen\ops\native_batch_norm_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4161587Z copying torch\include\ATen\ops\native_batch_norm_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4168405Z copying torch\include\ATen\ops\native_batch_norm_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4175512Z copying torch\include\ATen\ops\native_batch_norm_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4182622Z copying torch\include\ATen\ops\native_batch_norm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4189580Z copying torch\include\ATen\ops\native_batch_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4196394Z copying torch\include\ATen\ops\native_batch_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4203243Z copying torch\include\ATen\ops\native_batch_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4210174Z copying torch\include\ATen\ops\native_channel_shuffle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4217462Z copying torch\include\ATen\ops\native_channel_shuffle_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4224684Z copying torch\include\ATen\ops\native_channel_shuffle_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4231605Z copying torch\include\ATen\ops\native_channel_shuffle_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4238541Z copying torch\include\ATen\ops\native_channel_shuffle_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4245675Z copying torch\include\ATen\ops\native_dropout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4252575Z copying torch\include\ATen\ops\native_dropout_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4260052Z copying torch\include\ATen\ops\native_dropout_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4267173Z copying torch\include\ATen\ops\native_dropout_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4274203Z copying torch\include\ATen\ops\native_dropout_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4281238Z copying torch\include\ATen\ops\native_dropout_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4288259Z copying torch\include\ATen\ops\native_dropout_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4295357Z copying torch\include\ATen\ops\native_dropout_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4302447Z copying torch\include\ATen\ops\native_dropout_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4309585Z copying torch\include\ATen\ops\native_dropout_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4316481Z copying torch\include\ATen\ops\native_dropout_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4323436Z copying torch\include\ATen\ops\native_dropout_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4331252Z copying torch\include\ATen\ops\native_group_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4339071Z copying torch\include\ATen\ops\native_group_norm_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4346657Z copying torch\include\ATen\ops\native_group_norm_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4353778Z copying torch\include\ATen\ops\native_group_norm_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4361293Z copying torch\include\ATen\ops\native_group_norm_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4368222Z copying torch\include\ATen\ops\native_group_norm_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4375206Z copying torch\include\ATen\ops\native_group_norm_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4382327Z copying torch\include\ATen\ops\native_group_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4389261Z copying torch\include\ATen\ops\native_group_norm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4396306Z copying torch\include\ATen\ops\native_group_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4403043Z copying torch\include\ATen\ops\native_group_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4409781Z copying torch\include\ATen\ops\native_group_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4417015Z copying torch\include\ATen\ops\native_layer_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4424173Z copying torch\include\ATen\ops\native_layer_norm_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4431331Z copying torch\include\ATen\ops\native_layer_norm_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4438351Z copying torch\include\ATen\ops\native_layer_norm_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4445273Z copying torch\include\ATen\ops\native_layer_norm_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4452084Z copying torch\include\ATen\ops\native_layer_norm_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4458821Z copying torch\include\ATen\ops\native_layer_norm_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4465902Z copying torch\include\ATen\ops\native_layer_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4472664Z copying torch\include\ATen\ops\native_layer_norm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4479990Z copying torch\include\ATen\ops\native_layer_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4486782Z copying torch\include\ATen\ops\native_layer_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4493476Z copying torch\include\ATen\ops\native_layer_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4500234Z copying torch\include\ATen\ops\native_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4507357Z copying torch\include\ATen\ops\native_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4514080Z copying torch\include\ATen\ops\native_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4520932Z copying torch\include\ATen\ops\native_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4527659Z copying torch\include\ATen\ops\ne.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4533895Z copying torch\include\ATen\ops\neg.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4540524Z copying torch\include\ATen\ops\negative.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4547174Z copying torch\include\ATen\ops\negative_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4553648Z copying torch\include\ATen\ops\negative_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4560168Z copying torch\include\ATen\ops\negative_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4567137Z copying torch\include\ATen\ops\neg_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4573731Z copying torch\include\ATen\ops\neg_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4580321Z copying torch\include\ATen\ops\neg_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4586851Z copying torch\include\ATen\ops\neg_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4593015Z copying torch\include\ATen\ops\neg_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4599491Z copying torch\include\ATen\ops\neg_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4606526Z copying torch\include\ATen\ops\neg_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4612711Z copying torch\include\ATen\ops\nested_to_padded_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4619589Z copying torch\include\ATen\ops\nested_to_padded_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4626435Z copying torch\include\ATen\ops\nested_to_padded_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4633019Z copying torch\include\ATen\ops\nested_to_padded_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4639642Z copying torch\include\ATen\ops\new_empty.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4646482Z copying torch\include\ATen\ops\new_empty_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4653026Z copying torch\include\ATen\ops\new_empty_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4659645Z copying torch\include\ATen\ops\new_empty_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4666498Z copying torch\include\ATen\ops\new_empty_strided.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4674574Z copying torch\include\ATen\ops\new_empty_strided_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4680965Z copying torch\include\ATen\ops\new_empty_strided_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4687502Z copying torch\include\ATen\ops\new_empty_strided_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4694133Z copying torch\include\ATen\ops\new_empty_strided_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4700938Z copying torch\include\ATen\ops\new_full.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4708143Z copying torch\include\ATen\ops\new_full_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4714903Z copying torch\include\ATen\ops\new_full_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4721477Z copying torch\include\ATen\ops\new_full_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4728106Z copying torch\include\ATen\ops\new_ones.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4734772Z copying torch\include\ATen\ops\new_ones_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4741594Z copying torch\include\ATen\ops\new_ones_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4748296Z copying torch\include\ATen\ops\new_ones_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4755119Z copying torch\include\ATen\ops\new_zeros.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4762543Z copying torch\include\ATen\ops\new_zeros_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4769135Z copying torch\include\ATen\ops\new_zeros_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4775861Z copying torch\include\ATen\ops\new_zeros_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4783102Z copying torch\include\ATen\ops\nextafter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4791031Z copying torch\include\ATen\ops\nextafter_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4796829Z copying torch\include\ATen\ops\nextafter_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4803605Z copying torch\include\ATen\ops\nextafter_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4810286Z copying torch\include\ATen\ops\nextafter_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4817366Z copying torch\include\ATen\ops\nextafter_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4825268Z copying torch\include\ATen\ops\nextafter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4859899Z copying torch\include\ATen\ops\nextafter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4860805Z copying torch\include\ATen\ops\ne_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4861698Z copying torch\include\ATen\ops\ne_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4862434Z copying torch\include\ATen\ops\ne_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4863123Z copying torch\include\ATen\ops\ne_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4868941Z copying torch\include\ATen\ops\ne_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4875818Z copying torch\include\ATen\ops\ne_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4883871Z copying torch\include\ATen\ops\ne_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4888950Z copying torch\include\ATen\ops\nll_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4895556Z copying torch\include\ATen\ops\nll_loss2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4902391Z copying torch\include\ATen\ops\nll_loss2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4908984Z copying torch\include\ATen\ops\nll_loss2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4915834Z copying torch\include\ATen\ops\nll_loss2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4922555Z copying torch\include\ATen\ops\nll_loss2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4929474Z copying torch\include\ATen\ops\nll_loss2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4936544Z copying torch\include\ATen\ops\nll_loss2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4943323Z copying torch\include\ATen\ops\nll_loss2d_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4950246Z copying torch\include\ATen\ops\nll_loss2d_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4957035Z copying torch\include\ATen\ops\nll_loss2d_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4963677Z copying torch\include\ATen\ops\nll_loss2d_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4970483Z copying torch\include\ATen\ops\nll_loss2d_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4977116Z copying torch\include\ATen\ops\nll_loss2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4983948Z copying torch\include\ATen\ops\nll_loss2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4991241Z copying torch\include\ATen\ops\nll_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.4998506Z copying torch\include\ATen\ops\nll_loss_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5005232Z copying torch\include\ATen\ops\nll_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5011929Z copying torch\include\ATen\ops\nll_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5018742Z copying torch\include\ATen\ops\nll_loss_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5025552Z copying torch\include\ATen\ops\nll_loss_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5032312Z copying torch\include\ATen\ops\nll_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5038955Z copying torch\include\ATen\ops\nll_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5045933Z copying torch\include\ATen\ops\nll_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5052502Z copying torch\include\ATen\ops\nll_loss_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5059970Z copying torch\include\ATen\ops\nll_loss_forward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5066748Z copying torch\include\ATen\ops\nll_loss_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5073367Z copying torch\include\ATen\ops\nll_loss_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5079919Z copying torch\include\ATen\ops\nll_loss_forward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5086790Z copying torch\include\ATen\ops\nll_loss_forward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5093545Z copying torch\include\ATen\ops\nll_loss_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5100779Z copying torch\include\ATen\ops\nll_loss_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5107571Z copying torch\include\ATen\ops\nll_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5115820Z copying torch\include\ATen\ops\nll_loss_nd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5122285Z copying torch\include\ATen\ops\nll_loss_nd_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5129047Z copying torch\include\ATen\ops\nll_loss_nd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5135776Z copying torch\include\ATen\ops\nll_loss_nd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5142893Z copying torch\include\ATen\ops\nll_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5150553Z copying torch\include\ATen\ops\nonzero.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5156470Z copying torch\include\ATen\ops\nonzero_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5163222Z copying torch\include\ATen\ops\nonzero_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5169985Z copying torch\include\ATen\ops\nonzero_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5176820Z copying torch\include\ATen\ops\nonzero_numpy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5185027Z copying torch\include\ATen\ops\nonzero_numpy_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5191120Z copying torch\include\ATen\ops\nonzero_numpy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5197710Z copying torch\include\ATen\ops\nonzero_numpy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5204444Z copying torch\include\ATen\ops\nonzero_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5211505Z copying torch\include\ATen\ops\nonzero_static.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5219241Z copying torch\include\ATen\ops\nonzero_static_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5225618Z copying torch\include\ATen\ops\nonzero_static_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5232529Z copying torch\include\ATen\ops\nonzero_static_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5239368Z copying torch\include\ATen\ops\nonzero_static_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5246177Z copying torch\include\ATen\ops\norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5253408Z copying torch\include\ATen\ops\normal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5259856Z copying torch\include\ATen\ops\normal_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5286207Z copying torch\include\ATen\ops\normal_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5293630Z copying torch\include\ATen\ops\normal_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5299941Z copying torch\include\ATen\ops\normal_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5306839Z copying torch\include\ATen\ops\normal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5313804Z copying torch\include\ATen\ops\normal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5347063Z copying torch\include\ATen\ops\norm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5349065Z copying torch\include\ATen\ops\norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5356312Z copying torch\include\ATen\ops\norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5364552Z copying torch\include\ATen\ops\norm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5370889Z copying torch\include\ATen\ops\norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5376876Z copying torch\include\ATen\ops\norm_except_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5384134Z copying torch\include\ATen\ops\norm_except_dim_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5390625Z copying torch\include\ATen\ops\norm_except_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5397953Z copying torch\include\ATen\ops\norm_except_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5404084Z copying torch\include\ATen\ops\norm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5410755Z copying torch\include\ATen\ops\norm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5417738Z copying torch\include\ATen\ops\norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5424598Z copying torch\include\ATen\ops\norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5431328Z copying torch\include\ATen\ops\not_equal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5438271Z copying torch\include\ATen\ops\not_equal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5444835Z copying torch\include\ATen\ops\not_equal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5451615Z copying torch\include\ATen\ops\not_equal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5458304Z copying torch\include\ATen\ops\nuclear_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5465308Z copying torch\include\ATen\ops\nuclear_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5471844Z copying torch\include\ATen\ops\nuclear_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5478439Z copying torch\include\ATen\ops\nuclear_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5485348Z copying torch\include\ATen\ops\numpy_T.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5491938Z copying torch\include\ATen\ops\numpy_T_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5498680Z copying torch\include\ATen\ops\numpy_T_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5505447Z copying torch\include\ATen\ops\numpy_T_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5512092Z copying torch\include\ATen\ops\ones.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5518709Z copying torch\include\ATen\ops\ones_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5525267Z copying torch\include\ATen\ops\ones_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5532062Z copying torch\include\ATen\ops\ones_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5538645Z copying torch\include\ATen\ops\ones_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5545376Z copying torch\include\ATen\ops\ones_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5552394Z copying torch\include\ATen\ops\ones_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5558898Z copying torch\include\ATen\ops\ones_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5565217Z copying torch\include\ATen\ops\one_hot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5591559Z copying torch\include\ATen\ops\one_hot_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5592455Z copying torch\include\ATen\ops\one_hot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5593156Z copying torch\include\ATen\ops\one_hot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5593826Z copying torch\include\ATen\ops\or.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5597522Z copying torch\include\ATen\ops\orgqr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5603969Z copying torch\include\ATen\ops\orgqr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5610392Z copying torch\include\ATen\ops\orgqr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5616886Z copying torch\include\ATen\ops\orgqr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5623857Z copying torch\include\ATen\ops\ormqr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5630211Z copying torch\include\ATen\ops\ormqr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5636682Z copying torch\include\ATen\ops\ormqr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5643202Z copying torch\include\ATen\ops\ormqr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5649941Z copying torch\include\ATen\ops\ormqr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5656774Z copying torch\include\ATen\ops\or_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5663436Z copying torch\include\ATen\ops\or_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5670309Z copying torch\include\ATen\ops\or_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5676511Z copying torch\include\ATen\ops\outer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5683379Z copying torch\include\ATen\ops\outer_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5689804Z copying torch\include\ATen\ops\outer_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5696393Z copying torch\include\ATen\ops\outer_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5703068Z copying torch\include\ATen\ops\output_nr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5709646Z copying torch\include\ATen\ops\output_nr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5716357Z copying torch\include\ATen\ops\output_nr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5722750Z copying torch\include\ATen\ops\output_nr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5729251Z copying torch\include\ATen\ops\pad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5735762Z copying torch\include\ATen\ops\pad_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5742233Z copying torch\include\ATen\ops\pad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5748763Z copying torch\include\ATen\ops\pad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5755202Z copying torch\include\ATen\ops\pad_sequence.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5762215Z copying torch\include\ATen\ops\pad_sequence_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5769057Z copying torch\include\ATen\ops\pad_sequence_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5776613Z copying torch\include\ATen\ops\pad_sequence_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5782560Z copying torch\include\ATen\ops\pairwise_distance.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5789528Z copying torch\include\ATen\ops\pairwise_distance_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5796196Z copying torch\include\ATen\ops\pairwise_distance_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5802754Z copying torch\include\ATen\ops\pairwise_distance_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5809644Z copying torch\include\ATen\ops\pdist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5816897Z copying torch\include\ATen\ops\pdist_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5823084Z copying torch\include\ATen\ops\pdist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5829579Z copying torch\include\ATen\ops\pdist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5836427Z copying torch\include\ATen\ops\permute.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5860664Z copying torch\include\ATen\ops\permute_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5861624Z copying torch\include\ATen\ops\permute_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5871970Z copying torch\include\ATen\ops\permute_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5877710Z copying torch\include\ATen\ops\permute_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5883786Z copying torch\include\ATen\ops\permute_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5890428Z copying torch\include\ATen\ops\permute_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5897307Z copying torch\include\ATen\ops\permute_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5903980Z copying torch\include\ATen\ops\permute_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5910742Z copying torch\include\ATen\ops\pinverse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5917181Z copying torch\include\ATen\ops\pinverse_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5924047Z copying torch\include\ATen\ops\pinverse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5930467Z copying torch\include\ATen\ops\pinverse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5937343Z copying torch\include\ATen\ops\pin_memory.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5944056Z copying torch\include\ATen\ops\pin_memory_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5950532Z copying torch\include\ATen\ops\pin_memory_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5957126Z copying torch\include\ATen\ops\pin_memory_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5963676Z copying torch\include\ATen\ops\pixel_shuffle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5970559Z copying torch\include\ATen\ops\pixel_shuffle_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5977409Z copying torch\include\ATen\ops\pixel_shuffle_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5984057Z copying torch\include\ATen\ops\pixel_shuffle_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5990634Z copying torch\include\ATen\ops\pixel_shuffle_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.5997381Z copying torch\include\ATen\ops\pixel_shuffle_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6004108Z copying torch\include\ATen\ops\pixel_unshuffle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6011524Z copying torch\include\ATen\ops\pixel_unshuffle_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6018398Z copying torch\include\ATen\ops\pixel_unshuffle_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6025111Z copying torch\include\ATen\ops\pixel_unshuffle_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6031896Z copying torch\include\ATen\ops\pixel_unshuffle_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6038604Z copying torch\include\ATen\ops\pixel_unshuffle_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6045135Z copying torch\include\ATen\ops\poisson.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6051730Z copying torch\include\ATen\ops\poisson_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6058549Z copying torch\include\ATen\ops\poisson_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6065283Z copying torch\include\ATen\ops\poisson_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6071856Z copying torch\include\ATen\ops\poisson_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6078660Z copying torch\include\ATen\ops\poisson_nll_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6085785Z copying torch\include\ATen\ops\poisson_nll_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6092434Z copying torch\include\ATen\ops\poisson_nll_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6099053Z copying torch\include\ATen\ops\poisson_nll_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6105945Z copying torch\include\ATen\ops\poisson_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6113005Z copying torch\include\ATen\ops\polar.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6119837Z copying torch\include\ATen\ops\polar_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6126192Z copying torch\include\ATen\ops\polar_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6132733Z copying torch\include\ATen\ops\polar_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6139308Z copying torch\include\ATen\ops\polar_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6146024Z copying torch\include\ATen\ops\polar_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6152842Z copying torch\include\ATen\ops\polygamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6159990Z copying torch\include\ATen\ops\polygamma_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6166690Z copying torch\include\ATen\ops\polygamma_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6173220Z copying torch\include\ATen\ops\polygamma_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6179986Z copying torch\include\ATen\ops\polygamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6186915Z copying torch\include\ATen\ops\polygamma_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6193679Z copying torch\include\ATen\ops\polygamma_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6200454Z copying torch\include\ATen\ops\polygamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6207059Z copying torch\include\ATen\ops\polygamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6213845Z copying torch\include\ATen\ops\positive.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6220522Z copying torch\include\ATen\ops\positive_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6227229Z copying torch\include\ATen\ops\positive_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6233927Z copying torch\include\ATen\ops\positive_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6240665Z copying torch\include\ATen\ops\pow.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6247427Z copying torch\include\ATen\ops\pow_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6254137Z copying torch\include\ATen\ops\pow_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6261140Z copying torch\include\ATen\ops\pow_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6267657Z copying torch\include\ATen\ops\pow_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6274254Z copying torch\include\ATen\ops\pow_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6281113Z copying torch\include\ATen\ops\pow_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6288184Z copying torch\include\ATen\ops\pow_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6294733Z copying torch\include\ATen\ops\prelu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6301425Z copying torch\include\ATen\ops\prelu_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6308491Z copying torch\include\ATen\ops\prelu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6315062Z copying torch\include\ATen\ops\prelu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6321721Z copying torch\include\ATen\ops\prod.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6328505Z copying torch\include\ATen\ops\prod_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6335245Z copying torch\include\ATen\ops\prod_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6342249Z copying torch\include\ATen\ops\prod_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6349386Z copying torch\include\ATen\ops\prod_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6357093Z copying torch\include\ATen\ops\prod_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6364764Z copying torch\include\ATen\ops\prod_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6372369Z copying torch\include\ATen\ops\prod_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6379088Z copying torch\include\ATen\ops\prod_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6385955Z copying torch\include\ATen\ops\prod_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6392508Z copying torch\include\ATen\ops\promote_types.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6399556Z copying torch\include\ATen\ops\promote_types_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6406223Z copying torch\include\ATen\ops\promote_types_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6413554Z copying torch\include\ATen\ops\promote_types_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6426977Z copying torch\include\ATen\ops\put.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6429125Z copying torch\include\ATen\ops\put_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6435490Z copying torch\include\ATen\ops\put_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6441990Z copying torch\include\ATen\ops\put_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6448445Z copying torch\include\ATen\ops\put_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6455276Z copying torch\include\ATen\ops\put_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6462039Z copying torch\include\ATen\ops\put_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6468701Z copying torch\include\ATen\ops\qr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6475153Z copying torch\include\ATen\ops\qr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6481624Z copying torch\include\ATen\ops\qr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6488038Z copying torch\include\ATen\ops\qr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6494259Z copying torch\include\ATen\ops\qscheme.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6500580Z copying torch\include\ATen\ops\qscheme_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6506947Z copying torch\include\ATen\ops\qscheme_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6513667Z copying torch\include\ATen\ops\quantile.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6520366Z copying torch\include\ATen\ops\quantile_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6527050Z copying torch\include\ATen\ops\quantile_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6533567Z copying torch\include\ATen\ops\quantile_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6540259Z copying torch\include\ATen\ops\quantized_batch_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6547271Z copying torch\include\ATen\ops\quantized_batch_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6554192Z copying torch\include\ATen\ops\quantized_batch_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6560549Z copying torch\include\ATen\ops\quantized_batch_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6567114Z copying torch\include\ATen\ops\quantized_gru_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6574345Z copying torch\include\ATen\ops\quantized_gru_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6581029Z copying torch\include\ATen\ops\quantized_gru_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6587607Z copying torch\include\ATen\ops\quantized_gru_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6594186Z copying torch\include\ATen\ops\quantized_lstm_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6601141Z copying torch\include\ATen\ops\quantized_lstm_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6607770Z copying torch\include\ATen\ops\quantized_lstm_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6615456Z copying torch\include\ATen\ops\quantized_lstm_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6621664Z copying torch\include\ATen\ops\quantized_max_pool1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6628950Z copying torch\include\ATen\ops\quantized_max_pool1d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6635676Z copying torch\include\ATen\ops\quantized_max_pool1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6642432Z copying torch\include\ATen\ops\quantized_max_pool1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6650101Z copying torch\include\ATen\ops\quantized_max_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6656669Z copying torch\include\ATen\ops\quantized_max_pool2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6663873Z copying torch\include\ATen\ops\quantized_max_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6670794Z copying torch\include\ATen\ops\quantized_max_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6678500Z copying torch\include\ATen\ops\quantized_max_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6684924Z copying torch\include\ATen\ops\quantized_max_pool3d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6691755Z copying torch\include\ATen\ops\quantized_max_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6698604Z copying torch\include\ATen\ops\quantized_max_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6707333Z copying torch\include\ATen\ops\quantized_rnn_relu_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6713702Z copying torch\include\ATen\ops\quantized_rnn_relu_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6720490Z copying torch\include\ATen\ops\quantized_rnn_relu_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6727327Z copying torch\include\ATen\ops\quantized_rnn_relu_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6734244Z copying torch\include\ATen\ops\quantized_rnn_tanh_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6741778Z copying torch\include\ATen\ops\quantized_rnn_tanh_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6748696Z copying torch\include\ATen\ops\quantized_rnn_tanh_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6755474Z copying torch\include\ATen\ops\quantized_rnn_tanh_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6794041Z copying torch\include\ATen\ops\quantize_per_channel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6801200Z copying torch\include\ATen\ops\quantize_per_channel_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6808195Z copying torch\include\ATen\ops\quantize_per_channel_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6815904Z copying torch\include\ATen\ops\quantize_per_channel_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6822429Z copying torch\include\ATen\ops\quantize_per_channel_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6829434Z copying torch\include\ATen\ops\quantize_per_channel_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6836277Z copying torch\include\ATen\ops\quantize_per_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6854573Z copying torch\include\ATen\ops\quantize_per_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6855537Z copying torch\include\ATen\ops\quantize_per_tensor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6858401Z copying torch\include\ATen\ops\quantize_per_tensor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6866762Z copying torch\include\ATen\ops\quantize_per_tensor_dynamic.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6873409Z copying torch\include\ATen\ops\quantize_per_tensor_dynamic_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6880324Z copying torch\include\ATen\ops\quantize_per_tensor_dynamic_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6887190Z copying torch\include\ATen\ops\quantize_per_tensor_dynamic_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6894985Z copying torch\include\ATen\ops\quantize_per_tensor_dynamic_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6902043Z copying torch\include\ATen\ops\quantize_per_tensor_dynamic_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6909439Z copying torch\include\ATen\ops\quantize_per_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6916116Z copying torch\include\ATen\ops\quantize_per_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6922928Z copying torch\include\ATen\ops\q_per_channel_axis.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6929461Z copying torch\include\ATen\ops\q_per_channel_axis_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6936915Z copying torch\include\ATen\ops\q_per_channel_axis_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6942622Z copying torch\include\ATen\ops\q_per_channel_scales.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6949743Z copying torch\include\ATen\ops\q_per_channel_scales_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6956354Z copying torch\include\ATen\ops\q_per_channel_scales_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6962997Z copying torch\include\ATen\ops\q_per_channel_scales_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6969730Z copying torch\include\ATen\ops\q_per_channel_zero_points.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6977149Z copying torch\include\ATen\ops\q_per_channel_zero_points_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6983888Z copying torch\include\ATen\ops\q_per_channel_zero_points_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6990774Z copying torch\include\ATen\ops\q_per_channel_zero_points_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.6997694Z copying torch\include\ATen\ops\q_scale.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7003970Z copying torch\include\ATen\ops\q_scale_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7011205Z copying torch\include\ATen\ops\q_scale_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7017440Z copying torch\include\ATen\ops\q_zero_point.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7024358Z copying torch\include\ATen\ops\q_zero_point_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7030981Z copying torch\include\ATen\ops\q_zero_point_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7037656Z copying torch\include\ATen\ops\rad2deg.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7045721Z copying torch\include\ATen\ops\rad2deg_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7051439Z copying torch\include\ATen\ops\rad2deg_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7058188Z copying torch\include\ATen\ops\rad2deg_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7064999Z copying torch\include\ATen\ops\rand.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7071911Z copying torch\include\ATen\ops\randint.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7079978Z copying torch\include\ATen\ops\randint_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7086062Z copying torch\include\ATen\ops\randint_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7102898Z copying torch\include\ATen\ops\randint_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7108995Z copying torch\include\ATen\ops\randint_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7115867Z copying torch\include\ATen\ops\randint_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7122988Z copying torch\include\ATen\ops\randint_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7129726Z copying torch\include\ATen\ops\randint_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7156428Z copying torch\include\ATen\ops\randn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7163674Z copying torch\include\ATen\ops\randn_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7171420Z copying torch\include\ATen\ops\randn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7177371Z copying torch\include\ATen\ops\randn_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7184592Z copying torch\include\ATen\ops\randn_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7191747Z copying torch\include\ATen\ops\randn_like_compositeimplicitautogradnestedtensor_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7198434Z copying torch\include\ATen\ops\randn_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7205741Z copying torch\include\ATen\ops\randn_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7212225Z copying torch\include\ATen\ops\randn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7219149Z copying torch\include\ATen\ops\randn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7226243Z copying torch\include\ATen\ops\random.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7233873Z copying torch\include\ATen\ops\random_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7240008Z copying torch\include\ATen\ops\random_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7246654Z copying torch\include\ATen\ops\random_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7253251Z copying torch\include\ATen\ops\random_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7260491Z copying torch\include\ATen\ops\random_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7267299Z copying torch\include\ATen\ops\random_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7274259Z copying torch\include\ATen\ops\randperm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7281324Z copying torch\include\ATen\ops\randperm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7287976Z copying torch\include\ATen\ops\randperm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7294761Z copying torch\include\ATen\ops\randperm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7301798Z copying torch\include\ATen\ops\randperm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7308577Z copying torch\include\ATen\ops\randperm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7315752Z copying torch\include\ATen\ops\rand_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7322367Z copying torch\include\ATen\ops\rand_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7329157Z copying torch\include\ATen\ops\rand_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7336038Z copying torch\include\ATen\ops\rand_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7342691Z copying torch\include\ATen\ops\rand_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7349196Z copying torch\include\ATen\ops\rand_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7355731Z copying torch\include\ATen\ops\rand_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7362242Z copying torch\include\ATen\ops\rand_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7368624Z copying torch\include\ATen\ops\range.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7375142Z copying torch\include\ATen\ops\range_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7382001Z copying torch\include\ATen\ops\range_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7388667Z copying torch\include\ATen\ops\range_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7395187Z copying torch\include\ATen\ops\range_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7401754Z copying torch\include\ATen\ops\range_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7408483Z copying torch\include\ATen\ops\range_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7415631Z copying torch\include\ATen\ops\ravel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7422228Z copying torch\include\ATen\ops\ravel_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7428952Z copying torch\include\ATen\ops\ravel_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7435455Z copying torch\include\ATen\ops\ravel_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7441963Z copying torch\include\ATen\ops\real.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7448269Z copying torch\include\ATen\ops\real_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7454648Z copying torch\include\ATen\ops\real_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7461056Z copying torch\include\ATen\ops\real_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7467536Z copying torch\include\ATen\ops\reciprocal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7474886Z copying torch\include\ATen\ops\reciprocal_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7481249Z copying torch\include\ATen\ops\reciprocal_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7487843Z copying torch\include\ATen\ops\reciprocal_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7494552Z copying torch\include\ATen\ops\reciprocal_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7501299Z copying torch\include\ATen\ops\reciprocal_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7508038Z copying torch\include\ATen\ops\reciprocal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7515008Z copying torch\include\ATen\ops\reciprocal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7523112Z copying torch\include\ATen\ops\record_stream.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7530580Z copying torch\include\ATen\ops\record_stream_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7537455Z copying torch\include\ATen\ops\record_stream_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7544078Z copying torch\include\ATen\ops\record_stream_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7550866Z copying torch\include\ATen\ops\refine_names.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7558997Z copying torch\include\ATen\ops\refine_names_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7564837Z copying torch\include\ATen\ops\refine_names_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7570945Z copying torch\include\ATen\ops\refine_names_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7577704Z copying torch\include\ATen\ops\reflection_pad1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7584767Z copying torch\include\ATen\ops\reflection_pad1d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7593466Z copying torch\include\ATen\ops\reflection_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7599449Z copying torch\include\ATen\ops\reflection_pad1d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7606432Z copying torch\include\ATen\ops\reflection_pad1d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7613396Z copying torch\include\ATen\ops\reflection_pad1d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7620408Z copying torch\include\ATen\ops\reflection_pad1d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7628717Z copying torch\include\ATen\ops\reflection_pad1d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7635606Z copying torch\include\ATen\ops\reflection_pad1d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7642870Z copying torch\include\ATen\ops\reflection_pad1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7650531Z copying torch\include\ATen\ops\reflection_pad1d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7656611Z copying torch\include\ATen\ops\reflection_pad1d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7663822Z copying torch\include\ATen\ops\reflection_pad1d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7670755Z copying torch\include\ATen\ops\reflection_pad1d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7677641Z copying torch\include\ATen\ops\reflection_pad1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7685025Z copying torch\include\ATen\ops\reflection_pad1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7691498Z copying torch\include\ATen\ops\reflection_pad2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7698513Z copying torch\include\ATen\ops\reflection_pad2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7705828Z copying torch\include\ATen\ops\reflection_pad2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7712747Z copying torch\include\ATen\ops\reflection_pad2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7719779Z copying torch\include\ATen\ops\reflection_pad2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7727040Z copying torch\include\ATen\ops\reflection_pad2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7734064Z copying torch\include\ATen\ops\reflection_pad2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7740871Z copying torch\include\ATen\ops\reflection_pad2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7747802Z copying torch\include\ATen\ops\reflection_pad2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7755004Z copying torch\include\ATen\ops\reflection_pad2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7761725Z copying torch\include\ATen\ops\reflection_pad3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7768567Z copying torch\include\ATen\ops\reflection_pad3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7776686Z copying torch\include\ATen\ops\reflection_pad3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7783737Z copying torch\include\ATen\ops\reflection_pad3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7790599Z copying torch\include\ATen\ops\reflection_pad3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7798027Z copying torch\include\ATen\ops\reflection_pad3d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7804895Z copying torch\include\ATen\ops\reflection_pad3d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7812046Z copying torch\include\ATen\ops\reflection_pad3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7818754Z copying torch\include\ATen\ops\reflection_pad3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7826127Z copying torch\include\ATen\ops\reflection_pad3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7832889Z copying torch\include\ATen\ops\reflection_pad3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7840122Z copying torch\include\ATen\ops\reflection_pad3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7846780Z copying torch\include\ATen\ops\reflection_pad3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7853624Z copying torch\include\ATen\ops\reflection_pad3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7860490Z copying torch\include\ATen\ops\reflection_pad3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7867221Z copying torch\include\ATen\ops\reflection_pad3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7873769Z copying torch\include\ATen\ops\relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7880000Z copying torch\include\ATen\ops\relu6.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7887343Z copying torch\include\ATen\ops\relu6_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7893708Z copying torch\include\ATen\ops\relu6_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7900191Z copying torch\include\ATen\ops\relu6_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7927886Z copying torch\include\ATen\ops\relu_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7934425Z copying torch\include\ATen\ops\relu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7941114Z copying torch\include\ATen\ops\relu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7947648Z copying torch\include\ATen\ops\relu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7954202Z copying torch\include\ATen\ops\relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7960978Z copying torch\include\ATen\ops\relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7967310Z copying torch\include\ATen\ops\remainder.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7974303Z copying torch\include\ATen\ops\remainder_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7981154Z copying torch\include\ATen\ops\remainder_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7988215Z copying torch\include\ATen\ops\remainder_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.7995377Z copying torch\include\ATen\ops\remainder_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8002113Z copying torch\include\ATen\ops\remainder_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8009130Z copying torch\include\ATen\ops\remainder_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8015893Z copying torch\include\ATen\ops\remainder_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8022825Z copying torch\include\ATen\ops\remainder_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8029723Z copying torch\include\ATen\ops\rename.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8036268Z copying torch\include\ATen\ops\rename_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8043365Z copying torch\include\ATen\ops\rename_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8050126Z copying torch\include\ATen\ops\rename_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8057010Z copying torch\include\ATen\ops\renorm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8064342Z copying torch\include\ATen\ops\renorm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8070847Z copying torch\include\ATen\ops\renorm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8077418Z copying torch\include\ATen\ops\renorm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8083852Z copying torch\include\ATen\ops\renorm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8113671Z copying torch\include\ATen\ops\renorm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8120461Z copying torch\include\ATen\ops\renorm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8127475Z copying torch\include\ATen\ops\renorm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8134234Z copying torch\include\ATen\ops\repeat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8141265Z copying torch\include\ATen\ops\repeat_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8147930Z copying torch\include\ATen\ops\repeat_interleave.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8155218Z copying torch\include\ATen\ops\repeat_interleave_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8162307Z copying torch\include\ATen\ops\repeat_interleave_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8169035Z copying torch\include\ATen\ops\repeat_interleave_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8175958Z copying torch\include\ATen\ops\repeat_interleave_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8183167Z copying torch\include\ATen\ops\repeat_interleave_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8190023Z copying torch\include\ATen\ops\repeat_interleave_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8196828Z copying torch\include\ATen\ops\repeat_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8203727Z copying torch\include\ATen\ops\repeat_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8210660Z copying torch\include\ATen\ops\replication_pad1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8217409Z copying torch\include\ATen\ops\replication_pad1d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8224904Z copying torch\include\ATen\ops\replication_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8231901Z copying torch\include\ATen\ops\replication_pad1d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8238976Z copying torch\include\ATen\ops\replication_pad1d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8245830Z copying torch\include\ATen\ops\replication_pad1d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8252978Z copying torch\include\ATen\ops\replication_pad1d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8259987Z copying torch\include\ATen\ops\replication_pad1d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8267280Z copying torch\include\ATen\ops\replication_pad1d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8275066Z copying torch\include\ATen\ops\replication_pad1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8281897Z copying torch\include\ATen\ops\replication_pad1d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8288840Z copying torch\include\ATen\ops\replication_pad1d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8295563Z copying torch\include\ATen\ops\replication_pad1d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8303139Z copying torch\include\ATen\ops\replication_pad1d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8310074Z copying torch\include\ATen\ops\replication_pad1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8317290Z copying torch\include\ATen\ops\replication_pad1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8324010Z copying torch\include\ATen\ops\replication_pad2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8330886Z copying torch\include\ATen\ops\replication_pad2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8337928Z copying torch\include\ATen\ops\replication_pad2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8345014Z copying torch\include\ATen\ops\replication_pad2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8351805Z copying torch\include\ATen\ops\replication_pad2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8358741Z copying torch\include\ATen\ops\replication_pad2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8365908Z copying torch\include\ATen\ops\replication_pad2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8372605Z copying torch\include\ATen\ops\replication_pad2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8379359Z copying torch\include\ATen\ops\replication_pad2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8386190Z copying torch\include\ATen\ops\replication_pad2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8393475Z copying torch\include\ATen\ops\replication_pad2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8400234Z copying torch\include\ATen\ops\replication_pad2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8407013Z copying torch\include\ATen\ops\replication_pad2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8413703Z copying torch\include\ATen\ops\replication_pad3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8420782Z copying torch\include\ATen\ops\replication_pad3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8428586Z copying torch\include\ATen\ops\replication_pad3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8435411Z copying torch\include\ATen\ops\replication_pad3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8442404Z copying torch\include\ATen\ops\replication_pad3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8449459Z copying torch\include\ATen\ops\replication_pad3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8456563Z copying torch\include\ATen\ops\replication_pad3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8463493Z copying torch\include\ATen\ops\replication_pad3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8470455Z copying torch\include\ATen\ops\replication_pad3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8477426Z copying torch\include\ATen\ops\replication_pad3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8484480Z copying torch\include\ATen\ops\replication_pad3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8492024Z copying torch\include\ATen\ops\replication_pad3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8499676Z copying torch\include\ATen\ops\replication_pad3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8507109Z copying torch\include\ATen\ops\requires_grad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8514428Z copying torch\include\ATen\ops\requires_grad_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8521779Z copying torch\include\ATen\ops\requires_grad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8528632Z copying torch\include\ATen\ops\requires_grad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8535541Z copying torch\include\ATen\ops\reshape.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8542152Z copying torch\include\ATen\ops\reshape_as.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8549128Z copying torch\include\ATen\ops\reshape_as_compositeimplicitautogradnestedtensor_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8555969Z copying torch\include\ATen\ops\reshape_as_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8562761Z copying torch\include\ATen\ops\reshape_as_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8569783Z copying torch\include\ATen\ops\reshape_as_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8577683Z copying torch\include\ATen\ops\reshape_compositeimplicitautogradnestedtensor_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8584729Z copying torch\include\ATen\ops\reshape_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8591642Z copying torch\include\ATen\ops\reshape_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8598582Z copying torch\include\ATen\ops\reshape_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8605370Z copying torch\include\ATen\ops\resize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8612535Z copying torch\include\ATen\ops\resize_as.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8619799Z copying torch\include\ATen\ops\resize_as_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8626671Z copying torch\include\ATen\ops\resize_as_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8633386Z copying torch\include\ATen\ops\resize_as_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8640235Z copying torch\include\ATen\ops\resize_as_sparse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8647673Z copying torch\include\ATen\ops\resize_as_sparse_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8655101Z copying torch\include\ATen\ops\resize_as_sparse_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8661518Z copying torch\include\ATen\ops\resize_as_sparse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8668475Z copying torch\include\ATen\ops\resize_as_sparse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8675783Z copying torch\include\ATen\ops\resize_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8683542Z copying torch\include\ATen\ops\resize_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8689478Z copying torch\include\ATen\ops\resize_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8696450Z copying torch\include\ATen\ops\resize_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8703337Z copying torch\include\ATen\ops\resize_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8710110Z copying torch\include\ATen\ops\resize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8717879Z copying torch\include\ATen\ops\resolve_conj.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8724147Z copying torch\include\ATen\ops\resolve_conj_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8731097Z copying torch\include\ATen\ops\resolve_conj_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8737739Z copying torch\include\ATen\ops\resolve_conj_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8744623Z copying torch\include\ATen\ops\resolve_neg.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8752669Z copying torch\include\ATen\ops\resolve_neg_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8759100Z copying torch\include\ATen\ops\resolve_neg_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8765935Z copying torch\include\ATen\ops\resolve_neg_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8772719Z copying torch\include\ATen\ops\result_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8780507Z copying torch\include\ATen\ops\result_type_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8787086Z copying torch\include\ATen\ops\result_type_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8793454Z copying torch\include\ATen\ops\result_type_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8800461Z copying torch\include\ATen\ops\retains_grad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8807297Z copying torch\include\ATen\ops\retains_grad_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8814018Z copying torch\include\ATen\ops\retains_grad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8820720Z copying torch\include\ATen\ops\retains_grad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8827883Z copying torch\include\ATen\ops\retain_grad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8836345Z copying torch\include\ATen\ops\retain_grad_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8842071Z copying torch\include\ATen\ops\retain_grad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8848505Z copying torch\include\ATen\ops\retain_grad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8855116Z copying torch\include\ATen\ops\rms_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8861842Z copying torch\include\ATen\ops\rms_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8868934Z copying torch\include\ATen\ops\rms_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8875637Z copying torch\include\ATen\ops\rms_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8882816Z copying torch\include\ATen\ops\rnn_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8889200Z copying torch\include\ATen\ops\rnn_relu_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8896126Z copying torch\include\ATen\ops\rnn_relu_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8902995Z copying torch\include\ATen\ops\rnn_relu_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8909476Z copying torch\include\ATen\ops\rnn_relu_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8916342Z copying torch\include\ATen\ops\rnn_relu_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8923423Z copying torch\include\ATen\ops\rnn_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8930068Z copying torch\include\ATen\ops\rnn_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8936644Z copying torch\include\ATen\ops\rnn_tanh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8943127Z copying torch\include\ATen\ops\rnn_tanh_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8949942Z copying torch\include\ATen\ops\rnn_tanh_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8956748Z copying torch\include\ATen\ops\rnn_tanh_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8963465Z copying torch\include\ATen\ops\rnn_tanh_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8992451Z copying torch\include\ATen\ops\rnn_tanh_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.8999212Z copying torch\include\ATen\ops\rnn_tanh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9005945Z copying torch\include\ATen\ops\rnn_tanh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9012426Z copying torch\include\ATen\ops\roll.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9019201Z copying torch\include\ATen\ops\roll_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9025998Z copying torch\include\ATen\ops\roll_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9032463Z copying torch\include\ATen\ops\roll_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9039020Z copying torch\include\ATen\ops\roll_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9045589Z copying torch\include\ATen\ops\roll_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9052119Z copying torch\include\ATen\ops\rot90.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9058644Z copying torch\include\ATen\ops\rot90_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9065707Z copying torch\include\ATen\ops\rot90_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9072162Z copying torch\include\ATen\ops\rot90_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9078693Z copying torch\include\ATen\ops\round.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9085670Z copying torch\include\ATen\ops\round_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9092105Z copying torch\include\ATen\ops\round_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9098709Z copying torch\include\ATen\ops\round_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9106123Z copying torch\include\ATen\ops\round_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9112898Z copying torch\include\ATen\ops\round_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9119898Z copying torch\include\ATen\ops\round_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9126727Z copying torch\include\ATen\ops\round_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9133563Z copying torch\include\ATen\ops\row_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9140339Z copying torch\include\ATen\ops\row_indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9147070Z copying torch\include\ATen\ops\row_indices_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9157092Z copying torch\include\ATen\ops\row_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9163304Z copying torch\include\ATen\ops\row_indices_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9170420Z copying torch\include\ATen\ops\row_indices_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9177282Z copying torch\include\ATen\ops\row_indices_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9183855Z copying torch\include\ATen\ops\row_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9190451Z copying torch\include\ATen\ops\row_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9197821Z copying torch\include\ATen\ops\row_stack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9205754Z copying torch\include\ATen\ops\row_stack_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9213954Z copying torch\include\ATen\ops\row_stack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9225705Z copying torch\include\ATen\ops\row_stack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9232939Z copying torch\include\ATen\ops\rrelu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9239638Z copying torch\include\ATen\ops\rrelu_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9246312Z copying torch\include\ATen\ops\rrelu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9253324Z copying torch\include\ATen\ops\rrelu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9260183Z copying torch\include\ATen\ops\rrelu_with_noise.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9267282Z copying torch\include\ATen\ops\rrelu_with_noise_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9274426Z copying torch\include\ATen\ops\rrelu_with_noise_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9281597Z copying torch\include\ATen\ops\rrelu_with_noise_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9288438Z copying torch\include\ATen\ops\rrelu_with_noise_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9295319Z copying torch\include\ATen\ops\rrelu_with_noise_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9302229Z copying torch\include\ATen\ops\rrelu_with_noise_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9309232Z copying torch\include\ATen\ops\rrelu_with_noise_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9315950Z copying torch\include\ATen\ops\rrelu_with_noise_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9323069Z copying torch\include\ATen\ops\rrelu_with_noise_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9329642Z copying torch\include\ATen\ops\rrelu_with_noise_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9336278Z copying torch\include\ATen\ops\rshift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9342998Z copying torch\include\ATen\ops\rshift_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9350072Z copying torch\include\ATen\ops\rshift_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9356291Z copying torch\include\ATen\ops\rshift_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9363030Z copying torch\include\ATen\ops\rshift_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9369954Z copying torch\include\ATen\ops\rshift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9376640Z copying torch\include\ATen\ops\rshift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9386942Z copying torch\include\ATen\ops\rsqrt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9390867Z copying torch\include\ATen\ops\rsqrt_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9430352Z copying torch\include\ATen\ops\rsqrt_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9431108Z copying torch\include\ATen\ops\rsqrt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9431828Z copying torch\include\ATen\ops\rsqrt_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9432535Z copying torch\include\ATen\ops\rsqrt_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9433254Z copying torch\include\ATen\ops\rsqrt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9436168Z copying torch\include\ATen\ops\rsqrt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9442913Z copying torch\include\ATen\ops\rsub.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9449665Z copying torch\include\ATen\ops\rsub_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9456568Z copying torch\include\ATen\ops\rsub_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9463471Z copying torch\include\ATen\ops\rsub_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9470466Z copying torch\include\ATen\ops\rsub_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9477210Z copying torch\include\ATen\ops\rsub_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9483821Z copying torch\include\ATen\ops\scalar_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9491262Z copying torch\include\ATen\ops\scalar_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9497519Z copying torch\include\ATen\ops\scalar_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9504223Z copying torch\include\ATen\ops\scalar_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9511017Z copying torch\include\ATen\ops\scaled_dot_product_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9518304Z copying torch\include\ATen\ops\scaled_dot_product_attention_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9524955Z copying torch\include\ATen\ops\scaled_dot_product_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9531603Z copying torch\include\ATen\ops\scaled_dot_product_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9538568Z copying torch\include\ATen\ops\scatter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9545048Z copying torch\include\ATen\ops\scatter_add.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9552135Z copying torch\include\ATen\ops\scatter_add_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9559150Z copying torch\include\ATen\ops\scatter_add_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9565733Z copying torch\include\ATen\ops\scatter_add_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9572502Z copying torch\include\ATen\ops\scatter_add_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9579156Z copying torch\include\ATen\ops\scatter_add_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9586232Z copying torch\include\ATen\ops\scatter_add_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9592944Z copying torch\include\ATen\ops\scatter_add_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9599883Z copying torch\include\ATen\ops\scatter_add_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9606997Z copying torch\include\ATen\ops\scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9613755Z copying torch\include\ATen\ops\scatter_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9620417Z copying torch\include\ATen\ops\scatter_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9627561Z copying torch\include\ATen\ops\scatter_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9634134Z copying torch\include\ATen\ops\scatter_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9640922Z copying torch\include\ATen\ops\scatter_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9647746Z copying torch\include\ATen\ops\scatter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9654832Z copying torch\include\ATen\ops\scatter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9661809Z copying torch\include\ATen\ops\scatter_reduce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9669115Z copying torch\include\ATen\ops\scatter_reduce_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9675978Z copying torch\include\ATen\ops\scatter_reduce_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9683310Z copying torch\include\ATen\ops\scatter_reduce_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9690073Z copying torch\include\ATen\ops\scatter_reduce_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9697283Z copying torch\include\ATen\ops\scatter_reduce_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9704485Z copying torch\include\ATen\ops\scatter_reduce_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9711688Z copying torch\include\ATen\ops\scatter_reduce_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9718160Z copying torch\include\ATen\ops\searchsorted.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9724977Z copying torch\include\ATen\ops\searchsorted_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9731800Z copying torch\include\ATen\ops\searchsorted_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9738452Z copying torch\include\ATen\ops\searchsorted_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9745685Z copying torch\include\ATen\ops\searchsorted_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9757979Z copying torch\include\ATen\ops\segment_reduce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9764866Z copying torch\include\ATen\ops\segment_reduce_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9771567Z copying torch\include\ATen\ops\segment_reduce_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9779612Z copying torch\include\ATen\ops\segment_reduce_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9791063Z copying torch\include\ATen\ops\segment_reduce_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9797018Z copying torch\include\ATen\ops\segment_reduce_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9803755Z copying torch\include\ATen\ops\select.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9810475Z copying torch\include\ATen\ops\select_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9821633Z copying torch\include\ATen\ops\select_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9828471Z copying torch\include\ATen\ops\select_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9835121Z copying torch\include\ATen\ops\select_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9842617Z copying torch\include\ATen\ops\select_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9849020Z copying torch\include\ATen\ops\select_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9856168Z copying torch\include\ATen\ops\select_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9862941Z copying torch\include\ATen\ops\select_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9883557Z copying torch\include\ATen\ops\select_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9884635Z copying torch\include\ATen\ops\select_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9886360Z copying torch\include\ATen\ops\select_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9894948Z copying torch\include\ATen\ops\select_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9901442Z copying torch\include\ATen\ops\select_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9912540Z copying torch\include\ATen\ops\select_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9919462Z copying torch\include\ATen\ops\select_scatter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9926577Z copying torch\include\ATen\ops\select_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9934580Z copying torch\include\ATen\ops\select_scatter_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9944947Z copying torch\include\ATen\ops\select_scatter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9951688Z copying torch\include\ATen\ops\select_scatter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9958487Z copying torch\include\ATen\ops\selu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9965418Z copying torch\include\ATen\ops\selu_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9976705Z copying torch\include\ATen\ops\selu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9983265Z copying torch\include\ATen\ops\selu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9989572Z copying torch\include\ATen\ops\set.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:06.9996101Z copying torch\include\ATen\ops\set_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0007232Z copying torch\include\ATen\ops\set_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0013794Z copying torch\include\ATen\ops\set_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0021772Z copying torch\include\ATen\ops\set_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0027187Z copying torch\include\ATen\ops\set_data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0033541Z copying torch\include\ATen\ops\set_data_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0039991Z copying torch\include\ATen\ops\set_data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0046363Z copying torch\include\ATen\ops\set_data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0052978Z copying torch\include\ATen\ops\set_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0064273Z copying torch\include\ATen\ops\set_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0070874Z copying torch\include\ATen\ops\set_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0077037Z copying torch\include\ATen\ops\sgn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0135788Z copying torch\include\ATen\ops\sgn_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0143106Z copying torch\include\ATen\ops\sgn_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0166975Z copying torch\include\ATen\ops\sgn_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0167827Z copying torch\include\ATen\ops\sgn_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0168525Z copying torch\include\ATen\ops\sgn_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0172571Z copying torch\include\ATen\ops\sgn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0178571Z copying torch\include\ATen\ops\sgn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0185319Z copying torch\include\ATen\ops\sigmoid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0191917Z copying torch\include\ATen\ops\sigmoid_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0198966Z copying torch\include\ATen\ops\sigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0205483Z copying torch\include\ATen\ops\sigmoid_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0212083Z copying torch\include\ATen\ops\sigmoid_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0218803Z copying torch\include\ATen\ops\sigmoid_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0225717Z copying torch\include\ATen\ops\sigmoid_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0233059Z copying torch\include\ATen\ops\sigmoid_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0239685Z copying torch\include\ATen\ops\sigmoid_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0247137Z copying torch\include\ATen\ops\sigmoid_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0253564Z copying torch\include\ATen\ops\sigmoid_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0260203Z copying torch\include\ATen\ops\sigmoid_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0267362Z copying torch\include\ATen\ops\sigmoid_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0274159Z copying torch\include\ATen\ops\sigmoid_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0280808Z copying torch\include\ATen\ops\sigmoid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0287331Z copying torch\include\ATen\ops\sigmoid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0294006Z copying torch\include\ATen\ops\sign.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0300387Z copying torch\include\ATen\ops\signbit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0307213Z copying torch\include\ATen\ops\signbit_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0313700Z copying torch\include\ATen\ops\signbit_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0320354Z copying torch\include\ATen\ops\signbit_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0327318Z copying torch\include\ATen\ops\signbit_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0333833Z copying torch\include\ATen\ops\signbit_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0340477Z copying torch\include\ATen\ops\signbit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0347178Z copying torch\include\ATen\ops\signbit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0354281Z copying torch\include\ATen\ops\sign_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0360723Z copying torch\include\ATen\ops\sign_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0367329Z copying torch\include\ATen\ops\sign_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0373819Z copying torch\include\ATen\ops\sign_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0380423Z copying torch\include\ATen\ops\sign_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0387335Z copying torch\include\ATen\ops\sign_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0393800Z copying torch\include\ATen\ops\sign_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0400015Z copying torch\include\ATen\ops\silu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0406749Z copying torch\include\ATen\ops\silu_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0448735Z copying torch\include\ATen\ops\silu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0449925Z copying torch\include\ATen\ops\silu_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0450845Z copying torch\include\ATen\ops\silu_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0451669Z copying torch\include\ATen\ops\silu_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0452454Z copying torch\include\ATen\ops\silu_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0454637Z copying torch\include\ATen\ops\silu_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0458775Z copying torch\include\ATen\ops\silu_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0466323Z copying torch\include\ATen\ops\silu_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0478998Z copying torch\include\ATen\ops\silu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0485842Z copying torch\include\ATen\ops\silu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0492858Z copying torch\include\ATen\ops\silu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0499514Z copying torch\include\ATen\ops\silu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0506076Z copying torch\include\ATen\ops\silu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0512658Z copying torch\include\ATen\ops\silu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0519198Z copying torch\include\ATen\ops\silu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0525659Z copying torch\include\ATen\ops\sin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0531894Z copying torch\include\ATen\ops\sinc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0538556Z copying torch\include\ATen\ops\sinc_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0545427Z copying torch\include\ATen\ops\sinc_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0551920Z copying torch\include\ATen\ops\sinc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0564272Z copying torch\include\ATen\ops\sinc_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0570635Z copying torch\include\ATen\ops\sinc_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0577206Z copying torch\include\ATen\ops\sinc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0584024Z copying torch\include\ATen\ops\sinc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0590500Z copying torch\include\ATen\ops\sinh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0597243Z copying torch\include\ATen\ops\sinh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0603796Z copying torch\include\ATen\ops\sinh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0610321Z copying torch\include\ATen\ops\sinh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0616912Z copying torch\include\ATen\ops\sinh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0623442Z copying torch\include\ATen\ops\sinh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0629952Z copying torch\include\ATen\ops\sinh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0636446Z copying torch\include\ATen\ops\sinh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0643144Z copying torch\include\ATen\ops\sin_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0649703Z copying torch\include\ATen\ops\sin_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0656209Z copying torch\include\ATen\ops\sin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0662776Z copying torch\include\ATen\ops\sin_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0668947Z copying torch\include\ATen\ops\sin_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0675432Z copying torch\include\ATen\ops\sin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0682212Z copying torch\include\ATen\ops\sin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0688630Z copying torch\include\ATen\ops\size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0695297Z copying torch\include\ATen\ops\size_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0702208Z copying torch\include\ATen\ops\size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0709586Z copying torch\include\ATen\ops\size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0715719Z copying torch\include\ATen\ops\slice.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0721848Z copying torch\include\ATen\ops\slice_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0728898Z copying torch\include\ATen\ops\slice_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0735503Z copying torch\include\ATen\ops\slice_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0742303Z copying torch\include\ATen\ops\slice_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0755880Z copying torch\include\ATen\ops\slice_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0762907Z copying torch\include\ATen\ops\slice_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0770137Z copying torch\include\ATen\ops\slice_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0777030Z copying torch\include\ATen\ops\slice_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0784299Z copying torch\include\ATen\ops\slice_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0790864Z copying torch\include\ATen\ops\slice_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0797970Z copying torch\include\ATen\ops\slice_inverse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0805238Z copying torch\include\ATen\ops\slice_inverse_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0812945Z copying torch\include\ATen\ops\slice_inverse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0819375Z copying torch\include\ATen\ops\slice_inverse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0826121Z copying torch\include\ATen\ops\slice_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0833139Z copying torch\include\ATen\ops\slice_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0841318Z copying torch\include\ATen\ops\slice_scatter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0847726Z copying torch\include\ATen\ops\slice_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0854813Z copying torch\include\ATen\ops\slice_scatter_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0886425Z copying torch\include\ATen\ops\slice_scatter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0892394Z copying torch\include\ATen\ops\slice_scatter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0899093Z copying torch\include\ATen\ops\slogdet.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0905992Z copying torch\include\ATen\ops\slogdet_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0912733Z copying torch\include\ATen\ops\slogdet_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0919409Z copying torch\include\ATen\ops\slogdet_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0926476Z copying torch\include\ATen\ops\slow_conv3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0933568Z copying torch\include\ATen\ops\slow_conv3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0940331Z copying torch\include\ATen\ops\slow_conv3d_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0953123Z copying torch\include\ATen\ops\slow_conv3d_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0959773Z copying torch\include\ATen\ops\slow_conv3d_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0966444Z copying torch\include\ATen\ops\slow_conv3d_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0973311Z copying torch\include\ATen\ops\slow_conv3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0980261Z copying torch\include\ATen\ops\slow_conv3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0987048Z copying torch\include\ATen\ops\slow_conv_dilated2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.0994369Z copying torch\include\ATen\ops\slow_conv_dilated2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1001115Z copying torch\include\ATen\ops\slow_conv_dilated2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1007965Z copying torch\include\ATen\ops\slow_conv_dilated2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1014952Z copying torch\include\ATen\ops\slow_conv_dilated2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1021944Z copying torch\include\ATen\ops\slow_conv_dilated2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1029226Z copying torch\include\ATen\ops\slow_conv_dilated3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1041704Z copying torch\include\ATen\ops\slow_conv_dilated3d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1048205Z copying torch\include\ATen\ops\slow_conv_dilated3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1055144Z copying torch\include\ATen\ops\slow_conv_dilated3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1061956Z copying torch\include\ATen\ops\slow_conv_dilated3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1068791Z copying torch\include\ATen\ops\slow_conv_dilated3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1076098Z copying torch\include\ATen\ops\slow_conv_transpose2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1083259Z copying torch\include\ATen\ops\slow_conv_transpose2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1090050Z copying torch\include\ATen\ops\slow_conv_transpose2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1097078Z copying torch\include\ATen\ops\slow_conv_transpose2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1104628Z copying torch\include\ATen\ops\slow_conv_transpose2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1111357Z copying torch\include\ATen\ops\slow_conv_transpose2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1118378Z copying torch\include\ATen\ops\slow_conv_transpose2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1125210Z copying torch\include\ATen\ops\slow_conv_transpose2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1133254Z copying torch\include\ATen\ops\slow_conv_transpose3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1139541Z copying torch\include\ATen\ops\slow_conv_transpose3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1146211Z copying torch\include\ATen\ops\slow_conv_transpose3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1153389Z copying torch\include\ATen\ops\slow_conv_transpose3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1160156Z copying torch\include\ATen\ops\slow_conv_transpose3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1166919Z copying torch\include\ATen\ops\smm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1173648Z copying torch\include\ATen\ops\smm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1180873Z copying torch\include\ATen\ops\smm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1187257Z copying torch\include\ATen\ops\smm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1193775Z copying torch\include\ATen\ops\smooth_l1_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1200652Z copying torch\include\ATen\ops\smooth_l1_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1207986Z copying torch\include\ATen\ops\smooth_l1_loss_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1215333Z copying torch\include\ATen\ops\smooth_l1_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1221907Z copying torch\include\ATen\ops\smooth_l1_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1228753Z copying torch\include\ATen\ops\smooth_l1_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1235594Z copying torch\include\ATen\ops\smooth_l1_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1242908Z copying torch\include\ATen\ops\smooth_l1_loss_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1249748Z copying torch\include\ATen\ops\smooth_l1_loss_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1256693Z copying torch\include\ATen\ops\smooth_l1_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1263795Z copying torch\include\ATen\ops\smooth_l1_loss_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1270587Z copying torch\include\ATen\ops\smooth_l1_loss_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1277363Z copying torch\include\ATen\ops\smooth_l1_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1284259Z copying torch\include\ATen\ops\smooth_l1_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1291420Z copying torch\include\ATen\ops\softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1298353Z copying torch\include\ATen\ops\softmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1305593Z copying torch\include\ATen\ops\softmax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1312372Z copying torch\include\ATen\ops\softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1319280Z copying torch\include\ATen\ops\softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1325930Z copying torch\include\ATen\ops\softplus.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1332523Z copying torch\include\ATen\ops\softplus_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1339697Z copying torch\include\ATen\ops\softplus_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1352761Z copying torch\include\ATen\ops\softplus_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1385143Z copying torch\include\ATen\ops\softplus_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1391556Z copying torch\include\ATen\ops\softplus_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1398303Z copying torch\include\ATen\ops\softplus_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1404983Z copying torch\include\ATen\ops\softplus_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1411917Z copying torch\include\ATen\ops\softplus_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1419528Z copying torch\include\ATen\ops\softplus_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1426158Z copying torch\include\ATen\ops\softplus_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1432917Z copying torch\include\ATen\ops\softplus_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1439606Z copying torch\include\ATen\ops\softplus_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1446255Z copying torch\include\ATen\ops\softplus_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1452914Z copying torch\include\ATen\ops\softplus_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1459563Z copying torch\include\ATen\ops\softplus_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1466459Z copying torch\include\ATen\ops\softshrink.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1474054Z copying torch\include\ATen\ops\softshrink_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1481186Z copying torch\include\ATen\ops\softshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1488020Z copying torch\include\ATen\ops\softshrink_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1495111Z copying torch\include\ATen\ops\softshrink_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1502276Z copying torch\include\ATen\ops\softshrink_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1509455Z copying torch\include\ATen\ops\softshrink_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1517673Z copying torch\include\ATen\ops\softshrink_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1525345Z copying torch\include\ATen\ops\softshrink_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1532389Z copying torch\include\ATen\ops\softshrink_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1539092Z copying torch\include\ATen\ops\softshrink_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1546113Z copying torch\include\ATen\ops\softshrink_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1552912Z copying torch\include\ATen\ops\softshrink_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1560097Z copying torch\include\ATen\ops\softshrink_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1566859Z copying torch\include\ATen\ops\softshrink_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1600273Z copying torch\include\ATen\ops\softshrink_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1601199Z copying torch\include\ATen\ops\soft_margin_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1602111Z copying torch\include\ATen\ops\soft_margin_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1603063Z copying torch\include\ATen\ops\soft_margin_loss_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1607855Z copying torch\include\ATen\ops\soft_margin_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1615922Z copying torch\include\ATen\ops\soft_margin_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1625523Z copying torch\include\ATen\ops\soft_margin_loss_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1633621Z copying torch\include\ATen\ops\soft_margin_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1648243Z copying torch\include\ATen\ops\soft_margin_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1656012Z copying torch\include\ATen\ops\sort.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1663628Z copying torch\include\ATen\ops\sort_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1670770Z copying torch\include\ATen\ops\sort_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1682476Z copying torch\include\ATen\ops\sort_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1689165Z copying torch\include\ATen\ops\sort_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1695786Z copying torch\include\ATen\ops\sort_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1702746Z copying torch\include\ATen\ops\sort_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1713807Z copying torch\include\ATen\ops\sort_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1720247Z copying torch\include\ATen\ops\sort_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1726820Z copying torch\include\ATen\ops\sort_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1733412Z copying torch\include\ATen\ops\sparse_bsc_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1743840Z copying torch\include\ATen\ops\sparse_bsc_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1750283Z copying torch\include\ATen\ops\sparse_bsc_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1756998Z copying torch\include\ATen\ops\sparse_bsc_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1763806Z copying torch\include\ATen\ops\sparse_bsr_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1770913Z copying torch\include\ATen\ops\sparse_bsr_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1777958Z copying torch\include\ATen\ops\sparse_bsr_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1784678Z copying torch\include\ATen\ops\sparse_bsr_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1791334Z copying torch\include\ATen\ops\sparse_compressed_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1798454Z copying torch\include\ATen\ops\sparse_compressed_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1805141Z copying torch\include\ATen\ops\sparse_compressed_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1811943Z copying torch\include\ATen\ops\sparse_compressed_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1818533Z copying torch\include\ATen\ops\sparse_coo_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1831126Z copying torch\include\ATen\ops\sparse_coo_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1838097Z copying torch\include\ATen\ops\sparse_coo_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1844682Z copying torch\include\ATen\ops\sparse_coo_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1851313Z copying torch\include\ATen\ops\sparse_coo_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1862753Z copying torch\include\ATen\ops\sparse_csc_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1869638Z copying torch\include\ATen\ops\sparse_csc_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1876777Z copying torch\include\ATen\ops\sparse_csc_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1884726Z copying torch\include\ATen\ops\sparse_csc_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1919166Z copying torch\include\ATen\ops\sparse_csr_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1920106Z copying torch\include\ATen\ops\sparse_csr_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1921021Z copying torch\include\ATen\ops\sparse_csr_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1921813Z copying torch\include\ATen\ops\sparse_csr_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1931614Z copying torch\include\ATen\ops\sparse_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1938464Z copying torch\include\ATen\ops\sparse_dim_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1945291Z copying torch\include\ATen\ops\sparse_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1952907Z copying torch\include\ATen\ops\sparse_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1963918Z copying torch\include\ATen\ops\sparse_mask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1971047Z copying torch\include\ATen\ops\sparse_mask_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1977683Z copying torch\include\ATen\ops\sparse_mask_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1984588Z copying torch\include\ATen\ops\sparse_mask_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1991248Z copying torch\include\ATen\ops\sparse_resize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.1998073Z copying torch\include\ATen\ops\sparse_resize_and_clear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2005192Z copying torch\include\ATen\ops\sparse_resize_and_clear_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2011860Z copying torch\include\ATen\ops\sparse_resize_and_clear_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2023993Z copying torch\include\ATen\ops\sparse_resize_and_clear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2030782Z copying torch\include\ATen\ops\sparse_resize_and_clear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2037793Z copying torch\include\ATen\ops\sparse_resize_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2044976Z copying torch\include\ATen\ops\sparse_resize_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2051604Z copying torch\include\ATen\ops\sparse_resize_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2058483Z copying torch\include\ATen\ops\sparse_resize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2065241Z copying torch\include\ATen\ops\sparse_sampled_addmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2072116Z copying torch\include\ATen\ops\sparse_sampled_addmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2084552Z copying torch\include\ATen\ops\sparse_sampled_addmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2091130Z copying torch\include\ATen\ops\special_airy_ai.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2098222Z copying torch\include\ATen\ops\special_airy_ai_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2104990Z copying torch\include\ATen\ops\special_airy_ai_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2115391Z copying torch\include\ATen\ops\special_airy_ai_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2121825Z copying torch\include\ATen\ops\special_airy_ai_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2128494Z copying torch\include\ATen\ops\special_airy_ai_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2135446Z copying torch\include\ATen\ops\special_airy_ai_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2142181Z copying torch\include\ATen\ops\special_airy_ai_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2148788Z copying torch\include\ATen\ops\special_bessel_j0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2157377Z copying torch\include\ATen\ops\special_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2163364Z copying torch\include\ATen\ops\special_bessel_j0_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2170070Z copying torch\include\ATen\ops\special_bessel_j0_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2198960Z copying torch\include\ATen\ops\special_bessel_j0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2205834Z copying torch\include\ATen\ops\special_bessel_j0_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2212641Z copying torch\include\ATen\ops\special_bessel_j0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2224293Z copying torch\include\ATen\ops\special_bessel_j0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2231155Z copying torch\include\ATen\ops\special_bessel_j1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2238343Z copying torch\include\ATen\ops\special_bessel_j1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2245238Z copying torch\include\ATen\ops\special_bessel_j1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2252054Z copying torch\include\ATen\ops\special_bessel_j1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2259158Z copying torch\include\ATen\ops\special_bessel_j1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2265904Z copying torch\include\ATen\ops\special_bessel_j1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2272805Z copying torch\include\ATen\ops\special_bessel_j1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2280095Z copying torch\include\ATen\ops\special_bessel_j1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2286730Z copying torch\include\ATen\ops\special_bessel_y0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2294127Z copying torch\include\ATen\ops\special_bessel_y0_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2301671Z copying torch\include\ATen\ops\special_bessel_y0_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2313267Z copying torch\include\ATen\ops\special_bessel_y0_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2319537Z copying torch\include\ATen\ops\special_bessel_y0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2326516Z copying torch\include\ATen\ops\special_bessel_y0_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2333378Z copying torch\include\ATen\ops\special_bessel_y0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2340916Z copying torch\include\ATen\ops\special_bessel_y0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2347560Z copying torch\include\ATen\ops\special_bessel_y1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2354589Z copying torch\include\ATen\ops\special_bessel_y1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2361368Z copying torch\include\ATen\ops\special_bessel_y1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2372802Z copying torch\include\ATen\ops\special_bessel_y1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2379734Z copying torch\include\ATen\ops\special_bessel_y1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2399234Z copying torch\include\ATen\ops\special_bessel_y1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2400047Z copying torch\include\ATen\ops\special_bessel_y1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2401869Z copying torch\include\ATen\ops\special_bessel_y1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2408827Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2417448Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2423597Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2430605Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2437704Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2444691Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2452275Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2463960Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2471013Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2477760Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2485303Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2496430Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2503227Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2510494Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2517363Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2529425Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2537339Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2543742Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2550826Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2558176Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2565063Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2571781Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2578720Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2591255Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2598193Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2605057Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2611895Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2623581Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2630898Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2638176Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2645103Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2652010Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2658824Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2666092Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2672920Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2684279Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2691025Z copying torch\include\ATen\ops\special_digamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2699100Z copying torch\include\ATen\ops\special_digamma_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2706222Z copying torch\include\ATen\ops\special_digamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2731336Z copying torch\include\ATen\ops\special_digamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2732112Z copying torch\include\ATen\ops\special_entr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2733447Z copying torch\include\ATen\ops\special_entr_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2757528Z copying torch\include\ATen\ops\special_entr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2758381Z copying torch\include\ATen\ops\special_entr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2759145Z copying torch\include\ATen\ops\special_entr_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2764274Z copying torch\include\ATen\ops\special_entr_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2770757Z copying torch\include\ATen\ops\special_entr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2777269Z copying torch\include\ATen\ops\special_entr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2784419Z copying torch\include\ATen\ops\special_erf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2791282Z copying torch\include\ATen\ops\special_erfc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2798340Z copying torch\include\ATen\ops\special_erfcx.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2806084Z copying torch\include\ATen\ops\special_erfcx_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2813191Z copying torch\include\ATen\ops\special_erfcx_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2824790Z copying torch\include\ATen\ops\special_erfcx_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2831773Z copying torch\include\ATen\ops\special_erfcx_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2839780Z copying torch\include\ATen\ops\special_erfcx_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2845966Z copying torch\include\ATen\ops\special_erfcx_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2880624Z copying torch\include\ATen\ops\special_erfcx_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2887507Z copying torch\include\ATen\ops\special_erfc_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2894444Z copying torch\include\ATen\ops\special_erfc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2900899Z copying torch\include\ATen\ops\special_erfc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2907631Z copying torch\include\ATen\ops\special_erfinv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2914688Z copying torch\include\ATen\ops\special_erfinv_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2921316Z copying torch\include\ATen\ops\special_erfinv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2927996Z copying torch\include\ATen\ops\special_erfinv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2934948Z copying torch\include\ATen\ops\special_erf_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2986436Z copying torch\include\ATen\ops\special_erf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.2993006Z copying torch\include\ATen\ops\special_erf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3000157Z copying torch\include\ATen\ops\special_exp2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3007811Z copying torch\include\ATen\ops\special_exp2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3014636Z copying torch\include\ATen\ops\special_exp2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3021737Z copying torch\include\ATen\ops\special_exp2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3029089Z copying torch\include\ATen\ops\special_expit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3042042Z copying torch\include\ATen\ops\special_expit_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3049084Z copying torch\include\ATen\ops\special_expit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3055587Z copying torch\include\ATen\ops\special_expit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3062328Z copying torch\include\ATen\ops\special_expm1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3069316Z copying torch\include\ATen\ops\special_expm1_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3076144Z copying torch\include\ATen\ops\special_expm1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3082634Z copying torch\include\ATen\ops\special_expm1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3089302Z copying torch\include\ATen\ops\special_gammainc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3100599Z copying torch\include\ATen\ops\special_gammaincc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3107541Z copying torch\include\ATen\ops\special_gammaincc_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3114202Z copying torch\include\ATen\ops\special_gammaincc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3120914Z copying torch\include\ATen\ops\special_gammaincc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3128198Z copying torch\include\ATen\ops\special_gammainc_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3134824Z copying torch\include\ATen\ops\special_gammainc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3141617Z copying torch\include\ATen\ops\special_gammainc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3148324Z copying torch\include\ATen\ops\special_gammaln.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3155327Z copying torch\include\ATen\ops\special_gammaln_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3162120Z copying torch\include\ATen\ops\special_gammaln_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3168917Z copying torch\include\ATen\ops\special_gammaln_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3175947Z copying torch\include\ATen\ops\special_hermite_polynomial_h.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3182851Z copying torch\include\ATen\ops\special_hermite_polynomial_he.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3190000Z copying torch\include\ATen\ops\special_hermite_polynomial_he_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3196867Z copying torch\include\ATen\ops\special_hermite_polynomial_he_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3203944Z copying torch\include\ATen\ops\special_hermite_polynomial_he_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3211186Z copying torch\include\ATen\ops\special_hermite_polynomial_he_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3218663Z copying torch\include\ATen\ops\special_hermite_polynomial_he_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3225390Z copying torch\include\ATen\ops\special_hermite_polynomial_he_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3232380Z copying torch\include\ATen\ops\special_hermite_polynomial_he_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3239331Z copying torch\include\ATen\ops\special_hermite_polynomial_he_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3247634Z copying torch\include\ATen\ops\special_hermite_polynomial_h_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3254422Z copying torch\include\ATen\ops\special_hermite_polynomial_h_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3261463Z copying torch\include\ATen\ops\special_hermite_polynomial_h_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3268609Z copying torch\include\ATen\ops\special_hermite_polynomial_h_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3276058Z copying torch\include\ATen\ops\special_hermite_polynomial_h_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3283035Z copying torch\include\ATen\ops\special_hermite_polynomial_h_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3290086Z copying torch\include\ATen\ops\special_hermite_polynomial_h_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3297194Z copying torch\include\ATen\ops\special_hermite_polynomial_h_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3304645Z copying torch\include\ATen\ops\special_i0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3311538Z copying torch\include\ATen\ops\special_i0e.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3318840Z copying torch\include\ATen\ops\special_i0e_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3325775Z copying torch\include\ATen\ops\special_i0e_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3333149Z copying torch\include\ATen\ops\special_i0e_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3339588Z copying torch\include\ATen\ops\special_i0e_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3346404Z copying torch\include\ATen\ops\special_i0e_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3353278Z copying torch\include\ATen\ops\special_i0e_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3360149Z copying torch\include\ATen\ops\special_i0e_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3367767Z copying torch\include\ATen\ops\special_i0_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3374387Z copying torch\include\ATen\ops\special_i0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3386177Z copying torch\include\ATen\ops\special_i0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3405820Z copying torch\include\ATen\ops\special_i1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3406615Z copying torch\include\ATen\ops\special_i1e.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3409056Z copying torch\include\ATen\ops\special_i1e_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3421004Z copying torch\include\ATen\ops\special_i1e_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3427861Z copying torch\include\ATen\ops\special_i1e_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3434899Z copying torch\include\ATen\ops\special_i1e_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3441663Z copying torch\include\ATen\ops\special_i1e_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3448334Z copying torch\include\ATen\ops\special_i1e_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3455027Z copying torch\include\ATen\ops\special_i1e_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3462513Z copying torch\include\ATen\ops\special_i1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3468969Z copying torch\include\ATen\ops\special_i1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3475740Z copying torch\include\ATen\ops\special_i1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3482629Z copying torch\include\ATen\ops\special_i1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3489550Z copying torch\include\ATen\ops\special_i1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3496245Z copying torch\include\ATen\ops\special_i1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3508435Z copying torch\include\ATen\ops\special_i1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3515437Z copying torch\include\ATen\ops\special_laguerre_polynomial_l.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3522626Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3529828Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3536680Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3544014Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3555139Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3563133Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3570609Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3577390Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3585011Z copying torch\include\ATen\ops\special_legendre_polynomial_p.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3592385Z copying torch\include\ATen\ops\special_legendre_polynomial_p_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3600011Z copying torch\include\ATen\ops\special_legendre_polynomial_p_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3607205Z copying torch\include\ATen\ops\special_legendre_polynomial_p_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3614267Z copying torch\include\ATen\ops\special_legendre_polynomial_p_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3621275Z copying torch\include\ATen\ops\special_legendre_polynomial_p_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3628561Z copying torch\include\ATen\ops\special_legendre_polynomial_p_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3635485Z copying torch\include\ATen\ops\special_legendre_polynomial_p_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3642389Z copying torch\include\ATen\ops\special_legendre_polynomial_p_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3650309Z copying torch\include\ATen\ops\special_log1p.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3689895Z copying torch\include\ATen\ops\special_log1p_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3700554Z copying torch\include\ATen\ops\special_log1p_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3711334Z copying torch\include\ATen\ops\special_log1p_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3720128Z copying torch\include\ATen\ops\special_logit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3734663Z copying torch\include\ATen\ops\special_logit_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3741990Z copying torch\include\ATen\ops\special_logit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3749132Z copying torch\include\ATen\ops\special_logit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3756126Z copying torch\include\ATen\ops\special_logsumexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3768754Z copying torch\include\ATen\ops\special_logsumexp_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3775623Z copying torch\include\ATen\ops\special_logsumexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3782690Z copying torch\include\ATen\ops\special_logsumexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3789653Z copying torch\include\ATen\ops\special_log_ndtr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3797432Z copying torch\include\ATen\ops\special_log_ndtr_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3804202Z copying torch\include\ATen\ops\special_log_ndtr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3811307Z copying torch\include\ATen\ops\special_log_ndtr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3818367Z copying torch\include\ATen\ops\special_log_ndtr_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3825538Z copying torch\include\ATen\ops\special_log_ndtr_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3832468Z copying torch\include\ATen\ops\special_log_ndtr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3839396Z copying torch\include\ATen\ops\special_log_ndtr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3846750Z copying torch\include\ATen\ops\special_log_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3859034Z copying torch\include\ATen\ops\special_log_softmax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3866041Z copying torch\include\ATen\ops\special_log_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3873262Z copying torch\include\ATen\ops\special_log_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3880211Z copying torch\include\ATen\ops\special_modified_bessel_i0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3887670Z copying torch\include\ATen\ops\special_modified_bessel_i0_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3895280Z copying torch\include\ATen\ops\special_modified_bessel_i0_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3903245Z copying torch\include\ATen\ops\special_modified_bessel_i0_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3911393Z copying torch\include\ATen\ops\special_modified_bessel_i0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3918794Z copying torch\include\ATen\ops\special_modified_bessel_i0_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3925947Z copying torch\include\ATen\ops\special_modified_bessel_i0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3933158Z copying torch\include\ATen\ops\special_modified_bessel_i0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3940226Z copying torch\include\ATen\ops\special_modified_bessel_i1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3947827Z copying torch\include\ATen\ops\special_modified_bessel_i1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3954717Z copying torch\include\ATen\ops\special_modified_bessel_i1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3961726Z copying torch\include\ATen\ops\special_modified_bessel_i1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3968695Z copying torch\include\ATen\ops\special_modified_bessel_i1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3975854Z copying torch\include\ATen\ops\special_modified_bessel_i1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3982887Z copying torch\include\ATen\ops\special_modified_bessel_i1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3989665Z copying torch\include\ATen\ops\special_modified_bessel_i1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.3996579Z copying torch\include\ATen\ops\special_modified_bessel_k0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4010481Z copying torch\include\ATen\ops\special_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4017595Z copying torch\include\ATen\ops\special_modified_bessel_k0_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4024845Z copying torch\include\ATen\ops\special_modified_bessel_k0_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4031843Z copying torch\include\ATen\ops\special_modified_bessel_k0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4039005Z copying torch\include\ATen\ops\special_modified_bessel_k0_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4046095Z copying torch\include\ATen\ops\special_modified_bessel_k0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4052908Z copying torch\include\ATen\ops\special_modified_bessel_k0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4060410Z copying torch\include\ATen\ops\special_modified_bessel_k1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4073334Z copying torch\include\ATen\ops\special_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4080260Z copying torch\include\ATen\ops\special_modified_bessel_k1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4087334Z copying torch\include\ATen\ops\special_modified_bessel_k1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4094230Z copying torch\include\ATen\ops\special_modified_bessel_k1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4106013Z copying torch\include\ATen\ops\special_modified_bessel_k1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4112938Z copying torch\include\ATen\ops\special_modified_bessel_k1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4119858Z copying torch\include\ATen\ops\special_modified_bessel_k1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4126808Z copying torch\include\ATen\ops\special_multigammaln.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4134056Z copying torch\include\ATen\ops\special_multigammaln_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4141482Z copying torch\include\ATen\ops\special_multigammaln_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4148832Z copying torch\include\ATen\ops\special_multigammaln_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4155470Z copying torch\include\ATen\ops\special_ndtr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4162441Z copying torch\include\ATen\ops\special_ndtri.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4169611Z copying torch\include\ATen\ops\special_ndtri_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4176227Z copying torch\include\ATen\ops\special_ndtri_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4183087Z copying torch\include\ATen\ops\special_ndtri_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4189824Z copying torch\include\ATen\ops\special_ndtri_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4196781Z copying torch\include\ATen\ops\special_ndtri_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4203588Z copying torch\include\ATen\ops\special_ndtri_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4210374Z copying torch\include\ATen\ops\special_ndtri_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4217379Z copying torch\include\ATen\ops\special_ndtr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4224381Z copying torch\include\ATen\ops\special_ndtr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4230792Z copying torch\include\ATen\ops\special_ndtr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4238060Z copying torch\include\ATen\ops\special_polygamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4250106Z copying torch\include\ATen\ops\special_polygamma_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4256848Z copying torch\include\ATen\ops\special_polygamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4263603Z copying torch\include\ATen\ops\special_polygamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4270212Z copying torch\include\ATen\ops\special_psi.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4281396Z copying torch\include\ATen\ops\special_psi_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4288158Z copying torch\include\ATen\ops\special_psi_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4294648Z copying torch\include\ATen\ops\special_psi_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4301756Z copying torch\include\ATen\ops\special_round.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4308878Z copying torch\include\ATen\ops\special_round_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4315538Z copying torch\include\ATen\ops\special_round_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4322296Z copying torch\include\ATen\ops\special_round_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4329165Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4341310Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4348414Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4355226Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4362177Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4369120Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4375947Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4383106Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4389835Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4397139Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4403956Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4411303Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4418280Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4425389Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4432772Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4439719Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4446585Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4454166Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4461492Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4468391Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4475322Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4488015Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4494914Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4502088Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4509105Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4516158Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4523743Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4531126Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4537937Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4545046Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4552068Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4559339Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4566390Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4578036Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4585365Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4593428Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4600458Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4612271Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4619333Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4626350Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4633514Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4640518Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4647494Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4654480Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4662279Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4669884Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4677321Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4684419Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4691332Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4703672Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4710613Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4717662Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4724472Z copying torch\include\ATen\ops\special_sinc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4731673Z copying torch\include\ATen\ops\special_sinc_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4738698Z copying torch\include\ATen\ops\special_sinc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4745421Z copying torch\include\ATen\ops\special_sinc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4752255Z copying torch\include\ATen\ops\special_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4764399Z copying torch\include\ATen\ops\special_softmax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4771221Z copying torch\include\ATen\ops\special_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4777937Z copying torch\include\ATen\ops\special_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4784929Z copying torch\include\ATen\ops\special_spherical_bessel_j0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4792374Z copying torch\include\ATen\ops\special_spherical_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4799110Z copying torch\include\ATen\ops\special_spherical_bessel_j0_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4823276Z copying torch\include\ATen\ops\special_spherical_bessel_j0_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4830038Z copying torch\include\ATen\ops\special_spherical_bessel_j0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4837091Z copying torch\include\ATen\ops\special_spherical_bessel_j0_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4844128Z copying torch\include\ATen\ops\special_spherical_bessel_j0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4850983Z copying torch\include\ATen\ops\special_spherical_bessel_j0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4857795Z copying torch\include\ATen\ops\special_xlog1py.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4865473Z copying torch\include\ATen\ops\special_xlog1py_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4872950Z copying torch\include\ATen\ops\special_xlog1py_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4880280Z copying torch\include\ATen\ops\special_xlog1py_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4887375Z copying torch\include\ATen\ops\special_xlog1py_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4912839Z copying torch\include\ATen\ops\special_xlog1py_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4940897Z copying torch\include\ATen\ops\special_xlog1py_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4941754Z copying torch\include\ATen\ops\special_xlog1py_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4942513Z copying torch\include\ATen\ops\special_xlog1py_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4943839Z copying torch\include\ATen\ops\special_xlogy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4952667Z copying torch\include\ATen\ops\special_xlogy_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4958767Z copying torch\include\ATen\ops\special_xlogy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4965624Z copying torch\include\ATen\ops\special_xlogy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4972488Z copying torch\include\ATen\ops\special_zeta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4980470Z copying torch\include\ATen\ops\special_zeta_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4987339Z copying torch\include\ATen\ops\special_zeta_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.4994305Z copying torch\include\ATen\ops\special_zeta_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5006818Z copying torch\include\ATen\ops\special_zeta_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5013671Z copying torch\include\ATen\ops\special_zeta_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5020780Z copying torch\include\ATen\ops\special_zeta_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5027679Z copying torch\include\ATen\ops\special_zeta_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5039390Z copying torch\include\ATen\ops\special_zeta_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5046339Z copying torch\include\ATen\ops\split.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5053066Z copying torch\include\ATen\ops\split_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5059946Z copying torch\include\ATen\ops\split_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5071814Z copying torch\include\ATen\ops\split_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5079560Z copying torch\include\ATen\ops\split_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5085741Z copying torch\include\ATen\ops\split_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5092374Z copying torch\include\ATen\ops\split_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5106330Z copying torch\include\ATen\ops\split_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5113033Z copying torch\include\ATen\ops\split_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5120009Z copying torch\include\ATen\ops\split_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5126804Z copying torch\include\ATen\ops\split_with_sizes.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5134014Z copying torch\include\ATen\ops\split_with_sizes_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5140875Z copying torch\include\ATen\ops\split_with_sizes_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5148014Z copying torch\include\ATen\ops\split_with_sizes_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5155050Z copying torch\include\ATen\ops\split_with_sizes_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5166213Z copying torch\include\ATen\ops\split_with_sizes_copy_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5173047Z copying torch\include\ATen\ops\split_with_sizes_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5180286Z copying torch\include\ATen\ops\split_with_sizes_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5187198Z copying torch\include\ATen\ops\split_with_sizes_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5194074Z copying torch\include\ATen\ops\split_with_sizes_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5200860Z copying torch\include\ATen\ops\sqrt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5208104Z copying torch\include\ATen\ops\sqrt_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5214818Z copying torch\include\ATen\ops\sqrt_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5226579Z copying torch\include\ATen\ops\sqrt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5233359Z copying torch\include\ATen\ops\sqrt_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5240054Z copying torch\include\ATen\ops\sqrt_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5246720Z copying torch\include\ATen\ops\sqrt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5253953Z copying torch\include\ATen\ops\sqrt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5260652Z copying torch\include\ATen\ops\square.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5267346Z copying torch\include\ATen\ops\square_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5274130Z copying torch\include\ATen\ops\square_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5280857Z copying torch\include\ATen\ops\square_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5287702Z copying torch\include\ATen\ops\squeeze.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5294438Z copying torch\include\ATen\ops\squeeze_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5301442Z copying torch\include\ATen\ops\squeeze_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5309361Z copying torch\include\ATen\ops\squeeze_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5316569Z copying torch\include\ATen\ops\squeeze_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5323803Z copying torch\include\ATen\ops\squeeze_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5330629Z copying torch\include\ATen\ops\squeeze_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5338035Z copying torch\include\ATen\ops\squeeze_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5345388Z copying torch\include\ATen\ops\squeeze_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5352307Z copying torch\include\ATen\ops\squeeze_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5359110Z copying torch\include\ATen\ops\sspaddmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5370388Z copying torch\include\ATen\ops\sspaddmm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5377335Z copying torch\include\ATen\ops\sspaddmm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5384426Z copying torch\include\ATen\ops\sspaddmm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5391376Z copying torch\include\ATen\ops\sspaddmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5398223Z copying torch\include\ATen\ops\sspaddmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5404925Z copying torch\include\ATen\ops\stack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5411672Z copying torch\include\ATen\ops\stack_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5418909Z copying torch\include\ATen\ops\stack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5425915Z copying torch\include\ATen\ops\stack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5432606Z copying torch\include\ATen\ops\std.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5439248Z copying torch\include\ATen\ops\std_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5445970Z copying torch\include\ATen\ops\std_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5452504Z copying torch\include\ATen\ops\std_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5459125Z copying torch\include\ATen\ops\std_mean.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5466134Z copying torch\include\ATen\ops\std_mean_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5472909Z copying torch\include\ATen\ops\std_mean_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5479679Z copying torch\include\ATen\ops\std_mean_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5486296Z copying torch\include\ATen\ops\std_mean_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5492841Z copying torch\include\ATen\ops\std_mean_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5499461Z copying torch\include\ATen\ops\std_mean_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5510623Z copying torch\include\ATen\ops\std_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5517109Z copying torch\include\ATen\ops\std_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5523821Z copying torch\include\ATen\ops\stft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5530648Z copying torch\include\ATen\ops\stft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5537816Z copying torch\include\ATen\ops\stft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5544480Z copying torch\include\ATen\ops\stft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5550875Z copying torch\include\ATen\ops\stride.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5557324Z copying torch\include\ATen\ops\stride_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5563975Z copying torch\include\ATen\ops\stride_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5570314Z copying torch\include\ATen\ops\stride_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5576650Z copying torch\include\ATen\ops\sub.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5583004Z copying torch\include\ATen\ops\subtract.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5589865Z copying torch\include\ATen\ops\subtract_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5596381Z copying torch\include\ATen\ops\subtract_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5603028Z copying torch\include\ATen\ops\subtract_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5610176Z copying torch\include\ATen\ops\sub_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5621333Z copying torch\include\ATen\ops\sub_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5627786Z copying torch\include\ATen\ops\sub_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5634363Z copying torch\include\ATen\ops\sub_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5640990Z copying torch\include\ATen\ops\sub_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5647248Z copying torch\include\ATen\ops\sub_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5653786Z copying torch\include\ATen\ops\sub_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5660443Z copying torch\include\ATen\ops\sub_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5666639Z copying torch\include\ATen\ops\sum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5673461Z copying torch\include\ATen\ops\sum_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5680233Z copying torch\include\ATen\ops\sum_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5686941Z copying torch\include\ATen\ops\sum_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5693692Z copying torch\include\ATen\ops\sum_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5700455Z copying torch\include\ATen\ops\sum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5706940Z copying torch\include\ATen\ops\sum_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5713180Z copying torch\include\ATen\ops\sum_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5719614Z copying torch\include\ATen\ops\sum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5734366Z copying torch\include\ATen\ops\sum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5741166Z copying torch\include\ATen\ops\sum_to_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5748107Z copying torch\include\ATen\ops\sum_to_size_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5754895Z copying torch\include\ATen\ops\sum_to_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5765795Z copying torch\include\ATen\ops\sum_to_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5772374Z copying torch\include\ATen\ops\svd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5778909Z copying torch\include\ATen\ops\svd_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5785702Z copying torch\include\ATen\ops\svd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5796635Z copying torch\include\ATen\ops\svd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5803582Z copying torch\include\ATen\ops\swapaxes.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5810288Z copying torch\include\ATen\ops\swapaxes_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5816966Z copying torch\include\ATen\ops\swapaxes_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5824002Z copying torch\include\ATen\ops\swapaxes_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5830702Z copying torch\include\ATen\ops\swapdims.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5837308Z copying torch\include\ATen\ops\swapdims_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5843752Z copying torch\include\ATen\ops\swapdims_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5850392Z copying torch\include\ATen\ops\swapdims_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5857000Z copying torch\include\ATen\ops\sym_constrain_range.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5864191Z copying torch\include\ATen\ops\sym_constrain_range_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5870773Z copying torch\include\ATen\ops\sym_constrain_range_for_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5882843Z copying torch\include\ATen\ops\sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5889596Z copying torch\include\ATen\ops\sym_constrain_range_for_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5896353Z copying torch\include\ATen\ops\sym_constrain_range_for_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5903181Z copying torch\include\ATen\ops\sym_constrain_range_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5910158Z copying torch\include\ATen\ops\sym_constrain_range_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5916764Z copying torch\include\ATen\ops\sym_numel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5923880Z copying torch\include\ATen\ops\sym_numel_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5931154Z copying torch\include\ATen\ops\sym_numel_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5943885Z copying torch\include\ATen\ops\sym_numel_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5951603Z copying torch\include\ATen\ops\sym_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5961210Z copying torch\include\ATen\ops\sym_size_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5971934Z copying torch\include\ATen\ops\sym_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5974842Z copying torch\include\ATen\ops\sym_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5982584Z copying torch\include\ATen\ops\sym_storage_offset.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5989684Z copying torch\include\ATen\ops\sym_storage_offset_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.5996445Z copying torch\include\ATen\ops\sym_storage_offset_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6003072Z copying torch\include\ATen\ops\sym_storage_offset_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6010065Z copying torch\include\ATen\ops\sym_stride.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6017551Z copying torch\include\ATen\ops\sym_stride_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6024370Z copying torch\include\ATen\ops\sym_stride_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6030764Z copying torch\include\ATen\ops\sym_stride_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6037601Z copying torch\include\ATen\ops\t.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6043603Z copying torch\include\ATen\ops\take.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6049896Z copying torch\include\ATen\ops\take_along_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6056862Z copying torch\include\ATen\ops\take_along_dim_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6064063Z copying torch\include\ATen\ops\take_along_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6070750Z copying torch\include\ATen\ops\take_along_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6077387Z copying torch\include\ATen\ops\take_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6083954Z copying torch\include\ATen\ops\take_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6090906Z copying torch\include\ATen\ops\take_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6097193Z copying torch\include\ATen\ops\take_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6103583Z copying torch\include\ATen\ops\tan.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6115347Z copying torch\include\ATen\ops\tanh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6121688Z copying torch\include\ATen\ops\tanh_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6128863Z copying torch\include\ATen\ops\tanh_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6135303Z copying torch\include\ATen\ops\tanh_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6142091Z copying torch\include\ATen\ops\tanh_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6148720Z copying torch\include\ATen\ops\tanh_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6155431Z copying torch\include\ATen\ops\tanh_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6162029Z copying torch\include\ATen\ops\tanh_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6173434Z copying torch\include\ATen\ops\tanh_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6180723Z copying torch\include\ATen\ops\tanh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6187095Z copying torch\include\ATen\ops\tanh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6193657Z copying torch\include\ATen\ops\tanh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6200158Z copying torch\include\ATen\ops\tanh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6206534Z copying torch\include\ATen\ops\tanh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6213033Z copying torch\include\ATen\ops\tanh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6219691Z copying torch\include\ATen\ops\tanh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6226796Z copying torch\include\ATen\ops\tan_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6233397Z copying torch\include\ATen\ops\tan_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6256878Z copying torch\include\ATen\ops\tan_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6263499Z copying torch\include\ATen\ops\tan_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6269894Z copying torch\include\ATen\ops\tan_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6276620Z copying torch\include\ATen\ops\tan_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6283826Z copying torch\include\ATen\ops\tan_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6289662Z copying torch\include\ATen\ops\tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6296207Z copying torch\include\ATen\ops\tensordot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6303442Z copying torch\include\ATen\ops\tensordot_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6310238Z copying torch\include\ATen\ops\tensordot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6317381Z copying torch\include\ATen\ops\tensordot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6329654Z copying torch\include\ATen\ops\tensor_split.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6336275Z copying torch\include\ATen\ops\tensor_split_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6343185Z copying torch\include\ATen\ops\tensor_split_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6349903Z copying torch\include\ATen\ops\tensor_split_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6362359Z copying torch\include\ATen\ops\thnn_conv2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6369854Z copying torch\include\ATen\ops\thnn_conv2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6376246Z copying torch\include\ATen\ops\thnn_conv2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6383026Z copying torch\include\ATen\ops\thnn_conv2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6389892Z copying torch\include\ATen\ops\threshold.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6432458Z copying torch\include\ATen\ops\threshold_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6433470Z copying torch\include\ATen\ops\threshold_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6434509Z copying torch\include\ATen\ops\threshold_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6445035Z copying torch\include\ATen\ops\threshold_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6451795Z copying torch\include\ATen\ops\threshold_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6458642Z copying torch\include\ATen\ops\threshold_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6465429Z copying torch\include\ATen\ops\threshold_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6472295Z copying torch\include\ATen\ops\threshold_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6485596Z copying torch\include\ATen\ops\threshold_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6490420Z copying torch\include\ATen\ops\threshold_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6497422Z copying torch\include\ATen\ops\threshold_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6504377Z copying torch\include\ATen\ops\threshold_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6511517Z copying torch\include\ATen\ops\threshold_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6518373Z copying torch\include\ATen\ops\threshold_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6525129Z copying torch\include\ATen\ops\threshold_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6531986Z copying torch\include\ATen\ops\tile.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6538891Z copying torch\include\ATen\ops\tile_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6545643Z copying torch\include\ATen\ops\tile_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6552029Z copying torch\include\ATen\ops\tile_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6558541Z copying torch\include\ATen\ops\to.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6564653Z copying torch\include\ATen\ops\topk.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6571973Z copying torch\include\ATen\ops\topk_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6578379Z copying torch\include\ATen\ops\topk_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6585239Z copying torch\include\ATen\ops\topk_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6592083Z copying torch\include\ATen\ops\topk_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6598835Z copying torch\include\ATen\ops\topk_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6605405Z copying torch\include\ATen\ops\topk_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6612035Z copying torch\include\ATen\ops\topk_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6618740Z copying torch\include\ATen\ops\to_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6625419Z copying torch\include\ATen\ops\to_dense.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6631676Z copying torch\include\ATen\ops\to_dense_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6638623Z copying torch\include\ATen\ops\to_dense_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6645481Z copying torch\include\ATen\ops\to_dense_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6652268Z copying torch\include\ATen\ops\to_dense_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6659186Z copying torch\include\ATen\ops\to_dense_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6665985Z copying torch\include\ATen\ops\to_dense_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6673095Z copying torch\include\ATen\ops\to_dense_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6679938Z copying torch\include\ATen\ops\to_mkldnn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6686834Z copying torch\include\ATen\ops\to_mkldnn_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6695121Z copying torch\include\ATen\ops\to_mkldnn_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6701338Z copying torch\include\ATen\ops\to_mkldnn_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6707970Z copying torch\include\ATen\ops\to_mkldnn_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6715126Z copying torch\include\ATen\ops\to_mkldnn_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6721915Z copying torch\include\ATen\ops\to_mkldnn_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6729666Z copying torch\include\ATen\ops\to_mkldnn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6735871Z copying torch\include\ATen\ops\to_mkldnn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6742977Z copying torch\include\ATen\ops\to_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6749657Z copying torch\include\ATen\ops\to_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6756235Z copying torch\include\ATen\ops\to_padded_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6764349Z copying torch\include\ATen\ops\to_padded_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6770212Z copying torch\include\ATen\ops\to_padded_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6777127Z copying torch\include\ATen\ops\to_padded_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6784069Z copying torch\include\ATen\ops\to_sparse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6790940Z copying torch\include\ATen\ops\to_sparse_bsc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6798845Z copying torch\include\ATen\ops\to_sparse_bsc_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6820161Z copying torch\include\ATen\ops\to_sparse_bsc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6827286Z copying torch\include\ATen\ops\to_sparse_bsc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6833749Z copying torch\include\ATen\ops\to_sparse_bsr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6840624Z copying torch\include\ATen\ops\to_sparse_bsr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6847355Z copying torch\include\ATen\ops\to_sparse_bsr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6854153Z copying torch\include\ATen\ops\to_sparse_bsr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6861746Z copying torch\include\ATen\ops\to_sparse_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6868184Z copying torch\include\ATen\ops\to_sparse_csc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6875199Z copying torch\include\ATen\ops\to_sparse_csc_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6881960Z copying torch\include\ATen\ops\to_sparse_csc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6888641Z copying torch\include\ATen\ops\to_sparse_csc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6896119Z copying torch\include\ATen\ops\to_sparse_csr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6902922Z copying torch\include\ATen\ops\to_sparse_csr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6910082Z copying torch\include\ATen\ops\to_sparse_csr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6916621Z copying torch\include\ATen\ops\to_sparse_csr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6937429Z copying torch\include\ATen\ops\to_sparse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6938153Z copying torch\include\ATen\ops\to_sparse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6939452Z copying torch\include\ATen\ops\trace.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6946044Z copying torch\include\ATen\ops\trace_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6953465Z copying torch\include\ATen\ops\trace_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6961448Z copying torch\include\ATen\ops\trace_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6966770Z copying torch\include\ATen\ops\trace_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6973888Z copying torch\include\ATen\ops\trace_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6980727Z copying torch\include\ATen\ops\trace_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6988528Z copying torch\include\ATen\ops\trace_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.6994146Z copying torch\include\ATen\ops\trace_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7001042Z copying torch\include\ATen\ops\trace_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7007672Z copying torch\include\ATen\ops\transpose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7014568Z copying torch\include\ATen\ops\transpose_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7021659Z copying torch\include\ATen\ops\transpose_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7028229Z copying torch\include\ATen\ops\transpose_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7035417Z copying torch\include\ATen\ops\transpose_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7042441Z copying torch\include\ATen\ops\transpose_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7049178Z copying torch\include\ATen\ops\transpose_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7055746Z copying torch\include\ATen\ops\transpose_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7062471Z copying torch\include\ATen\ops\transpose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7069544Z copying torch\include\ATen\ops\transpose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7076378Z copying torch\include\ATen\ops\trapezoid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7083201Z copying torch\include\ATen\ops\trapezoid_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7089731Z copying torch\include\ATen\ops\trapezoid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7096493Z copying torch\include\ATen\ops\trapezoid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7103194Z copying torch\include\ATen\ops\trapz.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7109905Z copying torch\include\ATen\ops\trapz_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7116392Z copying torch\include\ATen\ops\trapz_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7122884Z copying torch\include\ATen\ops\trapz_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7129487Z copying torch\include\ATen\ops\triangular_solve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7136449Z copying torch\include\ATen\ops\triangular_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7143317Z copying torch\include\ATen\ops\triangular_solve_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7150018Z copying torch\include\ATen\ops\triangular_solve_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7156990Z copying torch\include\ATen\ops\triangular_solve_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7163750Z copying torch\include\ATen\ops\triangular_solve_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7170418Z copying torch\include\ATen\ops\triangular_solve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7178372Z copying torch\include\ATen\ops\triangular_solve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7184955Z copying torch\include\ATen\ops\tril.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7191798Z copying torch\include\ATen\ops\tril_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7198249Z copying torch\include\ATen\ops\tril_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7204807Z copying torch\include\ATen\ops\tril_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7211341Z copying torch\include\ATen\ops\tril_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7218213Z copying torch\include\ATen\ops\tril_indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7225206Z copying torch\include\ATen\ops\tril_indices_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7231905Z copying torch\include\ATen\ops\tril_indices_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7238952Z copying torch\include\ATen\ops\tril_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7245642Z copying torch\include\ATen\ops\tril_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7252166Z copying torch\include\ATen\ops\tril_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7258617Z copying torch\include\ATen\ops\tril_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7264962Z copying torch\include\ATen\ops\tril_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7271822Z copying torch\include\ATen\ops\tril_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7278386Z copying torch\include\ATen\ops\triplet_margin_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7285334Z copying torch\include\ATen\ops\triplet_margin_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7330246Z copying torch\include\ATen\ops\triplet_margin_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7336735Z copying torch\include\ATen\ops\triplet_margin_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7343731Z copying torch\include\ATen\ops\triu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7350502Z copying torch\include\ATen\ops\triu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7357006Z copying torch\include\ATen\ops\triu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7372090Z copying torch\include\ATen\ops\triu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7372405Z copying torch\include\ATen\ops\triu_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7415062Z copying torch\include\ATen\ops\triu_indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7415424Z copying torch\include\ATen\ops\triu_indices_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7415788Z copying torch\include\ATen\ops\triu_indices_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7416108Z copying torch\include\ATen\ops\triu_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7416420Z copying torch\include\ATen\ops\triu_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7416710Z copying torch\include\ATen\ops\triu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7423346Z copying torch\include\ATen\ops\triu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7430176Z copying torch\include\ATen\ops\triu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7437017Z copying torch\include\ATen\ops\triu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7443539Z copying torch\include\ATen\ops\true_divide.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7450653Z copying torch\include\ATen\ops\true_divide_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7457182Z copying torch\include\ATen\ops\true_divide_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7463876Z copying torch\include\ATen\ops\true_divide_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7471069Z copying torch\include\ATen\ops\trunc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7477676Z copying torch\include\ATen\ops\trunc_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7484357Z copying torch\include\ATen\ops\trunc_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7491257Z copying torch\include\ATen\ops\trunc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7497943Z copying torch\include\ATen\ops\trunc_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7504522Z copying torch\include\ATen\ops\trunc_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7511215Z copying torch\include\ATen\ops\trunc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7517736Z copying torch\include\ATen\ops\trunc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7524549Z copying torch\include\ATen\ops\type_as.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7530919Z copying torch\include\ATen\ops\type_as_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7538514Z copying torch\include\ATen\ops\type_as_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7544319Z copying torch\include\ATen\ops\type_as_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7551305Z copying torch\include\ATen\ops\t_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7557735Z copying torch\include\ATen\ops\t_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7564363Z copying torch\include\ATen\ops\t_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7570987Z copying torch\include\ATen\ops\t_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7577627Z copying torch\include\ATen\ops\t_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7584105Z copying torch\include\ATen\ops\t_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7590731Z copying torch\include\ATen\ops\t_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7596766Z copying torch\include\ATen\ops\t_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7602985Z copying torch\include\ATen\ops\unbind.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7609486Z copying torch\include\ATen\ops\unbind_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7616156Z copying torch\include\ATen\ops\unbind_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7622826Z copying torch\include\ATen\ops\unbind_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7630135Z copying torch\include\ATen\ops\unbind_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7636785Z copying torch\include\ATen\ops\unbind_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7643304Z copying torch\include\ATen\ops\unbind_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7650020Z copying torch\include\ATen\ops\unbind_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7656678Z copying torch\include\ATen\ops\unbind_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7663391Z copying torch\include\ATen\ops\unbind_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7670074Z copying torch\include\ATen\ops\unflatten.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7677169Z copying torch\include\ATen\ops\unflatten_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7683714Z copying torch\include\ATen\ops\unflatten_dense_tensors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7690609Z copying torch\include\ATen\ops\unflatten_dense_tensors_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7697997Z copying torch\include\ATen\ops\unflatten_dense_tensors_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7704538Z copying torch\include\ATen\ops\unflatten_dense_tensors_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7711696Z copying torch\include\ATen\ops\unflatten_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7718467Z copying torch\include\ATen\ops\unflatten_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7725497Z copying torch\include\ATen\ops\unfold.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7731968Z copying torch\include\ATen\ops\unfold_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7739189Z copying torch\include\ATen\ops\unfold_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7746062Z copying torch\include\ATen\ops\unfold_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7753742Z copying torch\include\ATen\ops\unfold_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7759817Z copying torch\include\ATen\ops\unfold_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7766991Z copying torch\include\ATen\ops\unfold_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7773486Z copying torch\include\ATen\ops\unfold_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7780813Z copying torch\include\ATen\ops\unfold_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7788119Z copying torch\include\ATen\ops\unfold_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7794476Z copying torch\include\ATen\ops\unfold_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7801269Z copying torch\include\ATen\ops\unfold_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7808071Z copying torch\include\ATen\ops\unfold_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7815189Z copying torch\include\ATen\ops\unfold_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7822481Z copying torch\include\ATen\ops\unfold_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7829040Z copying torch\include\ATen\ops\unfold_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7835673Z copying torch\include\ATen\ops\unfold_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7842542Z copying torch\include\ATen\ops\uniform.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7849274Z copying torch\include\ATen\ops\uniform_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7856671Z copying torch\include\ATen\ops\uniform_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7862982Z copying torch\include\ATen\ops\uniform_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7869743Z copying torch\include\ATen\ops\uniform_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7876462Z copying torch\include\ATen\ops\uniform_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7883580Z copying torch\include\ATen\ops\uniform_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7890966Z copying torch\include\ATen\ops\unique_consecutive.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7897637Z copying torch\include\ATen\ops\unique_consecutive_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7904804Z copying torch\include\ATen\ops\unique_consecutive_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7911676Z copying torch\include\ATen\ops\unique_consecutive_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7919613Z copying torch\include\ATen\ops\unique_consecutive_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7927556Z copying torch\include\ATen\ops\unique_consecutive_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7935192Z copying torch\include\ATen\ops\unique_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7944862Z copying torch\include\ATen\ops\unique_dim_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7947413Z copying torch\include\ATen\ops\unique_dim_consecutive.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7954993Z copying torch\include\ATen\ops\unique_dim_consecutive_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7962299Z copying torch\include\ATen\ops\unique_dim_consecutive_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7969424Z copying torch\include\ATen\ops\unique_dim_consecutive_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7976586Z copying torch\include\ATen\ops\unique_dim_consecutive_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7986193Z copying torch\include\ATen\ops\unique_dim_consecutive_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7992421Z copying torch\include\ATen\ops\unique_dim_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.7998570Z copying torch\include\ATen\ops\unique_dim_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8005154Z copying torch\include\ATen\ops\unique_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8012027Z copying torch\include\ATen\ops\unique_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8018882Z copying torch\include\ATen\ops\unsafe_chunk.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8026031Z copying torch\include\ATen\ops\unsafe_chunk_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8032450Z copying torch\include\ATen\ops\unsafe_chunk_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8039142Z copying torch\include\ATen\ops\unsafe_chunk_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8045662Z copying torch\include\ATen\ops\unsafe_split.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8052682Z copying torch\include\ATen\ops\unsafe_split_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8059543Z copying torch\include\ATen\ops\unsafe_split_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8066392Z copying torch\include\ATen\ops\unsafe_split_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8073362Z copying torch\include\ATen\ops\unsafe_split_with_sizes.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8080439Z copying torch\include\ATen\ops\unsafe_split_with_sizes_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8087401Z copying torch\include\ATen\ops\unsafe_split_with_sizes_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8094225Z copying torch\include\ATen\ops\unsafe_split_with_sizes_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8101168Z copying torch\include\ATen\ops\unsqueeze.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8108101Z copying torch\include\ATen\ops\unsqueeze_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8114547Z copying torch\include\ATen\ops\unsqueeze_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8121797Z copying torch\include\ATen\ops\unsqueeze_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8128758Z copying torch\include\ATen\ops\unsqueeze_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8135490Z copying torch\include\ATen\ops\unsqueeze_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8142578Z copying torch\include\ATen\ops\unsqueeze_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8149375Z copying torch\include\ATen\ops\unsqueeze_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8156077Z copying torch\include\ATen\ops\unsqueeze_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8162735Z copying torch\include\ATen\ops\upsample_bicubic2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8169559Z copying torch\include\ATen\ops\upsample_bicubic2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8176666Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8183421Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8190473Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8197261Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8204229Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8211012Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8217819Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8225566Z copying torch\include\ATen\ops\upsample_bicubic2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8232483Z copying torch\include\ATen\ops\upsample_bicubic2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8239155Z copying torch\include\ATen\ops\upsample_bicubic2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8245929Z copying torch\include\ATen\ops\upsample_bicubic2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8252532Z copying torch\include\ATen\ops\upsample_bicubic2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8259414Z copying torch\include\ATen\ops\upsample_bicubic2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8266517Z copying torch\include\ATen\ops\upsample_bicubic2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8273203Z copying torch\include\ATen\ops\upsample_bicubic2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8319834Z copying torch\include\ATen\ops\upsample_bilinear2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8326795Z copying torch\include\ATen\ops\upsample_bilinear2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8333882Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8340877Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8348090Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8354905Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8362030Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8368948Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8376853Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8384583Z copying torch\include\ATen\ops\upsample_bilinear2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8391624Z copying torch\include\ATen\ops\upsample_bilinear2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8398810Z copying torch\include\ATen\ops\upsample_bilinear2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8405629Z copying torch\include\ATen\ops\upsample_bilinear2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8412802Z copying torch\include\ATen\ops\upsample_bilinear2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8419869Z copying torch\include\ATen\ops\upsample_bilinear2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8426884Z copying torch\include\ATen\ops\upsample_bilinear2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8434140Z copying torch\include\ATen\ops\upsample_bilinear2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8441192Z copying torch\include\ATen\ops\upsample_bilinear2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8448084Z copying torch\include\ATen\ops\upsample_linear1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8455960Z copying torch\include\ATen\ops\upsample_linear1d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8464756Z copying torch\include\ATen\ops\upsample_linear1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8471933Z copying torch\include\ATen\ops\upsample_linear1d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8478896Z copying torch\include\ATen\ops\upsample_linear1d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8485934Z copying torch\include\ATen\ops\upsample_linear1d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8493058Z copying torch\include\ATen\ops\upsample_linear1d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8500231Z copying torch\include\ATen\ops\upsample_linear1d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8538936Z copying torch\include\ATen\ops\upsample_linear1d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8539672Z copying torch\include\ATen\ops\upsample_linear1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8540262Z copying torch\include\ATen\ops\upsample_linear1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8540763Z copying torch\include\ATen\ops\upsample_linear1d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8541142Z copying torch\include\ATen\ops\upsample_linear1d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8542665Z copying torch\include\ATen\ops\upsample_linear1d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8549601Z copying torch\include\ATen\ops\upsample_linear1d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8557130Z copying torch\include\ATen\ops\upsample_linear1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8564285Z copying torch\include\ATen\ops\upsample_linear1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8571233Z copying torch\include\ATen\ops\upsample_nearest1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8578396Z copying torch\include\ATen\ops\upsample_nearest1d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8585892Z copying torch\include\ATen\ops\upsample_nearest1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8592915Z copying torch\include\ATen\ops\upsample_nearest1d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8599949Z copying torch\include\ATen\ops\upsample_nearest1d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8606811Z copying torch\include\ATen\ops\upsample_nearest1d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8613609Z copying torch\include\ATen\ops\upsample_nearest1d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8620770Z copying torch\include\ATen\ops\upsample_nearest1d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8627557Z copying torch\include\ATen\ops\upsample_nearest1d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8634871Z copying torch\include\ATen\ops\upsample_nearest1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8641779Z copying torch\include\ATen\ops\upsample_nearest1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8648500Z copying torch\include\ATen\ops\upsample_nearest1d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8655454Z copying torch\include\ATen\ops\upsample_nearest1d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8662240Z copying torch\include\ATen\ops\upsample_nearest1d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8686009Z copying torch\include\ATen\ops\upsample_nearest1d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8692910Z copying torch\include\ATen\ops\upsample_nearest1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8699656Z copying torch\include\ATen\ops\upsample_nearest1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8706593Z copying torch\include\ATen\ops\upsample_nearest2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8714048Z copying torch\include\ATen\ops\upsample_nearest2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8721317Z copying torch\include\ATen\ops\upsample_nearest2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8728347Z copying torch\include\ATen\ops\upsample_nearest2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8735146Z copying torch\include\ATen\ops\upsample_nearest2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8742066Z copying torch\include\ATen\ops\upsample_nearest2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8749186Z copying torch\include\ATen\ops\upsample_nearest2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8755989Z copying torch\include\ATen\ops\upsample_nearest2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8762812Z copying torch\include\ATen\ops\upsample_nearest2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8770491Z copying torch\include\ATen\ops\upsample_nearest2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8777441Z copying torch\include\ATen\ops\upsample_nearest2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8784501Z copying torch\include\ATen\ops\upsample_nearest2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8791723Z copying torch\include\ATen\ops\upsample_nearest2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8798566Z copying torch\include\ATen\ops\upsample_nearest2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8805489Z copying torch\include\ATen\ops\upsample_nearest2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8812179Z copying torch\include\ATen\ops\upsample_nearest2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8818966Z copying torch\include\ATen\ops\upsample_nearest2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8825762Z copying torch\include\ATen\ops\upsample_nearest2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8832465Z copying torch\include\ATen\ops\upsample_nearest3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8839338Z copying torch\include\ATen\ops\upsample_nearest3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8847051Z copying torch\include\ATen\ops\upsample_nearest3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8854041Z copying torch\include\ATen\ops\upsample_nearest3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8861217Z copying torch\include\ATen\ops\upsample_nearest3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8868416Z copying torch\include\ATen\ops\upsample_nearest3d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8875462Z copying torch\include\ATen\ops\upsample_nearest3d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8882653Z copying torch\include\ATen\ops\upsample_nearest3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8889848Z copying torch\include\ATen\ops\upsample_nearest3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8898103Z copying torch\include\ATen\ops\upsample_nearest3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8905081Z copying torch\include\ATen\ops\upsample_nearest3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8911902Z copying torch\include\ATen\ops\upsample_nearest3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8918855Z copying torch\include\ATen\ops\upsample_nearest3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8925971Z copying torch\include\ATen\ops\upsample_nearest3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8932820Z copying torch\include\ATen\ops\upsample_nearest3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8940399Z copying torch\include\ATen\ops\upsample_nearest3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8948111Z copying torch\include\ATen\ops\upsample_nearest3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8955942Z copying torch\include\ATen\ops\upsample_trilinear3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8963912Z copying torch\include\ATen\ops\upsample_trilinear3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8971827Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8979183Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8986467Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.8993488Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9005394Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9010516Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9017323Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9025212Z copying torch\include\ATen\ops\upsample_trilinear3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9032199Z copying torch\include\ATen\ops\upsample_trilinear3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9038986Z copying torch\include\ATen\ops\upsample_trilinear3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9045835Z copying torch\include\ATen\ops\upsample_trilinear3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9053402Z copying torch\include\ATen\ops\upsample_trilinear3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9060432Z copying torch\include\ATen\ops\upsample_trilinear3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9067389Z copying torch\include\ATen\ops\upsample_trilinear3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9074341Z copying torch\include\ATen\ops\upsample_trilinear3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9080933Z copying torch\include\ATen\ops\values.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9087342Z copying torch\include\ATen\ops\values_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9094558Z copying torch\include\ATen\ops\values_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9101814Z copying torch\include\ATen\ops\values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9108523Z copying torch\include\ATen\ops\values_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9115304Z copying torch\include\ATen\ops\values_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9121831Z copying torch\include\ATen\ops\values_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9128719Z copying torch\include\ATen\ops\values_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9135630Z copying torch\include\ATen\ops\values_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9142944Z copying torch\include\ATen\ops\value_selecting_reduction_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9150014Z copying torch\include\ATen\ops\value_selecting_reduction_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9156631Z copying torch\include\ATen\ops\value_selecting_reduction_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9163673Z copying torch\include\ATen\ops\value_selecting_reduction_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9170347Z copying torch\include\ATen\ops\vander.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9176934Z copying torch\include\ATen\ops\vander_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9183777Z copying torch\include\ATen\ops\vander_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9190279Z copying torch\include\ATen\ops\vander_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9197092Z copying torch\include\ATen\ops\var.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9203641Z copying torch\include\ATen\ops\var_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9210085Z copying torch\include\ATen\ops\var_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9216942Z copying torch\include\ATen\ops\var_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9223546Z copying torch\include\ATen\ops\var_mean.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9230266Z copying torch\include\ATen\ops\var_mean_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9237217Z copying torch\include\ATen\ops\var_mean_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9243843Z copying torch\include\ATen\ops\var_mean_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9250601Z copying torch\include\ATen\ops\var_mean_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9257433Z copying torch\include\ATen\ops\var_mean_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9264377Z copying torch\include\ATen\ops\var_mean_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9271255Z copying torch\include\ATen\ops\var_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9277846Z copying torch\include\ATen\ops\var_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9284431Z copying torch\include\ATen\ops\vdot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9291030Z copying torch\include\ATen\ops\vdot_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9298047Z copying torch\include\ATen\ops\vdot_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9304872Z copying torch\include\ATen\ops\vdot_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9311621Z copying torch\include\ATen\ops\vdot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9318372Z copying torch\include\ATen\ops\vdot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9324801Z copying torch\include\ATen\ops\view.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9331657Z copying torch\include\ATen\ops\view_as.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9337581Z copying torch\include\ATen\ops\view_as_complex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9344755Z copying torch\include\ATen\ops\view_as_complex_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9352254Z copying torch\include\ATen\ops\view_as_complex_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9359178Z copying torch\include\ATen\ops\view_as_complex_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9365887Z copying torch\include\ATen\ops\view_as_complex_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9372697Z copying torch\include\ATen\ops\view_as_complex_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9379589Z copying torch\include\ATen\ops\view_as_complex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9386855Z copying torch\include\ATen\ops\view_as_complex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9393723Z copying torch\include\ATen\ops\view_as_complex_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9401164Z copying torch\include\ATen\ops\view_as_complex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9407702Z copying torch\include\ATen\ops\view_as_complex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9414892Z copying torch\include\ATen\ops\view_as_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9421799Z copying torch\include\ATen\ops\view_as_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9428383Z copying torch\include\ATen\ops\view_as_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9435310Z copying torch\include\ATen\ops\view_as_real.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9442577Z copying torch\include\ATen\ops\view_as_real_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9450472Z copying torch\include\ATen\ops\view_as_real_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9457978Z copying torch\include\ATen\ops\view_as_real_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9464825Z copying torch\include\ATen\ops\view_as_real_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9471693Z copying torch\include\ATen\ops\view_as_real_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9478822Z copying torch\include\ATen\ops\view_as_real_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9485646Z copying torch\include\ATen\ops\view_as_real_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9492449Z copying torch\include\ATen\ops\view_as_real_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9499308Z copying torch\include\ATen\ops\view_as_real_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9505884Z copying torch\include\ATen\ops\view_as_real_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9512861Z copying torch\include\ATen\ops\view_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9519404Z copying torch\include\ATen\ops\view_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9526629Z copying torch\include\ATen\ops\view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9533426Z copying torch\include\ATen\ops\view_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9540073Z copying torch\include\ATen\ops\view_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9546929Z copying torch\include\ATen\ops\view_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9553729Z copying torch\include\ATen\ops\view_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9560876Z copying torch\include\ATen\ops\view_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9567590Z copying torch\include\ATen\ops\view_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9574426Z copying torch\include\ATen\ops\view_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9581095Z copying torch\include\ATen\ops\view_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9587358Z copying torch\include\ATen\ops\vsplit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9593882Z copying torch\include\ATen\ops\vsplit_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9600498Z copying torch\include\ATen\ops\vsplit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9607181Z copying torch\include\ATen\ops\vsplit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9613746Z copying torch\include\ATen\ops\vstack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9620423Z copying torch\include\ATen\ops\vstack_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9627092Z copying torch\include\ATen\ops\vstack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9633512Z copying torch\include\ATen\ops\vstack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9640242Z copying torch\include\ATen\ops\where.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9646832Z copying torch\include\ATen\ops\where_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9653245Z copying torch\include\ATen\ops\where_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9659888Z copying torch\include\ATen\ops\where_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9666543Z copying torch\include\ATen\ops\where_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9673102Z copying torch\include\ATen\ops\where_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9679951Z copying torch\include\ATen\ops\xlogy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9686748Z copying torch\include\ATen\ops\xlogy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9693266Z copying torch\include\ATen\ops\xlogy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9700043Z copying torch\include\ATen\ops\xlogy_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9725905Z copying torch\include\ATen\ops\xlogy_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9732826Z copying torch\include\ATen\ops\xlogy_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9739601Z copying torch\include\ATen\ops\xlogy_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9746760Z copying torch\include\ATen\ops\xlogy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9753969Z copying torch\include\ATen\ops\xlogy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9760878Z copying torch\include\ATen\ops\xor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9767542Z copying torch\include\ATen\ops\xor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9774175Z copying torch\include\ATen\ops\xor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9781011Z copying torch\include\ATen\ops\xor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9787500Z copying torch\include\ATen\ops\zero.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9793813Z copying torch\include\ATen\ops\zeros.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9800650Z copying torch\include\ATen\ops\zeros_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9807393Z copying torch\include\ATen\ops\zeros_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9814459Z copying torch\include\ATen\ops\zeros_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9821701Z copying torch\include\ATen\ops\zeros_like_compositeimplicitautogradnestedtensor_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9828468Z copying torch\include\ATen\ops\zeros_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9835290Z copying torch\include\ATen\ops\zeros_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9842104Z copying torch\include\ATen\ops\zeros_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9848963Z copying torch\include\ATen\ops\zeros_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9856616Z copying torch\include\ATen\ops\zero_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9863365Z copying torch\include\ATen\ops\zero_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9870079Z copying torch\include\ATen\ops\zero_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9876767Z copying torch\include\ATen\ops\zero_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9883429Z copying torch\include\ATen\ops\zero_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9890178Z copying torch\include\ATen\ops\zero_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9896829Z copying torch\include\ATen\ops\_adaptive_avg_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9903770Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9910980Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9917947Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9925132Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9932153Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9939087Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9946797Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9954404Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9961422Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9968755Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9975820Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9982797Z copying torch\include\ATen\ops\_adaptive_avg_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9990037Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:07.9997054Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0003769Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0010811Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0017672Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0024780Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0032037Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0038958Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0045805Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0052621Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0059506Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0066369Z copying torch\include\ATen\ops\_addmm_activation.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0073536Z copying torch\include\ATen\ops\_addmm_activation_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0079986Z copying torch\include\ATen\ops\_addmm_activation_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0086721Z copying torch\include\ATen\ops\_addmm_activation_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0093518Z copying torch\include\ATen\ops\_addmm_activation_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0100651Z copying torch\include\ATen\ops\_addmm_activation_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0107432Z copying torch\include\ATen\ops\_addmm_activation_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0114438Z copying torch\include\ATen\ops\_addmm_activation_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0121178Z copying torch\include\ATen\ops\_add_batch_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0128704Z copying torch\include\ATen\ops\_add_batch_dim_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0135386Z copying torch\include\ATen\ops\_add_batch_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0141799Z copying torch\include\ATen\ops\_add_batch_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0148411Z copying torch\include\ATen\ops\_add_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0155268Z copying torch\include\ATen\ops\_add_relu_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0162389Z copying torch\include\ATen\ops\_add_relu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0169153Z copying torch\include\ATen\ops\_add_relu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0176091Z copying torch\include\ATen\ops\_add_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0183028Z copying torch\include\ATen\ops\_add_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0189915Z copying torch\include\ATen\ops\_aminmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0196699Z copying torch\include\ATen\ops\_aminmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0203388Z copying torch\include\ATen\ops\_aminmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0210226Z copying torch\include\ATen\ops\_aminmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0216792Z copying torch\include\ATen\ops\_aminmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0223541Z copying torch\include\ATen\ops\_aminmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0230569Z copying torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0237641Z 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-06-01T21:22:08.0244395Z 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-06-01T21:22:08.0252369Z 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-06-01T21:22:08.0259701Z 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-06-01T21:22:08.0266656Z 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-06-01T21:22:08.0273360Z copying torch\include\ATen\ops\_amp_update_scale.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0280172Z copying torch\include\ATen\ops\_amp_update_scale_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0287046Z copying torch\include\ATen\ops\_amp_update_scale_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0293776Z copying torch\include\ATen\ops\_amp_update_scale_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0301238Z copying torch\include\ATen\ops\_amp_update_scale_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0308186Z copying torch\include\ATen\ops\_amp_update_scale_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0315046Z copying torch\include\ATen\ops\_amp_update_scale_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0321917Z copying torch\include\ATen\ops\_assert_async.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0329098Z copying torch\include\ATen\ops\_assert_async_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0336022Z copying torch\include\ATen\ops\_assert_async_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0342892Z copying torch\include\ATen\ops\_assert_async_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0349677Z copying torch\include\ATen\ops\_assert_async_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0356512Z copying torch\include\ATen\ops\_assert_scalar.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0364892Z copying torch\include\ATen\ops\_assert_scalar_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0372069Z copying torch\include\ATen\ops\_assert_scalar_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0379505Z copying torch\include\ATen\ops\_assert_scalar_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0387383Z copying torch\include\ATen\ops\_assert_tensor_metadata.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0395082Z copying torch\include\ATen\ops\_assert_tensor_metadata_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0402589Z copying torch\include\ATen\ops\_assert_tensor_metadata_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0409640Z copying torch\include\ATen\ops\_assert_tensor_metadata_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0416471Z copying torch\include\ATen\ops\_assert_tensor_metadata_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0423420Z copying torch\include\ATen\ops\_autocast_to_full_precision.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0430578Z copying torch\include\ATen\ops\_autocast_to_full_precision_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0437098Z copying torch\include\ATen\ops\_autocast_to_full_precision_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0443659Z copying torch\include\ATen\ops\_autocast_to_full_precision_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0450618Z copying torch\include\ATen\ops\_autocast_to_reduced_precision.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0457435Z copying torch\include\ATen\ops\_autocast_to_reduced_precision_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0464586Z copying torch\include\ATen\ops\_autocast_to_reduced_precision_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0471306Z copying torch\include\ATen\ops\_autocast_to_reduced_precision_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0477937Z copying torch\include\ATen\ops\_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0501526Z copying torch\include\ATen\ops\_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0508063Z copying torch\include\ATen\ops\_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0514653Z copying torch\include\ATen\ops\_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0521358Z copying torch\include\ATen\ops\_batch_norm_impl_index.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0528178Z copying torch\include\ATen\ops\_batch_norm_impl_index_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0535086Z copying torch\include\ATen\ops\_batch_norm_impl_index_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0541849Z copying torch\include\ATen\ops\_batch_norm_impl_index_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0548725Z copying torch\include\ATen\ops\_batch_norm_impl_index_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0569445Z copying torch\include\ATen\ops\_batch_norm_impl_index_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0576655Z copying torch\include\ATen\ops\_batch_norm_impl_index_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0583404Z copying torch\include\ATen\ops\_batch_norm_impl_index_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0590031Z copying torch\include\ATen\ops\_batch_norm_no_update.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0596970Z copying torch\include\ATen\ops\_batch_norm_no_update_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0603768Z copying torch\include\ATen\ops\_batch_norm_no_update_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0610489Z copying torch\include\ATen\ops\_batch_norm_no_update_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0617372Z copying torch\include\ATen\ops\_batch_norm_with_update.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0624747Z copying torch\include\ATen\ops\_batch_norm_with_update_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0631472Z copying torch\include\ATen\ops\_batch_norm_with_update_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0638363Z copying torch\include\ATen\ops\_batch_norm_with_update_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0644978Z copying torch\include\ATen\ops\_batch_norm_with_update_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0651665Z copying torch\include\ATen\ops\_batch_norm_with_update_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0658485Z copying torch\include\ATen\ops\_cast_Byte.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0665461Z copying torch\include\ATen\ops\_cast_Byte_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0671933Z copying torch\include\ATen\ops\_cast_Byte_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0678473Z copying torch\include\ATen\ops\_cast_Byte_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0685157Z copying torch\include\ATen\ops\_cast_Char.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0692175Z copying torch\include\ATen\ops\_cast_Char_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0699057Z copying torch\include\ATen\ops\_cast_Char_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0705932Z copying torch\include\ATen\ops\_cast_Char_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0712501Z copying torch\include\ATen\ops\_cast_Double.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0719362Z copying torch\include\ATen\ops\_cast_Double_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0726947Z copying torch\include\ATen\ops\_cast_Double_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0733545Z copying torch\include\ATen\ops\_cast_Double_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0740277Z copying torch\include\ATen\ops\_cast_Float.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0747491Z copying torch\include\ATen\ops\_cast_Float_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0754145Z copying torch\include\ATen\ops\_cast_Float_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0767104Z copying torch\include\ATen\ops\_cast_Float_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0773917Z copying torch\include\ATen\ops\_cast_Half.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0781161Z copying torch\include\ATen\ops\_cast_Half_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0787863Z copying torch\include\ATen\ops\_cast_Half_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0794385Z copying torch\include\ATen\ops\_cast_Half_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0801238Z copying torch\include\ATen\ops\_cast_Int.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0808380Z copying torch\include\ATen\ops\_cast_Int_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0815264Z copying torch\include\ATen\ops\_cast_Int_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0821957Z copying torch\include\ATen\ops\_cast_Int_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0828848Z copying torch\include\ATen\ops\_cast_Long.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0836015Z copying torch\include\ATen\ops\_cast_Long_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0842796Z copying torch\include\ATen\ops\_cast_Long_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0849556Z copying torch\include\ATen\ops\_cast_Long_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0856282Z copying torch\include\ATen\ops\_cast_Short.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0863782Z copying torch\include\ATen\ops\_cast_Short_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0870430Z copying torch\include\ATen\ops\_cast_Short_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0895967Z copying torch\include\ATen\ops\_cast_Short_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0903040Z copying torch\include\ATen\ops\_cdist_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0910399Z copying torch\include\ATen\ops\_cdist_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0917234Z copying torch\include\ATen\ops\_cdist_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0924101Z copying torch\include\ATen\ops\_cdist_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0931128Z copying torch\include\ATen\ops\_cdist_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0937943Z copying torch\include\ATen\ops\_cdist_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0945009Z copying torch\include\ATen\ops\_cdist_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0952669Z copying torch\include\ATen\ops\_cdist_forward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0961099Z copying torch\include\ATen\ops\_cdist_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0968640Z copying torch\include\ATen\ops\_cdist_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0975501Z copying torch\include\ATen\ops\_cdist_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0982590Z copying torch\include\ATen\ops\_cdist_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0989468Z copying torch\include\ATen\ops\_cholesky_solve_helper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.0996606Z copying torch\include\ATen\ops\_cholesky_solve_helper_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1003461Z copying torch\include\ATen\ops\_cholesky_solve_helper_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1010218Z copying torch\include\ATen\ops\_cholesky_solve_helper_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1017035Z copying torch\include\ATen\ops\_cholesky_solve_helper_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1024179Z copying torch\include\ATen\ops\_cholesky_solve_helper_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1030819Z copying torch\include\ATen\ops\_choose_qparams_per_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1042902Z copying torch\include\ATen\ops\_choose_qparams_per_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1049620Z copying torch\include\ATen\ops\_choose_qparams_per_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1056094Z copying torch\include\ATen\ops\_choose_qparams_per_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1062779Z copying torch\include\ATen\ops\_chunk_cat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1069931Z copying torch\include\ATen\ops\_chunk_cat_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1076605Z copying torch\include\ATen\ops\_chunk_cat_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1083335Z copying torch\include\ATen\ops\_chunk_cat_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1089998Z copying torch\include\ATen\ops\_chunk_cat_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1097184Z copying torch\include\ATen\ops\_coalesce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1104073Z copying torch\include\ATen\ops\_coalesced.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1111322Z copying torch\include\ATen\ops\_coalesced_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1118499Z copying torch\include\ATen\ops\_coalesced_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1125367Z copying torch\include\ATen\ops\_coalesced_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1132015Z copying torch\include\ATen\ops\_coalesced_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1139141Z copying torch\include\ATen\ops\_coalesce_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1146044Z copying torch\include\ATen\ops\_coalesce_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1153253Z copying torch\include\ATen\ops\_coalesce_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1160534Z copying torch\include\ATen\ops\_compute_linear_combination.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1167756Z copying torch\include\ATen\ops\_compute_linear_combination_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1174535Z copying torch\include\ATen\ops\_compute_linear_combination_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1186813Z copying torch\include\ATen\ops\_compute_linear_combination_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1193721Z copying torch\include\ATen\ops\_compute_linear_combination_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1200322Z copying torch\include\ATen\ops\_conj.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1206836Z copying torch\include\ATen\ops\_conj_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1218657Z copying torch\include\ATen\ops\_conj_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1226188Z copying torch\include\ATen\ops\_conj_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1233138Z copying torch\include\ATen\ops\_conj_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1240094Z copying torch\include\ATen\ops\_conj_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1246628Z copying torch\include\ATen\ops\_conj_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1253461Z copying torch\include\ATen\ops\_conj_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1260131Z copying torch\include\ATen\ops\_conj_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1267025Z copying torch\include\ATen\ops\_conj_physical.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1274539Z copying torch\include\ATen\ops\_conj_physical_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1281517Z copying torch\include\ATen\ops\_conj_physical_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1288414Z copying torch\include\ATen\ops\_conj_physical_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1295338Z copying torch\include\ATen\ops\_convert_indices_from_coo_to_csr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1303009Z 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-06-01T21:22:08.1309820Z 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-06-01T21:22:08.1316970Z 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-06-01T21:22:08.1323845Z copying torch\include\ATen\ops\_convert_indices_from_coo_to_csr_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1330971Z 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-06-01T21:22:08.1337973Z copying torch\include\ATen\ops\_convert_indices_from_coo_to_csr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1344945Z copying torch\include\ATen\ops\_convert_indices_from_coo_to_csr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1352201Z copying torch\include\ATen\ops\_convert_indices_from_csr_to_coo.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1359804Z 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-06-01T21:22:08.1366727Z 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-06-01T21:22:08.1373964Z 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-06-01T21:22:08.1381100Z copying torch\include\ATen\ops\_convert_indices_from_csr_to_coo_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1388370Z 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-06-01T21:22:08.1395643Z copying torch\include\ATen\ops\_convert_indices_from_csr_to_coo_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1402561Z copying torch\include\ATen\ops\_convert_indices_from_csr_to_coo_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1409345Z copying torch\include\ATen\ops\_convert_weight_to_int4pack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1416641Z copying torch\include\ATen\ops\_convert_weight_to_int4pack_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1423962Z copying torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1431016Z 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-06-01T21:22:08.1438044Z copying torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1445010Z copying torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1452233Z copying torch\include\ATen\ops\_convert_weight_to_int4pack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1459287Z copying torch\include\ATen\ops\_convert_weight_to_int4pack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1466493Z copying torch\include\ATen\ops\_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1479552Z copying torch\include\ATen\ops\_convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1486541Z copying torch\include\ATen\ops\_convolution_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1493940Z copying torch\include\ATen\ops\_convolution_double_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1501166Z copying torch\include\ATen\ops\_convolution_double_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1508323Z copying torch\include\ATen\ops\_convolution_double_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1515506Z copying torch\include\ATen\ops\_convolution_double_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1522173Z copying torch\include\ATen\ops\_convolution_mode.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1529196Z copying torch\include\ATen\ops\_convolution_mode_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1535999Z copying torch\include\ATen\ops\_convolution_mode_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1543097Z copying torch\include\ATen\ops\_convolution_mode_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1549876Z copying torch\include\ATen\ops\_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1556939Z copying torch\include\ATen\ops\_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1564329Z copying torch\include\ATen\ops\_conv_depthwise2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1571233Z copying torch\include\ATen\ops\_conv_depthwise2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1577805Z copying torch\include\ATen\ops\_conv_depthwise2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1584562Z copying torch\include\ATen\ops\_conv_depthwise2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1591219Z copying torch\include\ATen\ops\_copy_from.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1598105Z copying torch\include\ATen\ops\_copy_from_and_resize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1605383Z copying torch\include\ATen\ops\_copy_from_and_resize_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1612184Z copying torch\include\ATen\ops\_copy_from_and_resize_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1618826Z copying torch\include\ATen\ops\_copy_from_and_resize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1626145Z copying torch\include\ATen\ops\_copy_from_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1633408Z copying torch\include\ATen\ops\_copy_from_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1646553Z copying torch\include\ATen\ops\_copy_from_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1649174Z copying torch\include\ATen\ops\_cslt_compress.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1656381Z copying torch\include\ATen\ops\_cslt_compress_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1663332Z copying torch\include\ATen\ops\_cslt_compress_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1669839Z copying torch\include\ATen\ops\_cslt_compress_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1676784Z copying torch\include\ATen\ops\_cslt_sparse_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1684103Z copying torch\include\ATen\ops\_cslt_sparse_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1691212Z copying torch\include\ATen\ops\_cslt_sparse_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1697807Z copying torch\include\ATen\ops\_cslt_sparse_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1705078Z copying torch\include\ATen\ops\_cslt_sparse_mm_search.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1712580Z copying torch\include\ATen\ops\_cslt_sparse_mm_search_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1719257Z copying torch\include\ATen\ops\_cslt_sparse_mm_search_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1726022Z copying torch\include\ATen\ops\_cslt_sparse_mm_search_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1732792Z copying torch\include\ATen\ops\_ctc_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1739935Z copying torch\include\ATen\ops\_ctc_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1747043Z copying torch\include\ATen\ops\_ctc_loss_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1754021Z copying torch\include\ATen\ops\_ctc_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1760977Z copying torch\include\ATen\ops\_ctc_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1767961Z copying torch\include\ATen\ops\_ctc_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1774766Z copying torch\include\ATen\ops\_ctc_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1782010Z copying torch\include\ATen\ops\_ctc_loss_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1788791Z copying torch\include\ATen\ops\_ctc_loss_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1796041Z copying torch\include\ATen\ops\_ctc_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1802956Z copying torch\include\ATen\ops\_ctc_loss_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1809931Z copying torch\include\ATen\ops\_ctc_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1816749Z copying torch\include\ATen\ops\_ctc_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1823870Z copying torch\include\ATen\ops\_cudnn_attention_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1830740Z copying torch\include\ATen\ops\_cudnn_attention_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1837514Z copying torch\include\ATen\ops\_cudnn_attention_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1844524Z copying torch\include\ATen\ops\_cudnn_attention_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1851350Z copying torch\include\ATen\ops\_cudnn_ctc_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1858527Z copying torch\include\ATen\ops\_cudnn_ctc_loss_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1865491Z copying torch\include\ATen\ops\_cudnn_ctc_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1872491Z copying torch\include\ATen\ops\_cudnn_ctc_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1879361Z copying torch\include\ATen\ops\_cudnn_ctc_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1886144Z copying torch\include\ATen\ops\_cudnn_init_dropout_state.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1893446Z copying torch\include\ATen\ops\_cudnn_init_dropout_state_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1900665Z copying torch\include\ATen\ops\_cudnn_init_dropout_state_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1907577Z copying torch\include\ATen\ops\_cudnn_init_dropout_state_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1914381Z copying torch\include\ATen\ops\_cudnn_init_dropout_state_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1921148Z copying torch\include\ATen\ops\_cudnn_rnn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1928233Z copying torch\include\ATen\ops\_cudnn_rnn_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1936111Z copying torch\include\ATen\ops\_cudnn_rnn_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1943103Z copying torch\include\ATen\ops\_cudnn_rnn_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1950068Z copying torch\include\ATen\ops\_cudnn_rnn_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1956918Z copying torch\include\ATen\ops\_cudnn_rnn_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1964890Z copying torch\include\ATen\ops\_cudnn_rnn_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1972256Z copying torch\include\ATen\ops\_cudnn_rnn_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1980001Z copying torch\include\ATen\ops\_cudnn_rnn_flatten_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1987324Z copying torch\include\ATen\ops\_cudnn_rnn_flatten_weight_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.1995113Z copying torch\include\ATen\ops\_cudnn_rnn_flatten_weight_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2002710Z copying torch\include\ATen\ops\_cudnn_rnn_flatten_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2010164Z copying torch\include\ATen\ops\_cudnn_rnn_flatten_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2017696Z copying torch\include\ATen\ops\_cudnn_rnn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2025149Z copying torch\include\ATen\ops\_cudnn_rnn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2032334Z copying torch\include\ATen\ops\_cufft_clear_plan_cache.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2039443Z copying torch\include\ATen\ops\_cufft_clear_plan_cache_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2046242Z copying torch\include\ATen\ops\_cufft_clear_plan_cache_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2052720Z copying torch\include\ATen\ops\_cufft_clear_plan_cache_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2059726Z copying torch\include\ATen\ops\_cufft_get_plan_cache_max_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2067237Z 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-06-01T21:22:08.2074322Z copying torch\include\ATen\ops\_cufft_get_plan_cache_max_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2081057Z copying torch\include\ATen\ops\_cufft_get_plan_cache_max_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2087731Z copying torch\include\ATen\ops\_cufft_get_plan_cache_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2094821Z copying torch\include\ATen\ops\_cufft_get_plan_cache_size_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2101897Z copying torch\include\ATen\ops\_cufft_get_plan_cache_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2108645Z copying torch\include\ATen\ops\_cufft_get_plan_cache_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2115477Z copying torch\include\ATen\ops\_cufft_set_plan_cache_max_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2122526Z 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-06-01T21:22:08.2193498Z copying torch\include\ATen\ops\_cufft_set_plan_cache_max_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2200045Z copying torch\include\ATen\ops\_cufft_set_plan_cache_max_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2207359Z copying torch\include\ATen\ops\_cummax_helper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2214264Z copying torch\include\ATen\ops\_cummax_helper_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2228228Z copying torch\include\ATen\ops\_cummax_helper_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2235076Z copying torch\include\ATen\ops\_cummax_helper_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2241939Z copying torch\include\ATen\ops\_cummax_helper_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2248868Z copying torch\include\ATen\ops\_cummin_helper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2255841Z copying torch\include\ATen\ops\_cummin_helper_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2263088Z copying torch\include\ATen\ops\_cummin_helper_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2270033Z copying torch\include\ATen\ops\_cummin_helper_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2276997Z copying torch\include\ATen\ops\_cummin_helper_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2284009Z copying torch\include\ATen\ops\_debug_has_internal_overlap.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2291007Z copying torch\include\ATen\ops\_debug_has_internal_overlap_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2297719Z copying torch\include\ATen\ops\_debug_has_internal_overlap_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2304380Z copying torch\include\ATen\ops\_debug_has_internal_overlap_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2311598Z copying torch\include\ATen\ops\_dimI.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2317833Z copying torch\include\ATen\ops\_dimI_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2324364Z copying torch\include\ATen\ops\_dimI_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2331007Z copying torch\include\ATen\ops\_dimV.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2337271Z copying torch\include\ATen\ops\_dimV_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2343919Z copying torch\include\ATen\ops\_dimV_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2350802Z copying torch\include\ATen\ops\_dim_arange.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2357851Z copying torch\include\ATen\ops\_dim_arange_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2364641Z copying torch\include\ATen\ops\_dim_arange_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2371209Z copying torch\include\ATen\ops\_dim_arange_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2378034Z copying torch\include\ATen\ops\_dirichlet_grad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2385327Z copying torch\include\ATen\ops\_dirichlet_grad_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2392428Z copying torch\include\ATen\ops\_dirichlet_grad_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2399154Z copying torch\include\ATen\ops\_dirichlet_grad_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2405981Z copying torch\include\ATen\ops\_dirichlet_grad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2413051Z copying torch\include\ATen\ops\_dirichlet_grad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2437814Z copying torch\include\ATen\ops\_dyn_quant_matmul_4bit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2444705Z copying torch\include\ATen\ops\_dyn_quant_matmul_4bit_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2451601Z copying torch\include\ATen\ops\_dyn_quant_matmul_4bit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2458633Z copying torch\include\ATen\ops\_dyn_quant_matmul_4bit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2466417Z copying torch\include\ATen\ops\_dyn_quant_pack_4bit_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2473867Z copying torch\include\ATen\ops\_dyn_quant_pack_4bit_weight_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2481193Z copying torch\include\ATen\ops\_dyn_quant_pack_4bit_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2488407Z copying torch\include\ATen\ops\_dyn_quant_pack_4bit_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2495291Z copying torch\include\ATen\ops\_efficientzerotensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2502859Z copying torch\include\ATen\ops\_efficientzerotensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2509511Z copying torch\include\ATen\ops\_efficientzerotensor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2516797Z copying torch\include\ATen\ops\_efficientzerotensor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2524059Z copying torch\include\ATen\ops\_efficientzerotensor_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2530931Z copying torch\include\ATen\ops\_efficientzerotensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2537768Z copying torch\include\ATen\ops\_efficientzerotensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2545051Z copying torch\include\ATen\ops\_efficient_attention_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2552409Z copying torch\include\ATen\ops\_efficient_attention_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2559515Z copying torch\include\ATen\ops\_efficient_attention_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2567195Z copying torch\include\ATen\ops\_efficient_attention_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2573692Z copying torch\include\ATen\ops\_efficient_attention_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2581073Z copying torch\include\ATen\ops\_efficient_attention_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2588281Z copying torch\include\ATen\ops\_efficient_attention_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2595163Z copying torch\include\ATen\ops\_efficient_attention_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2602439Z copying torch\include\ATen\ops\_embedding_bag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2614964Z copying torch\include\ATen\ops\_embedding_bag_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2622266Z copying torch\include\ATen\ops\_embedding_bag_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2629222Z copying torch\include\ATen\ops\_embedding_bag_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2636226Z copying torch\include\ATen\ops\_embedding_bag_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2643068Z copying torch\include\ATen\ops\_embedding_bag_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2650087Z copying torch\include\ATen\ops\_embedding_bag_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2657395Z copying torch\include\ATen\ops\_embedding_bag_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2664371Z copying torch\include\ATen\ops\_embedding_bag_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2671253Z copying torch\include\ATen\ops\_embedding_bag_dense_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2678853Z copying torch\include\ATen\ops\_embedding_bag_dense_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2685768Z copying torch\include\ATen\ops\_embedding_bag_dense_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2693126Z copying torch\include\ATen\ops\_embedding_bag_dense_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2701001Z copying torch\include\ATen\ops\_embedding_bag_dense_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2707878Z copying torch\include\ATen\ops\_embedding_bag_dense_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2715049Z copying torch\include\ATen\ops\_embedding_bag_forward_only.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2722581Z copying torch\include\ATen\ops\_embedding_bag_forward_only_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2729539Z copying torch\include\ATen\ops\_embedding_bag_forward_only_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2736949Z copying torch\include\ATen\ops\_embedding_bag_forward_only_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2744150Z copying torch\include\ATen\ops\_embedding_bag_forward_only_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2751062Z copying torch\include\ATen\ops\_embedding_bag_forward_only_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2758008Z copying torch\include\ATen\ops\_embedding_bag_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2766095Z copying torch\include\ATen\ops\_embedding_bag_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2773305Z copying torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2782666Z 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-06-01T21:22:08.2789975Z 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-06-01T21:22:08.2798257Z 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-06-01T21:22:08.2805938Z copying torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2814156Z copying torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2822036Z copying torch\include\ATen\ops\_embedding_bag_sparse_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2830338Z copying torch\include\ATen\ops\_embedding_bag_sparse_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2838152Z copying torch\include\ATen\ops\_embedding_bag_sparse_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2846031Z copying torch\include\ATen\ops\_embedding_bag_sparse_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2853065Z copying torch\include\ATen\ops\_empty_affine_quantized.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2860922Z copying torch\include\ATen\ops\_empty_affine_quantized_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2867990Z copying torch\include\ATen\ops\_empty_affine_quantized_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2874941Z copying torch\include\ATen\ops\_empty_affine_quantized_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2882385Z copying torch\include\ATen\ops\_empty_affine_quantized_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2889528Z copying torch\include\ATen\ops\_empty_per_channel_affine_quantized.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2897000Z copying torch\include\ATen\ops\_empty_per_channel_affine_quantized_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2904463Z copying torch\include\ATen\ops\_empty_per_channel_affine_quantized_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2911330Z copying torch\include\ATen\ops\_empty_per_channel_affine_quantized_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2918905Z copying torch\include\ATen\ops\_empty_per_channel_affine_quantized_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2925538Z copying torch\include\ATen\ops\_euclidean_dist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2932804Z copying torch\include\ATen\ops\_euclidean_dist_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2939681Z copying torch\include\ATen\ops\_euclidean_dist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2946552Z copying torch\include\ATen\ops\_euclidean_dist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2953850Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2960935Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.2967955Z 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-06-01T21:22:08.2975359Z 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-06-01T21:22:08.2983279Z 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-06-01T21:22:08.2995368Z 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-06-01T21:22:08.3002857Z 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-06-01T21:22:08.3009718Z 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-06-01T21:22:08.3016885Z 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-06-01T21:22:08.3024030Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3035129Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3042440Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3049541Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3057177Z 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-06-01T21:22:08.3064532Z 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-06-01T21:22:08.3077714Z 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-06-01T21:22:08.3086033Z 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-06-01T21:22:08.3094338Z 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-06-01T21:22:08.3102234Z 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-06-01T21:22:08.3110286Z 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-06-01T21:22:08.3118759Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3126843Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3133848Z 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-06-01T21:22:08.3142205Z 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-06-01T21:22:08.3149155Z 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-06-01T21:22:08.3156669Z 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-06-01T21:22:08.3163947Z 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-06-01T21:22:08.3171020Z 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-06-01T21:22:08.3177790Z copying torch\include\ATen\ops\_fft_c2c.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3184401Z copying torch\include\ATen\ops\_fft_c2c_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3197223Z copying torch\include\ATen\ops\_fft_c2c_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3204164Z copying torch\include\ATen\ops\_fft_c2c_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3211051Z copying torch\include\ATen\ops\_fft_c2c_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3217819Z copying torch\include\ATen\ops\_fft_c2r.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3224428Z copying torch\include\ATen\ops\_fft_c2r_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3232036Z copying torch\include\ATen\ops\_fft_c2r_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3238831Z copying torch\include\ATen\ops\_fft_c2r_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3245689Z copying torch\include\ATen\ops\_fft_c2r_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3252718Z copying torch\include\ATen\ops\_fft_r2c.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3259344Z copying torch\include\ATen\ops\_fft_r2c_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3266238Z copying torch\include\ATen\ops\_fft_r2c_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3272789Z copying torch\include\ATen\ops\_fft_r2c_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3279876Z copying torch\include\ATen\ops\_fft_r2c_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3286762Z copying torch\include\ATen\ops\_fill_mem_eff_dropout_mask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3293421Z copying torch\include\ATen\ops\_fill_mem_eff_dropout_mask_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3300297Z copying torch\include\ATen\ops\_fill_mem_eff_dropout_mask_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3307333Z copying torch\include\ATen\ops\_fill_mem_eff_dropout_mask_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3314340Z copying torch\include\ATen\ops\_fill_mem_eff_dropout_mask_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3321356Z copying torch\include\ATen\ops\_flash_attention_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3328324Z copying torch\include\ATen\ops\_flash_attention_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3335165Z copying torch\include\ATen\ops\_flash_attention_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3342490Z copying torch\include\ATen\ops\_flash_attention_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3349461Z copying torch\include\ATen\ops\_flash_attention_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3356834Z copying torch\include\ATen\ops\_flash_attention_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3363710Z copying torch\include\ATen\ops\_flash_attention_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3393623Z copying torch\include\ATen\ops\_flash_attention_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3400534Z copying torch\include\ATen\ops\_foobar.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3407736Z copying torch\include\ATen\ops\_foobar_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3414442Z copying torch\include\ATen\ops\_foobar_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3421570Z copying torch\include\ATen\ops\_foobar_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3432837Z copying torch\include\ATen\ops\_foobar_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3440117Z copying torch\include\ATen\ops\_foreach_abs.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3447123Z copying torch\include\ATen\ops\_foreach_abs_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3454164Z copying torch\include\ATen\ops\_foreach_abs_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3461223Z copying torch\include\ATen\ops\_foreach_abs_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3468109Z copying torch\include\ATen\ops\_foreach_abs_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3476159Z copying torch\include\ATen\ops\_foreach_acos.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3484632Z copying torch\include\ATen\ops\_foreach_acos_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3491493Z copying torch\include\ATen\ops\_foreach_acos_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3499003Z copying torch\include\ATen\ops\_foreach_acos_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3506292Z copying torch\include\ATen\ops\_foreach_acos_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3513274Z copying torch\include\ATen\ops\_foreach_add.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3520593Z copying torch\include\ATen\ops\_foreach_addcdiv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3528216Z copying torch\include\ATen\ops\_foreach_addcdiv_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3535770Z copying torch\include\ATen\ops\_foreach_addcdiv_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3543603Z copying torch\include\ATen\ops\_foreach_addcdiv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3550709Z copying torch\include\ATen\ops\_foreach_addcdiv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3557771Z copying torch\include\ATen\ops\_foreach_addcmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3565417Z copying torch\include\ATen\ops\_foreach_addcmul_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3572341Z copying torch\include\ATen\ops\_foreach_addcmul_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3579613Z copying torch\include\ATen\ops\_foreach_addcmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3587153Z copying torch\include\ATen\ops\_foreach_addcmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3594913Z copying torch\include\ATen\ops\_foreach_add_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3602519Z copying torch\include\ATen\ops\_foreach_add_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3609642Z copying torch\include\ATen\ops\_foreach_add_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3616601Z copying torch\include\ATen\ops\_foreach_add_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3624011Z copying torch\include\ATen\ops\_foreach_asin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3631367Z copying torch\include\ATen\ops\_foreach_asin_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3638408Z copying torch\include\ATen\ops\_foreach_asin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3645314Z copying torch\include\ATen\ops\_foreach_asin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3657358Z copying torch\include\ATen\ops\_foreach_asin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3664430Z copying torch\include\ATen\ops\_foreach_atan.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3671623Z copying torch\include\ATen\ops\_foreach_atan_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3678660Z copying torch\include\ATen\ops\_foreach_atan_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3686327Z copying torch\include\ATen\ops\_foreach_atan_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3693263Z copying torch\include\ATen\ops\_foreach_atan_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3700854Z copying torch\include\ATen\ops\_foreach_ceil.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3708164Z copying torch\include\ATen\ops\_foreach_ceil_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3715209Z copying torch\include\ATen\ops\_foreach_ceil_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3722133Z copying torch\include\ATen\ops\_foreach_ceil_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3729683Z copying torch\include\ATen\ops\_foreach_ceil_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3736678Z copying torch\include\ATen\ops\_foreach_clamp_max.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3744139Z copying torch\include\ATen\ops\_foreach_clamp_max_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3751078Z copying torch\include\ATen\ops\_foreach_clamp_max_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3758158Z copying torch\include\ATen\ops\_foreach_clamp_max_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3772511Z copying torch\include\ATen\ops\_foreach_clamp_max_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3779450Z copying torch\include\ATen\ops\_foreach_clamp_min.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3786953Z copying torch\include\ATen\ops\_foreach_clamp_min_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3793968Z copying torch\include\ATen\ops\_foreach_clamp_min_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3800793Z copying torch\include\ATen\ops\_foreach_clamp_min_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3807919Z copying torch\include\ATen\ops\_foreach_clamp_min_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3814931Z copying torch\include\ATen\ops\_foreach_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3822571Z copying torch\include\ATen\ops\_foreach_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3829575Z copying torch\include\ATen\ops\_foreach_copy_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3836531Z copying torch\include\ATen\ops\_foreach_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3849980Z copying torch\include\ATen\ops\_foreach_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3857091Z copying torch\include\ATen\ops\_foreach_cos.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3864087Z copying torch\include\ATen\ops\_foreach_cosh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3871237Z copying torch\include\ATen\ops\_foreach_cosh_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3878097Z copying torch\include\ATen\ops\_foreach_cosh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3885304Z copying torch\include\ATen\ops\_foreach_cosh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3892340Z copying torch\include\ATen\ops\_foreach_cosh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3899392Z copying torch\include\ATen\ops\_foreach_cos_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3906528Z copying torch\include\ATen\ops\_foreach_cos_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3913636Z copying torch\include\ATen\ops\_foreach_cos_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3920797Z copying torch\include\ATen\ops\_foreach_cos_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3927939Z copying torch\include\ATen\ops\_foreach_div.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3935552Z copying torch\include\ATen\ops\_foreach_div_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3942849Z copying torch\include\ATen\ops\_foreach_div_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3950507Z copying torch\include\ATen\ops\_foreach_div_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3957377Z copying torch\include\ATen\ops\_foreach_div_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3964711Z copying torch\include\ATen\ops\_foreach_erf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3972005Z copying torch\include\ATen\ops\_foreach_erfc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3979627Z copying torch\include\ATen\ops\_foreach_erfc_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3986907Z copying torch\include\ATen\ops\_foreach_erfc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.3999681Z copying torch\include\ATen\ops\_foreach_erfc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4006756Z copying torch\include\ATen\ops\_foreach_erfc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4014102Z copying torch\include\ATen\ops\_foreach_erf_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4021034Z copying torch\include\ATen\ops\_foreach_erf_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4027915Z copying torch\include\ATen\ops\_foreach_erf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4034784Z copying torch\include\ATen\ops\_foreach_erf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4041978Z copying torch\include\ATen\ops\_foreach_exp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4049211Z copying torch\include\ATen\ops\_foreach_expm1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4056581Z copying torch\include\ATen\ops\_foreach_expm1_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4063805Z copying torch\include\ATen\ops\_foreach_expm1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4070941Z copying torch\include\ATen\ops\_foreach_expm1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4078030Z copying torch\include\ATen\ops\_foreach_expm1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4085232Z copying torch\include\ATen\ops\_foreach_exp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4092150Z copying torch\include\ATen\ops\_foreach_exp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4099239Z copying torch\include\ATen\ops\_foreach_exp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4106035Z copying torch\include\ATen\ops\_foreach_exp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4113088Z copying torch\include\ATen\ops\_foreach_floor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4120403Z copying torch\include\ATen\ops\_foreach_floor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4127315Z copying torch\include\ATen\ops\_foreach_floor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4134130Z copying torch\include\ATen\ops\_foreach_floor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4147122Z copying torch\include\ATen\ops\_foreach_floor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4154288Z copying torch\include\ATen\ops\_foreach_frac.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4161515Z copying torch\include\ATen\ops\_foreach_frac_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4168125Z copying torch\include\ATen\ops\_foreach_frac_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4175007Z copying torch\include\ATen\ops\_foreach_frac_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4186768Z copying torch\include\ATen\ops\_foreach_frac_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4193581Z copying torch\include\ATen\ops\_foreach_lerp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4201300Z copying torch\include\ATen\ops\_foreach_lerp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4208073Z copying torch\include\ATen\ops\_foreach_lerp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4215013Z copying torch\include\ATen\ops\_foreach_lerp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4227991Z copying torch\include\ATen\ops\_foreach_lerp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4234976Z copying torch\include\ATen\ops\_foreach_lgamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4242135Z copying torch\include\ATen\ops\_foreach_lgamma_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4249522Z copying torch\include\ATen\ops\_foreach_lgamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4256424Z copying torch\include\ATen\ops\_foreach_lgamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4263215Z copying torch\include\ATen\ops\_foreach_lgamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4270028Z copying torch\include\ATen\ops\_foreach_log.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4277092Z copying torch\include\ATen\ops\_foreach_log10.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4284689Z copying torch\include\ATen\ops\_foreach_log10_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4292105Z copying torch\include\ATen\ops\_foreach_log10_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4305020Z copying torch\include\ATen\ops\_foreach_log10_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4312418Z copying torch\include\ATen\ops\_foreach_log10_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4319679Z copying torch\include\ATen\ops\_foreach_log1p.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4327005Z copying torch\include\ATen\ops\_foreach_log1p_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4334364Z copying torch\include\ATen\ops\_foreach_log1p_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4345573Z copying torch\include\ATen\ops\_foreach_log1p_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4352753Z copying torch\include\ATen\ops\_foreach_log1p_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4360045Z copying torch\include\ATen\ops\_foreach_log2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4367377Z copying torch\include\ATen\ops\_foreach_log2_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4374668Z copying torch\include\ATen\ops\_foreach_log2_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4382423Z copying torch\include\ATen\ops\_foreach_log2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4389173Z copying torch\include\ATen\ops\_foreach_log2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4413081Z copying torch\include\ATen\ops\_foreach_log_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4420140Z copying torch\include\ATen\ops\_foreach_log_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4427340Z copying torch\include\ATen\ops\_foreach_log_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4434655Z copying torch\include\ATen\ops\_foreach_log_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4441807Z copying torch\include\ATen\ops\_foreach_max.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4448776Z copying torch\include\ATen\ops\_foreach_maximum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4456395Z copying torch\include\ATen\ops\_foreach_maximum_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4463733Z copying torch\include\ATen\ops\_foreach_maximum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4476868Z copying torch\include\ATen\ops\_foreach_maximum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4484943Z copying torch\include\ATen\ops\_foreach_maximum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4493394Z copying torch\include\ATen\ops\_foreach_max_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4500822Z copying torch\include\ATen\ops\_foreach_max_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4507697Z copying torch\include\ATen\ops\_foreach_max_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4520557Z copying torch\include\ATen\ops\_foreach_max_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4527857Z copying torch\include\ATen\ops\_foreach_minimum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4535077Z copying torch\include\ATen\ops\_foreach_minimum_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4542887Z copying torch\include\ATen\ops\_foreach_minimum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4550050Z copying torch\include\ATen\ops\_foreach_minimum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4557162Z copying torch\include\ATen\ops\_foreach_minimum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4564233Z copying torch\include\ATen\ops\_foreach_mul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4571927Z copying torch\include\ATen\ops\_foreach_mul_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4578855Z copying torch\include\ATen\ops\_foreach_mul_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4586276Z copying torch\include\ATen\ops\_foreach_mul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4598774Z copying torch\include\ATen\ops\_foreach_mul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4605683Z copying torch\include\ATen\ops\_foreach_neg.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4613432Z copying torch\include\ATen\ops\_foreach_neg_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4620815Z copying torch\include\ATen\ops\_foreach_neg_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4627655Z copying torch\include\ATen\ops\_foreach_neg_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4634646Z copying torch\include\ATen\ops\_foreach_neg_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4642506Z copying torch\include\ATen\ops\_foreach_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4650110Z copying torch\include\ATen\ops\_foreach_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4657106Z copying torch\include\ATen\ops\_foreach_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4664214Z copying torch\include\ATen\ops\_foreach_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4677692Z copying torch\include\ATen\ops\_foreach_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4684982Z copying torch\include\ATen\ops\_foreach_pow.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4692307Z copying torch\include\ATen\ops\_foreach_pow_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4699469Z copying torch\include\ATen\ops\_foreach_pow_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4706731Z copying torch\include\ATen\ops\_foreach_pow_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4718634Z copying torch\include\ATen\ops\_foreach_pow_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4725636Z copying torch\include\ATen\ops\_foreach_reciprocal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4733399Z copying torch\include\ATen\ops\_foreach_reciprocal_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4740471Z copying torch\include\ATen\ops\_foreach_reciprocal_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4747852Z copying torch\include\ATen\ops\_foreach_reciprocal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4755128Z copying torch\include\ATen\ops\_foreach_reciprocal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4762049Z copying torch\include\ATen\ops\_foreach_round.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4769678Z copying torch\include\ATen\ops\_foreach_round_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4776874Z copying torch\include\ATen\ops\_foreach_round_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4783910Z copying torch\include\ATen\ops\_foreach_round_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4791420Z copying torch\include\ATen\ops\_foreach_round_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4798836Z copying torch\include\ATen\ops\_foreach_rsqrt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4806244Z copying torch\include\ATen\ops\_foreach_rsqrt_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4813203Z copying torch\include\ATen\ops\_foreach_rsqrt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4820470Z copying torch\include\ATen\ops\_foreach_rsqrt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4832683Z copying torch\include\ATen\ops\_foreach_rsqrt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4839841Z copying torch\include\ATen\ops\_foreach_sigmoid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4847236Z copying torch\include\ATen\ops\_foreach_sigmoid_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4854680Z copying torch\include\ATen\ops\_foreach_sigmoid_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4862030Z copying torch\include\ATen\ops\_foreach_sigmoid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4873629Z copying torch\include\ATen\ops\_foreach_sigmoid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4880755Z copying torch\include\ATen\ops\_foreach_sign.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4909263Z copying torch\include\ATen\ops\_foreach_sign_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4916534Z copying torch\include\ATen\ops\_foreach_sign_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4923791Z copying torch\include\ATen\ops\_foreach_sign_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4930968Z copying torch\include\ATen\ops\_foreach_sign_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4938420Z copying torch\include\ATen\ops\_foreach_sin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4945724Z copying torch\include\ATen\ops\_foreach_sinh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4953201Z copying torch\include\ATen\ops\_foreach_sinh_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4960268Z copying torch\include\ATen\ops\_foreach_sinh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4972838Z copying torch\include\ATen\ops\_foreach_sinh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.4980451Z copying torch\include\ATen\ops\_foreach_sinh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5024782Z copying torch\include\ATen\ops\_foreach_sin_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5031496Z copying torch\include\ATen\ops\_foreach_sin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5038809Z copying torch\include\ATen\ops\_foreach_sin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5050670Z copying torch\include\ATen\ops\_foreach_sin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5057609Z copying torch\include\ATen\ops\_foreach_sqrt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5065888Z copying torch\include\ATen\ops\_foreach_sqrt_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5072984Z copying torch\include\ATen\ops\_foreach_sqrt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5080453Z copying torch\include\ATen\ops\_foreach_sqrt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5087504Z copying torch\include\ATen\ops\_foreach_sqrt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5094428Z copying torch\include\ATen\ops\_foreach_sub.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5102188Z copying torch\include\ATen\ops\_foreach_sub_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5109147Z copying torch\include\ATen\ops\_foreach_sub_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5116330Z copying torch\include\ATen\ops\_foreach_sub_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5129513Z copying torch\include\ATen\ops\_foreach_sub_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5136560Z copying torch\include\ATen\ops\_foreach_tan.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5143836Z copying torch\include\ATen\ops\_foreach_tanh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5151127Z copying torch\include\ATen\ops\_foreach_tanh_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5158031Z copying torch\include\ATen\ops\_foreach_tanh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5169379Z copying torch\include\ATen\ops\_foreach_tanh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5176462Z copying torch\include\ATen\ops\_foreach_tanh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5184156Z copying torch\include\ATen\ops\_foreach_tan_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5191234Z copying torch\include\ATen\ops\_foreach_tan_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5198415Z copying torch\include\ATen\ops\_foreach_tan_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5210425Z copying torch\include\ATen\ops\_foreach_tan_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5217402Z copying torch\include\ATen\ops\_foreach_trunc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5224742Z copying torch\include\ATen\ops\_foreach_trunc_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5231610Z copying torch\include\ATen\ops\_foreach_trunc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5238731Z copying torch\include\ATen\ops\_foreach_trunc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5245955Z copying torch\include\ATen\ops\_foreach_trunc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5252883Z copying torch\include\ATen\ops\_foreach_zero.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5269623Z copying torch\include\ATen\ops\_foreach_zero_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5270537Z copying torch\include\ATen\ops\_foreach_zero_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5274210Z copying torch\include\ATen\ops\_foreach_zero_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5285870Z copying torch\include\ATen\ops\_foreach_zero_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5293033Z copying torch\include\ATen\ops\_functional_assert_async.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5300198Z copying torch\include\ATen\ops\_functional_assert_async_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5307225Z copying torch\include\ATen\ops\_functional_assert_async_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5313878Z copying torch\include\ATen\ops\_functional_assert_async_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5321090Z copying torch\include\ATen\ops\_functional_assert_scalar.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5328222Z copying torch\include\ATen\ops\_functional_assert_scalar_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5335172Z copying torch\include\ATen\ops\_functional_assert_scalar_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5342870Z copying torch\include\ATen\ops\_functional_assert_scalar_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5349592Z copying torch\include\ATen\ops\_functional_sym_constrain_range.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5356895Z copying torch\include\ATen\ops\_functional_sym_constrain_range_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5364639Z copying torch\include\ATen\ops\_functional_sym_constrain_range_for_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5371586Z 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-06-01T21:22:08.5378921Z copying torch\include\ATen\ops\_functional_sym_constrain_range_for_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5386211Z copying torch\include\ATen\ops\_functional_sym_constrain_range_for_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5398359Z copying torch\include\ATen\ops\_functional_sym_constrain_range_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5405769Z copying torch\include\ATen\ops\_functional_sym_constrain_range_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5412624Z copying torch\include\ATen\ops\_fused_adagrad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5419613Z copying torch\include\ATen\ops\_fused_adagrad_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5426634Z copying torch\include\ATen\ops\_fused_adagrad_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5437998Z copying torch\include\ATen\ops\_fused_adagrad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5445123Z copying torch\include\ATen\ops\_fused_adagrad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5452342Z copying torch\include\ATen\ops\_fused_adam.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5459312Z copying torch\include\ATen\ops\_fused_adamw.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5467179Z copying torch\include\ATen\ops\_fused_adamw_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5478489Z copying torch\include\ATen\ops\_fused_adamw_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5485371Z copying torch\include\ATen\ops\_fused_adamw_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5492288Z copying torch\include\ATen\ops\_fused_adamw_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5499634Z copying torch\include\ATen\ops\_fused_adamw_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5506848Z copying torch\include\ATen\ops\_fused_adam_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5519053Z copying torch\include\ATen\ops\_fused_adam_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5526103Z copying torch\include\ATen\ops\_fused_adam_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5533194Z copying torch\include\ATen\ops\_fused_adam_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5540568Z copying torch\include\ATen\ops\_fused_adam_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5547374Z copying torch\include\ATen\ops\_fused_dropout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5554788Z copying torch\include\ATen\ops\_fused_dropout_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5561533Z copying torch\include\ATen\ops\_fused_dropout_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5568709Z copying torch\include\ATen\ops\_fused_dropout_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5575742Z copying torch\include\ATen\ops\_fused_dropout_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5582817Z copying torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5590334Z 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-06-01T21:22:08.5597429Z 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-06-01T21:22:08.5604633Z 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-06-01T21:22:08.5611484Z copying torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5618648Z copying torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5625599Z copying torch\include\ATen\ops\_fused_rms_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5632866Z copying torch\include\ATen\ops\_fused_rms_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5639413Z copying torch\include\ATen\ops\_fused_rms_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5646429Z copying torch\include\ATen\ops\_fused_sdp_choice.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5653631Z copying torch\include\ATen\ops\_fused_sdp_choice_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5660813Z copying torch\include\ATen\ops\_fused_sdp_choice_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5668168Z copying torch\include\ATen\ops\_fused_sdp_choice_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5674997Z copying torch\include\ATen\ops\_fused_sdp_choice_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5682438Z copying torch\include\ATen\ops\_fused_sdp_choice_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5689571Z copying torch\include\ATen\ops\_fused_sgd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5703221Z copying torch\include\ATen\ops\_fused_sgd_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5710067Z copying torch\include\ATen\ops\_fused_sgd_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5717140Z copying torch\include\ATen\ops\_fused_sgd_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5724152Z copying torch\include\ATen\ops\_fused_sgd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5730830Z copying torch\include\ATen\ops\_fused_sgd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5743559Z copying torch\include\ATen\ops\_fw_primal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5750819Z copying torch\include\ATen\ops\_fw_primal_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5757008Z copying torch\include\ATen\ops\_fw_primal_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5764201Z copying torch\include\ATen\ops\_fw_primal_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5771055Z copying torch\include\ATen\ops\_fw_primal_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5778242Z copying torch\include\ATen\ops\_fw_primal_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5785805Z copying torch\include\ATen\ops\_fw_primal_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5792482Z copying torch\include\ATen\ops\_fw_primal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5799349Z copying torch\include\ATen\ops\_fw_primal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5806450Z copying torch\include\ATen\ops\_gather_sparse_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5819288Z copying torch\include\ATen\ops\_gather_sparse_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5826391Z copying torch\include\ATen\ops\_gather_sparse_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5833651Z copying torch\include\ATen\ops\_gather_sparse_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5840445Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5847771Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5854989Z 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-06-01T21:22:08.5861928Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5869012Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5876111Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5883069Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5889906Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5896828Z copying torch\include\ATen\ops\_grouped_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5903950Z copying torch\include\ATen\ops\_grouped_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5911083Z copying torch\include\ATen\ops\_grouped_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5918053Z copying torch\include\ATen\ops\_grouped_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5925005Z copying torch\include\ATen\ops\_has_compatible_shallow_copy_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5932276Z copying torch\include\ATen\ops\_has_compatible_shallow_copy_type_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5939309Z copying torch\include\ATen\ops\_has_compatible_shallow_copy_type_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5946367Z copying torch\include\ATen\ops\_has_compatible_shallow_copy_type_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5954100Z copying torch\include\ATen\ops\_has_same_storage_numel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5961484Z copying torch\include\ATen\ops\_has_same_storage_numel_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5969317Z copying torch\include\ATen\ops\_has_same_storage_numel_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5975617Z copying torch\include\ATen\ops\_has_same_storage_numel_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5982920Z copying torch\include\ATen\ops\_histogramdd_bin_edges.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.5990944Z copying torch\include\ATen\ops\_histogramdd_bin_edges_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6003921Z copying torch\include\ATen\ops\_histogramdd_bin_edges_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6011403Z copying torch\include\ATen\ops\_histogramdd_bin_edges_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6019001Z copying torch\include\ATen\ops\_histogramdd_bin_edges_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6026790Z copying torch\include\ATen\ops\_histogramdd_from_bin_cts.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6034897Z copying torch\include\ATen\ops\_histogramdd_from_bin_cts_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6042047Z copying torch\include\ATen\ops\_histogramdd_from_bin_cts_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6048884Z copying torch\include\ATen\ops\_histogramdd_from_bin_cts_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6056030Z copying torch\include\ATen\ops\_histogramdd_from_bin_cts_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6062858Z copying torch\include\ATen\ops\_histogramdd_from_bin_tensors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6070044Z copying torch\include\ATen\ops\_histogramdd_from_bin_tensors_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6077016Z copying torch\include\ATen\ops\_histogramdd_from_bin_tensors_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6084361Z copying torch\include\ATen\ops\_histogramdd_from_bin_tensors_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6091567Z copying torch\include\ATen\ops\_histogramdd_from_bin_tensors_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6098476Z copying torch\include\ATen\ops\_index_put_impl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6105614Z copying torch\include\ATen\ops\_index_put_impl_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6112851Z copying torch\include\ATen\ops\_index_put_impl_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6119816Z copying torch\include\ATen\ops\_index_put_impl_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6127225Z copying torch\include\ATen\ops\_index_put_impl_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6134381Z copying torch\include\ATen\ops\_index_put_impl_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6141590Z copying torch\include\ATen\ops\_index_put_impl_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6148316Z copying torch\include\ATen\ops\_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6155062Z copying torch\include\ATen\ops\_indices_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6162218Z copying torch\include\ATen\ops\_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6169627Z copying torch\include\ATen\ops\_indices_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6176400Z copying torch\include\ATen\ops\_indices_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6189038Z copying torch\include\ATen\ops\_indices_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6195992Z copying torch\include\ATen\ops\_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6202692Z copying torch\include\ATen\ops\_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6209828Z copying torch\include\ATen\ops\_int_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6216311Z copying torch\include\ATen\ops\_int_mm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6227769Z copying torch\include\ATen\ops\_int_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6234845Z copying torch\include\ATen\ops\_int_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6241948Z copying torch\include\ATen\ops\_int_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6248880Z copying torch\include\ATen\ops\_is_all_true.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6256615Z copying torch\include\ATen\ops\_is_all_true_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6263682Z copying torch\include\ATen\ops\_is_all_true_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6270257Z copying torch\include\ATen\ops\_is_all_true_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6276994Z copying torch\include\ATen\ops\_is_any_true.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6283986Z copying torch\include\ATen\ops\_is_any_true_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6291099Z copying torch\include\ATen\ops\_is_any_true_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6297732Z copying torch\include\ATen\ops\_is_any_true_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6304736Z copying torch\include\ATen\ops\_is_zerotensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6312275Z copying torch\include\ATen\ops\_is_zerotensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6318972Z copying torch\include\ATen\ops\_is_zerotensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6325612Z copying torch\include\ATen\ops\_is_zerotensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6337906Z copying torch\include\ATen\ops\_jagged_to_padded_dense_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6345308Z copying torch\include\ATen\ops\_jagged_to_padded_dense_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6352715Z copying torch\include\ATen\ops\_jagged_to_padded_dense_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6359781Z copying torch\include\ATen\ops\_jagged_to_padded_dense_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6366881Z copying torch\include\ATen\ops\_jagged_to_padded_dense_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6374152Z copying torch\include\ATen\ops\_lazy_clone.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6381407Z copying torch\include\ATen\ops\_lazy_clone_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6388688Z copying torch\include\ATen\ops\_lazy_clone_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6395298Z copying torch\include\ATen\ops\_lazy_clone_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6402654Z copying torch\include\ATen\ops\_linalg_check_errors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6414637Z copying torch\include\ATen\ops\_linalg_check_errors_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6421672Z copying torch\include\ATen\ops\_linalg_check_errors_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6428256Z copying torch\include\ATen\ops\_linalg_check_errors_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6456056Z copying torch\include\ATen\ops\_linalg_det.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6463929Z copying torch\include\ATen\ops\_linalg_det_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6470754Z copying torch\include\ATen\ops\_linalg_det_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6477934Z copying torch\include\ATen\ops\_linalg_det_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6485082Z copying torch\include\ATen\ops\_linalg_det_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6492243Z copying torch\include\ATen\ops\_linalg_det_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6499024Z copying torch\include\ATen\ops\_linalg_det_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6506638Z copying torch\include\ATen\ops\_linalg_det_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6514609Z copying torch\include\ATen\ops\_linalg_eigh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6523453Z copying torch\include\ATen\ops\_linalg_eigh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6530774Z copying torch\include\ATen\ops\_linalg_eigh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6538318Z copying torch\include\ATen\ops\_linalg_eigh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6546439Z copying torch\include\ATen\ops\_linalg_eigh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6553876Z copying torch\include\ATen\ops\_linalg_eigh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6561434Z copying torch\include\ATen\ops\_linalg_eigh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6568679Z copying torch\include\ATen\ops\_linalg_eigh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6575745Z copying torch\include\ATen\ops\_linalg_eigvals.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6583275Z copying torch\include\ATen\ops\_linalg_eigvals_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6590244Z copying torch\include\ATen\ops\_linalg_eigvals_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6597033Z copying torch\include\ATen\ops\_linalg_eigvals_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6603783Z copying torch\include\ATen\ops\_linalg_eigvals_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6610869Z copying torch\include\ATen\ops\_linalg_slogdet.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6623632Z copying torch\include\ATen\ops\_linalg_slogdet_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6630295Z copying torch\include\ATen\ops\_linalg_slogdet_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6637297Z copying torch\include\ATen\ops\_linalg_slogdet_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6644444Z copying torch\include\ATen\ops\_linalg_slogdet_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6651755Z copying torch\include\ATen\ops\_linalg_slogdet_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6663638Z copying torch\include\ATen\ops\_linalg_slogdet_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6670848Z copying torch\include\ATen\ops\_linalg_slogdet_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6678007Z copying torch\include\ATen\ops\_linalg_solve_ex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6685409Z copying torch\include\ATen\ops\_linalg_solve_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6692075Z copying torch\include\ATen\ops\_linalg_solve_ex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6698833Z copying torch\include\ATen\ops\_linalg_solve_ex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6705798Z copying torch\include\ATen\ops\_linalg_solve_ex_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6712852Z copying torch\include\ATen\ops\_linalg_solve_ex_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6720027Z copying torch\include\ATen\ops\_linalg_solve_ex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6727475Z copying torch\include\ATen\ops\_linalg_solve_ex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6734546Z copying torch\include\ATen\ops\_linalg_svd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6741918Z copying torch\include\ATen\ops\_linalg_svd_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6748822Z copying torch\include\ATen\ops\_linalg_svd_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6755729Z copying torch\include\ATen\ops\_linalg_svd_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6762459Z copying torch\include\ATen\ops\_linalg_svd_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6775039Z copying torch\include\ATen\ops\_linalg_svd_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6782055Z copying torch\include\ATen\ops\_linalg_svd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6788995Z copying torch\include\ATen\ops\_linalg_svd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6796492Z copying torch\include\ATen\ops\_local_scalar_dense.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6804010Z copying torch\include\ATen\ops\_local_scalar_dense_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6815528Z copying torch\include\ATen\ops\_local_scalar_dense_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6822915Z copying torch\include\ATen\ops\_local_scalar_dense_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6830376Z copying torch\include\ATen\ops\_local_scalar_dense_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6836794Z copying torch\include\ATen\ops\_logcumsumexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6843672Z copying torch\include\ATen\ops\_logcumsumexp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6850845Z copying torch\include\ATen\ops\_logcumsumexp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6857747Z copying torch\include\ATen\ops\_logcumsumexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6864695Z copying torch\include\ATen\ops\_logcumsumexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6871779Z copying torch\include\ATen\ops\_log_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6878734Z copying torch\include\ATen\ops\_log_softmax_backward_data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6886058Z copying torch\include\ATen\ops\_log_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6893136Z copying torch\include\ATen\ops\_log_softmax_backward_data_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6900690Z copying torch\include\ATen\ops\_log_softmax_backward_data_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6907690Z copying torch\include\ATen\ops\_log_softmax_backward_data_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6915359Z copying torch\include\ATen\ops\_log_softmax_backward_data_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6922269Z copying torch\include\ATen\ops\_log_softmax_backward_data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6929113Z copying torch\include\ATen\ops\_log_softmax_backward_data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6936366Z copying torch\include\ATen\ops\_log_softmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6943223Z copying torch\include\ATen\ops\_log_softmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6950347Z copying torch\include\ATen\ops\_log_softmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6962148Z copying torch\include\ATen\ops\_log_softmax_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6969294Z copying torch\include\ATen\ops\_log_softmax_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6976259Z copying torch\include\ATen\ops\_log_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6983365Z copying torch\include\ATen\ops\_log_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6990069Z copying torch\include\ATen\ops\_lstm_mps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.6998558Z copying torch\include\ATen\ops\_lstm_mps_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7006348Z copying torch\include\ATen\ops\_lstm_mps_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7014210Z copying torch\include\ATen\ops\_lstm_mps_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7021260Z copying torch\include\ATen\ops\_lu_with_info.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7028999Z copying torch\include\ATen\ops\_lu_with_info_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7035759Z copying torch\include\ATen\ops\_lu_with_info_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7042613Z copying torch\include\ATen\ops\_lu_with_info_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7049509Z copying torch\include\ATen\ops\_make_dep_token.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7056571Z copying torch\include\ATen\ops\_make_dep_token_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7063869Z copying torch\include\ATen\ops\_make_dep_token_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7075337Z copying torch\include\ATen\ops\_make_dep_token_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7081913Z copying torch\include\ATen\ops\_make_dual.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7089177Z copying torch\include\ATen\ops\_make_dual_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7096091Z copying torch\include\ATen\ops\_make_dual_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7103710Z copying torch\include\ATen\ops\_make_dual_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7115541Z copying torch\include\ATen\ops\_make_dual_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7122412Z copying torch\include\ATen\ops\_make_dual_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7129274Z copying torch\include\ATen\ops\_make_dual_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7136041Z copying torch\include\ATen\ops\_make_dual_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7142535Z copying torch\include\ATen\ops\_make_dual_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7149634Z copying torch\include\ATen\ops\_make_per_channel_quantized_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7157015Z copying torch\include\ATen\ops\_make_per_channel_quantized_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7164129Z copying torch\include\ATen\ops\_make_per_channel_quantized_tensor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7170972Z copying torch\include\ATen\ops\_make_per_channel_quantized_tensor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7177868Z copying torch\include\ATen\ops\_make_per_channel_quantized_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7184932Z copying torch\include\ATen\ops\_make_per_channel_quantized_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7191713Z copying torch\include\ATen\ops\_make_per_tensor_quantized_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7198975Z copying torch\include\ATen\ops\_make_per_tensor_quantized_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7206311Z copying torch\include\ATen\ops\_make_per_tensor_quantized_tensor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7213191Z copying torch\include\ATen\ops\_make_per_tensor_quantized_tensor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7230057Z copying torch\include\ATen\ops\_make_per_tensor_quantized_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7237043Z copying torch\include\ATen\ops\_make_per_tensor_quantized_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7243835Z copying torch\include\ATen\ops\_masked_scale.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7251033Z copying torch\include\ATen\ops\_masked_scale_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7258038Z copying torch\include\ATen\ops\_masked_scale_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7269503Z copying torch\include\ATen\ops\_masked_scale_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7276307Z copying torch\include\ATen\ops\_masked_scale_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7282981Z copying torch\include\ATen\ops\_masked_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7289714Z copying torch\include\ATen\ops\_masked_softmax_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7296637Z copying torch\include\ATen\ops\_masked_softmax_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7303926Z copying torch\include\ATen\ops\_masked_softmax_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7310843Z copying torch\include\ATen\ops\_masked_softmax_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7317511Z copying torch\include\ATen\ops\_masked_softmax_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7324536Z copying torch\include\ATen\ops\_masked_softmax_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7331684Z copying torch\include\ATen\ops\_masked_softmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7343310Z copying torch\include\ATen\ops\_masked_softmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7350361Z copying torch\include\ATen\ops\_masked_softmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7357385Z copying torch\include\ATen\ops\_masked_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7364083Z copying torch\include\ATen\ops\_masked_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7370962Z copying torch\include\ATen\ops\_mixed_dtypes_linear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7378437Z copying torch\include\ATen\ops\_mixed_dtypes_linear_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7385404Z copying torch\include\ATen\ops\_mixed_dtypes_linear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7392469Z copying torch\include\ATen\ops\_mixed_dtypes_linear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7399145Z copying torch\include\ATen\ops\_mkldnn_reshape.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7405964Z copying torch\include\ATen\ops\_mkldnn_reshape_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7420697Z copying torch\include\ATen\ops\_mkldnn_reshape_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7427599Z copying torch\include\ATen\ops\_mkldnn_reshape_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7456532Z copying torch\include\ATen\ops\_mkldnn_transpose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7464824Z copying torch\include\ATen\ops\_mkldnn_transpose_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7472119Z copying torch\include\ATen\ops\_mkldnn_transpose_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7479134Z copying torch\include\ATen\ops\_mkldnn_transpose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7486290Z copying torch\include\ATen\ops\_mkldnn_transpose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7493163Z copying torch\include\ATen\ops\_mps_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7500758Z copying torch\include\ATen\ops\_mps_convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7507599Z copying torch\include\ATen\ops\_mps_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7519505Z copying torch\include\ATen\ops\_mps_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7526658Z copying torch\include\ATen\ops\_mps_convolution_transpose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7534126Z copying torch\include\ATen\ops\_mps_convolution_transpose_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7541067Z copying torch\include\ATen\ops\_mps_convolution_transpose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7548214Z copying torch\include\ATen\ops\_mps_convolution_transpose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7555253Z copying torch\include\ATen\ops\_native_batch_norm_legit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7562488Z copying torch\include\ATen\ops\_native_batch_norm_legit_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7569356Z copying torch\include\ATen\ops\_native_batch_norm_legit_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7576490Z copying torch\include\ATen\ops\_native_batch_norm_legit_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7583506Z copying torch\include\ATen\ops\_native_batch_norm_legit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7595212Z copying torch\include\ATen\ops\_native_batch_norm_legit_no_training.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7602723Z 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-06-01T21:22:08.7609756Z copying torch\include\ATen\ops\_native_batch_norm_legit_no_training_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7616989Z copying torch\include\ATen\ops\_native_batch_norm_legit_no_training_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7624037Z copying torch\include\ATen\ops\_native_batch_norm_legit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7631147Z copying torch\include\ATen\ops\_native_multi_head_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7638829Z copying torch\include\ATen\ops\_native_multi_head_attention_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7646282Z copying torch\include\ATen\ops\_native_multi_head_attention_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7653667Z copying torch\include\ATen\ops\_native_multi_head_attention_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7661079Z copying torch\include\ATen\ops\_native_multi_head_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7673026Z copying torch\include\ATen\ops\_native_multi_head_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7680024Z copying torch\include\ATen\ops\_neg_view.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7687220Z copying torch\include\ATen\ops\_neg_view_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7694426Z copying torch\include\ATen\ops\_neg_view_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7701885Z copying torch\include\ATen\ops\_neg_view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7712635Z copying torch\include\ATen\ops\_neg_view_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7719870Z copying torch\include\ATen\ops\_neg_view_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7726359Z copying torch\include\ATen\ops\_neg_view_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7733572Z copying torch\include\ATen\ops\_neg_view_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7740180Z copying torch\include\ATen\ops\_neg_view_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7747220Z copying torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7754103Z copying torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7761188Z copying torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7767963Z copying torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7774865Z copying torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7781995Z copying torch\include\ATen\ops\_nested_from_padded.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7789064Z copying torch\include\ATen\ops\_nested_from_padded_and_nested_example.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7796399Z 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-06-01T21:22:08.7803134Z copying torch\include\ATen\ops\_nested_from_padded_and_nested_example_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7811037Z copying torch\include\ATen\ops\_nested_from_padded_and_nested_example_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7819826Z copying torch\include\ATen\ops\_nested_from_padded_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7826407Z copying torch\include\ATen\ops\_nested_from_padded_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7833895Z copying torch\include\ATen\ops\_nested_from_padded_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7841375Z copying torch\include\ATen\ops\_nested_from_padded_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7848501Z copying torch\include\ATen\ops\_nested_from_padded_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7855841Z copying torch\include\ATen\ops\_nested_from_padded_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7863087Z copying torch\include\ATen\ops\_nested_from_padded_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7869991Z copying torch\include\ATen\ops\_nested_from_padded_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7877065Z copying torch\include\ATen\ops\_nested_get_jagged_dummy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7884106Z copying torch\include\ATen\ops\_nested_get_jagged_dummy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7890995Z copying torch\include\ATen\ops\_nested_get_jagged_dummy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7899243Z copying torch\include\ATen\ops\_nested_get_lengths.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7907114Z copying torch\include\ATen\ops\_nested_get_lengths_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7914260Z copying torch\include\ATen\ops\_nested_get_lengths_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7921523Z copying torch\include\ATen\ops\_nested_get_max_seqlen.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7928569Z copying torch\include\ATen\ops\_nested_get_max_seqlen_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7935237Z copying torch\include\ATen\ops\_nested_get_max_seqlen_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7942582Z copying torch\include\ATen\ops\_nested_get_min_seqlen.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7949657Z copying torch\include\ATen\ops\_nested_get_min_seqlen_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7956546Z copying torch\include\ATen\ops\_nested_get_min_seqlen_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7988858Z copying torch\include\ATen\ops\_nested_get_offsets.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.7996295Z copying torch\include\ATen\ops\_nested_get_offsets_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8003645Z copying torch\include\ATen\ops\_nested_get_offsets_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8011535Z copying torch\include\ATen\ops\_nested_get_ragged_idx.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8019697Z copying torch\include\ATen\ops\_nested_get_ragged_idx_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8032801Z copying torch\include\ATen\ops\_nested_get_ragged_idx_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8039747Z copying torch\include\ATen\ops\_nested_get_values.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8046766Z copying torch\include\ATen\ops\_nested_get_values_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8054165Z copying torch\include\ATen\ops\_nested_get_values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8061083Z copying torch\include\ATen\ops\_nested_get_values_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8073199Z copying torch\include\ATen\ops\_nested_get_values_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8080220Z copying torch\include\ATen\ops\_nested_get_values_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8087171Z copying torch\include\ATen\ops\_nested_get_values_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8093649Z copying torch\include\ATen\ops\_nested_get_values_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8100381Z copying torch\include\ATen\ops\_nested_select_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8107445Z copying torch\include\ATen\ops\_nested_select_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8114233Z copying torch\include\ATen\ops\_nested_select_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8120874Z copying torch\include\ATen\ops\_nested_sum_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8127878Z copying torch\include\ATen\ops\_nested_sum_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8134702Z copying torch\include\ATen\ops\_nested_sum_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8141542Z copying torch\include\ATen\ops\_nested_tensor_from_mask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8148667Z copying torch\include\ATen\ops\_nested_tensor_from_mask_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8155429Z copying torch\include\ATen\ops\_nested_tensor_from_mask_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8162539Z copying torch\include\ATen\ops\_nested_tensor_from_mask_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8169530Z copying torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8176446Z 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-06-01T21:22:08.8183623Z 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-06-01T21:22:08.8190856Z copying torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8197718Z copying torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8204760Z copying torch\include\ATen\ops\_nested_tensor_from_mask_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8211524Z copying torch\include\ATen\ops\_nested_tensor_from_mask_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8218294Z copying torch\include\ATen\ops\_nested_tensor_from_tensor_list.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8225617Z copying torch\include\ATen\ops\_nested_tensor_from_tensor_list_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8232257Z copying torch\include\ATen\ops\_nested_tensor_from_tensor_list_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8239063Z copying torch\include\ATen\ops\_nested_tensor_from_tensor_list_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8250607Z copying torch\include\ATen\ops\_nested_tensor_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8257878Z copying torch\include\ATen\ops\_nested_tensor_size_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8264875Z copying torch\include\ATen\ops\_nested_tensor_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8271673Z copying torch\include\ATen\ops\_nested_tensor_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8278548Z copying torch\include\ATen\ops\_nested_tensor_softmax_with_shape.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8285472Z copying torch\include\ATen\ops\_nested_tensor_softmax_with_shape_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8292656Z copying torch\include\ATen\ops\_nested_tensor_softmax_with_shape_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8299458Z copying torch\include\ATen\ops\_nested_tensor_storage_offsets.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8307055Z copying torch\include\ATen\ops\_nested_tensor_storage_offsets_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8313780Z copying torch\include\ATen\ops\_nested_tensor_storage_offsets_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8320915Z copying torch\include\ATen\ops\_nested_tensor_storage_offsets_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8327936Z copying torch\include\ATen\ops\_nested_tensor_strides.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8335271Z copying torch\include\ATen\ops\_nested_tensor_strides_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8342178Z copying torch\include\ATen\ops\_nested_tensor_strides_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8349206Z copying torch\include\ATen\ops\_nested_tensor_strides_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8361487Z copying torch\include\ATen\ops\_nested_view_from_buffer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8368363Z copying torch\include\ATen\ops\_nested_view_from_buffer_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8375775Z copying torch\include\ATen\ops\_nested_view_from_buffer_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8383223Z copying torch\include\ATen\ops\_nested_view_from_buffer_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8390095Z copying torch\include\ATen\ops\_nested_view_from_buffer_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8406054Z copying torch\include\ATen\ops\_nested_view_from_buffer_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8413066Z copying torch\include\ATen\ops\_nested_view_from_buffer_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8420367Z copying torch\include\ATen\ops\_nested_view_from_buffer_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8427397Z copying torch\include\ATen\ops\_nested_view_from_buffer_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8449977Z copying torch\include\ATen\ops\_nested_view_from_buffer_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8462079Z copying torch\include\ATen\ops\_nested_view_from_jagged.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8469229Z copying torch\include\ATen\ops\_nested_view_from_jagged_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8477225Z copying torch\include\ATen\ops\_nested_view_from_jagged_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8484689Z copying torch\include\ATen\ops\_nested_view_from_jagged_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8491592Z copying torch\include\ATen\ops\_nested_view_from_jagged_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8498597Z copying torch\include\ATen\ops\_nested_view_from_jagged_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8506017Z copying torch\include\ATen\ops\_nested_view_from_jagged_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8513633Z copying torch\include\ATen\ops\_nested_view_from_jagged_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8520808Z copying torch\include\ATen\ops\_new_zeros_with_same_feature_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8528182Z 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-06-01T21:22:08.8535038Z copying torch\include\ATen\ops\_new_zeros_with_same_feature_meta_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8542309Z copying torch\include\ATen\ops\_new_zeros_with_same_feature_meta_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8549385Z copying torch\include\ATen\ops\_nnpack_available.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8556374Z copying torch\include\ATen\ops\_nnpack_available_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8563261Z copying torch\include\ATen\ops\_nnpack_available_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8575205Z copying torch\include\ATen\ops\_nnpack_available_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8582264Z copying torch\include\ATen\ops\_nnpack_spatial_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8589458Z copying torch\include\ATen\ops\_nnpack_spatial_convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8596133Z copying torch\include\ATen\ops\_nnpack_spatial_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8603162Z copying torch\include\ATen\ops\_nnpack_spatial_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8615454Z copying torch\include\ATen\ops\_nnz.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8621959Z copying torch\include\ATen\ops\_nnz_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8628944Z copying torch\include\ATen\ops\_nnz_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8635515Z copying torch\include\ATen\ops\_pack_padded_sequence.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8642134Z copying torch\include\ATen\ops\_pack_padded_sequence_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8654152Z copying torch\include\ATen\ops\_pack_padded_sequence_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8661170Z copying torch\include\ATen\ops\_pack_padded_sequence_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8668141Z copying torch\include\ATen\ops\_pack_padded_sequence_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8675461Z copying torch\include\ATen\ops\_pack_padded_sequence_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8682181Z copying torch\include\ATen\ops\_pack_padded_sequence_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8692785Z copying torch\include\ATen\ops\_pack_padded_sequence_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8699739Z copying torch\include\ATen\ops\_padded_dense_to_jagged_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8706537Z copying torch\include\ATen\ops\_padded_dense_to_jagged_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8713587Z copying torch\include\ATen\ops\_padded_dense_to_jagged_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8720372Z copying torch\include\ATen\ops\_padded_dense_to_jagged_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8732197Z copying torch\include\ATen\ops\_padded_dense_to_jagged_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8738847Z copying torch\include\ATen\ops\_pad_circular.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8746256Z copying torch\include\ATen\ops\_pad_circular_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8753163Z copying torch\include\ATen\ops\_pad_circular_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8759610Z copying torch\include\ATen\ops\_pad_circular_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8766175Z copying torch\include\ATen\ops\_pad_enum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8773064Z copying torch\include\ATen\ops\_pad_enum_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8779604Z copying torch\include\ATen\ops\_pad_enum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8786048Z copying torch\include\ATen\ops\_pad_enum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8792786Z copying torch\include\ATen\ops\_pad_packed_sequence.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8804330Z copying torch\include\ATen\ops\_pad_packed_sequence_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8811138Z copying torch\include\ATen\ops\_pad_packed_sequence_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8818113Z copying torch\include\ATen\ops\_pad_packed_sequence_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8824871Z copying torch\include\ATen\ops\_pdist_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8831785Z copying torch\include\ATen\ops\_pdist_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8838340Z copying torch\include\ATen\ops\_pdist_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8845053Z copying torch\include\ATen\ops\_pdist_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8851857Z copying torch\include\ATen\ops\_pdist_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8858468Z copying torch\include\ATen\ops\_pdist_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8865308Z copying torch\include\ATen\ops\_pdist_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8876759Z copying torch\include\ATen\ops\_pdist_forward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8883465Z copying torch\include\ATen\ops\_pdist_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8890320Z copying torch\include\ATen\ops\_pdist_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8897018Z copying torch\include\ATen\ops\_pdist_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8903819Z copying torch\include\ATen\ops\_pdist_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8910517Z copying torch\include\ATen\ops\_pin_memory.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8917623Z copying torch\include\ATen\ops\_pin_memory_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8924343Z copying torch\include\ATen\ops\_pin_memory_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8931089Z copying torch\include\ATen\ops\_pin_memory_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8937876Z copying torch\include\ATen\ops\_prelu_kernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8944589Z copying torch\include\ATen\ops\_prelu_kernel_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8951579Z copying torch\include\ATen\ops\_prelu_kernel_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8971465Z copying torch\include\ATen\ops\_prelu_kernel_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8978073Z copying torch\include\ATen\ops\_prelu_kernel_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8984812Z copying torch\include\ATen\ops\_prelu_kernel_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.8996015Z copying torch\include\ATen\ops\_prelu_kernel_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9002725Z copying torch\include\ATen\ops\_prelu_kernel_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9009392Z copying torch\include\ATen\ops\_prelu_kernel_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9048220Z copying torch\include\ATen\ops\_prelu_kernel_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9056103Z copying torch\include\ATen\ops\_print.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9063253Z copying torch\include\ATen\ops\_print_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9070898Z copying torch\include\ATen\ops\_print_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9078531Z copying torch\include\ATen\ops\_print_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9086369Z copying torch\include\ATen\ops\_propagate_xla_data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9094678Z copying torch\include\ATen\ops\_propagate_xla_data_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9101899Z copying torch\include\ATen\ops\_propagate_xla_data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9108530Z copying torch\include\ATen\ops\_propagate_xla_data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9115531Z copying torch\include\ATen\ops\_remove_batch_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9122571Z copying torch\include\ATen\ops\_remove_batch_dim_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9129051Z copying torch\include\ATen\ops\_remove_batch_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9141637Z copying torch\include\ATen\ops\_remove_batch_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9148855Z copying torch\include\ATen\ops\_reshape_alias.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9155359Z copying torch\include\ATen\ops\_reshape_alias_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9162721Z copying torch\include\ATen\ops\_reshape_alias_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9169580Z copying torch\include\ATen\ops\_reshape_alias_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9181038Z copying torch\include\ATen\ops\_reshape_alias_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9187888Z copying torch\include\ATen\ops\_reshape_alias_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9194879Z copying torch\include\ATen\ops\_reshape_alias_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9201781Z copying torch\include\ATen\ops\_reshape_alias_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9208505Z copying torch\include\ATen\ops\_reshape_alias_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9215119Z copying torch\include\ATen\ops\_reshape_alias_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9221640Z copying torch\include\ATen\ops\_reshape_alias_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9228648Z copying torch\include\ATen\ops\_reshape_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9235432Z copying torch\include\ATen\ops\_reshape_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9242173Z copying torch\include\ATen\ops\_reshape_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9248763Z copying torch\include\ATen\ops\_reshape_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9255372Z copying torch\include\ATen\ops\_reshape_from_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9262521Z copying torch\include\ATen\ops\_reshape_from_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9269314Z copying torch\include\ATen\ops\_reshape_from_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9275764Z copying torch\include\ATen\ops\_reshape_from_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9282507Z copying torch\include\ATen\ops\_resize_output.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9289787Z copying torch\include\ATen\ops\_resize_output_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9296383Z copying torch\include\ATen\ops\_resize_output_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9303107Z copying torch\include\ATen\ops\_resize_output_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9309728Z copying torch\include\ATen\ops\_resize_output_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9316414Z copying torch\include\ATen\ops\_rowwise_prune.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9323644Z copying torch\include\ATen\ops\_rowwise_prune_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9330635Z copying torch\include\ATen\ops\_rowwise_prune_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9337522Z copying torch\include\ATen\ops\_rowwise_prune_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9344794Z copying torch\include\ATen\ops\_safe_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9352344Z copying torch\include\ATen\ops\_safe_softmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9359183Z copying torch\include\ATen\ops\_safe_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9365738Z copying torch\include\ATen\ops\_safe_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9372529Z copying torch\include\ATen\ops\_sample_dirichlet.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9379481Z copying torch\include\ATen\ops\_sample_dirichlet_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9386727Z copying torch\include\ATen\ops\_sample_dirichlet_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9393682Z copying torch\include\ATen\ops\_sample_dirichlet_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9400541Z copying torch\include\ATen\ops\_sample_dirichlet_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9407511Z copying torch\include\ATen\ops\_sample_dirichlet_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9414330Z copying torch\include\ATen\ops\_saturate_weight_to_fp16.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9427376Z copying torch\include\ATen\ops\_saturate_weight_to_fp16_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9434588Z copying torch\include\ATen\ops\_saturate_weight_to_fp16_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9441270Z copying torch\include\ATen\ops\_saturate_weight_to_fp16_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9448199Z copying torch\include\ATen\ops\_scaled_dot_product_attention_math.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9455424Z copying torch\include\ATen\ops\_scaled_dot_product_attention_math_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9466886Z copying torch\include\ATen\ops\_scaled_dot_product_attention_math_for_mps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9474243Z 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-06-01T21:22:08.9480969Z 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-06-01T21:22:08.9487906Z copying torch\include\ATen\ops\_scaled_dot_product_attention_math_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9494902Z copying torch\include\ATen\ops\_scaled_dot_product_attention_math_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9502226Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9509602Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9517519Z 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-06-01T21:22:08.9525453Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9533190Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9540693Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9547881Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9555070Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9562138Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9569213Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9576347Z 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-06-01T21:22:08.9583913Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9591301Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9598752Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9605916Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9612864Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9619971Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9627221Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9634182Z 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-06-01T21:22:08.9641025Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9647920Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9654978Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9662012Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9669199Z 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-06-01T21:22:08.9676507Z 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-06-01T21:22:08.9683686Z 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-06-01T21:22:08.9690984Z 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-06-01T21:22:08.9697974Z 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-06-01T21:22:08.9705048Z 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-06-01T21:22:08.9712105Z 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-06-01T21:22:08.9729352Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9736702Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9743945Z copying torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9751086Z copying torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9758552Z 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-06-01T21:22:08.9765963Z 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-06-01T21:22:08.9780058Z 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-06-01T21:22:08.9787432Z 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-06-01T21:22:08.9794434Z copying torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9801565Z copying torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9812910Z copying torch\include\ATen\ops\_scaled_grouped_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9824044Z copying torch\include\ATen\ops\_scaled_grouped_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9829193Z copying torch\include\ATen\ops\_scaled_grouped_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9835944Z copying torch\include\ATen\ops\_scaled_grouped_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9842910Z copying torch\include\ATen\ops\_scaled_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9850458Z copying torch\include\ATen\ops\_scaled_mm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9857173Z copying torch\include\ATen\ops\_scaled_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9864340Z copying torch\include\ATen\ops\_scaled_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9871089Z copying torch\include\ATen\ops\_scaled_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9878009Z copying torch\include\ATen\ops\_segment_reduce_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9896315Z copying torch\include\ATen\ops\_segment_reduce_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9903265Z copying torch\include\ATen\ops\_segment_reduce_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9910270Z copying torch\include\ATen\ops\_segment_reduce_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9917118Z copying torch\include\ATen\ops\_segment_reduce_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9923909Z copying torch\include\ATen\ops\_segment_reduce_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9935302Z copying torch\include\ATen\ops\_shape_as_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9942393Z copying torch\include\ATen\ops\_shape_as_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9948993Z copying torch\include\ATen\ops\_shape_as_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9973124Z copying torch\include\ATen\ops\_shape_as_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9979936Z copying torch\include\ATen\ops\_slow_conv2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9992341Z copying torch\include\ATen\ops\_slow_conv2d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:08.9998894Z copying torch\include\ATen\ops\_slow_conv2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0005782Z copying torch\include\ATen\ops\_slow_conv2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0012610Z copying torch\include\ATen\ops\_slow_conv2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0019857Z copying torch\include\ATen\ops\_slow_conv2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0026751Z copying torch\include\ATen\ops\_slow_conv2d_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0033554Z copying torch\include\ATen\ops\_slow_conv2d_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0040692Z copying torch\include\ATen\ops\_slow_conv2d_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0047438Z copying torch\include\ATen\ops\_slow_conv2d_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0054219Z copying torch\include\ATen\ops\_slow_conv2d_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0065689Z copying torch\include\ATen\ops\_sobol_engine_draw.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0072752Z copying torch\include\ATen\ops\_sobol_engine_draw_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0079325Z copying torch\include\ATen\ops\_sobol_engine_draw_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0086046Z copying torch\include\ATen\ops\_sobol_engine_draw_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0092718Z copying torch\include\ATen\ops\_sobol_engine_ff.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0105510Z copying torch\include\ATen\ops\_sobol_engine_ff_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0112256Z copying torch\include\ATen\ops\_sobol_engine_ff_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0119125Z copying torch\include\ATen\ops\_sobol_engine_ff_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0126348Z copying torch\include\ATen\ops\_sobol_engine_initialize_state.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0133400Z copying torch\include\ATen\ops\_sobol_engine_initialize_state_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0140161Z copying torch\include\ATen\ops\_sobol_engine_initialize_state_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0147225Z copying torch\include\ATen\ops\_sobol_engine_initialize_state_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0153939Z copying torch\include\ATen\ops\_sobol_engine_scramble.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0161188Z copying torch\include\ATen\ops\_sobol_engine_scramble_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0167909Z copying torch\include\ATen\ops\_sobol_engine_scramble_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0174767Z copying torch\include\ATen\ops\_sobol_engine_scramble_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0181560Z copying torch\include\ATen\ops\_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0188155Z copying torch\include\ATen\ops\_softmax_backward_data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0195311Z copying torch\include\ATen\ops\_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0202063Z copying torch\include\ATen\ops\_softmax_backward_data_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0208848Z copying torch\include\ATen\ops\_softmax_backward_data_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0215861Z copying torch\include\ATen\ops\_softmax_backward_data_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0222872Z copying torch\include\ATen\ops\_softmax_backward_data_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0229677Z copying torch\include\ATen\ops\_softmax_backward_data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0236435Z copying torch\include\ATen\ops\_softmax_backward_data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0243718Z copying torch\include\ATen\ops\_softmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0250328Z copying torch\include\ATen\ops\_softmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0257098Z copying torch\include\ATen\ops\_softmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0264040Z copying torch\include\ATen\ops\_softmax_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0270792Z copying torch\include\ATen\ops\_softmax_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0277550Z copying torch\include\ATen\ops\_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0284284Z copying torch\include\ATen\ops\_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0291769Z copying torch\include\ATen\ops\_sparse_addmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0298764Z copying torch\include\ATen\ops\_sparse_addmm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0305478Z copying torch\include\ATen\ops\_sparse_addmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0312081Z copying torch\include\ATen\ops\_sparse_addmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0318854Z copying torch\include\ATen\ops\_sparse_broadcast_to.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0325604Z copying torch\include\ATen\ops\_sparse_broadcast_to_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0333190Z copying torch\include\ATen\ops\_sparse_broadcast_to_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0340334Z copying torch\include\ATen\ops\_sparse_broadcast_to_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0347487Z copying torch\include\ATen\ops\_sparse_broadcast_to_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0354385Z copying torch\include\ATen\ops\_sparse_broadcast_to_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0361409Z copying torch\include\ATen\ops\_sparse_broadcast_to_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0368116Z copying torch\include\ATen\ops\_sparse_broadcast_to_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0374972Z copying torch\include\ATen\ops\_sparse_bsc_tensor_unsafe.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0382608Z copying torch\include\ATen\ops\_sparse_bsc_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0389486Z copying torch\include\ATen\ops\_sparse_bsc_tensor_unsafe_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0396529Z copying torch\include\ATen\ops\_sparse_bsc_tensor_unsafe_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0403726Z copying torch\include\ATen\ops\_sparse_bsr_tensor_unsafe.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0410954Z copying torch\include\ATen\ops\_sparse_bsr_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0436265Z copying torch\include\ATen\ops\_sparse_bsr_tensor_unsafe_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0443227Z copying torch\include\ATen\ops\_sparse_bsr_tensor_unsafe_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0450245Z copying torch\include\ATen\ops\_sparse_compressed_tensor_unsafe.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0457634Z copying torch\include\ATen\ops\_sparse_compressed_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0464672Z copying torch\include\ATen\ops\_sparse_compressed_tensor_unsafe_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0471665Z copying torch\include\ATen\ops\_sparse_compressed_tensor_unsafe_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0478828Z copying torch\include\ATen\ops\_sparse_compressed_tensor_with_dims.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0486136Z copying torch\include\ATen\ops\_sparse_compressed_tensor_with_dims_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0493240Z copying torch\include\ATen\ops\_sparse_compressed_tensor_with_dims_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0500538Z copying torch\include\ATen\ops\_sparse_compressed_tensor_with_dims_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0513241Z copying torch\include\ATen\ops\_sparse_coo_tensor_unsafe.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0520755Z copying torch\include\ATen\ops\_sparse_coo_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0528603Z copying torch\include\ATen\ops\_sparse_coo_tensor_unsafe_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0535853Z copying torch\include\ATen\ops\_sparse_coo_tensor_unsafe_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0543972Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0556451Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0563969Z 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-06-01T21:22:09.0571358Z 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-06-01T21:22:09.0578267Z 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-06-01T21:22:09.0585347Z 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-06-01T21:22:09.0592561Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0599600Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0606517Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0613298Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0620767Z copying torch\include\ATen\ops\_sparse_csc_tensor_unsafe.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0632912Z copying torch\include\ATen\ops\_sparse_csc_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0639767Z copying torch\include\ATen\ops\_sparse_csc_tensor_unsafe_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0646953Z copying torch\include\ATen\ops\_sparse_csc_tensor_unsafe_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0653616Z copying torch\include\ATen\ops\_sparse_csr_prod.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0660586Z copying torch\include\ATen\ops\_sparse_csr_prod_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0672423Z copying torch\include\ATen\ops\_sparse_csr_prod_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0679206Z copying torch\include\ATen\ops\_sparse_csr_prod_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0686602Z copying torch\include\ATen\ops\_sparse_csr_sum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0693909Z copying torch\include\ATen\ops\_sparse_csr_sum_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0700592Z copying torch\include\ATen\ops\_sparse_csr_sum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0707754Z copying torch\include\ATen\ops\_sparse_csr_sum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0714513Z copying torch\include\ATen\ops\_sparse_csr_tensor_unsafe.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0721590Z copying torch\include\ATen\ops\_sparse_csr_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0728393Z copying torch\include\ATen\ops\_sparse_csr_tensor_unsafe_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0735327Z copying torch\include\ATen\ops\_sparse_csr_tensor_unsafe_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0742792Z copying torch\include\ATen\ops\_sparse_log_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0749722Z copying torch\include\ATen\ops\_sparse_log_softmax_backward_data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0756784Z copying torch\include\ATen\ops\_sparse_log_softmax_backward_data_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0763443Z copying torch\include\ATen\ops\_sparse_log_softmax_backward_data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0770230Z copying torch\include\ATen\ops\_sparse_log_softmax_backward_data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0777451Z copying torch\include\ATen\ops\_sparse_log_softmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0784445Z copying torch\include\ATen\ops\_sparse_log_softmax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0791192Z copying torch\include\ATen\ops\_sparse_log_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0797976Z copying torch\include\ATen\ops\_sparse_log_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0804679Z copying torch\include\ATen\ops\_sparse_mask_projection.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0816710Z copying torch\include\ATen\ops\_sparse_mask_projection_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0823758Z copying torch\include\ATen\ops\_sparse_mask_projection_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0830620Z copying torch\include\ATen\ops\_sparse_mask_projection_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0837620Z copying torch\include\ATen\ops\_sparse_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0844795Z copying torch\include\ATen\ops\_sparse_mm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0856232Z copying torch\include\ATen\ops\_sparse_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0863263Z copying torch\include\ATen\ops\_sparse_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0870458Z copying torch\include\ATen\ops\_sparse_mm_reduce_impl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0877465Z copying torch\include\ATen\ops\_sparse_mm_reduce_impl_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0884463Z copying torch\include\ATen\ops\_sparse_mm_reduce_impl_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0896830Z copying torch\include\ATen\ops\_sparse_mm_reduce_impl_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0903898Z copying torch\include\ATen\ops\_sparse_mm_reduce_impl_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0910955Z copying torch\include\ATen\ops\_sparse_mm_reduce_impl_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0917918Z copying torch\include\ATen\ops\_sparse_semi_structured_addmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0925181Z copying torch\include\ATen\ops\_sparse_semi_structured_addmm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0937226Z copying torch\include\ATen\ops\_sparse_semi_structured_addmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0944663Z copying torch\include\ATen\ops\_sparse_semi_structured_addmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0951747Z copying torch\include\ATen\ops\_sparse_semi_structured_apply.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0959288Z copying torch\include\ATen\ops\_sparse_semi_structured_apply_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0966324Z copying torch\include\ATen\ops\_sparse_semi_structured_apply_dense.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0979008Z copying torch\include\ATen\ops\_sparse_semi_structured_apply_dense_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0986370Z copying torch\include\ATen\ops\_sparse_semi_structured_apply_dense_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.0993458Z copying torch\include\ATen\ops\_sparse_semi_structured_apply_dense_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1000612Z copying torch\include\ATen\ops\_sparse_semi_structured_apply_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1007506Z copying torch\include\ATen\ops\_sparse_semi_structured_apply_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1014807Z copying torch\include\ATen\ops\_sparse_semi_structured_linear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1022182Z copying torch\include\ATen\ops\_sparse_semi_structured_linear_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1030048Z copying torch\include\ATen\ops\_sparse_semi_structured_linear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1037830Z copying torch\include\ATen\ops\_sparse_semi_structured_linear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1045433Z copying torch\include\ATen\ops\_sparse_semi_structured_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1053535Z copying torch\include\ATen\ops\_sparse_semi_structured_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1061109Z copying torch\include\ATen\ops\_sparse_semi_structured_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1068229Z copying torch\include\ATen\ops\_sparse_semi_structured_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1075199Z copying torch\include\ATen\ops\_sparse_semi_structured_tile.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1082301Z copying torch\include\ATen\ops\_sparse_semi_structured_tile_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1089649Z copying torch\include\ATen\ops\_sparse_semi_structured_tile_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1096591Z copying torch\include\ATen\ops\_sparse_semi_structured_tile_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1103616Z copying torch\include\ATen\ops\_sparse_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1111216Z copying torch\include\ATen\ops\_sparse_softmax_backward_data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1117896Z copying torch\include\ATen\ops\_sparse_softmax_backward_data_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1124828Z copying torch\include\ATen\ops\_sparse_softmax_backward_data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1131784Z copying torch\include\ATen\ops\_sparse_softmax_backward_data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1139059Z copying torch\include\ATen\ops\_sparse_softmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1146373Z copying torch\include\ATen\ops\_sparse_softmax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1152920Z copying torch\include\ATen\ops\_sparse_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1164902Z copying torch\include\ATen\ops\_sparse_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1171737Z copying torch\include\ATen\ops\_sparse_sparse_matmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1179321Z copying torch\include\ATen\ops\_sparse_sparse_matmul_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1186475Z copying torch\include\ATen\ops\_sparse_sparse_matmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1193166Z copying torch\include\ATen\ops\_sparse_sparse_matmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1199965Z copying torch\include\ATen\ops\_sparse_sum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1206798Z copying torch\include\ATen\ops\_sparse_sum_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1213862Z copying torch\include\ATen\ops\_sparse_sum_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1220715Z copying torch\include\ATen\ops\_sparse_sum_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1227875Z copying torch\include\ATen\ops\_sparse_sum_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1240287Z copying torch\include\ATen\ops\_sparse_sum_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1247378Z copying torch\include\ATen\ops\_sparse_sum_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1254155Z copying torch\include\ATen\ops\_sparse_sum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1260973Z copying torch\include\ATen\ops\_sparse_sum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1267628Z copying torch\include\ATen\ops\_spdiags.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1280433Z copying torch\include\ATen\ops\_spdiags_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1286911Z copying torch\include\ATen\ops\_spdiags_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1293703Z copying torch\include\ATen\ops\_spdiags_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1300447Z copying torch\include\ATen\ops\_spdiags_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1307923Z copying torch\include\ATen\ops\_spsolve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1319339Z copying torch\include\ATen\ops\_spsolve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1325741Z copying torch\include\ATen\ops\_spsolve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1332405Z copying torch\include\ATen\ops\_stack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1339480Z copying torch\include\ATen\ops\_stack_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1346253Z copying torch\include\ATen\ops\_stack_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1353271Z copying torch\include\ATen\ops\_stack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1359942Z copying torch\include\ATen\ops\_stack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1366799Z copying torch\include\ATen\ops\_standard_gamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1373891Z copying torch\include\ATen\ops\_standard_gamma_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1380699Z copying torch\include\ATen\ops\_standard_gamma_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1387555Z copying torch\include\ATen\ops\_standard_gamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1394417Z copying torch\include\ATen\ops\_standard_gamma_grad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1401943Z copying torch\include\ATen\ops\_standard_gamma_grad_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1408808Z copying torch\include\ATen\ops\_standard_gamma_grad_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1415680Z copying torch\include\ATen\ops\_standard_gamma_grad_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1422695Z copying torch\include\ATen\ops\_standard_gamma_grad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1429537Z copying torch\include\ATen\ops\_standard_gamma_grad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1436672Z copying torch\include\ATen\ops\_standard_gamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1443654Z copying torch\include\ATen\ops\_standard_gamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1450622Z copying torch\include\ATen\ops\_test_ambiguous_defaults.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1457746Z copying torch\include\ATen\ops\_test_ambiguous_defaults_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1464649Z copying torch\include\ATen\ops\_test_ambiguous_defaults_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1471427Z copying torch\include\ATen\ops\_test_ambiguous_defaults_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1478446Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1485909Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1493248Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1500628Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1507728Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1514744Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1522852Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1531008Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1539285Z 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-06-01T21:22:09.1546785Z 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-06-01T21:22:09.1554038Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1562030Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1569219Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1576045Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1583198Z copying torch\include\ATen\ops\_test_check_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1591356Z copying torch\include\ATen\ops\_test_check_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1598600Z copying torch\include\ATen\ops\_test_check_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1605316Z copying torch\include\ATen\ops\_test_check_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1612271Z copying torch\include\ATen\ops\_test_functorch_fallback.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1619099Z copying torch\include\ATen\ops\_test_functorch_fallback_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1650800Z copying torch\include\ATen\ops\_test_functorch_fallback_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1657723Z copying torch\include\ATen\ops\_test_functorch_fallback_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1664655Z copying torch\include\ATen\ops\_test_functorch_fallback_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1671418Z copying torch\include\ATen\ops\_test_optional_filled_intlist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1678480Z copying torch\include\ATen\ops\_test_optional_filled_intlist_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1685458Z copying torch\include\ATen\ops\_test_optional_filled_intlist_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1692415Z copying torch\include\ATen\ops\_test_optional_filled_intlist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1699551Z copying torch\include\ATen\ops\_test_optional_filled_intlist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1706624Z copying torch\include\ATen\ops\_test_optional_floatlist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1714055Z copying torch\include\ATen\ops\_test_optional_floatlist_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1720897Z copying torch\include\ATen\ops\_test_optional_floatlist_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1727580Z copying torch\include\ATen\ops\_test_optional_floatlist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1734409Z copying torch\include\ATen\ops\_test_optional_floatlist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1741392Z copying torch\include\ATen\ops\_test_optional_intlist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1748492Z copying torch\include\ATen\ops\_test_optional_intlist_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1755240Z copying torch\include\ATen\ops\_test_optional_intlist_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1761937Z copying torch\include\ATen\ops\_test_optional_intlist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1769098Z copying torch\include\ATen\ops\_test_optional_intlist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1775920Z copying torch\include\ATen\ops\_test_parallel_materialize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1783372Z copying torch\include\ATen\ops\_test_parallel_materialize_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1790148Z copying torch\include\ATen\ops\_test_parallel_materialize_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1796635Z copying torch\include\ATen\ops\_test_parallel_materialize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1803493Z copying torch\include\ATen\ops\_test_serialization_subcmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1810592Z copying torch\include\ATen\ops\_test_serialization_subcmul_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1817456Z copying torch\include\ATen\ops\_test_serialization_subcmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1824270Z copying torch\include\ATen\ops\_test_serialization_subcmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1830948Z copying torch\include\ATen\ops\_test_string_default.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1837978Z copying torch\include\ATen\ops\_test_string_default_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1844611Z copying torch\include\ATen\ops\_test_string_default_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1851205Z copying torch\include\ATen\ops\_test_string_default_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1858129Z copying torch\include\ATen\ops\_test_warn_in_autograd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1865645Z copying torch\include\ATen\ops\_test_warn_in_autograd_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1872400Z copying torch\include\ATen\ops\_test_warn_in_autograd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1879170Z copying torch\include\ATen\ops\_test_warn_in_autograd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1886234Z copying torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1893506Z copying torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1900756Z copying torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1907863Z copying torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1914884Z copying torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1922381Z copying torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1929304Z copying torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1936590Z copying torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1943659Z copying torch\include\ATen\ops\_thnn_fused_gru_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1950667Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1958115Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1965207Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1972375Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1979321Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1986826Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.1993748Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2000714Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2007624Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2014779Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2022445Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2029885Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2037492Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2045981Z 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-06-01T21:22:09.2053716Z 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-06-01T21:22:09.2062137Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2069328Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2076549Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2083433Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2090895Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2097850Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2116698Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2117764Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2118788Z copying torch\include\ATen\ops\_to_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2125534Z copying torch\include\ATen\ops\_to_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2132049Z copying torch\include\ATen\ops\_to_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2138849Z copying torch\include\ATen\ops\_to_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2145707Z copying torch\include\ATen\ops\_to_cpu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2152083Z copying torch\include\ATen\ops\_to_cpu_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2158711Z copying torch\include\ATen\ops\_to_cpu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2165097Z copying torch\include\ATen\ops\_to_cpu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2171770Z copying torch\include\ATen\ops\_to_dense.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2178747Z copying torch\include\ATen\ops\_to_dense_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2185768Z copying torch\include\ATen\ops\_to_dense_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2192506Z copying torch\include\ATen\ops\_to_dense_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2199165Z copying torch\include\ATen\ops\_to_sparse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2205834Z copying torch\include\ATen\ops\_to_sparse_bsc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2212710Z copying torch\include\ATen\ops\_to_sparse_bsc_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2219262Z copying torch\include\ATen\ops\_to_sparse_bsc_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2226285Z copying torch\include\ATen\ops\_to_sparse_bsc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2233003Z copying torch\include\ATen\ops\_to_sparse_bsc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2239878Z copying torch\include\ATen\ops\_to_sparse_bsc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2246630Z copying torch\include\ATen\ops\_to_sparse_bsr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2253734Z copying torch\include\ATen\ops\_to_sparse_bsr_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2260979Z copying torch\include\ATen\ops\_to_sparse_bsr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2267851Z copying torch\include\ATen\ops\_to_sparse_bsr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2274621Z copying torch\include\ATen\ops\_to_sparse_bsr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2281836Z copying torch\include\ATen\ops\_to_sparse_bsr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2288712Z copying torch\include\ATen\ops\_to_sparse_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2295497Z copying torch\include\ATen\ops\_to_sparse_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2302320Z copying torch\include\ATen\ops\_to_sparse_csc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2309535Z copying torch\include\ATen\ops\_to_sparse_csc_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2316343Z copying torch\include\ATen\ops\_to_sparse_csc_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2323208Z copying torch\include\ATen\ops\_to_sparse_csc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2330376Z copying torch\include\ATen\ops\_to_sparse_csc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2351645Z copying torch\include\ATen\ops\_to_sparse_csc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2358517Z copying torch\include\ATen\ops\_to_sparse_csr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2365960Z copying torch\include\ATen\ops\_to_sparse_csr_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2372911Z copying torch\include\ATen\ops\_to_sparse_csr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2380067Z copying torch\include\ATen\ops\_to_sparse_csr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2387062Z copying torch\include\ATen\ops\_to_sparse_csr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2394160Z copying torch\include\ATen\ops\_to_sparse_csr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2401087Z copying torch\include\ATen\ops\_to_sparse_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2407931Z copying torch\include\ATen\ops\_to_sparse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2414856Z copying torch\include\ATen\ops\_to_sparse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2422027Z copying torch\include\ATen\ops\_to_sparse_semi_structured.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2429236Z copying torch\include\ATen\ops\_to_sparse_semi_structured_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2436295Z copying torch\include\ATen\ops\_to_sparse_semi_structured_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2443086Z copying torch\include\ATen\ops\_to_sparse_semi_structured_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2450266Z copying torch\include\ATen\ops\_transformer_encoder_layer_fwd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2458004Z copying torch\include\ATen\ops\_transformer_encoder_layer_fwd_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2468726Z copying torch\include\ATen\ops\_transformer_encoder_layer_fwd_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2474029Z copying torch\include\ATen\ops\_transformer_encoder_layer_fwd_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2482448Z copying torch\include\ATen\ops\_transformer_encoder_layer_fwd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2489167Z copying torch\include\ATen\ops\_transformer_encoder_layer_fwd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2496134Z copying torch\include\ATen\ops\_transform_bias_rescale_qkv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2503601Z copying torch\include\ATen\ops\_transform_bias_rescale_qkv_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2510927Z copying torch\include\ATen\ops\_transform_bias_rescale_qkv_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2517610Z copying torch\include\ATen\ops\_transform_bias_rescale_qkv_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2524852Z copying torch\include\ATen\ops\_transform_bias_rescale_qkv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2531962Z copying torch\include\ATen\ops\_transform_bias_rescale_qkv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2539407Z copying torch\include\ATen\ops\_trilinear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2547319Z copying torch\include\ATen\ops\_trilinear_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2554107Z copying torch\include\ATen\ops\_trilinear_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2561008Z copying torch\include\ATen\ops\_trilinear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2567909Z copying torch\include\ATen\ops\_trilinear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2574751Z copying torch\include\ATen\ops\_triton_multi_head_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2582052Z copying torch\include\ATen\ops\_triton_multi_head_attention_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2588698Z copying torch\include\ATen\ops\_triton_multi_head_attention_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2595621Z copying torch\include\ATen\ops\_triton_multi_head_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2602629Z copying torch\include\ATen\ops\_triton_multi_head_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2609537Z copying torch\include\ATen\ops\_triton_scaled_dot_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2616626Z copying torch\include\ATen\ops\_triton_scaled_dot_attention_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2623464Z copying torch\include\ATen\ops\_triton_scaled_dot_attention_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2630350Z copying torch\include\ATen\ops\_triton_scaled_dot_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2637081Z copying torch\include\ATen\ops\_triton_scaled_dot_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2643954Z copying torch\include\ATen\ops\_unique.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2650372Z copying torch\include\ATen\ops\_unique2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2656976Z copying torch\include\ATen\ops\_unique2_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2663770Z copying torch\include\ATen\ops\_unique2_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2670394Z copying torch\include\ATen\ops\_unique2_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2677031Z copying torch\include\ATen\ops\_unique2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2683897Z copying torch\include\ATen\ops\_unique2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2690900Z copying torch\include\ATen\ops\_unique_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2697980Z copying torch\include\ATen\ops\_unique_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2704908Z copying torch\include\ATen\ops\_unique_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2711633Z copying torch\include\ATen\ops\_unique_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2718462Z copying torch\include\ATen\ops\_unique_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2725342Z copying torch\include\ATen\ops\_unpack_dual.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2732554Z copying torch\include\ATen\ops\_unpack_dual_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2739215Z copying torch\include\ATen\ops\_unpack_dual_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2746463Z copying torch\include\ATen\ops\_unpack_dual_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2753233Z copying torch\include\ATen\ops\_unsafe_index.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2760181Z copying torch\include\ATen\ops\_unsafe_index_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2766845Z copying torch\include\ATen\ops\_unsafe_index_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2773401Z copying torch\include\ATen\ops\_unsafe_index_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2780228Z copying torch\include\ATen\ops\_unsafe_index_put.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2787415Z copying torch\include\ATen\ops\_unsafe_index_put_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2794704Z copying torch\include\ATen\ops\_unsafe_index_put_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2801672Z copying torch\include\ATen\ops\_unsafe_index_put_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2808588Z copying torch\include\ATen\ops\_unsafe_masked_index.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2815888Z copying torch\include\ATen\ops\_unsafe_masked_index_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2822676Z copying torch\include\ATen\ops\_unsafe_masked_index_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2829492Z copying torch\include\ATen\ops\_unsafe_masked_index_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2836809Z copying torch\include\ATen\ops\_unsafe_masked_index_put_accumulate.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2844016Z copying torch\include\ATen\ops\_unsafe_masked_index_put_accumulate_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2850742Z copying torch\include\ATen\ops\_unsafe_masked_index_put_accumulate_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2857742Z copying torch\include\ATen\ops\_unsafe_masked_index_put_accumulate_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2864551Z copying torch\include\ATen\ops\_unsafe_view.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2871819Z copying torch\include\ATen\ops\_unsafe_view_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2896306Z copying torch\include\ATen\ops\_unsafe_view_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2903087Z copying torch\include\ATen\ops\_unsafe_view_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2909990Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2916961Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2939947Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2947171Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2954328Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2961278Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2968452Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2975563Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2982761Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2990433Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.2997666Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3004601Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3011651Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3018517Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3025930Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3032688Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3039485Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3046404Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3053285Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3060758Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3067947Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3075397Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3082338Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3089475Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3096389Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3103637Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3110926Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3117807Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3124668Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3131721Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3138756Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3145647Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3152457Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3159319Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3166657Z copying torch\include\ATen\ops\_upsample_nearest_exact1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3173640Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3181382Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3188530Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3195409Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3202338Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3209284Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3216319Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3223473Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3230942Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3237832Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3244940Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3251829Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3258819Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3266141Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3272945Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3279765Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3286714Z copying torch\include\ATen\ops\_upsample_nearest_exact2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3293780Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3301319Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3308049Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3315417Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3322552Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3329552Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3336504Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3343681Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3351256Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3358513Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3365514Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3372764Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3379822Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3386969Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3394254Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3401383Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3408355Z copying torch\include\ATen\ops\_upsample_nearest_exact3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3415492Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3423374Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3430275Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3437918Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3444805Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3452124Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3459071Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3466274Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3474683Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3482005Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3489012Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3496129Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3503331Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3510893Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3518090Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3525032Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3532060Z copying torch\include\ATen\ops\_use_cudnn_ctc_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3539093Z copying torch\include\ATen\ops\_use_cudnn_ctc_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3547210Z copying torch\include\ATen\ops\_use_cudnn_ctc_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3554565Z copying torch\include\ATen\ops\_use_cudnn_ctc_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3562610Z copying torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3570292Z copying torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3578185Z copying torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3584961Z copying torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3592125Z copying torch\include\ATen\ops\_validate_compressed_sparse_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3599491Z copying torch\include\ATen\ops\_validate_compressed_sparse_indices_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3606232Z copying torch\include\ATen\ops\_validate_compressed_sparse_indices_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3613068Z copying torch\include\ATen\ops\_validate_compressed_sparse_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3620394Z copying torch\include\ATen\ops\_validate_compressed_sparse_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3627460Z copying torch\include\ATen\ops\_validate_sparse_bsc_tensor_args.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3634920Z copying torch\include\ATen\ops\_validate_sparse_bsc_tensor_args_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3641683Z copying torch\include\ATen\ops\_validate_sparse_bsc_tensor_args_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3648567Z copying torch\include\ATen\ops\_validate_sparse_bsc_tensor_args_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3655521Z copying torch\include\ATen\ops\_validate_sparse_bsr_tensor_args.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3662771Z copying torch\include\ATen\ops\_validate_sparse_bsr_tensor_args_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3669781Z copying torch\include\ATen\ops\_validate_sparse_bsr_tensor_args_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3676669Z copying torch\include\ATen\ops\_validate_sparse_bsr_tensor_args_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3683558Z copying torch\include\ATen\ops\_validate_sparse_compressed_tensor_args.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3690965Z copying torch\include\ATen\ops\_validate_sparse_compressed_tensor_args_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3698618Z copying torch\include\ATen\ops\_validate_sparse_compressed_tensor_args_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3705585Z copying torch\include\ATen\ops\_validate_sparse_compressed_tensor_args_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3712608Z copying torch\include\ATen\ops\_validate_sparse_coo_tensor_args.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3719722Z copying torch\include\ATen\ops\_validate_sparse_coo_tensor_args_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3726486Z copying torch\include\ATen\ops\_validate_sparse_coo_tensor_args_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3733415Z copying torch\include\ATen\ops\_validate_sparse_coo_tensor_args_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3740327Z copying torch\include\ATen\ops\_validate_sparse_csc_tensor_args.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3747709Z copying torch\include\ATen\ops\_validate_sparse_csc_tensor_args_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3760888Z copying torch\include\ATen\ops\_validate_sparse_csc_tensor_args_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3767681Z copying torch\include\ATen\ops\_validate_sparse_csc_tensor_args_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3774643Z copying torch\include\ATen\ops\_validate_sparse_csr_tensor_args.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3781955Z copying torch\include\ATen\ops\_validate_sparse_csr_tensor_args_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3788907Z copying torch\include\ATen\ops\_validate_sparse_csr_tensor_args_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3795780Z copying torch\include\ATen\ops\_validate_sparse_csr_tensor_args_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3802180Z copying torch\include\ATen\ops\_values.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3808204Z copying torch\include\ATen\ops\_values_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3815275Z copying torch\include\ATen\ops\_values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3822535Z copying torch\include\ATen\ops\_values_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3829506Z copying torch\include\ATen\ops\_values_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3836146Z copying torch\include\ATen\ops\_values_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3842872Z copying torch\include\ATen\ops\_values_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3849562Z copying torch\include\ATen\ops\_values_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3856381Z copying torch\include\ATen\ops\_version.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3863129Z copying torch\include\ATen\ops\_version_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3869821Z copying torch\include\ATen\ops\_version_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3876375Z copying torch\include\ATen\ops\_version_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3883463Z copying torch\include\ATen\ops\_weight_int4pack_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3890302Z copying torch\include\ATen\ops\_weight_int4pack_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3896983Z copying torch\include\ATen\ops\_weight_int4pack_mm_for_cpu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3905097Z copying torch\include\ATen\ops\_weight_int4pack_mm_for_cpu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3912500Z copying torch\include\ATen\ops\_weight_int4pack_mm_for_cpu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3919201Z copying torch\include\ATen\ops\_weight_int4pack_mm_for_cpu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3926363Z copying torch\include\ATen\ops\_weight_int4pack_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3933252Z copying torch\include\ATen\ops\_weight_int4pack_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3940514Z copying torch\include\ATen\ops\_weight_int4pack_mm_with_scales_and_zeros.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3947538Z 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-06-01T21:22:09.3954379Z 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-06-01T21:22:09.3961401Z copying torch\include\ATen\ops\_weight_int8pack_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3968609Z copying torch\include\ATen\ops\_weight_int8pack_mm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3975502Z copying torch\include\ATen\ops\_weight_int8pack_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3982262Z copying torch\include\ATen\ops\_weight_int8pack_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3988925Z copying torch\include\ATen\ops\_weight_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.3996080Z copying torch\include\ATen\ops\_weight_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.4003603Z copying torch\include\ATen\ops\_weight_norm_differentiable_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.4011020Z copying torch\include\ATen\ops\_weight_norm_differentiable_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.4018065Z copying torch\include\ATen\ops\_weight_norm_differentiable_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.4025669Z copying torch\include\ATen\ops\_weight_norm_differentiable_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.4032646Z copying torch\include\ATen\ops\_weight_norm_interface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.4039662Z copying torch\include\ATen\ops\_weight_norm_interface_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.4053841Z copying torch\include\ATen\ops\_weight_norm_interface_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.4062475Z copying torch\include\ATen\ops\_weight_norm_interface_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.4069829Z copying torch\include\ATen\ops\_weight_norm_interface_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.4077160Z copying torch\include\ATen\ops\_weight_norm_interface_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.4084175Z copying torch\include\ATen\ops\_weight_norm_interface_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.4091499Z copying torch\include\ATen\ops\_weight_norm_interface_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.4098758Z copying torch\include\ATen\ops\_weight_norm_interface_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.4105681Z copying torch\include\ATen\ops\_weight_norm_interface_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.4112653Z copying torch\include\ATen\ops\_weight_norm_interface_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.4119656Z copying torch\include\ATen\ops\_weight_norm_interface_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.4126410Z copying torch\include\ATen\ops\_weight_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.4132919Z copying torch\include\ATen\ops\_weight_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.4139964Z copying torch\include\ATen\ops\_wrapped_linear_prepack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.4147021Z copying torch\include\ATen\ops\_wrapped_linear_prepack_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.4153898Z copying torch\include\ATen\ops\_wrapped_linear_prepack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.4160530Z copying torch\include\ATen\ops\_wrapped_linear_prepack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.4167259Z copying torch\include\ATen\ops\_wrapped_quantized_linear_prepacked.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.4220734Z copying torch\include\ATen\ops\_wrapped_quantized_linear_prepacked_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.4227350Z copying torch\include\ATen\ops\_wrapped_quantized_linear_prepacked_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.4234178Z copying torch\include\ATen\ops\_wrapped_quantized_linear_prepacked_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:22:09.4240157Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\quantized 2025-06-01T21:22:09.4243152Z copying torch\include\ATen\quantized\QTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\quantized 2025-06-01T21:22:09.4270695Z copying torch\include\ATen\quantized\Quantizer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\quantized 2025-06-01T21:22:09.4276277Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-06-01T21:22:09.4279283Z copying torch\include\ATen\xpu\CachingHostAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-06-01T21:22:09.4285510Z copying torch\include\ATen\xpu\PinnedMemoryAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-06-01T21:22:09.4291624Z copying torch\include\ATen\xpu\XPUContext.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-06-01T21:22:09.4297672Z copying torch\include\ATen\xpu\XPUDevice.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-06-01T21:22:09.4308297Z copying torch\include\ATen\xpu\XPUEvent.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-06-01T21:22:09.4314584Z copying torch\include\ATen\xpu\XPUGeneratorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-06-01T21:22:09.4319989Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\detail 2025-06-01T21:22:09.4322864Z copying torch\include\ATen\xpu\detail\XPUHooks.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\detail 2025-06-01T21:22:09.4328371Z creating build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:22:09.4332927Z copying torch\include\c10\core\alignment.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:22:09.4339072Z copying torch\include\c10\core\Allocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:22:09.4345646Z copying torch\include\c10\core\AutogradState.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:22:09.4352212Z copying torch\include\c10\core\Backend.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:22:09.4363129Z copying torch\include\c10\core\CachingDeviceAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:22:09.4369443Z copying torch\include\c10\core\CompileTimeFunctionPointer.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:22:09.4375694Z copying torch\include\c10\core\ConstantSymNodeImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:22:09.4382109Z copying torch\include\c10\core\Contiguity.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:22:09.4388425Z copying torch\include\c10\core\CopyBytes.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:22:09.4394812Z copying torch\include\c10\core\CPUAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:22:09.4401098Z copying torch\include\c10\core\DefaultDtype.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:22:09.4407430Z copying torch\include\c10\core\DefaultTensorOptions.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:22:09.4413666Z copying torch\include\c10\core\Device.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:22:09.4420248Z copying torch\include\c10\core\DeviceArray.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:22:09.4426711Z copying torch\include\c10\core\DeviceGuard.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:22:09.4433200Z copying torch\include\c10\core\DeviceType.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:22:09.4439527Z copying torch\include\c10\core\DispatchKey.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:22:09.4446521Z copying torch\include\c10\core\DispatchKeySet.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:22:09.4453990Z copying torch\include\c10\core\DynamicCast.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:22:09.4460567Z copying torch\include\c10\core\Event.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:22:09.4472036Z copying torch\include\c10\core\GeneratorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:22:09.4478415Z copying torch\include\c10\core\GradMode.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:22:09.4485053Z copying torch\include\c10\core\InferenceMode.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:22:09.4491531Z copying torch\include\c10\core\Layout.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:22:09.4497861Z copying torch\include\c10\core\MemoryFormat.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:22:09.4504516Z copying torch\include\c10\core\OptionalRef.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:22:09.4510759Z copying torch\include\c10\core\PyHandleCache.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:22:09.4517161Z copying torch\include\c10\core\QEngine.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:22:09.4523319Z copying torch\include\c10\core\QScheme.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:22:09.4536274Z copying torch\include\c10\core\RefcountedDeleter.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:22:09.4543592Z copying torch\include\c10\core\SafePyObject.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:22:09.4551060Z copying torch\include\c10\core\Scalar.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:22:09.4558196Z copying torch\include\c10\core\ScalarType.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:22:09.4575063Z copying torch\include\c10\core\ScalarTypeToTypeMeta.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:22:09.4577948Z copying torch\include\c10\core\Storage.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:22:09.4584384Z copying torch\include\c10\core\StorageImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:22:09.4591051Z copying torch\include\c10\core\Stream.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:22:09.4598703Z copying torch\include\c10\core\StreamGuard.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:22:09.4603992Z copying torch\include\c10\core\SymbolicShapeMeta.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:22:09.4615685Z copying torch\include\c10\core\SymBool.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:22:09.4622072Z copying torch\include\c10\core\SymFloat.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:22:09.4628552Z copying torch\include\c10\core\SymInt.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:22:09.4634866Z copying torch\include\c10\core\SymIntArrayRef.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:22:09.4641208Z copying torch\include\c10\core\SymNodeImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:22:09.4647615Z copying torch\include\c10\core\TensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:22:09.4660617Z copying torch\include\c10\core\TensorOptions.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:22:09.4667578Z copying torch\include\c10\core\thread_pool.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:22:09.4674210Z copying torch\include\c10\core\UndefinedTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:22:09.4680706Z copying torch\include\c10\core\WrapDimMinimal.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:22:09.4686250Z creating build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-06-01T21:22:09.4689186Z copying torch\include\c10\core\impl\alloc_cpu.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-06-01T21:22:09.4695501Z copying torch\include\c10\core\impl\COW.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-06-01T21:22:09.4702615Z copying torch\include\c10\core\impl\COWDeleter.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-06-01T21:22:09.4709009Z copying torch\include\c10\core\impl\DeviceGuardImplInterface.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-06-01T21:22:09.4719668Z copying torch\include\c10\core\impl\FakeGuardImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-06-01T21:22:09.4725859Z copying torch\include\c10\core\impl\GPUTrace.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-06-01T21:22:09.4732162Z copying torch\include\c10\core\impl\HermeticPyObjectTLS.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-06-01T21:22:09.4738647Z copying torch\include\c10\core\impl\InlineDeviceGuard.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-06-01T21:22:09.4745061Z copying torch\include\c10\core\impl\InlineEvent.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-06-01T21:22:09.4751408Z copying torch\include\c10\core\impl\InlineStreamGuard.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-06-01T21:22:09.4758077Z copying torch\include\c10\core\impl\LocalDispatchKeySet.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-06-01T21:22:09.4764075Z copying torch\include\c10\core\impl\PyInterpreter.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-06-01T21:22:09.4770371Z copying torch\include\c10\core\impl\PyObjectSlot.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-06-01T21:22:09.4776735Z copying torch\include\c10\core\impl\PythonDispatcherTLS.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-06-01T21:22:09.4783185Z copying torch\include\c10\core\impl\SizesAndStrides.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-06-01T21:22:09.4789743Z copying torch\include\c10\core\impl\TorchDispatchModeTLS.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-06-01T21:22:09.4795980Z copying torch\include\c10\core\impl\VirtualGuardImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-06-01T21:22:09.4801593Z creating build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-06-01T21:22:09.4804483Z copying torch\include\c10\cuda\CUDAAlgorithm.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-06-01T21:22:09.4810737Z copying torch\include\c10\cuda\CUDAAllocatorConfig.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-06-01T21:22:09.4817216Z copying torch\include\c10\cuda\CUDACachingAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-06-01T21:22:09.4824027Z copying torch\include\c10\cuda\CUDADeviceAssertion.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-06-01T21:22:09.4834732Z copying torch\include\c10\cuda\CUDADeviceAssertionHost.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-06-01T21:22:09.4841056Z copying torch\include\c10\cuda\CUDAException.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-06-01T21:22:09.4847814Z copying torch\include\c10\cuda\CUDAFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-06-01T21:22:09.4854473Z copying torch\include\c10\cuda\CUDAGraphsC10Utils.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-06-01T21:22:09.4860922Z copying torch\include\c10\cuda\CUDAGuard.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-06-01T21:22:09.4867446Z copying torch\include\c10\cuda\CUDAMacros.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-06-01T21:22:09.4873899Z copying torch\include\c10\cuda\CUDAMathCompat.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-06-01T21:22:09.4880516Z copying torch\include\c10\cuda\CUDAMiscFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-06-01T21:22:09.4886854Z copying torch\include\c10\cuda\CUDAStream.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-06-01T21:22:09.4893347Z copying torch\include\c10\cuda\driver_api.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-06-01T21:22:09.4899307Z creating build\lib.win-amd64-cpython-39\torch\include\c10\cuda\impl 2025-06-01T21:22:09.4902381Z copying torch\include\c10\cuda\impl\CUDAGuardImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda\impl 2025-06-01T21:22:09.4909363Z copying torch\include\c10\cuda\impl\CUDATest.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda\impl 2025-06-01T21:22:09.4914481Z creating build\lib.win-amd64-cpython-39\torch\include\c10\macros 2025-06-01T21:22:09.4917568Z copying torch\include\c10\macros\cmake_macros.h -> build\lib.win-amd64-cpython-39\torch\include\c10\macros 2025-06-01T21:22:09.4924205Z copying torch\include\c10\macros\Export.h -> build\lib.win-amd64-cpython-39\torch\include\c10\macros 2025-06-01T21:22:09.4930494Z copying torch\include\c10\macros\Macros.h -> build\lib.win-amd64-cpython-39\torch\include\c10\macros 2025-06-01T21:22:09.4936523Z creating build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-06-01T21:22:09.4939662Z copying torch\include\c10\metal\atomic.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-06-01T21:22:09.4946019Z copying torch\include\c10\metal\common.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-06-01T21:22:09.4952400Z copying torch\include\c10\metal\indexing.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-06-01T21:22:09.4959081Z copying torch\include\c10\metal\random.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-06-01T21:22:09.4965564Z copying torch\include\c10\metal\reduction_utils.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-06-01T21:22:09.4972309Z copying torch\include\c10\metal\special_math.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-06-01T21:22:09.4984426Z copying torch\include\c10\metal\utils.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-06-01T21:22:09.4989777Z creating build\lib.win-amd64-cpython-39\torch\include\c10\mobile 2025-06-01T21:22:09.4992810Z copying torch\include\c10\mobile\CPUCachingAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\mobile 2025-06-01T21:22:09.4999205Z copying torch\include\c10\mobile\CPUProfilingAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\mobile 2025-06-01T21:22:09.5005079Z creating build\lib.win-amd64-cpython-39\torch\include\c10\test\util 2025-06-01T21:22:09.5009301Z copying torch\include\c10\test\util\complex_math_test_common.h -> build\lib.win-amd64-cpython-39\torch\include\c10\test\util 2025-06-01T21:22:09.5015875Z copying torch\include\c10\test\util\complex_test_common.h -> build\lib.win-amd64-cpython-39\torch\include\c10\test\util 2025-06-01T21:22:09.5023603Z copying torch\include\c10\test\util\Macros.h -> build\lib.win-amd64-cpython-39\torch\include\c10\test\util 2025-06-01T21:22:09.5029457Z creating build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5032504Z copying torch\include\c10\util\AbortHandler.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5039400Z copying torch\include\c10\util\accumulate.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5046320Z copying torch\include\c10\util\AlignOf.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5053639Z copying torch\include\c10\util\ApproximateClock.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5064652Z copying torch\include\c10\util\Array.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5070905Z copying torch\include\c10\util\ArrayRef.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5077905Z copying torch\include\c10\util\Backtrace.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5084851Z copying torch\include\c10\util\BFloat16-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5091939Z copying torch\include\c10\util\BFloat16-math.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5098730Z copying torch\include\c10\util\BFloat16.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5105593Z copying torch\include\c10\util\bits.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5112033Z copying torch\include\c10\util\Bitset.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5118090Z copying torch\include\c10\util\bit_cast.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5124472Z copying torch\include\c10\util\C++17.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5130947Z copying torch\include\c10\util\CallOnce.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5137931Z copying torch\include\c10\util\complex.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5144941Z copying torch\include\c10\util\complex_math.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5151653Z copying torch\include\c10\util\complex_utils.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5158603Z copying torch\include\c10\util\ConstexprCrc.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5165714Z copying torch\include\c10\util\copysign.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5172317Z copying torch\include\c10\util\DeadlockDetection.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5178953Z copying torch\include\c10\util\Deprecated.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5187500Z copying torch\include\c10\util\DimVector.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5193349Z copying torch\include\c10\util\DynamicCounter.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5204311Z copying torch\include\c10\util\Enumerate.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5211388Z copying torch\include\c10\util\env.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5217599Z copying torch\include\c10\util\error.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5223581Z copying torch\include\c10\util\Exception.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5230827Z copying torch\include\c10\util\ExclusivelyOwned.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5237475Z copying torch\include\c10\util\ExclusivelyOwnedTensorTraits.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5244186Z copying torch\include\c10\util\FbcodeMaps.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5250517Z copying torch\include\c10\util\Flags.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5257275Z copying torch\include\c10\util\flat_hash_map.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5265138Z copying torch\include\c10\util\Float4_e2m1fn_x2.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5271852Z copying torch\include\c10\util\Float8_e4m3fn-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5282581Z copying torch\include\c10\util\Float8_e4m3fn.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5289299Z copying torch\include\c10\util\Float8_e4m3fnuz-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5295971Z copying torch\include\c10\util\Float8_e4m3fnuz.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5303622Z copying torch\include\c10\util\Float8_e5m2-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5311302Z copying torch\include\c10\util\Float8_e5m2.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5318909Z copying torch\include\c10\util\Float8_e5m2fnuz-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5326723Z copying torch\include\c10\util\Float8_e5m2fnuz.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5334883Z copying torch\include\c10\util\Float8_e8m0fnu-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5341620Z copying torch\include\c10\util\Float8_e8m0fnu.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5352587Z copying torch\include\c10\util\Float8_fnuz_cvt.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5359517Z copying torch\include\c10\util\floating_point_utils.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5366018Z copying torch\include\c10\util\FunctionRef.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5373132Z copying torch\include\c10\util\Gauge.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5379792Z copying torch\include\c10\util\generic_math.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5386452Z copying torch\include\c10\util\Half-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5392865Z copying torch\include\c10\util\Half.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5399613Z copying torch\include\c10\util\hash.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5406328Z copying torch\include\c10\util\IdWrapper.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5413222Z copying torch\include\c10\util\int128.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5420115Z copying torch\include\c10\util\IntrusiveList.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5426770Z copying torch\include\c10\util\intrusive_ptr.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5434437Z copying torch\include\c10\util\irange.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5445245Z copying torch\include\c10\util\Lazy.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5451925Z copying torch\include\c10\util\LeftRight.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5458618Z copying torch\include\c10\util\llvmMathExtras.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5465923Z copying torch\include\c10\util\Load.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5472256Z copying torch\include\c10\util\Logging.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5478918Z copying torch\include\c10\util\logging_is_google_glog.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5485635Z copying torch\include\c10\util\logging_is_not_google_glog.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5492393Z copying torch\include\c10\util\MathConstants.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5498876Z copying torch\include\c10\util\MaybeOwned.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5505982Z copying torch\include\c10\util\Metaprogramming.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5512613Z copying torch\include\c10\util\NetworkFlow.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5526992Z copying torch\include\c10\util\numa.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5533430Z copying torch\include\c10\util\Optional.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5540614Z copying torch\include\c10\util\OptionalArrayRef.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5547426Z copying torch\include\c10\util\order_preserving_flat_hash_map.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5555084Z copying torch\include\c10\util\overflows.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5561787Z copying torch\include\c10\util\overloaded.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5568644Z copying torch\include\c10\util\ParallelGuard.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5575211Z copying torch\include\c10\util\python_stub.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5581701Z copying torch\include\c10\util\qint32.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5587549Z copying torch\include\c10\util\qint8.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5593772Z copying torch\include\c10\util\quint2x4.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5600074Z copying torch\include\c10\util\quint4x2.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5612547Z copying torch\include\c10\util\quint8.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5704044Z copying torch\include\c10\util\Registry.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5710445Z copying torch\include\c10\util\safe_numerics.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5717181Z copying torch\include\c10\util\ScopeExit.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5723844Z copying torch\include\c10\util\Semaphore.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5730514Z copying torch\include\c10\util\signal_handler.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5737551Z copying torch\include\c10\util\SmallBuffer.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5744509Z copying torch\include\c10\util\SmallVector.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5752159Z copying torch\include\c10\util\sparse_bitset.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5759077Z copying torch\include\c10\util\ssize.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5766213Z copying torch\include\c10\util\static_tracepoint.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5773763Z copying torch\include\c10\util\static_tracepoint_elfx86.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5785199Z copying torch\include\c10\util\strides.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5791207Z copying torch\include\c10\util\StringUtil.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5797880Z copying torch\include\c10\util\string_utils.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5804443Z copying torch\include\c10\util\string_view.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5811763Z copying torch\include\c10\util\strong_type.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5818825Z copying torch\include\c10\util\Synchronized.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5825515Z copying torch\include\c10\util\tempfile.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5832264Z copying torch\include\c10\util\ThreadLocal.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5839652Z copying torch\include\c10\util\ThreadLocalDebugInfo.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5845822Z copying torch\include\c10\util\thread_name.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5852335Z copying torch\include\c10\util\Type.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5858516Z copying torch\include\c10\util\TypeCast.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5865490Z copying torch\include\c10\util\typeid.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5872584Z copying torch\include\c10\util\TypeIndex.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5879476Z copying torch\include\c10\util\TypeList.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5886455Z copying torch\include\c10\util\TypeSafeSignMath.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5893099Z copying torch\include\c10\util\TypeTraits.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5900589Z copying torch\include\c10\util\Unicode.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5907502Z copying torch\include\c10\util\UniqueVoidPtr.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5914408Z copying torch\include\c10\util\Unroll.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5920662Z copying torch\include\c10\util\WaitCounter.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5927578Z copying torch\include\c10\util\WaitCounterDynamicBackend.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5934188Z copying torch\include\c10\util\win32-headers.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:22:09.5945210Z creating build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-06-01T21:22:09.5952099Z copying torch\include\c10\xpu\XPUCachingAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-06-01T21:22:09.5958513Z copying torch\include\c10\xpu\XPUDeviceProp.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-06-01T21:22:09.5965641Z copying torch\include\c10\xpu\XPUException.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-06-01T21:22:09.5972159Z copying torch\include\c10\xpu\XPUFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-06-01T21:22:09.5983391Z copying torch\include\c10\xpu\XPUMacros.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-06-01T21:22:09.5989917Z copying torch\include\c10\xpu\XPUStream.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-06-01T21:22:09.5995772Z creating build\lib.win-amd64-cpython-39\torch\include\c10\xpu\impl 2025-06-01T21:22:09.5998825Z copying torch\include\c10\xpu\impl\XPUGuardImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu\impl 2025-06-01T21:22:09.6004554Z creating build\lib.win-amd64-cpython-39\torch\include\c10\xpu\test\impl 2025-06-01T21:22:09.6008705Z copying torch\include\c10\xpu\test\impl\XPUTest.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu\test\impl 2025-06-01T21:22:09.6014183Z creating build\lib.win-amd64-cpython-39\torch\include\caffe2\core 2025-06-01T21:22:09.6018136Z copying torch\include\caffe2\core\common.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\core 2025-06-01T21:22:09.6024630Z copying torch\include\caffe2\core\macros.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\core 2025-06-01T21:22:09.6031476Z copying torch\include\caffe2\core\timer.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\core 2025-06-01T21:22:09.6037214Z creating build\lib.win-amd64-cpython-39\torch\include\caffe2\perfkernels 2025-06-01T21:22:09.6040668Z copying torch\include\caffe2\perfkernels\batch_box_cox_vec.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\perfkernels 2025-06-01T21:22:09.6047186Z copying torch\include\caffe2\perfkernels\common.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\perfkernels 2025-06-01T21:22:09.6054334Z copying torch\include\caffe2\perfkernels\embedding_lookup_idx.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\perfkernels 2025-06-01T21:22:09.6060584Z creating build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-06-01T21:22:09.6063904Z copying torch\include\caffe2\serialize\crc_alt.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-06-01T21:22:09.6088604Z copying torch\include\caffe2\serialize\file_adapter.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-06-01T21:22:09.6095088Z copying torch\include\caffe2\serialize\inline_container.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-06-01T21:22:09.6101662Z copying torch\include\caffe2\serialize\in_memory_adapter.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-06-01T21:22:09.6112858Z copying torch\include\caffe2\serialize\istream_adapter.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-06-01T21:22:09.6119066Z copying torch\include\caffe2\serialize\read_adapter_interface.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-06-01T21:22:09.6125199Z copying torch\include\caffe2\serialize\versions.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-06-01T21:22:09.6130663Z creating build\lib.win-amd64-cpython-39\torch\include\caffe2\utils 2025-06-01T21:22:09.6133503Z copying torch\include\caffe2\utils\fixed_divisor.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils 2025-06-01T21:22:09.6139767Z copying torch\include\caffe2\utils\proto_wrap.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils 2025-06-01T21:22:09.6146292Z copying torch\include\caffe2\utils\string_utils.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils 2025-06-01T21:22:09.6151634Z creating build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-06-01T21:22:09.6160629Z copying torch\include\caffe2\utils\threadpool\pthreadpool-cpp.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-06-01T21:22:09.6167116Z copying torch\include\caffe2\utils\threadpool\pthreadpool.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-06-01T21:22:09.6173741Z copying torch\include\caffe2\utils\threadpool\ThreadPool.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-06-01T21:22:09.6184877Z copying torch\include\caffe2\utils\threadpool\ThreadPoolCommon.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-06-01T21:22:09.6191532Z copying torch\include\caffe2\utils\threadpool\thread_pool_guard.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-06-01T21:22:09.6197779Z copying torch\include\caffe2\utils\threadpool\WorkersPool.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-06-01T21:22:09.6203838Z creating build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-06-01T21:22:09.6206805Z copying torch\include\fbgemm\ConvUtils.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-06-01T21:22:09.6213177Z copying torch\include\fbgemm\Fbgemm.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-06-01T21:22:09.6220480Z copying torch\include\fbgemm\FbgemmBuild.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-06-01T21:22:09.6227142Z copying torch\include\fbgemm\FbgemmConvert.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-06-01T21:22:09.6238142Z copying torch\include\fbgemm\FbgemmEmbedding.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-06-01T21:22:09.6244831Z copying torch\include\fbgemm\FbgemmFP16.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-06-01T21:22:09.6251343Z copying torch\include\fbgemm\FbgemmFP32.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-06-01T21:22:09.6257934Z copying torch\include\fbgemm\FbgemmFPCommon.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-06-01T21:22:09.6264719Z copying torch\include\fbgemm\FbgemmI64.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-06-01T21:22:09.6271065Z copying torch\include\fbgemm\FbgemmI8DepthwiseAvx2.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-06-01T21:22:09.6277846Z copying torch\include\fbgemm\FbgemmI8DirectconvAvx2.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-06-01T21:22:09.6284621Z copying torch\include\fbgemm\FbgemmI8Spmdm.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-06-01T21:22:09.6291233Z copying torch\include\fbgemm\FbgemmPackMatrixB.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-06-01T21:22:09.6297896Z copying torch\include\fbgemm\FbgemmSparse.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-06-01T21:22:09.6304780Z copying torch\include\fbgemm\FloatConversion.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-06-01T21:22:09.6311360Z copying torch\include\fbgemm\OutputProcessing-inl.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-06-01T21:22:09.6317846Z copying torch\include\fbgemm\PackingTraits-inl.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-06-01T21:22:09.6324648Z copying torch\include\fbgemm\QuantUtils.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-06-01T21:22:09.6331115Z copying torch\include\fbgemm\QuantUtilsAvx2.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-06-01T21:22:09.6342329Z copying torch\include\fbgemm\QuantUtilsAvx512.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-06-01T21:22:09.6348647Z copying torch\include\fbgemm\QuantUtilsNeon.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-06-01T21:22:09.6355156Z copying torch\include\fbgemm\SimdUtils.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-06-01T21:22:09.6366155Z copying torch\include\fbgemm\spmmUtils.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-06-01T21:22:09.6374880Z copying torch\include\fbgemm\spmmUtilsAvx2.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-06-01T21:22:09.6381401Z copying torch\include\fbgemm\Types.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-06-01T21:22:09.6387392Z copying torch\include\fbgemm\Utils.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-06-01T21:22:09.6393662Z copying torch\include\fbgemm\UtilsAvx2.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-06-01T21:22:09.6404134Z creating build\lib.win-amd64-cpython-39\torch\include\fmt 2025-06-01T21:22:09.6407003Z copying torch\include\fmt\args.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-06-01T21:22:09.6413207Z copying torch\include\fmt\base.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-06-01T21:22:09.6420988Z copying torch\include\fmt\chrono.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-06-01T21:22:09.6428272Z copying torch\include\fmt\color.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-06-01T21:22:09.6435106Z copying torch\include\fmt\compile.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-06-01T21:22:09.6442017Z copying torch\include\fmt\core.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-06-01T21:22:09.6448018Z copying torch\include\fmt\format-inl.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-06-01T21:22:09.6460057Z copying torch\include\fmt\format.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-06-01T21:22:09.6468375Z copying torch\include\fmt\os.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-06-01T21:22:09.6474949Z copying torch\include\fmt\ostream.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-06-01T21:22:09.6481468Z copying torch\include\fmt\printf.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-06-01T21:22:09.6488596Z copying torch\include\fmt\ranges.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-06-01T21:22:09.6496017Z copying torch\include\fmt\std.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-06-01T21:22:09.6503118Z copying torch\include\fmt\xchar.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-06-01T21:22:09.6509104Z creating build\lib.win-amd64-cpython-39\torch\include\fp16 2025-06-01T21:22:09.6511979Z copying torch\include\fp16\bitcasts.h -> build\lib.win-amd64-cpython-39\torch\include\fp16 2025-06-01T21:22:09.6518547Z copying torch\include\fp16\fp16.h -> build\lib.win-amd64-cpython-39\torch\include\fp16 2025-06-01T21:22:09.6525663Z copying torch\include\fp16\psimd.h -> build\lib.win-amd64-cpython-39\torch\include\fp16 2025-06-01T21:22:09.6531505Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:22:09.6536012Z copying torch\include\google\protobuf\any.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:22:09.6542683Z copying torch\include\google\protobuf\any.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:22:09.6549446Z copying torch\include\google\protobuf\api.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:22:09.6557206Z copying torch\include\google\protobuf\arena.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:22:09.6564272Z copying torch\include\google\protobuf\arenastring.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:22:09.6575506Z copying torch\include\google\protobuf\arena_impl.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:22:09.6582798Z copying torch\include\google\protobuf\descriptor.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:22:09.6590955Z copying torch\include\google\protobuf\descriptor.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:22:09.6602800Z copying torch\include\google\protobuf\descriptor_database.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:22:09.6609753Z copying torch\include\google\protobuf\duration.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:22:09.6616764Z copying torch\include\google\protobuf\dynamic_message.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:22:09.6623727Z copying torch\include\google\protobuf\empty.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:22:09.6630575Z copying torch\include\google\protobuf\extension_set.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:22:09.6638067Z copying torch\include\google\protobuf\extension_set_inl.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:22:09.6644740Z copying torch\include\google\protobuf\field_mask.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:22:09.6651856Z copying torch\include\google\protobuf\generated_enum_reflection.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:22:09.6658849Z copying torch\include\google\protobuf\generated_enum_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:22:09.6665701Z copying torch\include\google\protobuf\generated_message_reflection.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:22:09.6672412Z copying torch\include\google\protobuf\generated_message_table_driven.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:22:09.6679202Z copying torch\include\google\protobuf\generated_message_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:22:09.6690283Z copying torch\include\google\protobuf\has_bits.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:22:09.6696646Z copying torch\include\google\protobuf\implicit_weak_message.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:22:09.6703410Z copying torch\include\google\protobuf\inlined_string_field.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:22:09.6709952Z copying torch\include\google\protobuf\map.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:22:09.6717029Z copying torch\include\google\protobuf\map_entry.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:22:09.6723655Z copying torch\include\google\protobuf\map_entry_lite.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:22:09.6730910Z copying torch\include\google\protobuf\map_field.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:22:09.6738007Z copying torch\include\google\protobuf\map_field_inl.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:22:09.6744849Z copying torch\include\google\protobuf\map_field_lite.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:22:09.6751347Z copying torch\include\google\protobuf\map_type_handler.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:22:09.6762935Z copying torch\include\google\protobuf\message.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:22:09.6770682Z copying torch\include\google\protobuf\message_lite.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:22:09.6778236Z copying torch\include\google\protobuf\metadata.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:22:09.6785002Z copying torch\include\google\protobuf\metadata_lite.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:22:09.6791930Z copying torch\include\google\protobuf\parse_context.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:22:09.6799178Z copying torch\include\google\protobuf\port.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:22:09.6805868Z copying torch\include\google\protobuf\reflection.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:22:09.6812929Z copying torch\include\google\protobuf\reflection_ops.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:22:09.6819738Z copying torch\include\google\protobuf\repeated_field.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:22:09.6828023Z copying torch\include\google\protobuf\service.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:22:09.6835181Z copying torch\include\google\protobuf\source_context.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:22:09.6846716Z copying torch\include\google\protobuf\struct.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:22:09.6858921Z copying torch\include\google\protobuf\text_format.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:22:09.6866299Z copying torch\include\google\protobuf\timestamp.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:22:09.6873008Z copying torch\include\google\protobuf\type.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:22:09.6880971Z copying torch\include\google\protobuf\unknown_field_set.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:22:09.6887787Z copying torch\include\google\protobuf\wire_format.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:22:09.6894822Z copying torch\include\google\protobuf\wire_format_lite.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:22:09.6902928Z copying torch\include\google\protobuf\wrappers.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:22:09.6910130Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-06-01T21:22:09.6913148Z copying torch\include\google\protobuf\compiler\code_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-06-01T21:22:09.6919728Z copying torch\include\google\protobuf\compiler\command_line_interface.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-06-01T21:22:09.6926618Z copying torch\include\google\protobuf\compiler\importer.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-06-01T21:22:09.6933176Z copying torch\include\google\protobuf\compiler\parser.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-06-01T21:22:09.6940057Z copying torch\include\google\protobuf\compiler\plugin.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-06-01T21:22:09.6950997Z copying torch\include\google\protobuf\compiler\plugin.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-06-01T21:22:09.6957578Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\cpp 2025-06-01T21:22:09.6960589Z copying torch\include\google\protobuf\compiler\cpp\cpp_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\cpp 2025-06-01T21:22:09.6966227Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\csharp 2025-06-01T21:22:09.6969385Z copying torch\include\google\protobuf\compiler\csharp\csharp_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\csharp 2025-06-01T21:22:09.6976089Z copying torch\include\google\protobuf\compiler\csharp\csharp_names.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\csharp 2025-06-01T21:22:09.6981698Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\java 2025-06-01T21:22:09.6984786Z copying torch\include\google\protobuf\compiler\java\java_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\java 2025-06-01T21:22:09.6991270Z copying torch\include\google\protobuf\compiler\java\java_names.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\java 2025-06-01T21:22:09.6996987Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\js 2025-06-01T21:22:09.6999904Z copying torch\include\google\protobuf\compiler\js\js_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\js 2025-06-01T21:22:09.7006603Z 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-06-01T21:22:09.7012139Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\objectivec 2025-06-01T21:22:09.7015353Z copying torch\include\google\protobuf\compiler\objectivec\objectivec_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\objectivec 2025-06-01T21:22:09.7021950Z copying torch\include\google\protobuf\compiler\objectivec\objectivec_helpers.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\objectivec 2025-06-01T21:22:09.7027825Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\php 2025-06-01T21:22:09.7030930Z copying torch\include\google\protobuf\compiler\php\php_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\php 2025-06-01T21:22:09.7041978Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\python 2025-06-01T21:22:09.7045028Z copying torch\include\google\protobuf\compiler\python\python_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\python 2025-06-01T21:22:09.7050628Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\ruby 2025-06-01T21:22:09.7054183Z copying torch\include\google\protobuf\compiler\ruby\ruby_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\ruby 2025-06-01T21:22:09.7059810Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-06-01T21:22:09.7062923Z copying torch\include\google\protobuf\io\coded_stream.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-06-01T21:22:09.7071031Z copying torch\include\google\protobuf\io\gzip_stream.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-06-01T21:22:09.7077253Z copying torch\include\google\protobuf\io\io_win32.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-06-01T21:22:09.7083853Z copying torch\include\google\protobuf\io\printer.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-06-01T21:22:09.7090108Z copying torch\include\google\protobuf\io\strtod.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-06-01T21:22:09.7103065Z copying torch\include\google\protobuf\io\tokenizer.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-06-01T21:22:09.7110092Z copying torch\include\google\protobuf\io\zero_copy_stream.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-06-01T21:22:09.7116811Z copying torch\include\google\protobuf\io\zero_copy_stream_impl.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-06-01T21:22:09.7123831Z copying torch\include\google\protobuf\io\zero_copy_stream_impl_lite.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-06-01T21:22:09.7129873Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-06-01T21:22:09.7133003Z copying torch\include\google\protobuf\stubs\bytestream.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-06-01T21:22:09.7139487Z copying torch\include\google\protobuf\stubs\callback.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-06-01T21:22:09.7146585Z copying torch\include\google\protobuf\stubs\casts.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-06-01T21:22:09.7152688Z copying torch\include\google\protobuf\stubs\common.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-06-01T21:22:09.7159106Z copying torch\include\google\protobuf\stubs\fastmem.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-06-01T21:22:09.7165713Z copying torch\include\google\protobuf\stubs\hash.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-06-01T21:22:09.7176309Z copying torch\include\google\protobuf\stubs\logging.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-06-01T21:22:09.7182745Z copying torch\include\google\protobuf\stubs\macros.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-06-01T21:22:09.7189024Z copying torch\include\google\protobuf\stubs\map_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-06-01T21:22:09.7195722Z copying torch\include\google\protobuf\stubs\mutex.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-06-01T21:22:09.7201969Z copying torch\include\google\protobuf\stubs\once.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-06-01T21:22:09.7208120Z copying torch\include\google\protobuf\stubs\platform_macros.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-06-01T21:22:09.7214446Z copying torch\include\google\protobuf\stubs\port.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-06-01T21:22:09.7221186Z copying torch\include\google\protobuf\stubs\status.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-06-01T21:22:09.7227296Z copying torch\include\google\protobuf\stubs\stl_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-06-01T21:22:09.7233741Z copying torch\include\google\protobuf\stubs\stringpiece.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-06-01T21:22:09.7240360Z copying torch\include\google\protobuf\stubs\strutil.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-06-01T21:22:09.7247172Z copying torch\include\google\protobuf\stubs\template_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-06-01T21:22:09.7252572Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-06-01T21:22:09.7255568Z copying torch\include\google\protobuf\util\delimited_message_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-06-01T21:22:09.7261905Z copying torch\include\google\protobuf\util\field_comparator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-06-01T21:22:09.7268272Z copying torch\include\google\protobuf\util\field_mask_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-06-01T21:22:09.7279531Z copying torch\include\google\protobuf\util\json_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-06-01T21:22:09.7286079Z copying torch\include\google\protobuf\util\message_differencer.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-06-01T21:22:09.7293103Z copying torch\include\google\protobuf\util\time_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-06-01T21:22:09.7299460Z copying torch\include\google\protobuf\util\type_resolver.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-06-01T21:22:09.7305941Z copying torch\include\google\protobuf\util\type_resolver_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-06-01T21:22:09.7311391Z creating build\lib.win-amd64-cpython-39\torch\include\kineto 2025-06-01T21:22:09.7314356Z copying torch\include\kineto\AbstractConfig.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-06-01T21:22:09.7320540Z copying torch\include\kineto\ActivityProfilerInterface.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-06-01T21:22:09.7326424Z copying torch\include\kineto\ActivityTraceInterface.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-06-01T21:22:09.7408134Z copying torch\include\kineto\ActivityType.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-06-01T21:22:09.7415590Z copying torch\include\kineto\ClientInterface.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-06-01T21:22:09.7422362Z copying torch\include\kineto\Config.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-06-01T21:22:09.7428881Z copying torch\include\kineto\GenericTraceActivity.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-06-01T21:22:09.7435595Z copying torch\include\kineto\IActivityProfiler.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-06-01T21:22:09.7442067Z copying torch\include\kineto\ILoggerObserver.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-06-01T21:22:09.7449653Z copying torch\include\kineto\ITraceActivity.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-06-01T21:22:09.7455150Z copying torch\include\kineto\libkineto.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-06-01T21:22:09.7461925Z copying torch\include\kineto\LoggingAPI.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-06-01T21:22:09.7468284Z copying torch\include\kineto\output_base.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-06-01T21:22:09.7474528Z copying torch\include\kineto\ThreadUtil.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-06-01T21:22:09.7481253Z copying torch\include\kineto\time_since_epoch.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-06-01T21:22:09.7487252Z copying torch\include\kineto\TraceSpan.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-06-01T21:22:09.7492705Z creating build\lib.win-amd64-cpython-39\torch\include\legacy 2025-06-01T21:22:09.7496182Z copying torch\include\legacy\ittnotify.h -> build\lib.win-amd64-cpython-39\torch\include\legacy 2025-06-01T21:22:09.7501701Z creating build\lib.win-amd64-cpython-39\torch\include\mimalloc-2.2 2025-06-01T21:22:09.7504680Z copying torch\include\mimalloc-2.2\mimalloc-new-delete.h -> build\lib.win-amd64-cpython-39\torch\include\mimalloc-2.2 2025-06-01T21:22:09.7511110Z copying torch\include\mimalloc-2.2\mimalloc-override.h -> build\lib.win-amd64-cpython-39\torch\include\mimalloc-2.2 2025-06-01T21:22:09.7517360Z copying torch\include\mimalloc-2.2\mimalloc-stats.h -> build\lib.win-amd64-cpython-39\torch\include\mimalloc-2.2 2025-06-01T21:22:09.7528594Z copying torch\include\mimalloc-2.2\mimalloc.h -> build\lib.win-amd64-cpython-39\torch\include\mimalloc-2.2 2025-06-01T21:22:09.7534646Z creating build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:22:09.7538639Z copying torch\include\oneapi\dnnl\dnnl.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:22:09.7547238Z copying torch\include\oneapi\dnnl\dnnl_common.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:22:09.7553709Z copying torch\include\oneapi\dnnl\dnnl_common_types.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:22:09.7559983Z copying torch\include\oneapi\dnnl\dnnl_config.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:22:09.7570710Z copying torch\include\oneapi\dnnl\dnnl_debug.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:22:09.7577185Z copying torch\include\oneapi\dnnl\dnnl_graph.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:22:09.7584634Z copying torch\include\oneapi\dnnl\dnnl_graph_ocl.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:22:09.7591110Z copying torch\include\oneapi\dnnl\dnnl_graph_sycl.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:22:09.7597453Z copying torch\include\oneapi\dnnl\dnnl_graph_types.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:22:09.7604272Z copying torch\include\oneapi\dnnl\dnnl_ocl.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:22:09.7610755Z copying torch\include\oneapi\dnnl\dnnl_ocl_types.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:22:09.7617133Z copying torch\include\oneapi\dnnl\dnnl_sycl.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:22:09.7623648Z copying torch\include\oneapi\dnnl\dnnl_sycl_types.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:22:09.7629952Z copying torch\include\oneapi\dnnl\dnnl_threadpool.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:22:09.7636294Z copying torch\include\oneapi\dnnl\dnnl_types.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:22:09.7643917Z copying torch\include\oneapi\dnnl\dnnl_ukernel.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:22:09.7650737Z copying torch\include\oneapi\dnnl\dnnl_ukernel_types.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:22:09.7657196Z copying torch\include\oneapi\dnnl\dnnl_version.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:22:09.7663735Z copying torch\include\oneapi\dnnl\dnnl_version_hash.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:22:09.7668970Z creating build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-06-01T21:22:09.7671768Z copying torch\include\pybind11\attr.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-06-01T21:22:09.7679318Z copying torch\include\pybind11\buffer_info.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-06-01T21:22:09.7686383Z copying torch\include\pybind11\cast.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-06-01T21:22:09.7694495Z copying torch\include\pybind11\chrono.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-06-01T21:22:09.7701593Z copying torch\include\pybind11\common.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-06-01T21:22:09.7708480Z copying torch\include\pybind11\complex.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-06-01T21:22:09.7727356Z copying torch\include\pybind11\eigen.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-06-01T21:22:09.7732870Z copying torch\include\pybind11\embed.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-06-01T21:22:09.7739102Z copying torch\include\pybind11\eval.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-06-01T21:22:09.7745631Z copying torch\include\pybind11\functional.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-06-01T21:22:09.7752724Z copying torch\include\pybind11\gil.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-06-01T21:22:09.7759168Z copying torch\include\pybind11\gil_safe_call_once.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-06-01T21:22:09.7765485Z copying torch\include\pybind11\iostream.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-06-01T21:22:09.7771622Z copying torch\include\pybind11\numpy.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-06-01T21:22:09.7779156Z copying torch\include\pybind11\operators.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-06-01T21:22:09.7785376Z copying torch\include\pybind11\options.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-06-01T21:22:09.7791550Z copying torch\include\pybind11\pybind11.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-06-01T21:22:09.7799320Z copying torch\include\pybind11\pytypes.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-06-01T21:22:09.7807623Z copying torch\include\pybind11\stl.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-06-01T21:22:09.7814760Z copying torch\include\pybind11\stl_bind.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-06-01T21:22:09.7821667Z copying torch\include\pybind11\type_caster_pyobject_ptr.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-06-01T21:22:09.7828098Z copying torch\include\pybind11\typing.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-06-01T21:22:09.7834259Z creating build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-06-01T21:22:09.7837151Z copying torch\include\pybind11\detail\class.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-06-01T21:22:09.7843999Z copying torch\include\pybind11\detail\common.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-06-01T21:22:09.7851329Z copying torch\include\pybind11\detail\cpp_conduit.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-06-01T21:22:09.7857405Z copying torch\include\pybind11\detail\descr.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-06-01T21:22:09.7864108Z copying torch\include\pybind11\detail\exception_translation.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-06-01T21:22:09.7875577Z copying torch\include\pybind11\detail\init.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-06-01T21:22:09.7882121Z copying torch\include\pybind11\detail\internals.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-06-01T21:22:09.7906180Z copying torch\include\pybind11\detail\typeid.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-06-01T21:22:09.7912331Z copying torch\include\pybind11\detail\type_caster_base.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-06-01T21:22:09.7919603Z copying torch\include\pybind11\detail\value_and_holder.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-06-01T21:22:09.7924781Z creating build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen 2025-06-01T21:22:09.7927778Z copying torch\include\pybind11\eigen\common.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen 2025-06-01T21:22:09.7933698Z copying torch\include\pybind11\eigen\matrix.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen 2025-06-01T21:22:09.7940758Z copying torch\include\pybind11\eigen\tensor.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen 2025-06-01T21:22:09.7946618Z creating build\lib.win-amd64-cpython-39\torch\include\pybind11\stl 2025-06-01T21:22:09.7949354Z copying torch\include\pybind11\stl\filesystem.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\stl 2025-06-01T21:22:09.7955209Z creating build\lib.win-amd64-cpython-39\torch\include\torch 2025-06-01T21:22:09.7958019Z copying torch\include\torch\custom_class.h -> build\lib.win-amd64-cpython-39\torch\include\torch 2025-06-01T21:22:09.7965182Z copying torch\include\torch\custom_class_detail.h -> build\lib.win-amd64-cpython-39\torch\include\torch 2025-06-01T21:22:09.7971466Z copying torch\include\torch\extension.h -> build\lib.win-amd64-cpython-39\torch\include\torch 2025-06-01T21:22:09.7977691Z copying torch\include\torch\library.h -> build\lib.win-amd64-cpython-39\torch\include\torch 2025-06-01T21:22:09.7989004Z copying torch\include\torch\script.h -> build\lib.win-amd64-cpython-39\torch\include\torch 2025-06-01T21:22:09.7994031Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:22:09.7997099Z copying torch\include\torch\csrc\copy_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:22:09.8003334Z copying torch\include\torch\csrc\CudaIPCTypes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:22:09.8010224Z copying torch\include\torch\csrc\DataLoader.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:22:09.8016454Z copying torch\include\torch\csrc\Device.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:22:09.8026740Z copying torch\include\torch\csrc\DeviceAccelerator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:22:09.8033049Z copying torch\include\torch\csrc\Dtype.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:22:09.8039285Z copying torch\include\torch\csrc\DynamicTypes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:22:09.8045638Z copying torch\include\torch\csrc\Event.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:22:09.8052220Z copying torch\include\torch\csrc\Exceptions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:22:09.8059024Z copying torch\include\torch\csrc\Export.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:22:09.8065896Z copying torch\include\torch\csrc\Generator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:22:09.8073146Z copying torch\include\torch\csrc\itt.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:22:09.8080370Z copying torch\include\torch\csrc\itt_wrapper.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:22:09.8087674Z copying torch\include\torch\csrc\Layout.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:22:09.8094693Z copying torch\include\torch\csrc\MemoryFormat.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:22:09.8101115Z copying torch\include\torch\csrc\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:22:09.8107612Z copying torch\include\torch\csrc\PyInterpreter.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:22:09.8114150Z copying torch\include\torch\csrc\python_dimname.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:22:09.8120359Z copying torch\include\torch\csrc\python_headers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:22:09.8127547Z copying torch\include\torch\csrc\QScheme.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:22:09.8133659Z copying torch\include\torch\csrc\serialization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:22:09.8140054Z copying torch\include\torch\csrc\Size.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:22:09.8146693Z copying torch\include\torch\csrc\Storage.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:22:09.8153163Z copying torch\include\torch\csrc\StorageMethods.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:22:09.8163965Z copying torch\include\torch\csrc\StorageSharing.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:22:09.8170221Z copying torch\include\torch\csrc\Stream.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:22:09.8175980Z copying torch\include\torch\csrc\THConcat.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:22:09.8182037Z copying torch\include\torch\csrc\THP.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:22:09.8188625Z copying torch\include\torch\csrc\TypeInfo.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:22:09.8194704Z copying torch\include\torch\csrc\Types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:22:09.8200553Z copying torch\include\torch\csrc\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:22:09.8206153Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-06-01T21:22:09.8211667Z copying torch\include\torch\csrc\api\include\torch\all.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-06-01T21:22:09.8218774Z copying torch\include\torch\csrc\api\include\torch\arg.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-06-01T21:22:09.8225026Z copying torch\include\torch\csrc\api\include\torch\autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-06-01T21:22:09.8230736Z copying torch\include\torch\csrc\api\include\torch\cuda.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-06-01T21:22:09.8236630Z copying torch\include\torch\csrc\api\include\torch\data.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-06-01T21:22:09.8242297Z copying torch\include\torch\csrc\api\include\torch\enum.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-06-01T21:22:09.8248384Z 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-06-01T21:22:09.8258613Z copying torch\include\torch\csrc\api\include\torch\fft.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-06-01T21:22:09.8264903Z copying torch\include\torch\csrc\api\include\torch\imethod.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-06-01T21:22:09.8270819Z copying torch\include\torch\csrc\api\include\torch\jit.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-06-01T21:22:09.8276814Z copying torch\include\torch\csrc\api\include\torch\mps.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-06-01T21:22:09.8283475Z copying torch\include\torch\csrc\api\include\torch\nested.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-06-01T21:22:09.8290081Z copying torch\include\torch\csrc\api\include\torch\nn.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-06-01T21:22:09.8296085Z copying torch\include\torch\csrc\api\include\torch\optim.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-06-01T21:22:09.8302153Z 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-06-01T21:22:09.8310637Z copying torch\include\torch\csrc\api\include\torch\python.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-06-01T21:22:09.8317019Z copying torch\include\torch\csrc\api\include\torch\serialize.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-06-01T21:22:09.8324216Z copying torch\include\torch\csrc\api\include\torch\sparse.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-06-01T21:22:09.8330031Z copying torch\include\torch\csrc\api\include\torch\special.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-06-01T21:22:09.8336624Z copying torch\include\torch\csrc\api\include\torch\torch.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-06-01T21:22:09.8342714Z copying torch\include\torch\csrc\api\include\torch\types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-06-01T21:22:09.8349038Z copying torch\include\torch\csrc\api\include\torch\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-06-01T21:22:09.8355330Z copying torch\include\torch\csrc\api\include\torch\version.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-06-01T21:22:09.8361497Z copying torch\include\torch\csrc\api\include\torch\xpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-06-01T21:22:09.8366647Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data 2025-06-01T21:22:09.8369607Z 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-06-01T21:22:09.8376028Z 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-06-01T21:22:09.8382525Z 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-06-01T21:22:09.8388468Z 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-06-01T21:22:09.8394578Z 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-06-01T21:22:09.8405265Z 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-06-01T21:22:09.8411218Z 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-06-01T21:22:09.8417568Z 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-06-01T21:22:09.8423169Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\dataloader 2025-06-01T21:22:09.8426269Z 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-06-01T21:22:09.8432611Z 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-06-01T21:22:09.8438880Z 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-06-01T21:22:09.8444255Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\datasets 2025-06-01T21:22:09.8447176Z 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-06-01T21:22:09.8453373Z 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-06-01T21:22:09.8460061Z 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-06-01T21:22:09.8466424Z 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-06-01T21:22:09.8472636Z 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-06-01T21:22:09.8479322Z 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-06-01T21:22:09.8485575Z 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-06-01T21:22:09.8495557Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\detail 2025-06-01T21:22:09.8498568Z 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-06-01T21:22:09.8504952Z 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-06-01T21:22:09.8512844Z 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-06-01T21:22:09.8518937Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\samplers 2025-06-01T21:22:09.8522312Z 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-06-01T21:22:09.8528884Z 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-06-01T21:22:09.8535066Z 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-06-01T21:22:09.8541890Z 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-06-01T21:22:09.8548644Z 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-06-01T21:22:09.8559463Z 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-06-01T21:22:09.8566401Z 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-06-01T21:22:09.8572295Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\transforms 2025-06-01T21:22:09.8575464Z 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-06-01T21:22:09.8582754Z 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-06-01T21:22:09.8589114Z 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-06-01T21:22:09.8595968Z 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-06-01T21:22:09.8602289Z 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-06-01T21:22:09.8607922Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\detail 2025-06-01T21:22:09.8610901Z 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-06-01T21:22:09.8617368Z 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-06-01T21:22:09.8623355Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn 2025-06-01T21:22:09.8626358Z 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-06-01T21:22:09.8633110Z 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-06-01T21:22:09.8639291Z 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-06-01T21:22:09.8645745Z 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-06-01T21:22:09.8652559Z 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-06-01T21:22:09.8664178Z 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-06-01T21:22:09.8669945Z 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-06-01T21:22:09.8676324Z 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-06-01T21:22:09.8682641Z 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-06-01T21:22:09.8688174Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional 2025-06-01T21:22:09.8691315Z 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-06-01T21:22:09.8698118Z 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-06-01T21:22:09.8704520Z 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-06-01T21:22:09.8710744Z 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-06-01T21:22:09.8721048Z 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-06-01T21:22:09.8727141Z 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-06-01T21:22:09.8733135Z 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-06-01T21:22:09.8757400Z 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-06-01T21:22:09.8763825Z 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-06-01T21:22:09.8770372Z 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-06-01T21:22:09.8782111Z 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-06-01T21:22:09.8788515Z 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-06-01T21:22:09.8794863Z 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-06-01T21:22:09.8801216Z 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-06-01T21:22:09.8808144Z 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-06-01T21:22:09.8815140Z 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-06-01T21:22:09.8821967Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-06-01T21:22:09.8824866Z 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-06-01T21:22:09.8839186Z 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-06-01T21:22:10.2974766Z 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-06-01T21:22:10.2982188Z 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-06-01T21:22:10.2988803Z 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-06-01T21:22:10.3006494Z 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-06-01T21:22:10.3013019Z 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-06-01T21:22:10.3019560Z 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-06-01T21:22:10.3026369Z 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-06-01T21:22:10.3032830Z 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-06-01T21:22:10.3040184Z 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-06-01T21:22:10.3046779Z 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-06-01T21:22:10.3053928Z 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-06-01T21:22:10.3061217Z 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-06-01T21:22:10.3068354Z 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-06-01T21:22:10.3074910Z 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-06-01T21:22:10.3081792Z 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-06-01T21:22:10.3088923Z 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-06-01T21:22:10.3095558Z 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-06-01T21:22:10.3102348Z 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-06-01T21:22:10.3117029Z 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-06-01T21:22:10.3118295Z 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-06-01T21:22:10.3125396Z 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-06-01T21:22:10.3132043Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-06-01T21:22:10.3135819Z 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-06-01T21:22:10.3143347Z 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-06-01T21:22:10.3150296Z 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-06-01T21:22:10.3157262Z 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-06-01T21:22:10.3167693Z 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-06-01T21:22:10.3174336Z 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-06-01T21:22:10.3180824Z 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-06-01T21:22:10.3187541Z 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-06-01T21:22:10.3193984Z 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-06-01T21:22:10.3200518Z 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-06-01T21:22:10.3205958Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-06-01T21:22:10.3208970Z 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-06-01T21:22:10.3215711Z 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-06-01T21:22:10.3222093Z 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-06-01T21:22:10.3228508Z 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-06-01T21:22:10.3234784Z 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-06-01T21:22:10.3245283Z 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-06-01T21:22:10.3251869Z 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-06-01T21:22:10.3263188Z 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-06-01T21:22:10.3265372Z 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-06-01T21:22:10.3271889Z 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-06-01T21:22:10.3278117Z 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-06-01T21:22:10.3284867Z 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-06-01T21:22:10.3292343Z 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-06-01T21:22:10.3298903Z 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-06-01T21:22:10.3305359Z 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-06-01T21:22:10.3312058Z 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-06-01T21:22:10.3318858Z 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-06-01T21:22:10.3330291Z 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-06-01T21:22:10.3336656Z 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-06-01T21:22:10.3343032Z 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-06-01T21:22:10.3349529Z 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-06-01T21:22:10.3354895Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\parallel 2025-06-01T21:22:10.3358075Z 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-06-01T21:22:10.3363706Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\utils 2025-06-01T21:22:10.3366799Z 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-06-01T21:22:10.3373406Z 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-06-01T21:22:10.3379664Z 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-06-01T21:22:10.3385509Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim 2025-06-01T21:22:10.3388459Z 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-06-01T21:22:10.3394844Z 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-06-01T21:22:10.3401149Z 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-06-01T21:22:10.3408030Z 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-06-01T21:22:10.3414355Z 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-06-01T21:22:10.3421071Z 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-06-01T21:22:10.3432038Z 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-06-01T21:22:10.3439066Z 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-06-01T21:22:10.3444785Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim\schedulers 2025-06-01T21:22:10.3448117Z 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-06-01T21:22:10.3454876Z 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-06-01T21:22:10.3461757Z 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-06-01T21:22:10.3472070Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\python 2025-06-01T21:22:10.3475040Z 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-06-01T21:22:10.3480336Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\serialize 2025-06-01T21:22:10.3483706Z 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-06-01T21:22:10.3489801Z 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-06-01T21:22:10.3496161Z 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-06-01T21:22:10.3502688Z 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-06-01T21:22:10.3512517Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:22:10.3515766Z copying torch\include\torch\csrc\autograd\anomaly_mode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:22:10.3522266Z copying torch\include\torch\csrc\autograd\autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:22:10.3529433Z copying torch\include\torch\csrc\autograd\autograd_not_implemented_fallback.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:22:10.3536086Z copying torch\include\torch\csrc\autograd\cpp_hook.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:22:10.3546614Z copying torch\include\torch\csrc\autograd\custom_function.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:22:10.3553368Z copying torch\include\torch\csrc\autograd\edge.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:22:10.3559665Z copying torch\include\torch\csrc\autograd\engine.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:22:10.3567132Z copying torch\include\torch\csrc\autograd\forward_grad.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:22:10.3573213Z copying torch\include\torch\csrc\autograd\function.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:22:10.3580199Z copying torch\include\torch\csrc\autograd\FunctionsManual.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:22:10.3587132Z copying torch\include\torch\csrc\autograd\function_hook.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:22:10.3593701Z copying torch\include\torch\csrc\autograd\grad_mode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:22:10.3599897Z copying torch\include\torch\csrc\autograd\graph_task.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:22:10.3607295Z copying torch\include\torch\csrc\autograd\InferenceMode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:22:10.3616166Z copying torch\include\torch\csrc\autograd\input_buffer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:22:10.3622152Z copying torch\include\torch\csrc\autograd\input_metadata.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:22:10.3628292Z copying torch\include\torch\csrc\autograd\jit_decomp_interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:22:10.3634532Z copying torch\include\torch\csrc\autograd\profiler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:22:10.3641050Z copying torch\include\torch\csrc\autograd\profiler_kineto.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:22:10.3647952Z copying torch\include\torch\csrc\autograd\profiler_legacy.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:22:10.3654567Z copying torch\include\torch\csrc\autograd\profiler_python.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:22:10.3660791Z copying torch\include\torch\csrc\autograd\python_anomaly_mode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:22:10.3671352Z copying torch\include\torch\csrc\autograd\python_autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:22:10.3677335Z copying torch\include\torch\csrc\autograd\python_cpp_function.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:22:10.3683630Z copying torch\include\torch\csrc\autograd\python_engine.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:22:10.3689948Z copying torch\include\torch\csrc\autograd\python_enum_tag.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:22:10.3696106Z copying torch\include\torch\csrc\autograd\python_fft_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:22:10.3703015Z copying torch\include\torch\csrc\autograd\python_function.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:22:10.3709628Z copying torch\include\torch\csrc\autograd\python_hook.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:22:10.3731442Z copying torch\include\torch\csrc\autograd\python_legacy_variable.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:22:10.3737764Z copying torch\include\torch\csrc\autograd\python_linalg_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:22:10.3748067Z copying torch\include\torch\csrc\autograd\python_nested_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:22:10.3754487Z copying torch\include\torch\csrc\autograd\python_nn_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:22:10.3760871Z copying torch\include\torch\csrc\autograd\python_saved_variable_hooks.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:22:10.3767270Z copying torch\include\torch\csrc\autograd\python_sparse_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:22:10.3773663Z copying torch\include\torch\csrc\autograd\python_special_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:22:10.3779916Z copying torch\include\torch\csrc\autograd\python_torch_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:22:10.3786567Z copying torch\include\torch\csrc\autograd\python_variable.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:22:10.3793069Z copying torch\include\torch\csrc\autograd\python_variable_indexing.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:22:10.3799498Z copying torch\include\torch\csrc\autograd\record_function_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:22:10.3805795Z copying torch\include\torch\csrc\autograd\saved_variable.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:22:10.3812221Z copying torch\include\torch\csrc\autograd\saved_variable_hooks.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:22:10.3822695Z copying torch\include\torch\csrc\autograd\symbolic.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:22:10.3829042Z copying torch\include\torch\csrc\autograd\variable.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:22:10.3835876Z copying torch\include\torch\csrc\autograd\VariableTypeUtils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:22:10.3842187Z copying torch\include\torch\csrc\autograd\variable_info.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:22:10.3847619Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-06-01T21:22:10.3850637Z copying torch\include\torch\csrc\autograd\functions\accumulate_grad.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-06-01T21:22:10.3856921Z copying torch\include\torch\csrc\autograd\functions\basic_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-06-01T21:22:10.3863144Z copying torch\include\torch\csrc\autograd\functions\comm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-06-01T21:22:10.3869262Z copying torch\include\torch\csrc\autograd\functions\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-06-01T21:22:10.3879478Z copying torch\include\torch\csrc\autograd\functions\tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-06-01T21:22:10.3885565Z copying torch\include\torch\csrc\autograd\functions\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-06-01T21:22:10.3891037Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-06-01T21:22:10.3894031Z copying torch\include\torch\csrc\autograd\generated\Functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-06-01T21:22:10.3905449Z copying torch\include\torch\csrc\autograd\generated\python_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-06-01T21:22:10.3911790Z copying torch\include\torch\csrc\autograd\generated\python_return_types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-06-01T21:22:10.3923515Z copying torch\include\torch\csrc\autograd\generated\VariableType.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-06-01T21:22:10.3929957Z copying torch\include\torch\csrc\autograd\generated\variable_factories.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-06-01T21:22:10.3937356Z copying torch\include\torch\csrc\autograd\generated\ViewFuncs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-06-01T21:22:10.3943628Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils 2025-06-01T21:22:10.3946899Z copying torch\include\torch\csrc\autograd\utils\error_messages.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils 2025-06-01T21:22:10.3953149Z copying torch\include\torch\csrc\autograd\utils\grad_layout_contract.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils 2025-06-01T21:22:10.3959716Z copying torch\include\torch\csrc\autograd\utils\lambda_post_hook.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils 2025-06-01T21:22:10.3967094Z copying torch\include\torch\csrc\autograd\utils\python_arg_parsing.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils 2025-06-01T21:22:10.3978594Z copying torch\include\torch\csrc\autograd\utils\warnings.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils 2025-06-01T21:22:10.3984681Z copying torch\include\torch\csrc\autograd\utils\wrap_outputs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils 2025-06-01T21:22:10.3990170Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cpu 2025-06-01T21:22:10.3992852Z copying torch\include\torch\csrc\cpu\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cpu 2025-06-01T21:22:10.3998352Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-06-01T21:22:10.4001374Z copying torch\include\torch\csrc\cuda\comm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-06-01T21:22:10.4007727Z copying torch\include\torch\csrc\cuda\CUDAPluggableAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-06-01T21:22:10.4014100Z copying torch\include\torch\csrc\cuda\device_set.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-06-01T21:22:10.4020527Z copying torch\include\torch\csrc\cuda\Event.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-06-01T21:22:10.4026712Z copying torch\include\torch\csrc\cuda\GdsFile.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-06-01T21:22:10.4037524Z copying torch\include\torch\csrc\cuda\memory_snapshot.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-06-01T21:22:10.4043855Z copying torch\include\torch\csrc\cuda\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-06-01T21:22:10.4050117Z copying torch\include\torch\csrc\cuda\nccl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-06-01T21:22:10.4056560Z copying torch\include\torch\csrc\cuda\python_comm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-06-01T21:22:10.4062828Z copying torch\include\torch\csrc\cuda\python_nccl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-06-01T21:22:10.4069260Z copying torch\include\torch\csrc\cuda\Stream.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-06-01T21:22:10.4075971Z copying torch\include\torch\csrc\cuda\THCP.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-06-01T21:22:10.4081780Z copying torch\include\torch\csrc\cuda\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-06-01T21:22:10.4087338Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd 2025-06-01T21:22:10.4091511Z copying torch\include\torch\csrc\distributed\autograd\autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd 2025-06-01T21:22:10.4099012Z copying torch\include\torch\csrc\distributed\autograd\python_autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd 2025-06-01T21:22:10.4131322Z copying torch\include\torch\csrc\distributed\autograd\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd 2025-06-01T21:22:10.4132195Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\context 2025-06-01T21:22:10.4133123Z copying torch\include\torch\csrc\distributed\autograd\context\container.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\context 2025-06-01T21:22:10.4134280Z copying torch\include\torch\csrc\distributed\autograd\context\context.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\context 2025-06-01T21:22:10.4137174Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\engine 2025-06-01T21:22:10.4139870Z 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-06-01T21:22:10.4145644Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\functions 2025-06-01T21:22:10.4153300Z 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-06-01T21:22:10.4159824Z 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-06-01T21:22:10.4166392Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-06-01T21:22:10.4169347Z 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-06-01T21:22:10.4175813Z 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-06-01T21:22:10.4183162Z 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-06-01T21:22:10.4194708Z 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-06-01T21:22:10.4201011Z 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-06-01T21:22:10.4208144Z 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-06-01T21:22:10.4214811Z 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-06-01T21:22:10.4221710Z 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-06-01T21:22:10.4228066Z 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-06-01T21:22:10.4234492Z 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-06-01T21:22:10.4239566Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:10.4242197Z copying torch\include\torch\csrc\distributed\c10d\c10d.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:10.4250089Z copying torch\include\torch\csrc\distributed\c10d\CUDASymmetricMemory-inl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:10.4256164Z copying torch\include\torch\csrc\distributed\c10d\debug.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:10.4262188Z copying torch\include\torch\csrc\distributed\c10d\error.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:10.4268446Z copying torch\include\torch\csrc\distributed\c10d\exception.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:10.4279275Z copying torch\include\torch\csrc\distributed\c10d\logging.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:10.4285643Z copying torch\include\torch\csrc\distributed\c10d\python_comm_hook.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:10.4292169Z copying torch\include\torch\csrc\distributed\c10d\socket.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:10.4298750Z copying torch\include\torch\csrc\distributed\c10d\socket_fmt.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:10.4305302Z copying torch\include\torch\csrc\distributed\c10d\TraceUtils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:10.4310820Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\quantization 2025-06-01T21:22:10.4313950Z copying torch\include\torch\csrc\distributed\c10d\quantization\quantization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\quantization 2025-06-01T21:22:10.4320032Z 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-06-01T21:22:10.4326159Z 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-06-01T21:22:10.4336233Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-06-01T21:22:10.4339723Z copying torch\include\torch\csrc\distributed\rpc\agent_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-06-01T21:22:10.4346133Z copying torch\include\torch\csrc\distributed\rpc\message.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-06-01T21:22:10.4352327Z copying torch\include\torch\csrc\distributed\rpc\python_call.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-06-01T21:22:10.4358625Z copying torch\include\torch\csrc\distributed\rpc\python_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-06-01T21:22:10.4368950Z copying torch\include\torch\csrc\distributed\rpc\python_remote_call.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-06-01T21:22:10.4375169Z copying torch\include\torch\csrc\distributed\rpc\python_resp.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-06-01T21:22:10.4381591Z copying torch\include\torch\csrc\distributed\rpc\python_rpc_handler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-06-01T21:22:10.4387903Z copying torch\include\torch\csrc\distributed\rpc\py_rref.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-06-01T21:22:10.4394507Z copying torch\include\torch\csrc\distributed\rpc\request_callback.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-06-01T21:22:10.4401085Z copying torch\include\torch\csrc\distributed\rpc\request_callback_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-06-01T21:22:10.4407486Z 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-06-01T21:22:10.4413992Z copying torch\include\torch\csrc\distributed\rpc\rpc.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-06-01T21:22:10.4420703Z copying torch\include\torch\csrc\distributed\rpc\rpc_agent.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-06-01T21:22:10.4427066Z copying torch\include\torch\csrc\distributed\rpc\rpc_command_base.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-06-01T21:22:10.4433635Z copying torch\include\torch\csrc\distributed\rpc\rref_context.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-06-01T21:22:10.4440233Z copying torch\include\torch\csrc\distributed\rpc\rref_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-06-01T21:22:10.4448927Z copying torch\include\torch\csrc\distributed\rpc\rref_proto.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-06-01T21:22:10.4455020Z copying torch\include\torch\csrc\distributed\rpc\script_call.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-06-01T21:22:10.4461686Z copying torch\include\torch\csrc\distributed\rpc\script_remote_call.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-06-01T21:22:10.4468145Z copying torch\include\torch\csrc\distributed\rpc\script_resp.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-06-01T21:22:10.4479575Z copying torch\include\torch\csrc\distributed\rpc\tensorpipe_agent.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-06-01T21:22:10.4486219Z copying torch\include\torch\csrc\distributed\rpc\tensorpipe_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-06-01T21:22:10.4492729Z copying torch\include\torch\csrc\distributed\rpc\torchscript_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-06-01T21:22:10.4499104Z copying torch\include\torch\csrc\distributed\rpc\types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-06-01T21:22:10.4506728Z copying torch\include\torch\csrc\distributed\rpc\unpickled_python_call.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-06-01T21:22:10.4512723Z 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-06-01T21:22:10.4519017Z copying torch\include\torch\csrc\distributed\rpc\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-06-01T21:22:10.4525049Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\metrics 2025-06-01T21:22:10.4528126Z copying torch\include\torch\csrc\distributed\rpc\metrics\RpcMetricsHandler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\metrics 2025-06-01T21:22:10.4533709Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\profiler 2025-06-01T21:22:10.4537001Z 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-06-01T21:22:10.4543671Z 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-06-01T21:22:10.4549222Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\testing 2025-06-01T21:22:10.4552809Z 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-06-01T21:22:10.4558822Z copying torch\include\torch\csrc\distributed\rpc\testing\testing.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\testing 2025-06-01T21:22:10.4563952Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-06-01T21:22:10.4566811Z copying torch\include\torch\csrc\dynamo\cache_entry.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-06-01T21:22:10.4573516Z copying torch\include\torch\csrc\dynamo\compiled_autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-06-01T21:22:10.4581292Z copying torch\include\torch\csrc\dynamo\cpp_shim.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-06-01T21:22:10.4587264Z copying torch\include\torch\csrc\dynamo\cpython_defs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-06-01T21:22:10.4598635Z copying torch\include\torch\csrc\dynamo\cpython_includes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-06-01T21:22:10.4604392Z copying torch\include\torch\csrc\dynamo\debug_macros.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-06-01T21:22:10.4627707Z copying torch\include\torch\csrc\dynamo\eval_frame.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-06-01T21:22:10.4628552Z copying torch\include\torch\csrc\dynamo\eval_frame_cpp.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-06-01T21:22:10.4629383Z copying torch\include\torch\csrc\dynamo\extra_state.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-06-01T21:22:10.4633614Z copying torch\include\torch\csrc\dynamo\framelocals_mapping.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-06-01T21:22:10.4639788Z copying torch\include\torch\csrc\dynamo\guards.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-06-01T21:22:10.4645676Z copying torch\include\torch\csrc\dynamo\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-06-01T21:22:10.4651964Z copying torch\include\torch\csrc\dynamo\python_compiled_autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-06-01T21:22:10.4658120Z copying torch\include\torch\csrc\dynamo\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-06-01T21:22:10.4663640Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\export 2025-06-01T21:22:10.4666814Z copying torch\include\torch\csrc\export\pt2_archive_constants.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\export 2025-06-01T21:22:10.4673584Z copying torch\include\torch\csrc\export\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\export 2025-06-01T21:22:10.4678895Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\functorch 2025-06-01T21:22:10.4681816Z copying torch\include\torch\csrc\functorch\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\functorch 2025-06-01T21:22:10.4686908Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\fx 2025-06-01T21:22:10.4689701Z copying torch\include\torch\csrc\fx\node.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\fx 2025-06-01T21:22:10.4695060Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor 2025-06-01T21:22:10.4697992Z copying torch\include\torch\csrc\inductor\array_ref_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor 2025-06-01T21:22:10.4704598Z copying torch\include\torch\csrc\inductor\cpp_prefix.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor 2025-06-01T21:22:10.4715486Z copying torch\include\torch\csrc\inductor\inductor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor 2025-06-01T21:22:10.4720189Z copying torch\include\torch\csrc\inductor\static_cuda_launcher.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor 2025-06-01T21:22:10.4730376Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_eager 2025-06-01T21:22:10.4733354Z 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-06-01T21:22:10.4740746Z 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-06-01T21:22:10.4745993Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include 2025-06-01T21:22:10.4748964Z 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-06-01T21:22:10.4755005Z copying torch\include\torch\csrc\inductor\aoti_include\common.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include 2025-06-01T21:22:10.4761049Z copying torch\include\torch\csrc\inductor\aoti_include\cpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include 2025-06-01T21:22:10.4767409Z copying torch\include\torch\csrc\inductor\aoti_include\cuda.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include 2025-06-01T21:22:10.4773352Z copying torch\include\torch\csrc\inductor\aoti_include\mps.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include 2025-06-01T21:22:10.4783859Z copying torch\include\torch\csrc\inductor\aoti_include\xpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include 2025-06-01T21:22:10.4788792Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_package 2025-06-01T21:22:10.4792119Z 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-06-01T21:22:10.4798453Z copying torch\include\torch\csrc\inductor\aoti_package\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_package 2025-06-01T21:22:10.4803432Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runner 2025-06-01T21:22:10.4806519Z 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-06-01T21:22:10.4813278Z 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-06-01T21:22:10.4819820Z 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-06-01T21:22:10.4831669Z 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-06-01T21:22:10.4837819Z 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-06-01T21:22:10.4844113Z copying torch\include\torch\csrc\inductor\aoti_runner\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runner 2025-06-01T21:22:10.4849792Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-06-01T21:22:10.4852871Z 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-06-01T21:22:10.4859161Z 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-06-01T21:22:10.4866634Z 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-06-01T21:22:10.4876054Z copying torch\include\torch\csrc\inductor\aoti_runtime\interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-06-01T21:22:10.4883583Z 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-06-01T21:22:10.4889333Z copying torch\include\torch\csrc\inductor\aoti_runtime\model.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-06-01T21:22:10.4896518Z 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-06-01T21:22:10.4903687Z 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-06-01T21:22:10.4910300Z 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-06-01T21:22:10.4917723Z 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-06-01T21:22:10.4923615Z copying torch\include\torch\csrc\inductor\aoti_runtime\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-06-01T21:22:10.4929819Z 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-06-01T21:22:10.4936409Z 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-06-01T21:22:10.4942021Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch 2025-06-01T21:22:10.4946110Z 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-06-01T21:22:10.4952304Z 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-06-01T21:22:10.4958979Z 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-06-01T21:22:10.4969988Z 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-06-01T21:22:10.4976422Z copying torch\include\torch\csrc\inductor\aoti_torch\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch 2025-06-01T21:22:10.4981902Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\c 2025-06-01T21:22:10.4984815Z 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-06-01T21:22:10.4992437Z 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-06-01T21:22:10.4998223Z 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-06-01T21:22:10.5004572Z 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-06-01T21:22:10.5009977Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\generated 2025-06-01T21:22:10.5013036Z 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-06-01T21:22:10.5020967Z 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-06-01T21:22:10.5027720Z 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-06-01T21:22:10.5039037Z 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-06-01T21:22:10.5044584Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper 2025-06-01T21:22:10.5047537Z 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-06-01T21:22:10.5053730Z copying torch\include\torch\csrc\inductor\cpp_wrapper\common.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper 2025-06-01T21:22:10.5061325Z copying torch\include\torch\csrc\inductor\cpp_wrapper\cpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper 2025-06-01T21:22:10.5067043Z copying torch\include\torch\csrc\inductor\cpp_wrapper\cuda.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper 2025-06-01T21:22:10.5072858Z copying torch\include\torch\csrc\inductor\cpp_wrapper\mps.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper 2025-06-01T21:22:10.5084040Z copying torch\include\torch\csrc\inductor\cpp_wrapper\xpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper 2025-06-01T21:22:10.5089553Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal 2025-06-01T21:22:10.5091760Z 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-06-01T21:22:10.5097891Z 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-06-01T21:22:10.5104340Z 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-06-01T21:22:10.5111039Z 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-06-01T21:22:10.5140648Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\instruction_counter 2025-06-01T21:22:10.5141543Z copying torch\include\torch\csrc\instruction_counter\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\instruction_counter 2025-06-01T21:22:10.5142299Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit 2025-06-01T21:22:10.5142917Z copying torch\include\torch\csrc\jit\jit_log.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit 2025-06-01T21:22:10.5143690Z copying torch\include\torch\csrc\jit\jit_opt_limit.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit 2025-06-01T21:22:10.5144483Z copying torch\include\torch\csrc\jit\resource_guard.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit 2025-06-01T21:22:10.5149030Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api 2025-06-01T21:22:10.5152465Z copying torch\include\torch\csrc\jit\api\compilation_unit.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api 2025-06-01T21:22:10.5158891Z copying torch\include\torch\csrc\jit\api\function_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api 2025-06-01T21:22:10.5165271Z copying torch\include\torch\csrc\jit\api\method.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api 2025-06-01T21:22:10.5171315Z copying torch\include\torch\csrc\jit\api\module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api 2025-06-01T21:22:10.5178124Z copying torch\include\torch\csrc\jit\api\object.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api 2025-06-01T21:22:10.5187927Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-06-01T21:22:10.5194700Z copying torch\include\torch\csrc\jit\backends\backend.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-06-01T21:22:10.5200969Z copying torch\include\torch\csrc\jit\backends\backend_debug_handler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-06-01T21:22:10.5207196Z copying torch\include\torch\csrc\jit\backends\backend_debug_info.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-06-01T21:22:10.5213641Z copying torch\include\torch\csrc\jit\backends\backend_detail.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-06-01T21:22:10.5239920Z copying torch\include\torch\csrc\jit\backends\backend_exception.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-06-01T21:22:10.5246023Z copying torch\include\torch\csrc\jit\backends\backend_init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-06-01T21:22:10.5252300Z copying torch\include\torch\csrc\jit\backends\backend_interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-06-01T21:22:10.5258638Z copying torch\include\torch\csrc\jit\backends\backend_preprocess.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-06-01T21:22:10.5264889Z copying torch\include\torch\csrc\jit\backends\backend_resolver.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-06-01T21:22:10.5270540Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\coreml\cpp 2025-06-01T21:22:10.5274530Z 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-06-01T21:22:10.5280031Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\coreml\objc 2025-06-01T21:22:10.5283044Z 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-06-01T21:22:10.5289513Z 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-06-01T21:22:10.5295739Z 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-06-01T21:22:10.5305803Z 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-06-01T21:22:10.5312159Z 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-06-01T21:22:10.5317563Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack 2025-06-01T21:22:10.5320612Z 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-06-01T21:22:10.5326067Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack\compiler 2025-06-01T21:22:10.5329142Z 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-06-01T21:22:10.5334624Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack\executor 2025-06-01T21:22:10.5337598Z 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-06-01T21:22:10.5343378Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack\serialization 2025-06-01T21:22:10.5364165Z 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-06-01T21:22:10.5370589Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\cuda 2025-06-01T21:22:10.5374519Z copying torch\include\torch\csrc\jit\codegen\cuda\interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\cuda 2025-06-01T21:22:10.5380742Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-06-01T21:22:10.5383648Z 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-06-01T21:22:10.5390306Z copying torch\include\torch\csrc\jit\codegen\fuser\codegen.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-06-01T21:22:10.5396824Z copying torch\include\torch\csrc\jit\codegen\fuser\compiler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-06-01T21:22:10.5403206Z copying torch\include\torch\csrc\jit\codegen\fuser\executor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-06-01T21:22:10.5409185Z copying torch\include\torch\csrc\jit\codegen\fuser\fallback.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-06-01T21:22:10.5415855Z 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-06-01T21:22:10.5426853Z copying torch\include\torch\csrc\jit\codegen\fuser\interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-06-01T21:22:10.5433677Z 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-06-01T21:22:10.5440136Z 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-06-01T21:22:10.5446631Z 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-06-01T21:22:10.5453883Z 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-06-01T21:22:10.5459741Z 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-06-01T21:22:10.5465237Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\cpu 2025-06-01T21:22:10.5468000Z 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-06-01T21:22:10.5474461Z 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-06-01T21:22:10.5482039Z 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-06-01T21:22:10.5486627Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\cuda 2025-06-01T21:22:10.5489732Z 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-06-01T21:22:10.5496632Z 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-06-01T21:22:10.5502290Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-06-01T21:22:10.5505666Z 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-06-01T21:22:10.5511597Z 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-06-01T21:22:10.5517816Z 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-06-01T21:22:10.5524147Z 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-06-01T21:22:10.5534982Z 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-06-01T21:22:10.5541423Z copying torch\include\torch\csrc\jit\codegen\onednn\interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-06-01T21:22:10.5547844Z copying torch\include\torch\csrc\jit\codegen\onednn\kernel.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-06-01T21:22:10.5554307Z 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-06-01T21:22:10.5560574Z copying torch\include\torch\csrc\jit\codegen\onednn\LlgaTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-06-01T21:22:10.5567528Z copying torch\include\torch\csrc\jit\codegen\onednn\operator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-06-01T21:22:10.5574271Z 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-06-01T21:22:10.5579700Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\cuda 2025-06-01T21:22:10.5582024Z copying torch\include\torch\csrc\jit\cuda\cuda.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\cuda 2025-06-01T21:22:10.5587962Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-06-01T21:22:10.5591415Z copying torch\include\torch\csrc\jit\frontend\builtin_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-06-01T21:22:10.5597565Z copying torch\include\torch\csrc\jit\frontend\canonicalize_modified_loop.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-06-01T21:22:10.5604504Z copying torch\include\torch\csrc\jit\frontend\concrete_module_type.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-06-01T21:22:10.5614810Z copying torch\include\torch\csrc\jit\frontend\convert_to_ssa.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-06-01T21:22:10.5621356Z copying torch\include\torch\csrc\jit\frontend\edit_distance.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-06-01T21:22:10.5627888Z copying torch\include\torch\csrc\jit\frontend\error_report.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-06-01T21:22:10.5635022Z copying torch\include\torch\csrc\jit\frontend\exit_transforms.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-06-01T21:22:10.5643351Z copying torch\include\torch\csrc\jit\frontend\function_schema_parser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-06-01T21:22:10.5649571Z copying torch\include\torch\csrc\jit\frontend\inline_loop_condition.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-06-01T21:22:10.5655813Z copying torch\include\torch\csrc\jit\frontend\ir_emitter.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-06-01T21:22:10.5662278Z copying torch\include\torch\csrc\jit\frontend\lexer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-06-01T21:22:10.5669585Z copying torch\include\torch\csrc\jit\frontend\mini_environment.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-06-01T21:22:10.5675866Z copying torch\include\torch\csrc\jit\frontend\name_mangler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-06-01T21:22:10.5682552Z copying torch\include\torch\csrc\jit\frontend\parser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-06-01T21:22:10.5688661Z copying torch\include\torch\csrc\jit\frontend\parser_constants.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-06-01T21:22:10.5695005Z copying torch\include\torch\csrc\jit\frontend\parse_string_literal.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-06-01T21:22:10.5701398Z copying torch\include\torch\csrc\jit\frontend\resolver.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-06-01T21:22:10.5707631Z copying torch\include\torch\csrc\jit\frontend\schema_matching.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-06-01T21:22:10.5714155Z copying torch\include\torch\csrc\jit\frontend\schema_type_parser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-06-01T21:22:10.5721384Z copying torch\include\torch\csrc\jit\frontend\script_type_parser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-06-01T21:22:10.5731975Z copying torch\include\torch\csrc\jit\frontend\source_range.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-06-01T21:22:10.5738478Z copying torch\include\torch\csrc\jit\frontend\source_ref.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-06-01T21:22:10.5744803Z copying torch\include\torch\csrc\jit\frontend\strtod.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-06-01T21:22:10.5750894Z copying torch\include\torch\csrc\jit\frontend\sugared_value.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-06-01T21:22:10.5757551Z copying torch\include\torch\csrc\jit\frontend\tracer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-06-01T21:22:10.5764046Z copying torch\include\torch\csrc\jit\frontend\tree.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-06-01T21:22:10.5770358Z copying torch\include\torch\csrc\jit\frontend\tree_views.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-06-01T21:22:10.5777571Z copying torch\include\torch\csrc\jit\frontend\versioned_symbols.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-06-01T21:22:10.5783155Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-06-01T21:22:10.5786056Z copying torch\include\torch\csrc\jit\ir\alias_analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-06-01T21:22:10.5792294Z copying torch\include\torch\csrc\jit\ir\attributes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-06-01T21:22:10.5798833Z copying torch\include\torch\csrc\jit\ir\constants.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-06-01T21:22:10.5805386Z copying torch\include\torch\csrc\jit\ir\graph_node_list.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-06-01T21:22:10.5815679Z copying torch\include\torch\csrc\jit\ir\graph_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-06-01T21:22:10.5821780Z copying torch\include\torch\csrc\jit\ir\ir.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-06-01T21:22:10.5828849Z copying torch\include\torch\csrc\jit\ir\irparser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-06-01T21:22:10.5835059Z copying torch\include\torch\csrc\jit\ir\ir_views.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-06-01T21:22:10.5841496Z copying torch\include\torch\csrc\jit\ir\named_value.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-06-01T21:22:10.5847755Z copying torch\include\torch\csrc\jit\ir\node_hashing.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-06-01T21:22:10.5853765Z copying torch\include\torch\csrc\jit\ir\scope.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-06-01T21:22:10.5860166Z copying torch\include\torch\csrc\jit\ir\subgraph_matcher.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-06-01T21:22:10.5866551Z copying torch\include\torch\csrc\jit\ir\type_hashing.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-06-01T21:22:10.5871685Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-06-01T21:22:10.5874516Z copying torch\include\torch\csrc\jit\mobile\code.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-06-01T21:22:10.5880665Z copying torch\include\torch\csrc\jit\mobile\debug_info.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-06-01T21:22:10.5887117Z copying torch\include\torch\csrc\jit\mobile\file_format.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-06-01T21:22:10.5893540Z copying torch\include\torch\csrc\jit\mobile\flatbuffer_loader.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-06-01T21:22:10.5904319Z copying torch\include\torch\csrc\jit\mobile\frame.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-06-01T21:22:10.5910564Z copying torch\include\torch\csrc\jit\mobile\function.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-06-01T21:22:10.5916972Z copying torch\include\torch\csrc\jit\mobile\import.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-06-01T21:22:10.5923316Z copying torch\include\torch\csrc\jit\mobile\import_data.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-06-01T21:22:10.5929833Z copying torch\include\torch\csrc\jit\mobile\import_export_common.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-06-01T21:22:10.5935832Z copying torch\include\torch\csrc\jit\mobile\interpreter.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-06-01T21:22:10.5942486Z copying torch\include\torch\csrc\jit\mobile\method.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-06-01T21:22:10.5948790Z copying torch\include\torch\csrc\jit\mobile\module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-06-01T21:22:10.5955283Z copying torch\include\torch\csrc\jit\mobile\observer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-06-01T21:22:10.5961950Z copying torch\include\torch\csrc\jit\mobile\parse_bytecode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-06-01T21:22:10.5968394Z copying torch\include\torch\csrc\jit\mobile\parse_operators.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-06-01T21:22:10.5974983Z copying torch\include\torch\csrc\jit\mobile\prim_ops_registery.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-06-01T21:22:10.5981523Z copying torch\include\torch\csrc\jit\mobile\profiler_edge.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-06-01T21:22:10.5987958Z copying torch\include\torch\csrc\jit\mobile\promoted_prim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-06-01T21:22:10.5994400Z copying torch\include\torch\csrc\jit\mobile\quantization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-06-01T21:22:10.6000936Z 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-06-01T21:22:10.6007794Z copying torch\include\torch\csrc\jit\mobile\type_parser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-06-01T21:22:10.6014390Z copying torch\include\torch\csrc\jit\mobile\upgrader_mobile.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-06-01T21:22:10.6024401Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\compatibility 2025-06-01T21:22:10.6027433Z copying torch\include\torch\csrc\jit\mobile\compatibility\backport.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\compatibility 2025-06-01T21:22:10.6033598Z 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-06-01T21:22:10.6040009Z 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-06-01T21:22:10.6050734Z 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-06-01T21:22:10.6056317Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\model_tracer 2025-06-01T21:22:10.6059539Z 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-06-01T21:22:10.6066199Z 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-06-01T21:22:10.6072952Z 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-06-01T21:22:10.6083486Z 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-06-01T21:22:10.6090356Z 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-06-01T21:22:10.6096758Z 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-06-01T21:22:10.6102994Z 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-06-01T21:22:10.6108413Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\nnc 2025-06-01T21:22:10.6111520Z 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-06-01T21:22:10.6117912Z copying torch\include\torch\csrc\jit\mobile\nnc\context.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\nnc 2025-06-01T21:22:10.6124851Z copying torch\include\torch\csrc\jit\mobile\nnc\registry.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\nnc 2025-06-01T21:22:10.6130597Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\train 2025-06-01T21:22:10.6133530Z 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-06-01T21:22:10.6139950Z copying torch\include\torch\csrc\jit\mobile\train\random.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\train 2025-06-01T21:22:10.6146574Z copying torch\include\torch\csrc\jit\mobile\train\sequential.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\train 2025-06-01T21:22:10.6152112Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\train\optim 2025-06-01T21:22:10.6155171Z 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-06-01T21:22:10.6160828Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\operator_upgraders 2025-06-01T21:22:10.6163855Z copying torch\include\torch\csrc\jit\operator_upgraders\upgraders.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\operator_upgraders 2025-06-01T21:22:10.6170340Z 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-06-01T21:22:10.6176248Z copying torch\include\torch\csrc\jit\operator_upgraders\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\operator_upgraders 2025-06-01T21:22:10.6182641Z 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-06-01T21:22:10.6193019Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6195813Z 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-06-01T21:22:10.6201853Z copying torch\include\torch\csrc\jit\passes\annotate_warns.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6207866Z copying torch\include\torch\csrc\jit\passes\autocast.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6214362Z copying torch\include\torch\csrc\jit\passes\bailout_graph.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6224740Z copying torch\include\torch\csrc\jit\passes\batch_mm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6230823Z copying torch\include\torch\csrc\jit\passes\canonicalize.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6236948Z 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-06-01T21:22:10.6243186Z copying torch\include\torch\csrc\jit\passes\check_strict_fusion.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6249132Z copying torch\include\torch\csrc\jit\passes\clear_profiling.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6255164Z copying torch\include\torch\csrc\jit\passes\clear_undefinedness.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6262371Z copying torch\include\torch\csrc\jit\passes\common_subexpression_elimination.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6268422Z copying torch\include\torch\csrc\jit\passes\concat_opt.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6274628Z copying torch\include\torch\csrc\jit\passes\constant_pooling.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6281783Z copying torch\include\torch\csrc\jit\passes\constant_propagation.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6288373Z copying torch\include\torch\csrc\jit\passes\create_autodiff_subgraphs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6294626Z copying torch\include\torch\csrc\jit\passes\create_functional_graphs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6300955Z copying torch\include\torch\csrc\jit\passes\dead_code_elimination.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6307740Z copying torch\include\torch\csrc\jit\passes\decompose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6314722Z copying torch\include\torch\csrc\jit\passes\device_type_analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6324858Z copying torch\include\torch\csrc\jit\passes\dtype_analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6331115Z copying torch\include\torch\csrc\jit\passes\eliminate_no_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6337305Z copying torch\include\torch\csrc\jit\passes\erase_number_types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6343957Z 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-06-01T21:22:10.6350427Z copying torch\include\torch\csrc\jit\passes\fold_conv_bn.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6356858Z copying torch\include\torch\csrc\jit\passes\fold_linear_bn.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6363401Z copying torch\include\torch\csrc\jit\passes\freeze_module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6370341Z copying torch\include\torch\csrc\jit\passes\frozen_concat_linear.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6376758Z 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-06-01T21:22:10.6388316Z copying torch\include\torch\csrc\jit\passes\frozen_conv_folding.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6394887Z copying torch\include\torch\csrc\jit\passes\frozen_graph_optimizations.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6401206Z copying torch\include\torch\csrc\jit\passes\frozen_linear_folding.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6407550Z copying torch\include\torch\csrc\jit\passes\frozen_linear_transpose.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6413802Z 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-06-01T21:22:10.6420386Z copying torch\include\torch\csrc\jit\passes\fuse_linear.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6426842Z copying torch\include\torch\csrc\jit\passes\fuse_relu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6433086Z copying torch\include\torch\csrc\jit\passes\graph_fuser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6440162Z copying torch\include\torch\csrc\jit\passes\graph_rewrite_helper.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6450870Z copying torch\include\torch\csrc\jit\passes\guard_elimination.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6457143Z 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-06-01T21:22:10.6480390Z copying torch\include\torch\csrc\jit\passes\inliner.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6486625Z copying torch\include\torch\csrc\jit\passes\inline_autodiff_subgraphs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6494023Z copying torch\include\torch\csrc\jit\passes\inline_forked_closures.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6500377Z copying torch\include\torch\csrc\jit\passes\inline_fork_wait.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6506832Z copying torch\include\torch\csrc\jit\passes\inplace_check.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6513275Z copying torch\include\torch\csrc\jit\passes\insert_guards.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6520256Z copying torch\include\torch\csrc\jit\passes\integer_value_refinement.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6530817Z copying torch\include\torch\csrc\jit\passes\lift_closures.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6537548Z copying torch\include\torch\csrc\jit\passes\liveness.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6543577Z copying torch\include\torch\csrc\jit\passes\loop_unrolling.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6550046Z copying torch\include\torch\csrc\jit\passes\lower_grad_of.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6556424Z copying torch\include\torch\csrc\jit\passes\lower_graph.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6562808Z copying torch\include\torch\csrc\jit\passes\lower_tuples.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6569357Z copying torch\include\torch\csrc\jit\passes\metal_rewrite.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6575648Z copying torch\include\torch\csrc\jit\passes\mkldnn_rewrite.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6583440Z copying torch\include\torch\csrc\jit\passes\mobile_optimizer_type.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6590125Z copying torch\include\torch\csrc\jit\passes\normalize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6604126Z copying torch\include\torch\csrc\jit\passes\onednn_graph_fuser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6610574Z copying torch\include\torch\csrc\jit\passes\onnx.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6617248Z copying torch\include\torch\csrc\jit\passes\pass_manager.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6624168Z copying torch\include\torch\csrc\jit\passes\peephole.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6630602Z copying torch\include\torch\csrc\jit\passes\peephole_alias_sensitive.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6637743Z copying torch\include\torch\csrc\jit\passes\peephole_dict_idioms.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6644506Z copying torch\include\torch\csrc\jit\passes\peephole_list_idioms.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6651232Z copying torch\include\torch\csrc\jit\passes\peephole_non_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6657637Z copying torch\include\torch\csrc\jit\passes\prepack_folding.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6664464Z copying torch\include\torch\csrc\jit\passes\refine_tuple_types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6671156Z copying torch\include\torch\csrc\jit\passes\remove_dropout.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6681915Z copying torch\include\torch\csrc\jit\passes\remove_exceptions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6688426Z copying torch\include\torch\csrc\jit\passes\remove_expands.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6694729Z copying torch\include\torch\csrc\jit\passes\remove_inplace_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6700952Z copying torch\include\torch\csrc\jit\passes\remove_mutation.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6707513Z copying torch\include\torch\csrc\jit\passes\remove_redundant_profiles.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6713882Z 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-06-01T21:22:10.6720343Z copying torch\include\torch\csrc\jit\passes\requires_grad_analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6726703Z copying torch\include\torch\csrc\jit\passes\restore_mutation.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6733161Z copying torch\include\torch\csrc\jit\passes\shape_analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6745886Z copying torch\include\torch\csrc\jit\passes\specialize_autogradzero.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6752247Z copying torch\include\torch\csrc\jit\passes\subgraph_rewrite.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6759753Z copying torch\include\torch\csrc\jit\passes\symbolic_shape_analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6765930Z copying torch\include\torch\csrc\jit\passes\symbolic_shape_cache.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6772433Z 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-06-01T21:22:10.6779544Z copying torch\include\torch\csrc\jit\passes\tensorexpr_fuser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6786157Z 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-06-01T21:22:10.6792684Z copying torch\include\torch\csrc\jit\passes\value_refinement_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6799626Z copying torch\include\torch\csrc\jit\passes\variadic_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6806075Z copying torch\include\torch\csrc\jit\passes\vulkan_rewrite.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6812358Z copying torch\include\torch\csrc\jit\passes\xnnpack_rewrite.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:10.6818400Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\dbr_quantization 2025-06-01T21:22:10.6821669Z 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-06-01T21:22:10.6827631Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-06-01T21:22:10.6831077Z 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-06-01T21:22:10.6837286Z 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-06-01T21:22:10.6843609Z 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-06-01T21:22:10.6850073Z 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-06-01T21:22:10.6861655Z 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-06-01T21:22:10.6867727Z 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-06-01T21:22:10.6873865Z 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-06-01T21:22:10.6880563Z 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-06-01T21:22:10.6887200Z 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-06-01T21:22:10.6893274Z copying torch\include\torch\csrc\jit\passes\onnx\helper.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-06-01T21:22:10.6899652Z 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-06-01T21:22:10.6905809Z copying torch\include\torch\csrc\jit\passes\onnx\naming.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-06-01T21:22:10.6911964Z 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-06-01T21:22:10.6917974Z copying torch\include\torch\csrc\jit\passes\onnx\peephole.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-06-01T21:22:10.6924039Z 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-06-01T21:22:10.6930150Z 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-06-01T21:22:10.6937012Z 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-06-01T21:22:10.6943343Z 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-06-01T21:22:10.6949504Z 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-06-01T21:22:10.6956007Z 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-06-01T21:22:10.6965501Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion 2025-06-01T21:22:10.6968870Z 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-06-01T21:22:10.6974911Z 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-06-01T21:22:10.6981041Z 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-06-01T21:22:10.6991429Z 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-06-01T21:22:10.6997015Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization 2025-06-01T21:22:10.7000152Z 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-06-01T21:22:10.7006440Z copying torch\include\torch\csrc\jit\passes\quantization\finalize.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization 2025-06-01T21:22:10.7012566Z 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-06-01T21:22:10.7018614Z copying torch\include\torch\csrc\jit\passes\quantization\helper.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization 2025-06-01T21:22:10.7029253Z 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-06-01T21:22:10.7035729Z 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-06-01T21:22:10.7042213Z 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-06-01T21:22:10.7064191Z 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-06-01T21:22:10.7070694Z 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-06-01T21:22:10.7075860Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\utils 2025-06-01T21:22:10.7079128Z 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-06-01T21:22:10.7086070Z 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-06-01T21:22:10.7093243Z 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-06-01T21:22:10.7103376Z 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-06-01T21:22:10.7109953Z 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-06-01T21:22:10.7115745Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-06-01T21:22:10.7118783Z copying torch\include\torch\csrc\jit\python\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-06-01T21:22:10.7125019Z copying torch\include\torch\csrc\jit\python\module_python.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-06-01T21:22:10.7131750Z copying torch\include\torch\csrc\jit\python\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-06-01T21:22:10.7138747Z copying torch\include\torch\csrc\jit\python\pybind_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-06-01T21:22:10.7146515Z copying torch\include\torch\csrc\jit\python\python_arg_flatten.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-06-01T21:22:10.7157629Z copying torch\include\torch\csrc\jit\python\python_custom_class.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-06-01T21:22:10.7163907Z copying torch\include\torch\csrc\jit\python\python_dict.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-06-01T21:22:10.7170331Z copying torch\include\torch\csrc\jit\python\python_ir.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-06-01T21:22:10.7176844Z copying torch\include\torch\csrc\jit\python\python_ivalue.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-06-01T21:22:10.7183428Z copying torch\include\torch\csrc\jit\python\python_list.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-06-01T21:22:10.7190208Z copying torch\include\torch\csrc\jit\python\python_sugared_value.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-06-01T21:22:10.7196755Z copying torch\include\torch\csrc\jit\python\python_tracer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-06-01T21:22:10.7203148Z copying torch\include\torch\csrc\jit\python\python_tree_views.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-06-01T21:22:10.7209198Z copying torch\include\torch\csrc\jit\python\script_init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-06-01T21:22:10.7215605Z 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-06-01T21:22:10.7221860Z copying torch\include\torch\csrc\jit\python\utf8_decoding_ignore.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-06-01T21:22:10.7227031Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-06-01T21:22:10.7229931Z copying torch\include\torch\csrc\jit\runtime\argument_spec.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-06-01T21:22:10.7237046Z copying torch\include\torch\csrc\jit\runtime\autodiff.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-06-01T21:22:10.7243630Z copying torch\include\torch\csrc\jit\runtime\calculate_necessary_args.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-06-01T21:22:10.7249815Z copying torch\include\torch\csrc\jit\runtime\custom_operator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-06-01T21:22:10.7261613Z copying torch\include\torch\csrc\jit\runtime\decomposition_registry.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-06-01T21:22:10.7268035Z copying torch\include\torch\csrc\jit\runtime\decomposition_registry_util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-06-01T21:22:10.7274068Z copying torch\include\torch\csrc\jit\runtime\exception_message.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-06-01T21:22:10.7280324Z copying torch\include\torch\csrc\jit\runtime\graph_executor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-06-01T21:22:10.7286781Z copying torch\include\torch\csrc\jit\runtime\graph_executor_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-06-01T21:22:10.7293163Z copying torch\include\torch\csrc\jit\runtime\graph_iterator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-06-01T21:22:10.7299768Z copying torch\include\torch\csrc\jit\runtime\instruction.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-06-01T21:22:10.7306300Z copying torch\include\torch\csrc\jit\runtime\interpreter.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-06-01T21:22:10.7312620Z copying torch\include\torch\csrc\jit\runtime\jit_exception.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-06-01T21:22:10.7318804Z copying torch\include\torch\csrc\jit\runtime\jit_trace.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-06-01T21:22:10.7324947Z copying torch\include\torch\csrc\jit\runtime\logging.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-06-01T21:22:10.7331090Z copying torch\include\torch\csrc\jit\runtime\operator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-06-01T21:22:10.7337580Z copying torch\include\torch\csrc\jit\runtime\operator_options.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-06-01T21:22:10.7343800Z copying torch\include\torch\csrc\jit\runtime\print_handler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-06-01T21:22:10.7350310Z 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-06-01T21:22:10.7356897Z copying torch\include\torch\csrc\jit\runtime\profiling_record.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-06-01T21:22:10.7367873Z copying torch\include\torch\csrc\jit\runtime\register_ops_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-06-01T21:22:10.7375099Z copying torch\include\torch\csrc\jit\runtime\script_profile.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-06-01T21:22:10.7381703Z 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-06-01T21:22:10.7387779Z copying torch\include\torch\csrc\jit\runtime\shape_function_registry.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-06-01T21:22:10.7394029Z 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-06-01T21:22:10.7400602Z copying torch\include\torch\csrc\jit\runtime\slice_indices_adjust.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-06-01T21:22:10.7407401Z copying torch\include\torch\csrc\jit\runtime\symbolic_script.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-06-01T21:22:10.7414489Z copying torch\include\torch\csrc\jit\runtime\symbolic_shape_registry.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-06-01T21:22:10.7423075Z 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-06-01T21:22:10.7434339Z copying torch\include\torch\csrc\jit\runtime\vararg_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-06-01T21:22:10.7441723Z copying torch\include\torch\csrc\jit\runtime\variable_tensor_list.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-06-01T21:22:10.7447763Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\interpreter 2025-06-01T21:22:10.7450976Z 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-06-01T21:22:10.7457531Z 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-06-01T21:22:10.7464695Z copying torch\include\torch\csrc\jit\runtime\interpreter\frame.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\interpreter 2025-06-01T21:22:10.7471277Z 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-06-01T21:22:10.7480506Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-06-01T21:22:10.7483409Z copying torch\include\torch\csrc\jit\runtime\static\fusion.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-06-01T21:22:10.7489320Z copying torch\include\torch\csrc\jit\runtime\static\impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-06-01T21:22:10.7496168Z copying torch\include\torch\csrc\jit\runtime\static\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-06-01T21:22:10.7502366Z 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-06-01T21:22:10.7508535Z copying torch\include\torch\csrc\jit\runtime\static\ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-06-01T21:22:10.7514688Z copying torch\include\torch\csrc\jit\runtime\static\passes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-06-01T21:22:10.7525186Z copying torch\include\torch\csrc\jit\runtime\static\ProcessedNodeInputs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-06-01T21:22:10.7531763Z 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-06-01T21:22:10.7538421Z 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-06-01T21:22:10.7544993Z 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-06-01T21:22:10.7550821Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-06-01T21:22:10.7553985Z 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-06-01T21:22:10.7560058Z copying torch\include\torch\csrc\jit\serialization\export.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-06-01T21:22:10.7566344Z copying torch\include\torch\csrc\jit\serialization\export_bytecode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-06-01T21:22:10.7576741Z copying torch\include\torch\csrc\jit\serialization\flatbuffer_serializer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-06-01T21:22:10.7583251Z copying torch\include\torch\csrc\jit\serialization\flatbuffer_serializer_jit.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-06-01T21:22:10.7589508Z copying torch\include\torch\csrc\jit\serialization\import.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-06-01T21:22:10.7595863Z copying torch\include\torch\csrc\jit\serialization\import_export_constants.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-06-01T21:22:10.7608849Z copying torch\include\torch\csrc\jit\serialization\import_export_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-06-01T21:22:10.7610983Z copying torch\include\torch\csrc\jit\serialization\import_export_helpers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-06-01T21:22:10.7617421Z copying torch\include\torch\csrc\jit\serialization\import_read.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-06-01T21:22:10.7624332Z copying torch\include\torch\csrc\jit\serialization\import_source.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-06-01T21:22:10.7630774Z copying torch\include\torch\csrc\jit\serialization\mobile_bytecode_generated.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-06-01T21:22:10.7638904Z copying torch\include\torch\csrc\jit\serialization\onnx.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-06-01T21:22:10.7645289Z copying torch\include\torch\csrc\jit\serialization\pickle.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-06-01T21:22:10.7651537Z copying torch\include\torch\csrc\jit\serialization\pickler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-06-01T21:22:10.7657767Z copying torch\include\torch\csrc\jit\serialization\python_print.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-06-01T21:22:10.7664385Z copying torch\include\torch\csrc\jit\serialization\source_range_serialization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-06-01T21:22:10.7671202Z 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-06-01T21:22:10.7677594Z copying torch\include\torch\csrc\jit\serialization\storage_context.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-06-01T21:22:10.7683958Z copying torch\include\torch\csrc\jit\serialization\type_name_uniquer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-06-01T21:22:10.7694869Z copying torch\include\torch\csrc\jit\serialization\unpickler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-06-01T21:22:10.7700403Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:22:10.7703717Z copying torch\include\torch\csrc\jit\tensorexpr\analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:22:10.7709975Z copying torch\include\torch\csrc\jit\tensorexpr\block_codegen.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:22:10.7716614Z copying torch\include\torch\csrc\jit\tensorexpr\bounds_inference.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:22:10.7722870Z copying torch\include\torch\csrc\jit\tensorexpr\bounds_overlap.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:22:10.7733344Z copying torch\include\torch\csrc\jit\tensorexpr\codegen.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:22:10.7739920Z copying torch\include\torch\csrc\jit\tensorexpr\cpp_codegen.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:22:10.7745979Z copying torch\include\torch\csrc\jit\tensorexpr\cpp_intrinsics.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:22:10.7752167Z copying torch\include\torch\csrc\jit\tensorexpr\cuda_codegen.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:22:10.7758433Z copying torch\include\torch\csrc\jit\tensorexpr\cuda_random.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:22:10.7765830Z copying torch\include\torch\csrc\jit\tensorexpr\eval.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:22:10.7772107Z copying torch\include\torch\csrc\jit\tensorexpr\exceptions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:22:10.7778413Z copying torch\include\torch\csrc\jit\tensorexpr\expr.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:22:10.7785521Z copying torch\include\torch\csrc\jit\tensorexpr\external_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:22:10.7791569Z copying torch\include\torch\csrc\jit\tensorexpr\external_functions_core.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:22:10.7798275Z copying torch\include\torch\csrc\jit\tensorexpr\external_functions_registry.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:22:10.7804315Z copying torch\include\torch\csrc\jit\tensorexpr\fwd_decls.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:22:10.7810778Z copying torch\include\torch\csrc\jit\tensorexpr\graph_opt.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:22:10.7817167Z copying torch\include\torch\csrc\jit\tensorexpr\half_support.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:22:10.7823800Z copying torch\include\torch\csrc\jit\tensorexpr\hash_provider.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:22:10.7830434Z copying torch\include\torch\csrc\jit\tensorexpr\intrinsic_symbols.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:22:10.7836567Z copying torch\include\torch\csrc\jit\tensorexpr\ir.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:22:10.7847208Z copying torch\include\torch\csrc\jit\tensorexpr\ir_cloner.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:22:10.7853553Z copying torch\include\torch\csrc\jit\tensorexpr\ir_mutator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:22:10.7860147Z copying torch\include\torch\csrc\jit\tensorexpr\ir_printer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:22:10.7866619Z copying torch\include\torch\csrc\jit\tensorexpr\ir_simplifier.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:22:10.7872984Z copying torch\include\torch\csrc\jit\tensorexpr\ir_verifier.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:22:10.7879340Z copying torch\include\torch\csrc\jit\tensorexpr\ir_visitor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:22:10.7885850Z copying torch\include\torch\csrc\jit\tensorexpr\kernel.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:22:10.7892143Z copying torch\include\torch\csrc\jit\tensorexpr\llvm_codegen.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:22:10.7898646Z copying torch\include\torch\csrc\jit\tensorexpr\llvm_jit.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:22:10.7906008Z copying torch\include\torch\csrc\jit\tensorexpr\loopnest.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:22:10.7912839Z copying torch\include\torch\csrc\jit\tensorexpr\loopnest_randomization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:22:10.7923985Z copying torch\include\torch\csrc\jit\tensorexpr\lowerings.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:22:10.7930216Z copying torch\include\torch\csrc\jit\tensorexpr\mem_dependency_checker.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:22:10.7936514Z copying torch\include\torch\csrc\jit\tensorexpr\reduction.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:22:10.7942972Z copying torch\include\torch\csrc\jit\tensorexpr\registerizer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:22:10.7949849Z copying torch\include\torch\csrc\jit\tensorexpr\stmt.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:22:10.7956580Z copying torch\include\torch\csrc\jit\tensorexpr\tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:22:10.7962745Z copying torch\include\torch\csrc\jit\tensorexpr\tensorexpr_init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:22:10.7968896Z copying torch\include\torch\csrc\jit\tensorexpr\types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:22:10.7975229Z copying torch\include\torch\csrc\jit\tensorexpr\unique_name_manager.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:22:10.7981627Z copying torch\include\torch\csrc\jit\tensorexpr\var_substitutor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:22:10.7987204Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-06-01T21:22:10.7990196Z copying torch\include\torch\csrc\jit\tensorexpr\operators\conv2d.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-06-01T21:22:10.7996179Z copying torch\include\torch\csrc\jit\tensorexpr\operators\matmul.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-06-01T21:22:10.8002284Z copying torch\include\torch\csrc\jit\tensorexpr\operators\misc.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-06-01T21:22:10.8008579Z copying torch\include\torch\csrc\jit\tensorexpr\operators\norm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-06-01T21:22:10.8052682Z copying torch\include\torch\csrc\jit\tensorexpr\operators\operators.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-06-01T21:22:10.8062942Z copying torch\include\torch\csrc\jit\tensorexpr\operators\pointwise.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-06-01T21:22:10.8069323Z copying torch\include\torch\csrc\jit\tensorexpr\operators\quantization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-06-01T21:22:10.8075583Z copying torch\include\torch\csrc\jit\tensorexpr\operators\reduction.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-06-01T21:22:10.8081857Z copying torch\include\torch\csrc\jit\tensorexpr\operators\softmax.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-06-01T21:22:10.8087860Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\testing 2025-06-01T21:22:10.8090673Z copying torch\include\torch\csrc\jit\testing\file_check.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\testing 2025-06-01T21:22:10.8096983Z copying torch\include\torch\csrc\jit\testing\hooks_for_testing.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\testing 2025-06-01T21:22:10.8102555Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\backend 2025-06-01T21:22:10.8106900Z copying torch\include\torch\csrc\lazy\backend\backend_data.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\backend 2025-06-01T21:22:10.8113533Z copying torch\include\torch\csrc\lazy\backend\backend_device.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\backend 2025-06-01T21:22:10.8119884Z copying torch\include\torch\csrc\lazy\backend\backend_interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\backend 2025-06-01T21:22:10.8126270Z copying torch\include\torch\csrc\lazy\backend\lowering_context.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\backend 2025-06-01T21:22:10.8136840Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-06-01T21:22:10.8139961Z copying torch\include\torch\csrc\lazy\core\cache.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-06-01T21:22:10.8182490Z copying torch\include\torch\csrc\lazy\core\config.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-06-01T21:22:10.8183346Z copying torch\include\torch\csrc\lazy\core\debug_util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-06-01T21:22:10.8184197Z copying torch\include\torch\csrc\lazy\core\dynamic_ir.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-06-01T21:22:10.8185013Z copying torch\include\torch\csrc\lazy\core\hash.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-06-01T21:22:10.8185838Z copying torch\include\torch\csrc\lazy\core\helpers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-06-01T21:22:10.8188021Z copying torch\include\torch\csrc\lazy\core\ir.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-06-01T21:22:10.8194066Z copying torch\include\torch\csrc\lazy\core\ir_builder.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-06-01T21:22:10.8200433Z copying torch\include\torch\csrc\lazy\core\ir_dump_util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-06-01T21:22:10.8206471Z copying torch\include\torch\csrc\lazy\core\ir_metadata.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-06-01T21:22:10.8212133Z copying torch\include\torch\csrc\lazy\core\ir_util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-06-01T21:22:10.8219171Z copying torch\include\torch\csrc\lazy\core\lazy_graph_executor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-06-01T21:22:10.8225976Z copying torch\include\torch\csrc\lazy\core\metrics.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-06-01T21:22:10.8233563Z copying torch\include\torch\csrc\lazy\core\multi_wait.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-06-01T21:22:10.8239071Z copying torch\include\torch\csrc\lazy\core\permutation_util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-06-01T21:22:10.8245550Z copying torch\include\torch\csrc\lazy\core\shape.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-06-01T21:22:10.8251801Z copying torch\include\torch\csrc\lazy\core\shape_inference.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-06-01T21:22:10.8258655Z copying torch\include\torch\csrc\lazy\core\tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-06-01T21:22:10.8265381Z copying torch\include\torch\csrc\lazy\core\tensor_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-06-01T21:22:10.8271667Z copying torch\include\torch\csrc\lazy\core\tensor_util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-06-01T21:22:10.8278081Z copying torch\include\torch\csrc\lazy\core\thread_pool.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-06-01T21:22:10.8284309Z copying torch\include\torch\csrc\lazy\core\trie.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-06-01T21:22:10.8290702Z copying torch\include\torch\csrc\lazy\core\unique.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-06-01T21:22:10.8296889Z copying torch\include\torch\csrc\lazy\core\util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-06-01T21:22:10.8302506Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\internal_ops 2025-06-01T21:22:10.8309478Z 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-06-01T21:22:10.8314914Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\ops 2025-06-01T21:22:10.8317859Z 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-06-01T21:22:10.8324362Z copying torch\include\torch\csrc\lazy\core\ops\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\ops 2025-06-01T21:22:10.8329190Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\generated 2025-06-01T21:22:10.8332120Z copying torch\include\torch\csrc\lazy\generated\LazyIr.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\generated 2025-06-01T21:22:10.8341439Z copying torch\include\torch\csrc\lazy\generated\LazyNativeFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\generated 2025-06-01T21:22:10.8348190Z copying torch\include\torch\csrc\lazy\generated\LazyNonNativeIr.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\generated 2025-06-01T21:22:10.8353447Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\python 2025-06-01T21:22:10.8356590Z copying torch\include\torch\csrc\lazy\python\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\python 2025-06-01T21:22:10.8362549Z copying torch\include\torch\csrc\lazy\python\python_util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\python 2025-06-01T21:22:10.8367800Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend 2025-06-01T21:22:10.8374839Z copying torch\include\torch\csrc\lazy\ts_backend\config.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend 2025-06-01T21:22:10.8380893Z 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-06-01T21:22:10.8387657Z 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-06-01T21:22:10.8393908Z 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-06-01T21:22:10.8404828Z 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-06-01T21:22:10.8411124Z 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-06-01T21:22:10.8417448Z 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-06-01T21:22:10.8424044Z 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-06-01T21:22:10.8430423Z 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-06-01T21:22:10.8436587Z 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-06-01T21:22:10.8442556Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend\ops 2025-06-01T21:22:10.8446055Z 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-06-01T21:22:10.8452373Z 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-06-01T21:22:10.8458405Z 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-06-01T21:22:10.8463758Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\monitor 2025-06-01T21:22:10.8466586Z copying torch\include\torch\csrc\monitor\counters.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\monitor 2025-06-01T21:22:10.8472680Z copying torch\include\torch\csrc\monitor\events.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\monitor 2025-06-01T21:22:10.8478902Z copying torch\include\torch\csrc\monitor\python_init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\monitor 2025-06-01T21:22:10.8483914Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mps 2025-06-01T21:22:10.8486737Z copying torch\include\torch\csrc\mps\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mps 2025-06-01T21:22:10.8492035Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mtia 2025-06-01T21:22:10.8494876Z copying torch\include\torch\csrc\mtia\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mtia 2025-06-01T21:22:10.8499963Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mtia\profiler 2025-06-01T21:22:10.8503018Z copying torch\include\torch\csrc\mtia\profiler\MTIAMemoryProfiler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mtia\profiler 2025-06-01T21:22:10.8508436Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\multiprocessing 2025-06-01T21:22:10.8511510Z copying torch\include\torch\csrc\multiprocessing\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\multiprocessing 2025-06-01T21:22:10.8516480Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\onnx 2025-06-01T21:22:10.8519310Z copying torch\include\torch\csrc\onnx\back_compat.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\onnx 2025-06-01T21:22:10.8525855Z copying torch\include\torch\csrc\onnx\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\onnx 2025-06-01T21:22:10.8531925Z copying torch\include\torch\csrc\onnx\onnx.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\onnx 2025-06-01T21:22:10.8537151Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-06-01T21:22:10.8540235Z copying torch\include\torch\csrc\profiler\api.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-06-01T21:22:10.8546387Z copying torch\include\torch\csrc\profiler\collection.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-06-01T21:22:10.8553481Z copying torch\include\torch\csrc\profiler\combined_traceback.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-06-01T21:22:10.8559863Z copying torch\include\torch\csrc\profiler\containers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-06-01T21:22:10.8570214Z copying torch\include\torch\csrc\profiler\data_flow.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-06-01T21:22:10.8577176Z copying torch\include\torch\csrc\profiler\events.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-06-01T21:22:10.8583906Z copying torch\include\torch\csrc\profiler\kineto_client_interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-06-01T21:22:10.8590944Z copying torch\include\torch\csrc\profiler\kineto_shim.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-06-01T21:22:10.8597071Z copying torch\include\torch\csrc\profiler\perf-inl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-06-01T21:22:10.8602867Z copying torch\include\torch\csrc\profiler\perf.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-06-01T21:22:10.8608970Z copying torch\include\torch\csrc\profiler\util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-06-01T21:22:10.8614910Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\orchestration 2025-06-01T21:22:10.8617833Z copying torch\include\torch\csrc\profiler\orchestration\observer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\orchestration 2025-06-01T21:22:10.8624182Z copying torch\include\torch\csrc\profiler\orchestration\python_tracer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\orchestration 2025-06-01T21:22:10.8631521Z copying torch\include\torch\csrc\profiler\orchestration\vulkan.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\orchestration 2025-06-01T21:22:10.8667020Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\python 2025-06-01T21:22:10.8667862Z copying torch\include\torch\csrc\profiler\python\combined_traceback.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\python 2025-06-01T21:22:10.8668857Z copying torch\include\torch\csrc\profiler\python\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\python 2025-06-01T21:22:10.8686645Z copying torch\include\torch\csrc\profiler\python\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\python 2025-06-01T21:22:10.8687462Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\standalone 2025-06-01T21:22:10.8688361Z copying torch\include\torch\csrc\profiler\standalone\execution_trace_observer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\standalone 2025-06-01T21:22:10.8689481Z copying torch\include\torch\csrc\profiler\standalone\itt_observer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\standalone 2025-06-01T21:22:10.8691962Z copying torch\include\torch\csrc\profiler\standalone\nvtx_observer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\standalone 2025-06-01T21:22:10.8693049Z copying torch\include\torch\csrc\profiler\standalone\privateuse1_observer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\standalone 2025-06-01T21:22:10.8693913Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\stubs 2025-06-01T21:22:10.8696178Z copying torch\include\torch\csrc\profiler\stubs\base.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\stubs 2025-06-01T21:22:10.8702790Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-06-01T21:22:10.8704533Z copying torch\include\torch\csrc\profiler\unwind\action.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-06-01T21:22:10.8710699Z copying torch\include\torch\csrc\profiler\unwind\communicate.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-06-01T21:22:10.8716713Z copying torch\include\torch\csrc\profiler\unwind\debug_info.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-06-01T21:22:10.8740099Z copying torch\include\torch\csrc\profiler\unwind\dwarf_enums.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-06-01T21:22:10.8750633Z copying torch\include\torch\csrc\profiler\unwind\dwarf_symbolize_enums.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-06-01T21:22:10.8757351Z copying torch\include\torch\csrc\profiler\unwind\eh_frame_hdr.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-06-01T21:22:10.8764453Z copying torch\include\torch\csrc\profiler\unwind\fast_symbolizer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-06-01T21:22:10.8771206Z copying torch\include\torch\csrc\profiler\unwind\fde.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-06-01T21:22:10.8777511Z copying torch\include\torch\csrc\profiler\unwind\lexer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-06-01T21:22:10.8784010Z copying torch\include\torch\csrc\profiler\unwind\line_number_program.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-06-01T21:22:10.8790212Z copying torch\include\torch\csrc\profiler\unwind\mem_file.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-06-01T21:22:10.8796548Z copying torch\include\torch\csrc\profiler\unwind\range_table.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-06-01T21:22:10.8802999Z copying torch\include\torch\csrc\profiler\unwind\sections.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-06-01T21:22:10.8809291Z copying torch\include\torch\csrc\profiler\unwind\unwind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-06-01T21:22:10.8815552Z copying torch\include\torch\csrc\profiler\unwind\unwinder.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-06-01T21:22:10.8822194Z copying torch\include\torch\csrc\profiler\unwind\unwind_error.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-06-01T21:22:10.8827672Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\stable 2025-06-01T21:22:10.8830613Z copying torch\include\torch\csrc\stable\library.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\stable 2025-06-01T21:22:10.8836113Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\tensor 2025-06-01T21:22:10.8838981Z copying torch\include\torch\csrc\tensor\python_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\tensor 2025-06-01T21:22:10.8844383Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:22:10.8852090Z copying torch\include\torch\csrc\utils\byte_order.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:22:10.8858738Z copying torch\include\torch\csrc\utils\cpp_stacktraces.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:22:10.8864579Z copying torch\include\torch\csrc\utils\cuda_enabled.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:22:10.8870692Z copying torch\include\torch\csrc\utils\device_lazy_init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:22:10.8882360Z copying torch\include\torch\csrc\utils\disable_torch_function.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:22:10.8889006Z copying torch\include\torch\csrc\utils\generated_serialization_types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:22:10.8897180Z copying torch\include\torch\csrc\utils\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:22:10.8904412Z copying torch\include\torch\csrc\utils\invalid_arguments.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:22:10.8909911Z copying torch\include\torch\csrc\utils\nested.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:22:10.8915972Z copying torch\include\torch\csrc\utils\numpy_stub.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:22:10.8921904Z copying torch\include\torch\csrc\utils\object_ptr.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:22:10.8928512Z copying torch\include\torch\csrc\utils\out_types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:22:10.8934614Z copying torch\include\torch\csrc\utils\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:22:10.8941495Z copying torch\include\torch\csrc\utils\pycfunction_helpers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:22:10.8947948Z copying torch\include\torch\csrc\utils\pyobject_preservation.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:22:10.8954091Z copying torch\include\torch\csrc\utils\pythoncapi_compat.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:22:10.8961959Z copying torch\include\torch\csrc\utils\python_arg_parser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:22:10.8968552Z copying torch\include\torch\csrc\utils\python_compat.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:22:10.8975087Z copying torch\include\torch\csrc\utils\python_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:22:10.8981451Z copying torch\include\torch\csrc\utils\python_numbers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:22:10.8992377Z copying torch\include\torch\csrc\utils\python_raii.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:22:10.8998671Z copying torch\include\torch\csrc\utils\python_scalars.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:22:10.9005395Z copying torch\include\torch\csrc\utils\python_strings.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:22:10.9013110Z copying torch\include\torch\csrc\utils\python_stub.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:22:10.9019146Z copying torch\include\torch\csrc\utils\python_symnode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:22:10.9026044Z copying torch\include\torch\csrc\utils\python_torch_function_mode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:22:10.9032651Z copying torch\include\torch\csrc\utils\python_tuples.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:22:10.9039095Z copying torch\include\torch\csrc\utils\schema_info.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:22:10.9045519Z copying torch\include\torch\csrc\utils\six.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:22:10.9052891Z copying torch\include\torch\csrc\utils\structseq.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:22:10.9063315Z copying torch\include\torch\csrc\utils\tensor_apply.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:22:10.9070502Z copying torch\include\torch\csrc\utils\tensor_dtypes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:22:10.9076271Z copying torch\include\torch\csrc\utils\tensor_flatten.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:22:10.9082531Z copying torch\include\torch\csrc\utils\tensor_layouts.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:22:10.9088821Z copying torch\include\torch\csrc\utils\tensor_list.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:22:10.9095262Z copying torch\include\torch\csrc\utils\tensor_memoryformats.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:22:10.9102002Z copying torch\include\torch\csrc\utils\tensor_new.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:22:10.9108415Z copying torch\include\torch\csrc\utils\tensor_numpy.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:22:10.9116387Z copying torch\include\torch\csrc\utils\tensor_qschemes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:22:10.9127569Z copying torch\include\torch\csrc\utils\tensor_types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:22:10.9133748Z copying torch\include\torch\csrc\utils\throughput_benchmark-inl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:22:10.9139783Z copying torch\include\torch\csrc\utils\throughput_benchmark.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:22:10.9146407Z copying torch\include\torch\csrc\utils\torch_dispatch_mode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:22:10.9152869Z copying torch\include\torch\csrc\utils\variadic.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:22:10.9160328Z copying torch\include\torch\csrc\utils\verbose.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:22:10.9164329Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\xpu 2025-06-01T21:22:10.9167098Z copying torch\include\torch\csrc\xpu\Event.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\xpu 2025-06-01T21:22:10.9173022Z copying torch\include\torch\csrc\xpu\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\xpu 2025-06-01T21:22:10.9179085Z copying torch\include\torch\csrc\xpu\Stream.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\xpu 2025-06-01T21:22:10.9185053Z copying torch\include\dnnl.hpp -> build\lib.win-amd64-cpython-39\torch\include 2025-06-01T21:22:10.9191714Z copying torch\include\dnnl_ocl.hpp -> build\lib.win-amd64-cpython-39\torch\include 2025-06-01T21:22:10.9197331Z copying torch\include\dnnl_sycl.hpp -> build\lib.win-amd64-cpython-39\torch\include 2025-06-01T21:22:10.9203640Z copying torch\include\dnnl_threadpool.hpp -> build\lib.win-amd64-cpython-39\torch\include 2025-06-01T21:22:10.9210140Z copying torch\include\dnnl_threadpool_iface.hpp -> build\lib.win-amd64-cpython-39\torch\include 2025-06-01T21:22:10.9216629Z copying torch\include\oneapi\dnnl\dnnl.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:22:10.9233837Z copying torch\include\oneapi\dnnl\dnnl_common.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:22:10.9240289Z copying torch\include\oneapi\dnnl\dnnl_graph.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:22:10.9248102Z copying torch\include\oneapi\dnnl\dnnl_graph_ocl.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:22:10.9254727Z copying torch\include\oneapi\dnnl\dnnl_graph_sycl.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:22:10.9261313Z copying torch\include\oneapi\dnnl\dnnl_ocl.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:22:10.9268464Z copying torch\include\oneapi\dnnl\dnnl_sycl.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:22:10.9275205Z copying torch\include\oneapi\dnnl\dnnl_threadpool.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:22:10.9281781Z copying torch\include\oneapi\dnnl\dnnl_threadpool_iface.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:22:10.9288082Z copying torch\include\oneapi\dnnl\dnnl_ukernel.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:22:10.9295380Z copying torch\include\torch\csrc\distributed\c10d\Backend.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:10.9302123Z copying torch\include\torch\csrc\distributed\c10d\Backoff.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:10.9308982Z copying torch\include\torch\csrc\distributed\c10d\comm.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:10.9315605Z copying torch\include\torch\csrc\distributed\c10d\CUDASymmetricMemory.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:10.9322083Z copying torch\include\torch\csrc\distributed\c10d\CUDASymmetricMemoryTypes.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:10.9328463Z copying torch\include\torch\csrc\distributed\c10d\CUDASymmetricMemoryUtils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:10.9334927Z copying torch\include\torch\csrc\distributed\c10d\default_comm_hooks.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:10.9341551Z copying torch\include\torch\csrc\distributed\c10d\DMAConnectivity.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:10.9347959Z copying torch\include\torch\csrc\distributed\c10d\FakeProcessGroup.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:10.9354499Z copying torch\include\torch\csrc\distributed\c10d\FileStore.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:10.9360838Z copying torch\include\torch\csrc\distributed\c10d\FlightRecorder.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:10.9371444Z copying torch\include\torch\csrc\distributed\c10d\Functional.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:10.9377577Z copying torch\include\torch\csrc\distributed\c10d\GlooDeviceFactory.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:10.9384203Z copying torch\include\torch\csrc\distributed\c10d\GroupRegistry.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:10.9390864Z copying torch\include\torch\csrc\distributed\c10d\HashStore.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:10.9397223Z copying torch\include\torch\csrc\distributed\c10d\intra_node_comm.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:10.9403544Z copying torch\include\torch\csrc\distributed\c10d\logger.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:10.9409758Z copying torch\include\torch\csrc\distributed\c10d\NanCheck.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:10.9416145Z copying torch\include\torch\csrc\distributed\c10d\NCCLUtils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:10.9422715Z copying torch\include\torch\csrc\distributed\c10d\ParamCommsUtils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:10.9429085Z copying torch\include\torch\csrc\distributed\c10d\PrefixStore.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:10.9439318Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroup.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:10.9446402Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroupGloo.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:10.9452931Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroupGlooDetail.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:10.9460883Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroupMPI.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:10.9467313Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroupNCCL.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:10.9474966Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroupUCC.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:10.9481897Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroupWrapper.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:10.9489503Z copying torch\include\torch\csrc\distributed\c10d\PyProcessGroup.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:10.9495508Z copying torch\include\torch\csrc\distributed\c10d\RankLocal.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:10.9507741Z copying torch\include\torch\csrc\distributed\c10d\reducer.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:10.9514720Z copying torch\include\torch\csrc\distributed\c10d\reducer_timer.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:10.9521590Z copying torch\include\torch\csrc\distributed\c10d\sequence_num.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:10.9529012Z copying torch\include\torch\csrc\distributed\c10d\Store.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:10.9535309Z copying torch\include\torch\csrc\distributed\c10d\SymmetricMemory.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:10.9541929Z copying torch\include\torch\csrc\distributed\c10d\TCPStore.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:10.9548420Z copying torch\include\torch\csrc\distributed\c10d\TCPStoreBackend.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:10.9554966Z copying torch\include\torch\csrc\distributed\c10d\Types.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:10.9561283Z copying torch\include\torch\csrc\distributed\c10d\UCCTracing.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:10.9567717Z copying torch\include\torch\csrc\distributed\c10d\UCCUtils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:10.9575121Z copying torch\include\torch\csrc\distributed\c10d\UnixSockUtils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:10.9581249Z copying torch\include\torch\csrc\distributed\c10d\Utils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:10.9592551Z copying torch\include\torch\csrc\distributed\c10d\WinSockUtils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:10.9598797Z copying torch\include\torch\csrc\distributed\c10d\Work.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:10.9604433Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\control_collectives 2025-06-01T21:22:10.9607683Z 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-06-01T21:22:10.9614298Z 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-06-01T21:22:10.9619668Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\control_plane 2025-06-01T21:22:10.9622984Z 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-06-01T21:22:10.9629648Z 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-06-01T21:22:10.9635335Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\cuda 2025-06-01T21:22:10.9638464Z copying torch\include\torch\csrc\distributed\c10d\cuda\utils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\cuda 2025-06-01T21:22:10.9644769Z copying torch\include\torch\csrc\jit\testing\catch_utils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\testing 2025-06-01T21:22:10.9651916Z copying torch\include\ATen\cuda\ApplyGridUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:22:10.9659653Z copying torch\include\ATen\cuda\AsmUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:22:10.9666382Z copying torch\include\ATen\cuda\Atomic.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:22:10.9674100Z copying torch\include\ATen\cuda\cub-RadixSortPairs.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:22:10.9680867Z copying torch\include\ATen\cuda\cub.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:22:10.9687922Z copying torch\include\ATen\cuda\cub_definitions.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:22:10.9694525Z copying torch\include\ATen\cuda\CUDAApplyUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:22:10.9702587Z copying torch\include\ATen\cuda\CUDAGraphsUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:22:10.9708882Z copying torch\include\ATen\cuda\CUDATensorMethods.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:22:10.9715332Z copying torch\include\ATen\cuda\DeviceUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:22:10.9722055Z copying torch\include\ATen\cuda\NumericLimits.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:22:10.9732291Z copying torch\include\ATen\cuda\PhiloxUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:22:10.9738537Z copying torch\include\ATen\cuda\ScanUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:22:10.9745275Z copying torch\include\ATen\cuda\detail\IndexUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-06-01T21:22:10.9751858Z copying torch\include\ATen\cuda\detail\IntegerDivider.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-06-01T21:22:10.9758292Z copying torch\include\ATen\cuda\detail\OffsetCalculator.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-06-01T21:22:10.9764561Z copying torch\include\ATen\cuda\detail\PhiloxCudaStateRaw.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-06-01T21:22:10.9771512Z copying torch\include\ATen\cuda\detail\TensorInfo.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-06-01T21:22:10.9777912Z copying torch\include\ATen\cuda\detail\UnpackRaw.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-06-01T21:22:10.9784515Z copying torch\include\ATen\native\cuda\block_reduce.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:10.9791156Z copying torch\include\ATen\native\cuda\CUDAJitLoops.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:10.9798147Z copying torch\include\ATen\native\cuda\CUDALoops.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:10.9805510Z copying torch\include\ATen\native\cuda\cutlass_common.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:10.9811783Z copying torch\include\ATen\native\cuda\DeviceSqrt.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:10.9818663Z copying torch\include\ATen\native\cuda\EmbeddingBackwardKernel.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:10.9825083Z copying torch\include\ATen\native\cuda\ForeachFunctors.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:10.9832171Z copying torch\include\ATen\native\cuda\ForeachMinMaxFunctors.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:10.9838395Z copying torch\include\ATen\native\cuda\fused_adamw_amsgrad_impl.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:10.9969173Z copying torch\include\ATen\native\cuda\fused_adamw_impl.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:10.9975760Z copying torch\include\ATen\native\cuda\fused_adam_amsgrad_impl.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:10.9983352Z copying torch\include\ATen\native\cuda\fused_adam_impl.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:10.9989263Z copying torch\include\ATen\native\cuda\fused_adam_utils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:10.9995716Z copying torch\include\ATen\native\cuda\GridSampler.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:11.0002460Z copying torch\include\ATen\native\cuda\GroupMMCommon.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:11.0009303Z copying torch\include\ATen\native\cuda\im2col.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:11.0016581Z copying torch\include\ATen\native\cuda\JitLoops.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:11.0022613Z copying torch\include\ATen\native\cuda\KernelUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:11.0029140Z copying torch\include\ATen\native\cuda\Loops.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:11.0035438Z copying torch\include\ATen\native\cuda\Math.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:11.0069762Z copying torch\include\ATen\native\cuda\MemoryAccess.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:11.0070685Z copying torch\include\ATen\native\cuda\MultiTensorApply.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:11.0071589Z copying torch\include\ATen\native\cuda\Normalization.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:11.0072578Z copying torch\include\ATen\native\cuda\PersistentSoftmax.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:11.0080021Z copying torch\include\ATen\native\cuda\Pow.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:11.0088225Z copying torch\include\ATen\native\cuda\Randperm.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:11.0093536Z copying torch\include\ATen\native\cuda\Reduce.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:11.0100888Z copying torch\include\ATen\native\cuda\reduction_template.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:11.0108437Z copying torch\include\ATen\native\cuda\ScanUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:11.0115224Z copying torch\include\ATen\native\cuda\SortingCommon.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:11.0121992Z copying torch\include\ATen\native\cuda\SortingRadixSelect.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:11.0129095Z copying torch\include\ATen\native\cuda\SortUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:11.0135476Z copying torch\include\ATen\native\cuda\TensorModeKernel.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:11.0142308Z copying torch\include\ATen\native\cuda\UniqueCub.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:11.0148676Z copying torch\include\ATen\native\cuda\UpSample.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:11.0155035Z copying torch\include\ATen\native\cuda\vol2col.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:22:11.0160886Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen\aoti_runtime 2025-06-01T21:22:11.0164254Z copying torch\_inductor\codegen\aoti_runtime\interface.cpp -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\aoti_runtime 2025-06-01T21:22:11.0337122Z copying torch\_inductor\script.ld -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:22:11.0343936Z copying torch\_export\serde\schema.yaml -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-06-01T21:22:11.0357023Z copying torch\_export\serde\export_schema.thrift -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-06-01T21:22:11.0367010Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\ATen 2025-06-01T21:22:11.0372416Z copying torch\share\cmake\ATen\ATenConfig.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\ATen 2025-06-01T21:22:11.0377923Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-06-01T21:22:11.0380894Z copying torch\share\cmake\Caffe2\Caffe2Config.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-06-01T21:22:11.0387220Z copying torch\share\cmake\Caffe2\Caffe2Targets-release.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-06-01T21:22:11.0393205Z copying torch\share\cmake\Caffe2\Caffe2Targets.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-06-01T21:22:11.0405375Z copying torch\share\cmake\Caffe2\FindCUDAToolkit.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-06-01T21:22:11.0412196Z copying torch\share\cmake\Caffe2\FindCUDSS.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-06-01T21:22:11.0418862Z copying torch\share\cmake\Caffe2\FindCUSPARSELT.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-06-01T21:22:11.0425830Z copying torch\share\cmake\Caffe2\FindSYCLToolkit.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-06-01T21:22:11.0431605Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-06-01T21:22:11.0434574Z copying torch\share\cmake\Caffe2\public\cuda.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-06-01T21:22:11.0440999Z copying torch\share\cmake\Caffe2\public\gflags.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-06-01T21:22:11.0447435Z copying torch\share\cmake\Caffe2\public\glog.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-06-01T21:22:11.0453896Z copying torch\share\cmake\Caffe2\public\LoadHIP.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-06-01T21:22:11.0464461Z copying torch\share\cmake\Caffe2\public\mkl.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-06-01T21:22:11.0470992Z copying torch\share\cmake\Caffe2\public\mkldnn.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-06-01T21:22:11.0477258Z copying torch\share\cmake\Caffe2\public\protobuf.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-06-01T21:22:11.0483671Z copying torch\share\cmake\Caffe2\public\utils.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-06-01T21:22:11.0490722Z copying torch\share\cmake\Caffe2\public\xpu.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-06-01T21:22:11.0496612Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix 2025-06-01T21:22:11.0499610Z copying torch\share\cmake\Caffe2\Modules_CUDA_fix\FindCUDA.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix 2025-06-01T21:22:11.0506388Z copying torch\share\cmake\Caffe2\Modules_CUDA_fix\FindCUDNN.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix 2025-06-01T21:22:11.0512280Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream 2025-06-01T21:22:11.0523068Z 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-06-01T21:22:11.0530761Z 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-06-01T21:22:11.0539208Z 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-06-01T21:22:11.0550017Z 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-06-01T21:22:11.0555595Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA 2025-06-01T21:22:11.0559065Z 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-06-01T21:22:11.0566011Z 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-06-01T21:22:11.0572150Z 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-06-01T21:22:11.0586083Z 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-06-01T21:22:11.0591216Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\Torch 2025-06-01T21:22:11.0594091Z copying torch\share\cmake\Torch\TorchConfig.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Torch 2025-06-01T21:22:11.0600837Z copying torch\share\cmake\Torch\TorchConfigVersion.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Torch 2025-06-01T21:22:11.0607669Z copying torch\utils\benchmark\utils\timeit_template.cpp -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-06-01T21:22:11.0620941Z copying torch\utils\benchmark\utils\valgrind_wrapper\compat_bindings.cpp -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-06-01T21:22:11.0643455Z copying torch\utils\benchmark\utils\valgrind_wrapper\timer_callgrind_template.cpp -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-06-01T21:22:11.0664066Z copying torch\utils\benchmark\utils\valgrind_wrapper\callgrind.h -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-06-01T21:22:11.0665175Z copying torch\utils\benchmark\utils\valgrind_wrapper\valgrind.h -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-06-01T21:22:11.0674038Z copying torch\utils\model_dump\skeleton.html -> build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-06-01T21:22:11.0682112Z copying torch\utils\model_dump\code.js -> build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-06-01T21:22:11.0704518Z copying torch\utils\model_dump\htm.mjs -> build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-06-01T21:22:11.0722063Z copying torch\utils\model_dump\preact.mjs -> build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-06-01T21:22:11.0736645Z copying torch\lib\aoti_custom_ops.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:22:11.0751384Z copying torch\lib\asmjit.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:22:11.0761729Z copying torch\lib\backend_with_compiler.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:22:11.0770107Z copying torch\lib\c10.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:22:11.0785354Z copying torch\lib\fbgemm.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:22:11.0842589Z copying torch\lib\jitbackend_test.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:22:11.0850729Z copying torch\lib\torch.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:22:11.0857214Z copying torch\lib\torchbind_test.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:22:11.0868929Z copying torch\lib\torch_cpu.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:22:11.2115880Z copying torch\lib\torch_global_deps.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:22:11.2122500Z copying torch\lib\torch_python.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:22:11.2267704Z copying torch\lib\aoti_custom_ops.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:22:11.2274525Z copying torch\lib\asmjit.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:22:11.2282714Z copying torch\lib\backend_with_compiler.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:22:11.2306433Z copying torch\lib\c10.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:22:11.2320171Z copying torch\lib\cpuinfo.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:22:11.2327993Z copying torch\lib\dnnl.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:22:11.8306604Z copying torch\lib\fbgemm.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:22:11.8325819Z copying torch\lib\fmt.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:22:11.8344120Z copying torch\lib\jitbackend_test.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:22:11.8351606Z copying torch\lib\kineto.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:22:11.8540207Z copying torch\lib\libittnotify.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:22:12.3678325Z copying torch\lib\libprotobuf-lite.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:22:12.3730813Z copying torch\lib\libprotobuf.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:22:12.4058822Z copying torch\lib\libprotoc.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:22:12.4405370Z copying torch\lib\microkernels-prod.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:22:12.4436262Z copying torch\lib\pthreadpool.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:22:12.4444980Z copying torch\lib\sleef.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:22:12.4526325Z copying torch\lib\torch.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:22:12.4532533Z copying torch\lib\torchbind_test.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:22:12.4539455Z copying torch\lib\torch_cpu.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:22:12.4791969Z copying torch\lib\torch_python.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:22:12.9981064Z copying torch\lib\XNNPACK.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:22:13.0009909Z creating build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\native 2025-06-01T21:22:13.0015134Z copying torchgen\packaged\ATen\native\native_functions.yaml -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\native 2025-06-01T21:22:13.7190614Z copying torchgen\packaged\ATen\native\tags.yaml -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\native 2025-06-01T21:22:13.7202388Z creating build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:22:13.7206907Z copying torchgen\packaged\ATen\templates\ATenOpList.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:22:13.7218351Z copying torchgen\packaged\ATen\templates\aten_interned_strings.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:22:13.7993015Z copying torchgen\packaged\ATen\templates\CompositeViewCopyKernels.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:22:13.8013168Z copying torchgen\packaged\ATen\templates\DispatchKeyFunction.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:22:13.8023539Z copying torchgen\packaged\ATen\templates\DispatchKeyFunctions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:22:13.8035318Z copying torchgen\packaged\ATen\templates\DispatchKeyFunctions_inl.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:22:13.8045665Z copying torchgen\packaged\ATen\templates\DispatchKeyNativeFunctions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:22:13.8052214Z copying torchgen\packaged\ATen\templates\DispatchKeyNativeFunctions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:22:13.8062988Z copying torchgen\packaged\ATen\templates\enum_tag.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:22:13.8069230Z copying torchgen\packaged\ATen\templates\Function.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:22:13.8075534Z copying torchgen\packaged\ATen\templates\FunctionalInverses.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:22:13.8085974Z copying torchgen\packaged\ATen\templates\Functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:22:13.8096585Z copying torchgen\packaged\ATen\templates\Functions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:22:13.8106851Z copying torchgen\packaged\ATen\templates\LazyIr.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:22:13.8113086Z copying torchgen\packaged\ATen\templates\LazyNonNativeIr.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:22:13.8119840Z copying torchgen\packaged\ATen\templates\MethodOperators.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:22:13.8130430Z copying torchgen\packaged\ATen\templates\NativeFunction.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:22:13.8136897Z copying torchgen\packaged\ATen\templates\NativeFunctions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:22:13.8149372Z copying torchgen\packaged\ATen\templates\NativeMetaFunction.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:22:13.8167703Z copying torchgen\packaged\ATen\templates\NativeMetaFunctions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:22:13.8173939Z copying torchgen\packaged\ATen\templates\Operator.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:22:13.8180332Z copying torchgen\packaged\ATen\templates\Operators.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:22:13.8186817Z copying torchgen\packaged\ATen\templates\Operators.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:22:13.8196735Z copying torchgen\packaged\ATen\templates\RedispatchFunctions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:22:13.8203184Z copying torchgen\packaged\ATen\templates\RedispatchFunctions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:22:13.8213630Z copying torchgen\packaged\ATen\templates\RegisterBackendSelect.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:22:13.8225002Z copying torchgen\packaged\ATen\templates\RegisterCodegenUnboxedKernels.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:22:13.8235509Z copying torchgen\packaged\ATen\templates\RegisterDispatchDefinitions.ini -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:22:13.8241971Z copying torchgen\packaged\ATen\templates\RegisterDispatchKey.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:22:13.8264802Z copying torchgen\packaged\ATen\templates\RegisterFunctionalization.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:22:13.8274960Z copying torchgen\packaged\ATen\templates\RegisterSchema.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:22:13.8281465Z copying torchgen\packaged\ATen\templates\RegistrationDeclarations.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:22:13.8287678Z copying torchgen\packaged\ATen\templates\TensorBody.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:22:13.8307733Z copying torchgen\packaged\ATen\templates\TensorMethods.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:22:13.8317697Z copying torchgen\packaged\ATen\templates\UfuncCPU.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:22:13.8324021Z copying torchgen\packaged\ATen\templates\UfuncCPUKernel.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:22:13.8330834Z copying torchgen\packaged\ATen\templates\UfuncCUDA.cu -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:22:13.8336980Z copying torchgen\packaged\ATen\templates\UnboxingFunctions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:22:13.8359158Z copying torchgen\packaged\ATen\templates\UnboxingFunctions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:22:13.8400262Z creating build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-06-01T21:22:13.8400917Z copying torchgen\packaged\autograd\BUILD.bazel -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-06-01T21:22:13.8401682Z copying torchgen\packaged\autograd\build.bzl -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-06-01T21:22:13.8402437Z copying torchgen\packaged\autograd\context.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-06-01T21:22:13.8403226Z copying torchgen\packaged\autograd\deprecated.yaml -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-06-01T21:22:13.8412684Z copying torchgen\packaged\autograd\derivatives.yaml -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-06-01T21:22:13.9158083Z copying torchgen\packaged\autograd\gen_annotated_fn_args.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-06-01T21:22:13.9168893Z copying torchgen\packaged\autograd\gen_autograd.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-06-01T21:22:13.9181884Z copying torchgen\packaged\autograd\gen_autograd_functions.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-06-01T21:22:13.9204851Z copying torchgen\packaged\autograd\gen_inplace_or_view_type.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-06-01T21:22:14.0013440Z copying torchgen\packaged\autograd\gen_python_functions.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-06-01T21:22:14.0035659Z copying torchgen\packaged\autograd\gen_trace_type.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-06-01T21:22:14.0052625Z copying torchgen\packaged\autograd\gen_variable_factories.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-06-01T21:22:14.0064351Z copying torchgen\packaged\autograd\gen_variable_type.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-06-01T21:22:14.0758766Z copying torchgen\packaged\autograd\gen_view_funcs.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-06-01T21:22:14.0771372Z copying torchgen\packaged\autograd\load_derivatives.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-06-01T21:22:14.1654081Z copying torchgen\packaged\autograd\README.md -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-06-01T21:22:14.1660153Z copying torchgen\packaged\autograd\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-06-01T21:22:14.1664911Z creating build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-06-01T21:22:14.1668220Z copying torchgen\packaged\autograd\templates\ADInplaceOrViewType.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-06-01T21:22:14.1679717Z copying torchgen\packaged\autograd\templates\annotated_fn_args.py.in -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-06-01T21:22:14.1685927Z copying torchgen\packaged\autograd\templates\Functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-06-01T21:22:14.1707838Z copying torchgen\packaged\autograd\templates\Functions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-06-01T21:22:14.2772639Z copying torchgen\packaged\autograd\templates\python_enum_tag.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-06-01T21:22:14.2778970Z copying torchgen\packaged\autograd\templates\python_fft_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-06-01T21:22:14.2809690Z copying torchgen\packaged\autograd\templates\python_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-06-01T21:22:14.2820139Z copying torchgen\packaged\autograd\templates\python_functions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-06-01T21:22:14.2826872Z copying torchgen\packaged\autograd\templates\python_linalg_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-06-01T21:22:14.2837805Z copying torchgen\packaged\autograd\templates\python_nested_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-06-01T21:22:14.2849074Z copying torchgen\packaged\autograd\templates\python_nn_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-06-01T21:22:14.2860655Z copying torchgen\packaged\autograd\templates\python_return_types.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-06-01T21:22:14.2871224Z copying torchgen\packaged\autograd\templates\python_return_types.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-06-01T21:22:14.2878730Z copying torchgen\packaged\autograd\templates\python_sparse_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-06-01T21:22:14.2889809Z copying torchgen\packaged\autograd\templates\python_special_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-06-01T21:22:14.2900411Z copying torchgen\packaged\autograd\templates\python_torch_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-06-01T21:22:14.2910953Z copying torchgen\packaged\autograd\templates\python_variable_methods.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-06-01T21:22:14.3599270Z copying torchgen\packaged\autograd\templates\TraceType.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-06-01T21:22:14.3611577Z copying torchgen\packaged\autograd\templates\VariableType.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-06-01T21:22:14.3621993Z copying torchgen\packaged\autograd\templates\VariableType.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-06-01T21:22:14.3636838Z copying torchgen\packaged\autograd\templates\variable_factories.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-06-01T21:22:14.3645863Z copying torchgen\packaged\autograd\templates\ViewFuncs.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-06-01T21:22:14.3652014Z copying torchgen\packaged\autograd\templates\ViewFuncs.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-06-01T21:22:14.3658374Z copying torch\jit\_script.pyi -> build\lib.win-amd64-cpython-39\torch\jit 2025-06-01T21:22:14.3669116Z copying torch\nn\functional.pyi -> build\lib.win-amd64-cpython-39\torch\nn 2025-06-01T21:22:14.3676977Z copying torch\nn\parameter.pyi -> build\lib.win-amd64-cpython-39\torch\nn 2025-06-01T21:22:14.3684560Z copying torch\utils\_config_typing.pyi -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:22:14.3692529Z copying torch\distributed\optim\zero_redundancy_optimizer.pyi -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-06-01T21:22:14.3701121Z copying torch\optim\_multi_tensor\__init__.pyi -> build\lib.win-amd64-cpython-39\torch\optim\_multi_tensor 2025-06-01T21:22:14.3708585Z copying torch\utils\data\datapipes\datapipe.pyi -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-06-01T21:22:14.4609642Z running build_ext 2025-06-01T21:22:20.5265379Z -- Building with NumPy bindings 2025-06-01T21:22:20.5265733Z -- Not using cuDNN 2025-06-01T21:22:20.5265924Z -- Not using CUDA 2025-06-01T21:22:20.5266126Z -- Not using XPU 2025-06-01T21:22:20.5266361Z -- Using MKLDNN 2025-06-01T21:22:20.5266683Z -- Not using Compute Library for the Arm architecture with MKLDNN 2025-06-01T21:22:20.5267099Z -- Not using CBLAS in MKLDNN 2025-06-01T21:22:20.5267362Z -- Not using NCCL 2025-06-01T21:22:20.5267591Z -- Building without distributed package 2025-06-01T21:22:20.5268588Z -- Building Executorch 2025-06-01T21:22:20.5268855Z -- Using ITT 2025-06-01T21:22:20.5269561Z 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-06-01T21:22:20.5270761Z copying functorch\functorch.pyd -> C:\actions-runner\_work\pytorch\pytorch\build\lib.win-amd64-cpython-39\functorch\_C.cp39-win_amd64.pyd 2025-06-01T21:22:20.5286254Z building 'torch._C' extension 2025-06-01T21:22:20.5304285Z creating build\temp.win-amd64-cpython-39\Release\torch\csrc 2025-06-01T21:22:20.5316848Z "C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\bin\HostX64\x64\cl.exe" /c /nologo /O2 /W3 /GL /DNDEBUG /MD -IC:\Jenkins\Miniconda3\include -IC:\Jenkins\Miniconda3\Include "-IC:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\winrt" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\cppwinrt" /Tctorch/csrc/stub.c /Fobuild\temp.win-amd64-cpython-39\Release\torch\csrc\stub.obj /MD /FS /EHsc 2025-06-01T21:22:20.5521387Z stub.c 2025-06-01T21:22:20.9345594Z "C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\bin\HostX64\x64\link.exe" /nologo /INCREMENTAL:NO /LTCG /DLL /MANIFEST:EMBED,ID=2 /MANIFESTUAC:NO /LIBPATH:C:\actions-runner\_work\pytorch\pytorch\torch\lib /LIBPATH:C:\Jenkins\Miniconda3\libs /LIBPATH:C:\Jenkins\Miniconda3 /LIBPATH:C:\Jenkins\Miniconda3\PCbuild\amd64 "/LIBPATH:C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\lib\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\lib\um\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\lib\10.0.19041.0\ucrt\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\lib\10.0.19041.0\um\x64" torch_python.lib /EXPORT:PyInit__C build\temp.win-amd64-cpython-39\Release\torch\csrc\stub.obj /OUT:build\lib.win-amd64-cpython-39\torch\_C.cp39-win_amd64.pyd /IMPLIB:build\temp.win-amd64-cpython-39\Release\torch\csrc\_C.cp39-win_amd64.lib /NODEFAULTLIB:LIBCMT.LIB 2025-06-01T21:22:20.9619405Z 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-06-01T21:22:20.9727760Z Generating code 2025-06-01T21:22:21.1647747Z Finished generating code 2025-06-01T21:22:21.1957773Z 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-06-01T21:22:21.2009589Z C:\Jenkins\Miniconda3\lib\site-packages\setuptools\_distutils\cmd.py:79: SetuptoolsDeprecationWarning: setup.py install is deprecated. 2025-06-01T21:22:21.2010215Z !! 2025-06-01T21:22:21.2010319Z 2025-06-01T21:22:21.2010430Z ******************************************************************************** 2025-06-01T21:22:21.2010751Z Please avoid running ``setup.py`` directly. 2025-06-01T21:22:21.2011234Z Instead, use pypa/build, pypa/installer or other 2025-06-01T21:22:21.2011604Z standards-based tools. 2025-06-01T21:22:21.2011768Z 2025-06-01T21:22:21.2012083Z See https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html for details. 2025-06-01T21:22:21.2012563Z ******************************************************************************** 2025-06-01T21:22:21.2012771Z 2025-06-01T21:22:21.2012834Z !! 2025-06-01T21:22:21.2013016Z self.initialize_options() 2025-06-01T21:22:21.2092849Z The specified environment variable does not exist. 2025-06-01T21:22:21.2093235Z installing to build\bdist.win-amd64\wheel 2025-06-01T21:22:21.2093524Z running install 2025-06-01T21:22:21.2114613Z running install_lib 2025-06-01T21:22:21.2193634Z creating build\bdist.win-amd64\wheel 2025-06-01T21:22:21.2198378Z creating build\bdist.win-amd64\wheel\functorch 2025-06-01T21:22:21.2202966Z creating build\bdist.win-amd64\wheel\functorch\compile 2025-06-01T21:22:21.2206566Z copying build\lib.win-amd64-cpython-39\functorch\compile\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\compile 2025-06-01T21:22:21.2212375Z creating build\bdist.win-amd64\wheel\functorch\dim 2025-06-01T21:22:21.2215614Z copying build\lib.win-amd64-cpython-39\functorch\dim\batch_tensor.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-06-01T21:22:21.2221255Z copying build\lib.win-amd64-cpython-39\functorch\dim\delayed_mul_tensor.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-06-01T21:22:21.2226638Z copying build\lib.win-amd64-cpython-39\functorch\dim\dim.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-06-01T21:22:21.2232109Z copying build\lib.win-amd64-cpython-39\functorch\dim\magic_trace.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-06-01T21:22:21.2246806Z copying build\lib.win-amd64-cpython-39\functorch\dim\op_properties.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-06-01T21:22:21.2252276Z copying build\lib.win-amd64-cpython-39\functorch\dim\reference.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-06-01T21:22:21.2258140Z copying build\lib.win-amd64-cpython-39\functorch\dim\tree_map.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-06-01T21:22:21.2263336Z copying build\lib.win-amd64-cpython-39\functorch\dim\wrap_type.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-06-01T21:22:21.2268791Z copying build\lib.win-amd64-cpython-39\functorch\dim\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-06-01T21:22:21.2274502Z creating build\bdist.win-amd64\wheel\functorch\einops 2025-06-01T21:22:21.2277645Z copying build\lib.win-amd64-cpython-39\functorch\einops\rearrange.py -> build\bdist.win-amd64\wheel\.\functorch\einops 2025-06-01T21:22:21.2283105Z copying build\lib.win-amd64-cpython-39\functorch\einops\_parsing.py -> build\bdist.win-amd64\wheel\.\functorch\einops 2025-06-01T21:22:21.2288552Z copying build\lib.win-amd64-cpython-39\functorch\einops\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\einops 2025-06-01T21:22:21.2294081Z creating build\bdist.win-amd64\wheel\functorch\experimental 2025-06-01T21:22:21.2297527Z copying build\lib.win-amd64-cpython-39\functorch\experimental\control_flow.py -> build\bdist.win-amd64\wheel\.\functorch\experimental 2025-06-01T21:22:21.2303041Z copying build\lib.win-amd64-cpython-39\functorch\experimental\ops.py -> build\bdist.win-amd64\wheel\.\functorch\experimental 2025-06-01T21:22:21.2308078Z copying build\lib.win-amd64-cpython-39\functorch\experimental\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\experimental 2025-06-01T21:22:21.2314032Z copying build\lib.win-amd64-cpython-39\functorch\_C.cp39-win_amd64.pyd -> build\bdist.win-amd64\wheel\.\functorch 2025-06-01T21:22:21.2332708Z creating build\bdist.win-amd64\wheel\functorch\_src 2025-06-01T21:22:21.2336077Z creating build\bdist.win-amd64\wheel\functorch\_src\aot_autograd 2025-06-01T21:22:21.2339756Z copying build\lib.win-amd64-cpython-39\functorch\_src\aot_autograd\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\_src\aot_autograd 2025-06-01T21:22:21.2345681Z creating build\bdist.win-amd64\wheel\functorch\_src\eager_transforms 2025-06-01T21:22:21.2348869Z copying build\lib.win-amd64-cpython-39\functorch\_src\eager_transforms\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\_src\eager_transforms 2025-06-01T21:22:21.2354243Z creating build\bdist.win-amd64\wheel\functorch\_src\make_functional 2025-06-01T21:22:21.2357687Z copying build\lib.win-amd64-cpython-39\functorch\_src\make_functional\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\_src\make_functional 2025-06-01T21:22:21.2363219Z creating build\bdist.win-amd64\wheel\functorch\_src\vmap 2025-06-01T21:22:21.2375777Z copying build\lib.win-amd64-cpython-39\functorch\_src\vmap\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\_src\vmap 2025-06-01T21:22:21.2381150Z copying build\lib.win-amd64-cpython-39\functorch\_src\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\_src 2025-06-01T21:22:21.2385582Z copying build\lib.win-amd64-cpython-39\functorch\__init__.py -> build\bdist.win-amd64\wheel\.\functorch 2025-06-01T21:22:21.2391921Z creating build\bdist.win-amd64\wheel\torch 2025-06-01T21:22:21.2395262Z creating build\bdist.win-amd64\wheel\torch\accelerator 2025-06-01T21:22:21.2398413Z copying build\lib.win-amd64-cpython-39\torch\accelerator\_utils.py -> build\bdist.win-amd64\wheel\.\torch\accelerator 2025-06-01T21:22:21.2403642Z copying build\lib.win-amd64-cpython-39\torch\accelerator\__init__.py -> build\bdist.win-amd64\wheel\.\torch\accelerator 2025-06-01T21:22:21.2409194Z creating build\bdist.win-amd64\wheel\torch\amp 2025-06-01T21:22:21.2412329Z copying build\lib.win-amd64-cpython-39\torch\amp\autocast_mode.py -> build\bdist.win-amd64\wheel\.\torch\amp 2025-06-01T21:22:21.2417994Z copying build\lib.win-amd64-cpython-39\torch\amp\grad_scaler.py -> build\bdist.win-amd64\wheel\.\torch\amp 2025-06-01T21:22:21.2423895Z copying build\lib.win-amd64-cpython-39\torch\amp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\amp 2025-06-01T21:22:21.2429355Z creating build\bdist.win-amd64\wheel\torch\ao 2025-06-01T21:22:21.2432624Z creating build\bdist.win-amd64\wheel\torch\ao\nn 2025-06-01T21:22:21.2435981Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic 2025-06-01T21:22:21.2439593Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\modules 2025-06-01T21:22:21.2442855Z 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-06-01T21:22:21.2448205Z 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-06-01T21:22:21.2453546Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\qat 2025-06-01T21:22:21.2456996Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\qat\modules 2025-06-01T21:22:21.2460238Z 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-06-01T21:22:21.2466292Z 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-06-01T21:22:21.2471610Z 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-06-01T21:22:21.2476929Z 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-06-01T21:22:21.2490879Z 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-06-01T21:22:21.2496146Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\quantized 2025-06-01T21:22:21.2499651Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\quantized\dynamic 2025-06-01T21:22:21.2503176Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\quantized\dynamic\modules 2025-06-01T21:22:21.2506867Z 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-06-01T21:22:21.2512150Z 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-06-01T21:22:21.2517420Z 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-06-01T21:22:21.2522812Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\quantized\modules 2025-06-01T21:22:21.2526016Z 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-06-01T21:22:21.2531255Z 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-06-01T21:22:21.2536406Z 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-06-01T21:22:21.2541837Z 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-06-01T21:22:21.2547174Z 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-06-01T21:22:21.2561323Z 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-06-01T21:22:21.2566346Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\intrinsic 2025-06-01T21:22:21.2571807Z creating build\bdist.win-amd64\wheel\torch\ao\nn\qat 2025-06-01T21:22:21.2575177Z creating build\bdist.win-amd64\wheel\torch\ao\nn\qat\dynamic 2025-06-01T21:22:21.2578590Z creating build\bdist.win-amd64\wheel\torch\ao\nn\qat\dynamic\modules 2025-06-01T21:22:21.2582503Z 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-06-01T21:22:21.2587761Z 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-06-01T21:22:21.2592750Z 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-06-01T21:22:21.2598000Z creating build\bdist.win-amd64\wheel\torch\ao\nn\qat\modules 2025-06-01T21:22:21.2601098Z 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-06-01T21:22:21.2606335Z 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-06-01T21:22:21.2611656Z 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-06-01T21:22:21.2616767Z 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-06-01T21:22:21.2622143Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\qat\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\qat 2025-06-01T21:22:21.2627567Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantizable 2025-06-01T21:22:21.2631103Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantizable\modules 2025-06-01T21:22:21.2634244Z 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-06-01T21:22:21.2640267Z 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-06-01T21:22:21.2646111Z 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-06-01T21:22:21.2651224Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantizable 2025-06-01T21:22:21.2656613Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantized 2025-06-01T21:22:21.2669133Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantized\dynamic 2025-06-01T21:22:21.2672703Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantized\dynamic\modules 2025-06-01T21:22:21.2675956Z 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-06-01T21:22:21.2681692Z 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-06-01T21:22:21.2686932Z 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-06-01T21:22:21.2693186Z 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-06-01T21:22:21.2698214Z 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-06-01T21:22:21.2703436Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\functional.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized 2025-06-01T21:22:21.2709690Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantized\modules 2025-06-01T21:22:21.2712987Z 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-06-01T21:22:21.2718569Z 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-06-01T21:22:21.2724045Z 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-06-01T21:22:21.2730041Z 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-06-01T21:22:21.2735389Z 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-06-01T21:22:21.2749703Z 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-06-01T21:22:21.2755349Z 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-06-01T21:22:21.2760783Z 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-06-01T21:22:21.2766218Z 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-06-01T21:22:21.2771505Z 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-06-01T21:22:21.2776888Z 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-06-01T21:22:21.2782696Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantized\reference 2025-06-01T21:22:21.2795060Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantized\reference\modules 2025-06-01T21:22:21.2798597Z 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-06-01T21:22:21.2804034Z 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-06-01T21:22:21.2809348Z 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-06-01T21:22:21.2815702Z 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-06-01T21:22:21.2822607Z 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-06-01T21:22:21.2828187Z 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-06-01T21:22:21.2833263Z 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-06-01T21:22:21.2838222Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized 2025-06-01T21:22:21.2843654Z creating build\bdist.win-amd64\wheel\torch\ao\nn\sparse 2025-06-01T21:22:21.2847366Z creating build\bdist.win-amd64\wheel\torch\ao\nn\sparse\quantized 2025-06-01T21:22:21.2851070Z creating build\bdist.win-amd64\wheel\torch\ao\nn\sparse\quantized\dynamic 2025-06-01T21:22:21.2854510Z 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-06-01T21:22:21.2860406Z 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-06-01T21:22:21.2865803Z 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-06-01T21:22:21.2871412Z 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-06-01T21:22:21.2877049Z 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-06-01T21:22:21.2882700Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\sparse 2025-06-01T21:22:21.2887730Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn 2025-06-01T21:22:21.2893449Z creating build\bdist.win-amd64\wheel\torch\ao\ns 2025-06-01T21:22:21.2897051Z creating build\bdist.win-amd64\wheel\torch\ao\ns\fx 2025-06-01T21:22:21.2900407Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\graph_matcher.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-06-01T21:22:21.2906412Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\graph_passes.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-06-01T21:22:21.2912515Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\mappings.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-06-01T21:22:21.2918068Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\ns_types.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-06-01T21:22:21.2923462Z 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-06-01T21:22:21.2938853Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\pattern_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-06-01T21:22:21.2944711Z 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-06-01T21:22:21.2950342Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-06-01T21:22:21.2989660Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\weight_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-06-01T21:22:21.2995162Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-06-01T21:22:21.2999650Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\_numeric_suite.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns 2025-06-01T21:22:21.3005292Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\_numeric_suite_fx.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns 2025-06-01T21:22:21.3011250Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns 2025-06-01T21:22:21.3015956Z creating build\bdist.win-amd64\wheel\torch\ao\pruning 2025-06-01T21:22:21.3019600Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\scheduler 2025-06-01T21:22:21.3022964Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler\base_scheduler.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\scheduler 2025-06-01T21:22:21.3028646Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler\cubic_scheduler.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\scheduler 2025-06-01T21:22:21.3033953Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler\lambda_scheduler.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\scheduler 2025-06-01T21:22:21.3045123Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\scheduler 2025-06-01T21:22:21.3049579Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\sparsifier 2025-06-01T21:22:21.3052835Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier\base_sparsifier.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\sparsifier 2025-06-01T21:22:21.3058423Z 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-06-01T21:22:21.3063706Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\sparsifier 2025-06-01T21:22:21.3078308Z 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-06-01T21:22:21.3083647Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\sparsifier 2025-06-01T21:22:21.3088405Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental 2025-06-01T21:22:21.3091941Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental\activation_sparsifier 2025-06-01T21:22:21.3095333Z 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-06-01T21:22:21.3100974Z 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-06-01T21:22:21.3105439Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental\data_scheduler 2025-06-01T21:22:21.3108664Z 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-06-01T21:22:21.3113770Z 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-06-01T21:22:21.3118884Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental\data_sparsifier 2025-06-01T21:22:21.3131945Z 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-06-01T21:22:21.3137102Z 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-06-01T21:22:21.3142576Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental\data_sparsifier\lightning 2025-06-01T21:22:21.3155382Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks 2025-06-01T21:22:21.3158710Z 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-06-01T21:22:21.3164163Z 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-06-01T21:22:21.3169502Z 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-06-01T21:22:21.3182545Z 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-06-01T21:22:21.3186997Z 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-06-01T21:22:21.3192364Z 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-06-01T21:22:21.3197843Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental\pruner 2025-06-01T21:22:21.3201311Z 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-06-01T21:22:21.3206723Z 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-06-01T21:22:21.3212154Z 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-06-01T21:22:21.3227281Z 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-06-01T21:22:21.3232568Z 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-06-01T21:22:21.3237785Z 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-06-01T21:22:21.3243851Z 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-06-01T21:22:21.3249053Z 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-06-01T21:22:21.3254042Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental 2025-06-01T21:22:21.3258324Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_mappings.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning 2025-06-01T21:22:21.3272657Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning 2025-06-01T21:22:21.3278057Z creating build\bdist.win-amd64\wheel\torch\ao\quantization 2025-06-01T21:22:21.3281820Z creating build\bdist.win-amd64\wheel\torch\ao\quantization\backend_config 2025-06-01T21:22:21.3285493Z 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-06-01T21:22:21.3291645Z 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-06-01T21:22:21.3297245Z 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-06-01T21:22:21.3302969Z 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-06-01T21:22:21.3323279Z 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-06-01T21:22:21.3328140Z 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-06-01T21:22:21.3334309Z 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-06-01T21:22:21.3339295Z 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-06-01T21:22:21.3344537Z 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-06-01T21:22:21.3349746Z 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-06-01T21:22:21.3355235Z 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-06-01T21:22:21.3361117Z 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-06-01T21:22:21.3366337Z 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-06-01T21:22:21.3371761Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fake_quantize.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-06-01T21:22:21.3377566Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fuser_method_mappings.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-06-01T21:22:21.3392153Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fuse_modules.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-06-01T21:22:21.3397820Z creating build\bdist.win-amd64\wheel\torch\ao\quantization\fx 2025-06-01T21:22:21.3401092Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\convert.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-06-01T21:22:21.3407208Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\custom_config.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-06-01T21:22:21.3413161Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\fuse.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-06-01T21:22:21.3418526Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\fuse_handler.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-06-01T21:22:21.3424390Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\graph_module.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-06-01T21:22:21.3438270Z 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-06-01T21:22:21.3443560Z 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-06-01T21:22:21.3448625Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\lstm_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-06-01T21:22:21.3454324Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\match_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-06-01T21:22:21.3459391Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\pattern_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-06-01T21:22:21.3464673Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\prepare.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-06-01T21:22:21.3471766Z 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-06-01T21:22:21.3477103Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\quantize_handler.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-06-01T21:22:21.3482222Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\tracer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-06-01T21:22:21.3487251Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-06-01T21:22:21.3493042Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_decomposed.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-06-01T21:22:21.3498798Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_equalize.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-06-01T21:22:21.3505066Z 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-06-01T21:22:21.3511592Z creating build\bdist.win-amd64\wheel\torch\ao\quantization\fx\_model_report 2025-06-01T21:22:21.3514877Z 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-06-01T21:22:21.3525283Z 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-06-01T21:22:21.3530983Z 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-06-01T21:22:21.3545729Z 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-06-01T21:22:21.3551638Z 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-06-01T21:22:21.3555771Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-06-01T21:22:21.3560753Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\observer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-06-01T21:22:21.3567648Z creating build\bdist.win-amd64\wheel\torch\ao\quantization\pt2e 2025-06-01T21:22:21.3570731Z 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-06-01T21:22:21.3576280Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\export_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-06-01T21:22:21.3581980Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\graph_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-06-01T21:22:21.3587283Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\lowering.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-06-01T21:22:21.3602527Z 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-06-01T21:22:21.3607886Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\prepare.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-06-01T21:22:21.3613375Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\qat_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-06-01T21:22:21.3619559Z creating build\bdist.win-amd64\wheel\torch\ao\quantization\pt2e\representation 2025-06-01T21:22:21.3622997Z 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-06-01T21:22:21.3628849Z 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-06-01T21:22:21.3633963Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-06-01T21:22:21.3639898Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\_affine_quantization.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-06-01T21:22:21.3645990Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\_numeric_debugger.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-06-01T21:22:21.3651364Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-06-01T21:22:21.3655663Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\qconfig.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-06-01T21:22:21.3661342Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\qconfig_mapping.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-06-01T21:22:21.3666790Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantization_mappings.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-06-01T21:22:21.3672086Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantize.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-06-01T21:22:21.3679116Z creating build\bdist.win-amd64\wheel\torch\ao\quantization\quantizer 2025-06-01T21:22:21.3683161Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer\composable_quantizer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\quantizer 2025-06-01T21:22:21.3688867Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer\embedding_quantizer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\quantizer 2025-06-01T21:22:21.3694152Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer\quantizer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\quantizer 2025-06-01T21:22:21.3709209Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\quantizer 2025-06-01T21:22:21.3714685Z 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-06-01T21:22:21.3721724Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer\xnnpack_quantizer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\quantizer 2025-06-01T21:22:21.3727511Z 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-06-01T21:22:21.3733511Z 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-06-01T21:22:21.3739106Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\quantizer 2025-06-01T21:22:21.3744162Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantize_fx.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-06-01T21:22:21.3750387Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantize_jit.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-06-01T21:22:21.3755663Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantize_pt2e.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-06-01T21:22:21.3761203Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quant_type.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-06-01T21:22:21.3766611Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\stubs.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-06-01T21:22:21.3771788Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-06-01T21:22:21.3781875Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\_correct_bias.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-06-01T21:22:21.3787316Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\_equalize.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-06-01T21:22:21.3793232Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\_learnable_fake_quantize.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-06-01T21:22:21.3801471Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-06-01T21:22:21.3807147Z copying build\lib.win-amd64-cpython-39\torch\ao\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao 2025-06-01T21:22:21.3812912Z creating build\bdist.win-amd64\wheel\torch\autograd 2025-06-01T21:22:21.3816334Z copying build\lib.win-amd64-cpython-39\torch\autograd\anomaly_mode.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-06-01T21:22:21.3822075Z copying build\lib.win-amd64-cpython-39\torch\autograd\forward_ad.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-06-01T21:22:21.3828151Z copying build\lib.win-amd64-cpython-39\torch\autograd\function.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-06-01T21:22:21.3834321Z copying build\lib.win-amd64-cpython-39\torch\autograd\functional.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-06-01T21:22:21.3849836Z copying build\lib.win-amd64-cpython-39\torch\autograd\gradcheck.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-06-01T21:22:21.3856143Z copying build\lib.win-amd64-cpython-39\torch\autograd\grad_mode.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-06-01T21:22:21.3861327Z copying build\lib.win-amd64-cpython-39\torch\autograd\graph.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-06-01T21:22:21.3867146Z copying build\lib.win-amd64-cpython-39\torch\autograd\profiler.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-06-01T21:22:21.3873210Z copying build\lib.win-amd64-cpython-39\torch\autograd\profiler_legacy.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-06-01T21:22:21.3879635Z copying build\lib.win-amd64-cpython-39\torch\autograd\profiler_util.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-06-01T21:22:21.3885666Z copying build\lib.win-amd64-cpython-39\torch\autograd\variable.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-06-01T21:22:21.3891019Z creating build\bdist.win-amd64\wheel\torch\autograd\_functions 2025-06-01T21:22:21.3894396Z copying build\lib.win-amd64-cpython-39\torch\autograd\_functions\tensor.py -> build\bdist.win-amd64\wheel\.\torch\autograd\_functions 2025-06-01T21:22:21.3899509Z copying build\lib.win-amd64-cpython-39\torch\autograd\_functions\utils.py -> build\bdist.win-amd64\wheel\.\torch\autograd\_functions 2025-06-01T21:22:21.3904680Z copying build\lib.win-amd64-cpython-39\torch\autograd\_functions\__init__.py -> build\bdist.win-amd64\wheel\.\torch\autograd\_functions 2025-06-01T21:22:21.3909435Z copying build\lib.win-amd64-cpython-39\torch\autograd\__init__.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-06-01T21:22:21.3915325Z creating build\bdist.win-amd64\wheel\torch\backends 2025-06-01T21:22:21.3918619Z creating build\bdist.win-amd64\wheel\torch\backends\cpu 2025-06-01T21:22:21.3921540Z copying build\lib.win-amd64-cpython-39\torch\backends\cpu\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\cpu 2025-06-01T21:22:21.3926819Z creating build\bdist.win-amd64\wheel\torch\backends\cuda 2025-06-01T21:22:21.3929816Z copying build\lib.win-amd64-cpython-39\torch\backends\cuda\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\cuda 2025-06-01T21:22:21.3935628Z creating build\bdist.win-amd64\wheel\torch\backends\cudnn 2025-06-01T21:22:21.3938741Z copying build\lib.win-amd64-cpython-39\torch\backends\cudnn\rnn.py -> build\bdist.win-amd64\wheel\.\torch\backends\cudnn 2025-06-01T21:22:21.3948553Z copying build\lib.win-amd64-cpython-39\torch\backends\cudnn\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\cudnn 2025-06-01T21:22:21.3954133Z creating build\bdist.win-amd64\wheel\torch\backends\cusparselt 2025-06-01T21:22:21.3957386Z copying build\lib.win-amd64-cpython-39\torch\backends\cusparselt\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\cusparselt 2025-06-01T21:22:21.3962864Z creating build\bdist.win-amd64\wheel\torch\backends\kleidiai 2025-06-01T21:22:21.3966074Z copying build\lib.win-amd64-cpython-39\torch\backends\kleidiai\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\kleidiai 2025-06-01T21:22:21.3971448Z creating build\bdist.win-amd64\wheel\torch\backends\mha 2025-06-01T21:22:21.3985012Z copying build\lib.win-amd64-cpython-39\torch\backends\mha\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\mha 2025-06-01T21:22:21.3990273Z creating build\bdist.win-amd64\wheel\torch\backends\mkl 2025-06-01T21:22:21.3993446Z copying build\lib.win-amd64-cpython-39\torch\backends\mkl\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\mkl 2025-06-01T21:22:21.3999195Z creating build\bdist.win-amd64\wheel\torch\backends\mkldnn 2025-06-01T21:22:21.4002408Z copying build\lib.win-amd64-cpython-39\torch\backends\mkldnn\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\mkldnn 2025-06-01T21:22:21.4007924Z creating build\bdist.win-amd64\wheel\torch\backends\mps 2025-06-01T21:22:21.4011082Z copying build\lib.win-amd64-cpython-39\torch\backends\mps\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\mps 2025-06-01T21:22:21.4016739Z creating build\bdist.win-amd64\wheel\torch\backends\nnpack 2025-06-01T21:22:21.4019876Z copying build\lib.win-amd64-cpython-39\torch\backends\nnpack\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\nnpack 2025-06-01T21:22:21.4025426Z creating build\bdist.win-amd64\wheel\torch\backends\openmp 2025-06-01T21:22:21.4028577Z copying build\lib.win-amd64-cpython-39\torch\backends\openmp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\openmp 2025-06-01T21:22:21.4033989Z creating build\bdist.win-amd64\wheel\torch\backends\opt_einsum 2025-06-01T21:22:21.4037217Z copying build\lib.win-amd64-cpython-39\torch\backends\opt_einsum\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\opt_einsum 2025-06-01T21:22:21.4042701Z creating build\bdist.win-amd64\wheel\torch\backends\quantized 2025-06-01T21:22:21.4046004Z copying build\lib.win-amd64-cpython-39\torch\backends\quantized\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\quantized 2025-06-01T21:22:21.4051564Z creating build\bdist.win-amd64\wheel\torch\backends\xeon 2025-06-01T21:22:21.4054733Z copying build\lib.win-amd64-cpython-39\torch\backends\xeon\run_cpu.py -> build\bdist.win-amd64\wheel\.\torch\backends\xeon 2025-06-01T21:22:21.4060887Z copying build\lib.win-amd64-cpython-39\torch\backends\xeon\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\xeon 2025-06-01T21:22:21.4065699Z creating build\bdist.win-amd64\wheel\torch\backends\xnnpack 2025-06-01T21:22:21.4068791Z copying build\lib.win-amd64-cpython-39\torch\backends\xnnpack\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\xnnpack 2025-06-01T21:22:21.4074262Z creating build\bdist.win-amd64\wheel\torch\backends\_coreml 2025-06-01T21:22:21.4077459Z copying build\lib.win-amd64-cpython-39\torch\backends\_coreml\preprocess.py -> build\bdist.win-amd64\wheel\.\torch\backends\_coreml 2025-06-01T21:22:21.4082742Z copying build\lib.win-amd64-cpython-39\torch\backends\_coreml\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\_coreml 2025-06-01T21:22:21.4087125Z creating build\bdist.win-amd64\wheel\torch\backends\_nnapi 2025-06-01T21:22:21.4090147Z copying build\lib.win-amd64-cpython-39\torch\backends\_nnapi\prepare.py -> build\bdist.win-amd64\wheel\.\torch\backends\_nnapi 2025-06-01T21:22:21.4095181Z copying build\lib.win-amd64-cpython-39\torch\backends\_nnapi\serializer.py -> build\bdist.win-amd64\wheel\.\torch\backends\_nnapi 2025-06-01T21:22:21.4101447Z copying build\lib.win-amd64-cpython-39\torch\backends\_nnapi\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\_nnapi 2025-06-01T21:22:21.4105585Z copying build\lib.win-amd64-cpython-39\torch\backends\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends 2025-06-01T21:22:21.4111184Z creating build\bdist.win-amd64\wheel\torch\bin 2025-06-01T21:22:21.4114653Z copying build\lib.win-amd64-cpython-39\torch\bin\asmjit.dll -> build\bdist.win-amd64\wheel\.\torch\bin 2025-06-01T21:22:21.4123814Z copying build\lib.win-amd64-cpython-39\torch\bin\fbgemm.dll -> build\bdist.win-amd64\wheel\.\torch\bin 2025-06-01T21:22:21.4176503Z copying build\lib.win-amd64-cpython-39\torch\bin\FileStoreTest.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-06-01T21:22:21.4186397Z copying build\lib.win-amd64-cpython-39\torch\bin\protoc.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-06-01T21:22:21.4215604Z copying build\lib.win-amd64-cpython-39\torch\bin\TCPStoreTest.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-06-01T21:22:21.4235140Z copying build\lib.win-amd64-cpython-39\torch\bin\test_api.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-06-01T21:22:21.4314884Z copying build\lib.win-amd64-cpython-39\torch\bin\test_edge_op_registration.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-06-01T21:22:21.4323505Z copying build\lib.win-amd64-cpython-39\torch\bin\test_jit.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-06-01T21:22:21.4372023Z copying build\lib.win-amd64-cpython-39\torch\bin\test_lazy.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-06-01T21:22:21.4396847Z copying build\lib.win-amd64-cpython-39\torch\bin\test_nativert.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-06-01T21:22:21.4409324Z copying build\lib.win-amd64-cpython-39\torch\bin\test_tensorexpr.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-06-01T21:22:21.4469423Z copying build\lib.win-amd64-cpython-39\torch\bin\tutorial_tensorexpr.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-06-01T21:22:21.4480404Z creating build\bdist.win-amd64\wheel\torch\compiler 2025-06-01T21:22:21.4493167Z copying build\lib.win-amd64-cpython-39\torch\compiler\config.py -> build\bdist.win-amd64\wheel\.\torch\compiler 2025-06-01T21:22:21.4498277Z copying build\lib.win-amd64-cpython-39\torch\compiler\_cache.py -> build\bdist.win-amd64\wheel\.\torch\compiler 2025-06-01T21:22:21.4503573Z copying build\lib.win-amd64-cpython-39\torch\compiler\__init__.py -> build\bdist.win-amd64\wheel\.\torch\compiler 2025-06-01T21:22:21.4509479Z creating build\bdist.win-amd64\wheel\torch\contrib 2025-06-01T21:22:21.4512756Z copying build\lib.win-amd64-cpython-39\torch\contrib\_tensorboard_vis.py -> build\bdist.win-amd64\wheel\.\torch\contrib 2025-06-01T21:22:21.4518123Z copying build\lib.win-amd64-cpython-39\torch\contrib\__init__.py -> build\bdist.win-amd64\wheel\.\torch\contrib 2025-06-01T21:22:21.4522785Z creating build\bdist.win-amd64\wheel\torch\cpu 2025-06-01T21:22:21.4525972Z creating build\bdist.win-amd64\wheel\torch\cpu\amp 2025-06-01T21:22:21.4529373Z copying build\lib.win-amd64-cpython-39\torch\cpu\amp\autocast_mode.py -> build\bdist.win-amd64\wheel\.\torch\cpu\amp 2025-06-01T21:22:21.4534603Z copying build\lib.win-amd64-cpython-39\torch\cpu\amp\grad_scaler.py -> build\bdist.win-amd64\wheel\.\torch\cpu\amp 2025-06-01T21:22:21.4539942Z copying build\lib.win-amd64-cpython-39\torch\cpu\amp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\cpu\amp 2025-06-01T21:22:21.4544688Z copying build\lib.win-amd64-cpython-39\torch\cpu\__init__.py -> build\bdist.win-amd64\wheel\.\torch\cpu 2025-06-01T21:22:21.4550037Z creating build\bdist.win-amd64\wheel\torch\cuda 2025-06-01T21:22:21.4553241Z creating build\bdist.win-amd64\wheel\torch\cuda\amp 2025-06-01T21:22:21.4556386Z copying build\lib.win-amd64-cpython-39\torch\cuda\amp\autocast_mode.py -> build\bdist.win-amd64\wheel\.\torch\cuda\amp 2025-06-01T21:22:21.4561374Z copying build\lib.win-amd64-cpython-39\torch\cuda\amp\common.py -> build\bdist.win-amd64\wheel\.\torch\cuda\amp 2025-06-01T21:22:21.4566023Z copying build\lib.win-amd64-cpython-39\torch\cuda\amp\grad_scaler.py -> build\bdist.win-amd64\wheel\.\torch\cuda\amp 2025-06-01T21:22:21.4570943Z copying build\lib.win-amd64-cpython-39\torch\cuda\amp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\cuda\amp 2025-06-01T21:22:21.4575559Z copying build\lib.win-amd64-cpython-39\torch\cuda\comm.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-06-01T21:22:21.4580519Z copying build\lib.win-amd64-cpython-39\torch\cuda\error.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-06-01T21:22:21.4584618Z copying build\lib.win-amd64-cpython-39\torch\cuda\gds.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-06-01T21:22:21.4589499Z copying build\lib.win-amd64-cpython-39\torch\cuda\graphs.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-06-01T21:22:21.4594832Z copying build\lib.win-amd64-cpython-39\torch\cuda\jiterator.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-06-01T21:22:21.4609796Z copying build\lib.win-amd64-cpython-39\torch\cuda\memory.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-06-01T21:22:21.4615414Z copying build\lib.win-amd64-cpython-39\torch\cuda\nccl.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-06-01T21:22:21.4620781Z copying build\lib.win-amd64-cpython-39\torch\cuda\nvtx.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-06-01T21:22:21.4625848Z copying build\lib.win-amd64-cpython-39\torch\cuda\profiler.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-06-01T21:22:21.4630591Z copying build\lib.win-amd64-cpython-39\torch\cuda\random.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-06-01T21:22:21.4635635Z copying build\lib.win-amd64-cpython-39\torch\cuda\sparse.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-06-01T21:22:21.4640523Z copying build\lib.win-amd64-cpython-39\torch\cuda\streams.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-06-01T21:22:21.4645451Z copying build\lib.win-amd64-cpython-39\torch\cuda\tunable.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-06-01T21:22:21.4650767Z copying build\lib.win-amd64-cpython-39\torch\cuda\_gpu_trace.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-06-01T21:22:21.4656241Z copying build\lib.win-amd64-cpython-39\torch\cuda\_memory_viz.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-06-01T21:22:21.4661751Z copying build\lib.win-amd64-cpython-39\torch\cuda\_sanitizer.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-06-01T21:22:21.4667187Z copying build\lib.win-amd64-cpython-39\torch\cuda\_utils.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-06-01T21:22:21.4672117Z copying build\lib.win-amd64-cpython-39\torch\cuda\__init__.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-06-01T21:22:21.4679173Z creating build\bdist.win-amd64\wheel\torch\distributed 2025-06-01T21:22:21.4682697Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms 2025-06-01T21:22:21.4686441Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms\ddp_comm_hooks 2025-06-01T21:22:21.4689774Z 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-06-01T21:22:21.4695882Z 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-06-01T21:22:21.4701637Z 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-06-01T21:22:21.4716626Z 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-06-01T21:22:21.4721840Z 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-06-01T21:22:21.4727126Z 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-06-01T21:22:21.4732366Z 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-06-01T21:22:21.4738192Z 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-06-01T21:22:21.4743683Z 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-06-01T21:22:21.4749107Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\join.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms 2025-06-01T21:22:21.4755041Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms\model_averaging 2025-06-01T21:22:21.4758413Z 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-06-01T21:22:21.4764014Z 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-06-01T21:22:21.4802476Z 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-06-01T21:22:21.4812544Z 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-06-01T21:22:21.4817015Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms\_checkpoint 2025-06-01T21:22:21.4831714Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_checkpoint\checkpoint_wrapper.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\_checkpoint 2025-06-01T21:22:21.4837869Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_checkpoint\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\_checkpoint 2025-06-01T21:22:21.4842832Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms\_comm_hooks 2025-06-01T21:22:21.4846371Z 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-06-01T21:22:21.4852022Z 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-06-01T21:22:21.4857201Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms\_optimizer_overlap 2025-06-01T21:22:21.4860822Z 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-06-01T21:22:21.4866631Z 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-06-01T21:22:21.4871505Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms\_quantization 2025-06-01T21:22:21.4874985Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_quantization\quantization.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\_quantization 2025-06-01T21:22:21.4880449Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_quantization\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\_quantization 2025-06-01T21:22:21.4884707Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms 2025-06-01T21:22:21.4889635Z copying build\lib.win-amd64-cpython-39\torch\distributed\argparse_util.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-06-01T21:22:21.4895434Z creating build\bdist.win-amd64\wheel\torch\distributed\autograd 2025-06-01T21:22:21.4898647Z copying build\lib.win-amd64-cpython-39\torch\distributed\autograd\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\autograd 2025-06-01T21:22:21.4904157Z copying build\lib.win-amd64-cpython-39\torch\distributed\c10d_logger.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-06-01T21:22:21.4919486Z creating build\bdist.win-amd64\wheel\torch\distributed\checkpoint 2025-06-01T21:22:21.4922894Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:22:21.4928565Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\default_planner.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:22:21.4934311Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\filesystem.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:22:21.4939882Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\format_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:22:21.4954782Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\logger.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:22:21.4960050Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\logging_handlers.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:22:21.4965097Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\metadata.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:22:21.4970227Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\optimizer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:22:21.4975979Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\planner.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:22:21.4981965Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\planner_helpers.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:22:21.4987633Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\resharding.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:22:21.4992985Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\staging.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:22:21.4998186Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\stateful.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:22:21.5003348Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\state_dict.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:22:21.5009492Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\state_dict_loader.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:22:21.5014776Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\state_dict_saver.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:22:21.5019891Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\storage.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:22:21.5025281Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:22:21.5030991Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_async_executor.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:22:21.5036445Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_async_process_executor.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:22:21.5041925Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_async_thread_executor.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:22:21.5047598Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_checkpointer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:22:21.5057699Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_dedup_save_plans.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:22:21.5071844Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_dedup_tensors.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:22:21.5077123Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_extension.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:22:21.5082986Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_fsspec_filesystem.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:22:21.5088492Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_hf_planner.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:22:21.5094196Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_hf_storage.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:22:21.5099579Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_nested_dict.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:22:21.5105294Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_sharded_tensor_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:22:21.5110704Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_storage_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:22:21.5116134Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_traverse.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:22:21.5131393Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_version.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:22:21.5136513Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:22:21.5142445Z copying build\lib.win-amd64-cpython-39\torch\distributed\collective_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-06-01T21:22:21.5147766Z copying build\lib.win-amd64-cpython-39\torch\distributed\constants.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-06-01T21:22:21.5153011Z copying build\lib.win-amd64-cpython-39\torch\distributed\device_mesh.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-06-01T21:22:21.5159308Z copying build\lib.win-amd64-cpython-39\torch\distributed\distributed_c10d.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-06-01T21:22:21.5167643Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic 2025-06-01T21:22:21.5171249Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\agent 2025-06-01T21:22:21.5174589Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\agent\server 2025-06-01T21:22:21.5178064Z 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-06-01T21:22:21.5184187Z 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-06-01T21:22:21.5189631Z 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-06-01T21:22:21.5195335Z 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-06-01T21:22:21.5200849Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\agent 2025-06-01T21:22:21.5205257Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\control_plane.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic 2025-06-01T21:22:21.5210887Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\events 2025-06-01T21:22:21.5214122Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\events\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\events 2025-06-01T21:22:21.5219544Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\events\handlers.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\events 2025-06-01T21:22:21.5224988Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\events\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\events 2025-06-01T21:22:21.5230557Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\metrics 2025-06-01T21:22:21.5233834Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\metrics\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\metrics 2025-06-01T21:22:21.5239136Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\metrics\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\metrics 2025-06-01T21:22:21.5244995Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\multiprocessing 2025-06-01T21:22:21.5258320Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\multiprocessing 2025-06-01T21:22:21.5264989Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\multiprocessing\errors 2025-06-01T21:22:21.5268364Z 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-06-01T21:22:21.5274160Z 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-06-01T21:22:21.5279170Z 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-06-01T21:22:21.5284620Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\redirects.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\multiprocessing 2025-06-01T21:22:21.5290232Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\multiprocessing\subprocess_handler 2025-06-01T21:22:21.5303597Z 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-06-01T21:22:21.5309095Z 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-06-01T21:22:21.5314301Z 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-06-01T21:22:21.5319260Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\tail_log.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\multiprocessing 2025-06-01T21:22:21.5324920Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\multiprocessing 2025-06-01T21:22:21.5331595Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\rendezvous 2025-06-01T21:22:21.5335446Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-06-01T21:22:21.5341736Z 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-06-01T21:22:21.5347918Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\dynamic_rendezvous.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-06-01T21:22:21.5364822Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\etcd_rendezvous.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-06-01T21:22:21.5371053Z 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-06-01T21:22:21.5376587Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\etcd_server.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-06-01T21:22:21.5382301Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\etcd_store.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-06-01T21:22:21.5387767Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\registry.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-06-01T21:22:21.5393341Z 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-06-01T21:22:21.5398655Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-06-01T21:22:21.5403849Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\_etcd_stub.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-06-01T21:22:21.5409847Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-06-01T21:22:21.5415687Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\timer 2025-06-01T21:22:21.5418949Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\timer 2025-06-01T21:22:21.5424478Z 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-06-01T21:22:21.5429820Z 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-06-01T21:22:21.5435495Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer\local_timer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\timer 2025-06-01T21:22:21.5451065Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\timer 2025-06-01T21:22:21.5456737Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\utils 2025-06-01T21:22:21.5460896Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\utils 2025-06-01T21:22:21.5466859Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\utils\data 2025-06-01T21:22:21.5470227Z 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-06-01T21:22:21.5475786Z 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-06-01T21:22:21.5481637Z 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-06-01T21:22:21.5486727Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\distributed.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\utils 2025-06-01T21:22:21.5492913Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\logging.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\utils 2025-06-01T21:22:21.5498943Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\log_level.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\utils 2025-06-01T21:22:21.5513950Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\store.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\utils 2025-06-01T21:22:21.5519292Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\utils 2025-06-01T21:22:21.5524241Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic 2025-06-01T21:22:21.5529981Z creating build\bdist.win-amd64\wheel\torch\distributed\fsdp 2025-06-01T21:22:21.5533105Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-06-01T21:22:21.5538916Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\fully_sharded_data_parallel.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-06-01T21:22:21.5545549Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\sharded_grad_scaler.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-06-01T21:22:21.5551662Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\wrap.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-06-01T21:22:21.5557400Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_common_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-06-01T21:22:21.5573771Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_debug_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-06-01T21:22:21.5579555Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_dynamo_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-06-01T21:22:21.5585197Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_exec_order_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-06-01T21:22:21.5591013Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_flat_param.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-06-01T21:22:21.5597822Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fsdp_extensions.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-06-01T21:22:21.5603682Z creating build\bdist.win-amd64\wheel\torch\distributed\fsdp\_fully_shard 2025-06-01T21:22:21.5607089Z 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-06-01T21:22:21.5612731Z 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-06-01T21:22:21.5618508Z 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-06-01T21:22:21.5634940Z 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-06-01T21:22:21.5640503Z 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-06-01T21:22:21.5646390Z 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-06-01T21:22:21.5652296Z 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-06-01T21:22:21.5658186Z 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-06-01T21:22:21.5663944Z 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-06-01T21:22:21.5668944Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_init_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-06-01T21:22:21.5674845Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_limiter_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-06-01T21:22:21.5680302Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_optim_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-06-01T21:22:21.5686999Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_runtime_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-06-01T21:22:21.5693509Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_shard_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-06-01T21:22:21.5699280Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_state_dict_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-06-01T21:22:21.5705316Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_trace_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-06-01T21:22:21.5710741Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_traversal_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-06-01T21:22:21.5716165Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_unshard_param_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-06-01T21:22:21.5732150Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_wrap_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-06-01T21:22:21.5737723Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-06-01T21:22:21.5743067Z copying build\lib.win-amd64-cpython-39\torch\distributed\launch.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-06-01T21:22:21.5749500Z creating build\bdist.win-amd64\wheel\torch\distributed\launcher 2025-06-01T21:22:21.5753281Z copying build\lib.win-amd64-cpython-39\torch\distributed\launcher\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\launcher 2025-06-01T21:22:21.5758368Z copying build\lib.win-amd64-cpython-39\torch\distributed\launcher\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\launcher 2025-06-01T21:22:21.5763517Z copying build\lib.win-amd64-cpython-39\torch\distributed\logging_handlers.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-06-01T21:22:21.5768802Z creating build\bdist.win-amd64\wheel\torch\distributed\nn 2025-06-01T21:22:21.5771985Z creating build\bdist.win-amd64\wheel\torch\distributed\nn\api 2025-06-01T21:22:21.5775234Z copying build\lib.win-amd64-cpython-39\torch\distributed\nn\api\remote_module.py -> build\bdist.win-amd64\wheel\.\torch\distributed\nn\api 2025-06-01T21:22:21.5781156Z copying build\lib.win-amd64-cpython-39\torch\distributed\nn\api\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\nn\api 2025-06-01T21:22:21.5785410Z copying build\lib.win-amd64-cpython-39\torch\distributed\nn\functional.py -> build\bdist.win-amd64\wheel\.\torch\distributed\nn 2025-06-01T21:22:21.5790881Z creating build\bdist.win-amd64\wheel\torch\distributed\nn\jit 2025-06-01T21:22:21.5794121Z copying build\lib.win-amd64-cpython-39\torch\distributed\nn\jit\instantiator.py -> build\bdist.win-amd64\wheel\.\torch\distributed\nn\jit 2025-06-01T21:22:21.5799649Z creating build\bdist.win-amd64\wheel\torch\distributed\nn\jit\templates 2025-06-01T21:22:21.5803030Z 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-06-01T21:22:21.5808461Z 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-06-01T21:22:21.5812696Z copying build\lib.win-amd64-cpython-39\torch\distributed\nn\jit\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\nn\jit 2025-06-01T21:22:21.5816966Z copying build\lib.win-amd64-cpython-39\torch\distributed\nn\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\nn 2025-06-01T21:22:21.5822345Z creating build\bdist.win-amd64\wheel\torch\distributed\optim 2025-06-01T21:22:21.5826624Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\apply_optimizer_in_backward.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-06-01T21:22:21.5832554Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_adadelta.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-06-01T21:22:21.5838212Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_adagrad.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-06-01T21:22:21.5854064Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_adam.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-06-01T21:22:21.5860118Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_adamax.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-06-01T21:22:21.5865987Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_adamw.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-06-01T21:22:21.5871657Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_rmsprop.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-06-01T21:22:21.5878327Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_rprop.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-06-01T21:22:21.5883771Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_sgd.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-06-01T21:22:21.5889460Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\named_optimizer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-06-01T21:22:21.5894898Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\optimizer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-06-01T21:22:21.5900821Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\post_localSGD_optimizer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-06-01T21:22:21.5906495Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-06-01T21:22:21.5912270Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\zero_redundancy_optimizer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-06-01T21:22:21.5918758Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\zero_redundancy_optimizer.pyi -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-06-01T21:22:21.5924292Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\_deprecation_warning.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-06-01T21:22:21.5929632Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-06-01T21:22:21.5935127Z creating build\bdist.win-amd64\wheel\torch\distributed\pipelining 2025-06-01T21:22:21.5938519Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\microbatch.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-06-01T21:22:21.5944407Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\schedules.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-06-01T21:22:21.5951157Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\stage.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-06-01T21:22:21.5957290Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\_backward.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-06-01T21:22:21.5973170Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\_debug.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-06-01T21:22:21.5978310Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\_IR.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-06-01T21:22:21.5984631Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\_schedule_visualizer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-06-01T21:22:21.5989961Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\_unflatten.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-06-01T21:22:21.5995274Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-06-01T21:22:21.6000502Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-06-01T21:22:21.6005590Z copying build\lib.win-amd64-cpython-39\torch\distributed\remote_device.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-06-01T21:22:21.6010926Z copying build\lib.win-amd64-cpython-39\torch\distributed\rendezvous.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-06-01T21:22:21.6016930Z creating build\bdist.win-amd64\wheel\torch\distributed\rpc 2025-06-01T21:22:21.6020131Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-06-01T21:22:21.6026418Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\backend_registry.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-06-01T21:22:21.6032182Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\constants.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-06-01T21:22:21.6037515Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\functions.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-06-01T21:22:21.6051893Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\internal.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-06-01T21:22:21.6057365Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\options.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-06-01T21:22:21.6062680Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\rref_proxy.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-06-01T21:22:21.6068056Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\server_process_global_profiler.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-06-01T21:22:21.6073399Z creating build\bdist.win-amd64\wheel\torch\distributed\rpc\_testing 2025-06-01T21:22:21.6076794Z 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-06-01T21:22:21.6082258Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\_testing\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc\_testing 2025-06-01T21:22:21.6087545Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-06-01T21:22:21.6100805Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-06-01T21:22:21.6101759Z copying build\lib.win-amd64-cpython-39\torch\distributed\run.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-06-01T21:22:21.6107842Z creating build\bdist.win-amd64\wheel\torch\distributed\tensor 2025-06-01T21:22:21.6110892Z creating build\bdist.win-amd64\wheel\torch\distributed\tensor\debug 2025-06-01T21:22:21.6114174Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug\_comm_mode.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\debug 2025-06-01T21:22:21.6120081Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug\_op_coverage.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\debug 2025-06-01T21:22:21.6125376Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug\_visualize_sharding.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\debug 2025-06-01T21:22:21.6130579Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\debug 2025-06-01T21:22:21.6146600Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\device_mesh.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-06-01T21:22:21.6151834Z creating build\bdist.win-amd64\wheel\torch\distributed\tensor\experimental 2025-06-01T21:22:21.6155151Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental\_attention.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\experimental 2025-06-01T21:22:21.6161256Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental\_func_map.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\experimental 2025-06-01T21:22:21.6166592Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental\_register_sharding.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\experimental 2025-06-01T21:22:21.6181300Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental\_tp_transform.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\experimental 2025-06-01T21:22:21.6187012Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\experimental 2025-06-01T21:22:21.6192354Z creating build\bdist.win-amd64\wheel\torch\distributed\tensor\parallel 2025-06-01T21:22:21.6196061Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-06-01T21:22:21.6200994Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\ddp.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-06-01T21:22:21.6206278Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\fsdp.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-06-01T21:22:21.6211737Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\input_reshard.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-06-01T21:22:21.6216992Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\loss.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-06-01T21:22:21.6222712Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\style.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-06-01T21:22:21.6238177Z 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-06-01T21:22:21.6243483Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-06-01T21:22:21.6248625Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-06-01T21:22:21.6253619Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\placement_types.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-06-01T21:22:21.6269109Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-06-01T21:22:21.6275119Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_collective_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-06-01T21:22:21.6280636Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_dispatch.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-06-01T21:22:21.6286853Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_dtensor_spec.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-06-01T21:22:21.6292427Z creating build\bdist.win-amd64\wheel\torch\distributed\tensor\_ops 2025-06-01T21:22:21.6295632Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-06-01T21:22:21.6300994Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_common_rules.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-06-01T21:22:21.6306518Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_conv_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-06-01T21:22:21.6311951Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_einsum_strategy.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-06-01T21:22:21.6327224Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_embedding_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-06-01T21:22:21.6332705Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_math_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-06-01T21:22:21.6339676Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_matrix_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-06-01T21:22:21.6346064Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_pointwise_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-06-01T21:22:21.6356866Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_random_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-06-01T21:22:21.6362673Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_tensor_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-06-01T21:22:21.6368780Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_view_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-06-01T21:22:21.6374677Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-06-01T21:22:21.6380082Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_op_schema.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-06-01T21:22:21.6390062Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_random.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-06-01T21:22:21.6428780Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_redistribute.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-06-01T21:22:21.6434793Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_sharding_prop.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-06-01T21:22:21.6440880Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_shards_wrapper.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-06-01T21:22:21.6446416Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_tp_conv.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-06-01T21:22:21.6451925Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-06-01T21:22:21.6457641Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-06-01T21:22:21.6463110Z copying build\lib.win-amd64-cpython-39\torch\distributed\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-06-01T21:22:21.6468458Z copying build\lib.win-amd64-cpython-39\torch\distributed\_checkpointable.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-06-01T21:22:21.6474118Z creating build\bdist.win-amd64\wheel\torch\distributed\_composable 2025-06-01T21:22:21.6483373Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable\checkpoint_activation.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_composable 2025-06-01T21:22:21.6493315Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable\contract.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_composable 2025-06-01T21:22:21.6498914Z creating build\bdist.win-amd64\wheel\torch\distributed\_composable\fsdp 2025-06-01T21:22:21.6502327Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable\fsdp\fully_shard.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_composable\fsdp 2025-06-01T21:22:21.6507320Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable\fsdp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_composable\fsdp 2025-06-01T21:22:21.6512258Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable\replicate.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_composable 2025-06-01T21:22:21.6527296Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_composable 2025-06-01T21:22:21.6532336Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable_state.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-06-01T21:22:21.6538116Z copying build\lib.win-amd64-cpython-39\torch\distributed\_functional_collectives.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-06-01T21:22:21.6544263Z copying build\lib.win-amd64-cpython-39\torch\distributed\_functional_collectives_impl.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-06-01T21:22:21.6549773Z copying build\lib.win-amd64-cpython-39\torch\distributed\_serialization.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-06-01T21:22:21.6561214Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard 2025-06-01T21:22:21.6564429Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-06-01T21:22:21.6569840Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\checkpoint 2025-06-01T21:22:21.6573230Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\checkpoint\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\checkpoint 2025-06-01T21:22:21.6578337Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\common_op_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-06-01T21:22:21.6583757Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\metadata.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-06-01T21:22:21.6588948Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\op_registry_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-06-01T21:22:21.6604276Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\sharded_optim 2025-06-01T21:22:21.6607564Z 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-06-01T21:22:21.6613004Z 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-06-01T21:22:21.6618405Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\sharded_tensor 2025-06-01T21:22:21.6621776Z 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-06-01T21:22:21.6628086Z 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-06-01T21:22:21.6633383Z 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-06-01T21:22:21.6638413Z 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-06-01T21:22:21.6643536Z 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-06-01T21:22:21.6658327Z 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-06-01T21:22:21.6663618Z 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-06-01T21:22:21.6669034Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\sharded_tensor\_ops 2025-06-01T21:22:21.6672474Z 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-06-01T21:22:21.6677872Z 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-06-01T21:22:21.6683203Z 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-06-01T21:22:21.6688469Z 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-06-01T21:22:21.6693872Z 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-06-01T21:22:21.6709096Z 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-06-01T21:22:21.6714215Z 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-06-01T21:22:21.6719898Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharder.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-06-01T21:22:21.6730343Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\sharding_plan 2025-06-01T21:22:21.6733712Z 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-06-01T21:22:21.6739132Z 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-06-01T21:22:21.6744481Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\sharding_spec 2025-06-01T21:22:21.6747910Z 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-06-01T21:22:21.6753554Z 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-06-01T21:22:21.6759437Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops 2025-06-01T21:22:21.6772435Z 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-06-01T21:22:21.6778376Z 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-06-01T21:22:21.6784466Z 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-06-01T21:22:21.6799248Z 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-06-01T21:22:21.6803616Z 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-06-01T21:22:21.6809084Z 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-06-01T21:22:21.6814168Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-06-01T21:22:21.6819613Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-06-01T21:22:21.6825124Z creating build\bdist.win-amd64\wheel\torch\distributed\_sharded_tensor 2025-06-01T21:22:21.6828860Z copying build\lib.win-amd64-cpython-39\torch\distributed\_sharded_tensor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_sharded_tensor 2025-06-01T21:22:21.6834424Z creating build\bdist.win-amd64\wheel\torch\distributed\_sharding_spec 2025-06-01T21:22:21.6838265Z copying build\lib.win-amd64-cpython-39\torch\distributed\_sharding_spec\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_sharding_spec 2025-06-01T21:22:21.6844126Z copying build\lib.win-amd64-cpython-39\torch\distributed\_state_dict_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-06-01T21:22:21.6851243Z creating build\bdist.win-amd64\wheel\torch\distributed\_symmetric_memory 2025-06-01T21:22:21.6854635Z copying build\lib.win-amd64-cpython-39\torch\distributed\_symmetric_memory\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_symmetric_memory 2025-06-01T21:22:21.6861122Z creating build\bdist.win-amd64\wheel\torch\distributed\_tensor 2025-06-01T21:22:21.6873390Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tensor\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tensor 2025-06-01T21:22:21.6878710Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tensor\placement_types.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tensor 2025-06-01T21:22:21.6883827Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tensor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tensor 2025-06-01T21:22:21.6889456Z creating build\bdist.win-amd64\wheel\torch\distributed\_tools 2025-06-01T21:22:21.6892756Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\common_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-06-01T21:22:21.6898346Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\fake_collectives.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-06-01T21:22:21.6904076Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\fsdp2_mem_tracker.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-06-01T21:22:21.6909747Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\ilp_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-06-01T21:22:21.6924418Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\memory_tracker.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-06-01T21:22:21.6929835Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\mem_tracker.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-06-01T21:22:21.6936019Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\mod_tracker.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-06-01T21:22:21.6941604Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\runtime_estimator.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-06-01T21:22:21.6947377Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\sac_estimator.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-06-01T21:22:21.6953563Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\sac_ilp.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-06-01T21:22:21.6958857Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-06-01T21:22:21.6963900Z copying build\lib.win-amd64-cpython-39\torch\distributed\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-06-01T21:22:21.6970019Z creating build\bdist.win-amd64\wheel\torch\distributions 2025-06-01T21:22:21.6973376Z copying build\lib.win-amd64-cpython-39\torch\distributions\bernoulli.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:22:21.6979188Z copying build\lib.win-amd64-cpython-39\torch\distributions\beta.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:22:21.6984542Z copying build\lib.win-amd64-cpython-39\torch\distributions\binomial.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:22:21.6989939Z copying build\lib.win-amd64-cpython-39\torch\distributions\categorical.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:22:21.7005286Z copying build\lib.win-amd64-cpython-39\torch\distributions\cauchy.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:22:21.7010819Z copying build\lib.win-amd64-cpython-39\torch\distributions\chi2.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:22:21.7016072Z copying build\lib.win-amd64-cpython-39\torch\distributions\constraints.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:22:21.7022277Z copying build\lib.win-amd64-cpython-39\torch\distributions\constraint_registry.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:22:21.7027763Z copying build\lib.win-amd64-cpython-39\torch\distributions\continuous_bernoulli.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:22:21.7033159Z copying build\lib.win-amd64-cpython-39\torch\distributions\dirichlet.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:22:21.7038562Z copying build\lib.win-amd64-cpython-39\torch\distributions\distribution.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:22:21.7044019Z copying build\lib.win-amd64-cpython-39\torch\distributions\exponential.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:22:21.7049351Z copying build\lib.win-amd64-cpython-39\torch\distributions\exp_family.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:22:21.7054696Z copying build\lib.win-amd64-cpython-39\torch\distributions\fishersnedecor.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:22:21.7060017Z copying build\lib.win-amd64-cpython-39\torch\distributions\gamma.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:22:21.7074098Z copying build\lib.win-amd64-cpython-39\torch\distributions\generalized_pareto.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:22:21.7079508Z copying build\lib.win-amd64-cpython-39\torch\distributions\geometric.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:22:21.7084880Z copying build\lib.win-amd64-cpython-39\torch\distributions\gumbel.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:22:21.7090282Z copying build\lib.win-amd64-cpython-39\torch\distributions\half_cauchy.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:22:21.7095858Z copying build\lib.win-amd64-cpython-39\torch\distributions\half_normal.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:22:21.7101429Z copying build\lib.win-amd64-cpython-39\torch\distributions\independent.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:22:21.7107080Z copying build\lib.win-amd64-cpython-39\torch\distributions\inverse_gamma.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:22:21.7122126Z copying build\lib.win-amd64-cpython-39\torch\distributions\kl.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:22:21.7128040Z copying build\lib.win-amd64-cpython-39\torch\distributions\kumaraswamy.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:22:21.7133702Z copying build\lib.win-amd64-cpython-39\torch\distributions\laplace.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:22:21.7139120Z copying build\lib.win-amd64-cpython-39\torch\distributions\lkj_cholesky.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:22:21.7149555Z copying build\lib.win-amd64-cpython-39\torch\distributions\logistic_normal.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:22:21.7155105Z copying build\lib.win-amd64-cpython-39\torch\distributions\log_normal.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:22:21.7160760Z copying build\lib.win-amd64-cpython-39\torch\distributions\lowrank_multivariate_normal.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:22:21.7166343Z copying build\lib.win-amd64-cpython-39\torch\distributions\mixture_same_family.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:22:21.7171885Z copying build\lib.win-amd64-cpython-39\torch\distributions\multinomial.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:22:21.7177526Z copying build\lib.win-amd64-cpython-39\torch\distributions\multivariate_normal.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:22:21.7192397Z copying build\lib.win-amd64-cpython-39\torch\distributions\negative_binomial.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:22:21.7198166Z copying build\lib.win-amd64-cpython-39\torch\distributions\normal.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:22:21.7203643Z copying build\lib.win-amd64-cpython-39\torch\distributions\one_hot_categorical.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:22:21.7209109Z copying build\lib.win-amd64-cpython-39\torch\distributions\pareto.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:22:21.7215732Z copying build\lib.win-amd64-cpython-39\torch\distributions\poisson.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:22:21.7221663Z copying build\lib.win-amd64-cpython-39\torch\distributions\relaxed_bernoulli.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:22:21.7227249Z copying build\lib.win-amd64-cpython-39\torch\distributions\relaxed_categorical.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:22:21.7233576Z copying build\lib.win-amd64-cpython-39\torch\distributions\studentT.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:22:21.7238733Z copying build\lib.win-amd64-cpython-39\torch\distributions\transformed_distribution.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:22:21.7244269Z copying build\lib.win-amd64-cpython-39\torch\distributions\transforms.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:22:21.7250378Z copying build\lib.win-amd64-cpython-39\torch\distributions\uniform.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:22:21.7255667Z copying build\lib.win-amd64-cpython-39\torch\distributions\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:22:21.7261098Z copying build\lib.win-amd64-cpython-39\torch\distributions\von_mises.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:22:21.7276709Z copying build\lib.win-amd64-cpython-39\torch\distributions\weibull.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:22:21.7281995Z copying build\lib.win-amd64-cpython-39\torch\distributions\wishart.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:22:21.7287297Z copying build\lib.win-amd64-cpython-39\torch\distributions\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:22:21.7293279Z creating build\bdist.win-amd64\wheel\torch\export 2025-06-01T21:22:21.7296698Z copying build\lib.win-amd64-cpython-39\torch\export\custom_obj.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-06-01T21:22:21.7302007Z copying build\lib.win-amd64-cpython-39\torch\export\custom_ops.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-06-01T21:22:21.7307390Z copying build\lib.win-amd64-cpython-39\torch\export\decomp_utils.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-06-01T21:22:21.7317771Z copying build\lib.win-amd64-cpython-39\torch\export\dynamic_shapes.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-06-01T21:22:21.7333070Z creating build\bdist.win-amd64\wheel\torch\export\experimental 2025-06-01T21:22:21.7336931Z copying build\lib.win-amd64-cpython-39\torch\export\experimental\__init__.py -> build\bdist.win-amd64\wheel\.\torch\export\experimental 2025-06-01T21:22:21.7342553Z copying build\lib.win-amd64-cpython-39\torch\export\exported_program.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-06-01T21:22:21.7349190Z copying build\lib.win-amd64-cpython-39\torch\export\graph_signature.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-06-01T21:22:21.7355455Z creating build\bdist.win-amd64\wheel\torch\export\passes 2025-06-01T21:22:21.7358892Z copying build\lib.win-amd64-cpython-39\torch\export\passes\__init__.py -> build\bdist.win-amd64\wheel\.\torch\export\passes 2025-06-01T21:22:21.7364686Z creating build\bdist.win-amd64\wheel\torch\export\pt2_archive 2025-06-01T21:22:21.7368283Z copying build\lib.win-amd64-cpython-39\torch\export\pt2_archive\constants.py -> build\bdist.win-amd64\wheel\.\torch\export\pt2_archive 2025-06-01T21:22:21.7379576Z copying build\lib.win-amd64-cpython-39\torch\export\pt2_archive\_package.py -> build\bdist.win-amd64\wheel\.\torch\export\pt2_archive 2025-06-01T21:22:21.7381651Z copying build\lib.win-amd64-cpython-39\torch\export\pt2_archive\__init__.py -> build\bdist.win-amd64\wheel\.\torch\export\pt2_archive 2025-06-01T21:22:21.7387045Z copying build\lib.win-amd64-cpython-39\torch\export\unflatten.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-06-01T21:22:21.7393250Z copying build\lib.win-amd64-cpython-39\torch\export\_draft_export.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-06-01T21:22:21.7400361Z copying build\lib.win-amd64-cpython-39\torch\export\_remove_auto_functionalized_pass.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-06-01T21:22:21.7405531Z copying build\lib.win-amd64-cpython-39\torch\export\_remove_effect_tokens_pass.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-06-01T21:22:21.7411013Z copying build\lib.win-amd64-cpython-39\torch\export\_safeguard.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-06-01T21:22:21.7416325Z copying build\lib.win-amd64-cpython-39\torch\export\_swap.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-06-01T21:22:21.7422114Z copying build\lib.win-amd64-cpython-39\torch\export\_trace.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-06-01T21:22:21.7428660Z copying build\lib.win-amd64-cpython-39\torch\export\_tree_utils.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-06-01T21:22:21.7434211Z copying build\lib.win-amd64-cpython-39\torch\export\_unlift.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-06-01T21:22:21.7440310Z copying build\lib.win-amd64-cpython-39\torch\export\_wrapper_utils.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-06-01T21:22:21.7445490Z copying build\lib.win-amd64-cpython-39\torch\export\__init__.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-06-01T21:22:21.7451359Z creating build\bdist.win-amd64\wheel\torch\fft 2025-06-01T21:22:21.7454506Z copying build\lib.win-amd64-cpython-39\torch\fft\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fft 2025-06-01T21:22:21.7461108Z creating build\bdist.win-amd64\wheel\torch\func 2025-06-01T21:22:21.7464302Z copying build\lib.win-amd64-cpython-39\torch\func\__init__.py -> build\bdist.win-amd64\wheel\.\torch\func 2025-06-01T21:22:21.7470362Z copying build\lib.win-amd64-cpython-39\torch\functional.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:22:21.7477602Z creating build\bdist.win-amd64\wheel\torch\futures 2025-06-01T21:22:21.7480892Z copying build\lib.win-amd64-cpython-39\torch\futures\__init__.py -> build\bdist.win-amd64\wheel\.\torch\futures 2025-06-01T21:22:21.7486759Z creating build\bdist.win-amd64\wheel\torch\fx 2025-06-01T21:22:21.7490131Z copying build\lib.win-amd64-cpython-39\torch\fx\annotate.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-06-01T21:22:21.7495517Z copying build\lib.win-amd64-cpython-39\torch\fx\config.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-06-01T21:22:21.7501025Z creating build\bdist.win-amd64\wheel\torch\fx\experimental 2025-06-01T21:22:21.7504464Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\accelerator_partitioner.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-06-01T21:22:21.7510453Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\const_fold.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-06-01T21:22:21.7515785Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\debug.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-06-01T21:22:21.7535414Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\graph_gradual_typechecker.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-06-01T21:22:21.7541661Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\merge_matmul.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-06-01T21:22:21.7547153Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\meta_tracer.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-06-01T21:22:21.7552923Z creating build\bdist.win-amd64\wheel\torch\fx\experimental\migrate_gradual_types 2025-06-01T21:22:21.7556547Z 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-06-01T21:22:21.7562581Z 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-06-01T21:22:21.7573574Z 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-06-01T21:22:21.7589160Z 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-06-01T21:22:21.7595037Z 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-06-01T21:22:21.7600802Z 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-06-01T21:22:21.7606083Z 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-06-01T21:22:21.7611317Z 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-06-01T21:22:21.7616330Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\normalize.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-06-01T21:22:21.7622354Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\optimization.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-06-01T21:22:21.7628499Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\partitioner_utils.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-06-01T21:22:21.7633988Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\proxy_tensor.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-06-01T21:22:21.7640675Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\recording.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-06-01T21:22:21.7646959Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\refinement_types.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-06-01T21:22:21.7652553Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\rewriter.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-06-01T21:22:21.7657905Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\schema_type_annotation.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-06-01T21:22:21.7663394Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\symbolic_shapes.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-06-01T21:22:21.7672362Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\sym_node.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-06-01T21:22:21.7678929Z creating build\bdist.win-amd64\wheel\torch\fx\experimental\unification 2025-06-01T21:22:21.7682318Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\core.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-06-01T21:22:21.7687756Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\dispatch.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-06-01T21:22:21.7692830Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\match.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-06-01T21:22:21.7698249Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\more.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-06-01T21:22:21.7708387Z creating build\bdist.win-amd64\wheel\torch\fx\experimental\unification\multipledispatch 2025-06-01T21:22:21.7721612Z 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-06-01T21:22:21.7727019Z 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-06-01T21:22:21.7732437Z 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-06-01T21:22:21.7737749Z 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-06-01T21:22:21.7743470Z 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-06-01T21:22:21.7758932Z 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-06-01T21:22:21.7764240Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\unification_tools.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-06-01T21:22:21.7769819Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\utils.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-06-01T21:22:21.7775854Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\variable.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-06-01T21:22:21.7781401Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-06-01T21:22:21.7786710Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unify_refinements.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-06-01T21:22:21.7792286Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\validator.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-06-01T21:22:21.7808319Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\_backward_state.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-06-01T21:22:21.7815157Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\_config.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-06-01T21:22:21.7821315Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\_constant_symnode.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-06-01T21:22:21.7827109Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\_dynamism.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-06-01T21:22:21.7832927Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-06-01T21:22:21.7837753Z copying build\lib.win-amd64-cpython-39\torch\fx\graph.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-06-01T21:22:21.7845087Z copying build\lib.win-amd64-cpython-39\torch\fx\graph_module.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-06-01T21:22:21.7860999Z copying build\lib.win-amd64-cpython-39\torch\fx\immutable_collections.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-06-01T21:22:21.7866526Z copying build\lib.win-amd64-cpython-39\torch\fx\interpreter.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-06-01T21:22:21.7872248Z copying build\lib.win-amd64-cpython-39\torch\fx\node.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-06-01T21:22:21.7878513Z copying build\lib.win-amd64-cpython-39\torch\fx\operator_schemas.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-06-01T21:22:21.7884579Z creating build\bdist.win-amd64\wheel\torch\fx\passes 2025-06-01T21:22:21.7887926Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\annotate_getitem_nodes.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-06-01T21:22:21.7895575Z creating build\bdist.win-amd64\wheel\torch\fx\passes\backends 2025-06-01T21:22:21.7898900Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\backends\cudagraphs.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\backends 2025-06-01T21:22:21.7904954Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\backends\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\backends 2025-06-01T21:22:21.7909704Z creating build\bdist.win-amd64\wheel\torch\fx\passes\dialect 2025-06-01T21:22:21.7913076Z creating build\bdist.win-amd64\wheel\torch\fx\passes\dialect\common 2025-06-01T21:22:21.7916389Z 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-06-01T21:22:21.7921923Z 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-06-01T21:22:21.7926442Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\dialect\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\dialect 2025-06-01T21:22:21.7930892Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\fake_tensor_prop.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-06-01T21:22:21.7936321Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\graph_drawer.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-06-01T21:22:21.7951176Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\graph_manipulation.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-06-01T21:22:21.7956696Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\graph_transform_observer.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-06-01T21:22:21.7962313Z creating build\bdist.win-amd64\wheel\torch\fx\passes\infra 2025-06-01T21:22:21.7965680Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\infra\partitioner.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\infra 2025-06-01T21:22:21.7971508Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\infra\pass_base.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\infra 2025-06-01T21:22:21.7976832Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\infra\pass_manager.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\infra 2025-06-01T21:22:21.7982330Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\infra\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\infra 2025-06-01T21:22:21.7997170Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\net_min_base.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-06-01T21:22:21.8003325Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\operator_support.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-06-01T21:22:21.8008851Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\param_fetch.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-06-01T21:22:21.8014173Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\pass_manager.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-06-01T21:22:21.8019700Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\reinplace.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-06-01T21:22:21.8025931Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\runtime_assert.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-06-01T21:22:21.8031765Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\shape_prop.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-06-01T21:22:21.8041775Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\splitter_base.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-06-01T21:22:21.8047835Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\split_module.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-06-01T21:22:21.8053714Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\split_utils.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-06-01T21:22:21.8059644Z creating build\bdist.win-amd64\wheel\torch\fx\passes\tests 2025-06-01T21:22:21.8095925Z 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-06-01T21:22:21.8101666Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\tests\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\tests 2025-06-01T21:22:21.8106335Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\tools_common.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-06-01T21:22:21.8116585Z creating build\bdist.win-amd64\wheel\torch\fx\passes\utils 2025-06-01T21:22:21.8124026Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\utils\common.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\utils 2025-06-01T21:22:21.8129526Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\utils\fuser_utils.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\utils 2025-06-01T21:22:21.8134774Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\utils\matcher_utils.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\utils 2025-06-01T21:22:21.8140761Z 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-06-01T21:22:21.8155961Z 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-06-01T21:22:21.8161431Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\utils\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\utils 2025-06-01T21:22:21.8166630Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\_tensorify_python_scalars.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-06-01T21:22:21.8176358Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-06-01T21:22:21.8181364Z copying build\lib.win-amd64-cpython-39\torch\fx\proxy.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-06-01T21:22:21.8187051Z copying build\lib.win-amd64-cpython-39\torch\fx\subgraph_rewriter.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-06-01T21:22:21.8192434Z copying build\lib.win-amd64-cpython-39\torch\fx\tensor_type.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-06-01T21:22:21.8202112Z copying build\lib.win-amd64-cpython-39\torch\fx\traceback.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-06-01T21:22:21.8211267Z copying build\lib.win-amd64-cpython-39\torch\fx\_compatibility.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-06-01T21:22:21.8216810Z copying build\lib.win-amd64-cpython-39\torch\fx\_graph_pickler.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-06-01T21:22:21.8222850Z copying build\lib.win-amd64-cpython-39\torch\fx\_lazy_graph_module.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-06-01T21:22:21.8235796Z copying build\lib.win-amd64-cpython-39\torch\fx\_pytree.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-06-01T21:22:21.8241003Z copying build\lib.win-amd64-cpython-39\torch\fx\_symbolic_trace.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-06-01T21:22:21.8247320Z copying build\lib.win-amd64-cpython-39\torch\fx\_utils.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-06-01T21:22:21.8252682Z copying build\lib.win-amd64-cpython-39\torch\fx\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-06-01T21:22:21.8262857Z copying build\lib.win-amd64-cpython-39\torch\hub.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:22:21.8269416Z creating build\bdist.win-amd64\wheel\torch\include 2025-06-01T21:22:21.8272618Z copying build\lib.win-amd64-cpython-39\torch\include\advisor-annotate.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-06-01T21:22:21.8278724Z creating build\bdist.win-amd64\wheel\torch\include\asmjit 2025-06-01T21:22:21.8282358Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\a64.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit 2025-06-01T21:22:21.8287867Z creating build\bdist.win-amd64\wheel\torch\include\asmjit\arm 2025-06-01T21:22:21.8291182Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\a64assembler.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-06-01T21:22:21.8296701Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\a64builder.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-06-01T21:22:21.8302398Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\a64compiler.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-06-01T21:22:21.8307808Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\a64emitter.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-06-01T21:22:21.8323668Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\a64globals.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-06-01T21:22:21.8330828Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\a64instdb.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-06-01T21:22:21.8336218Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\a64operand.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-06-01T21:22:21.8342480Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\armglobals.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-06-01T21:22:21.8348472Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\armoperand.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-06-01T21:22:21.8354621Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\armutils.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-06-01T21:22:21.8360133Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit 2025-06-01T21:22:21.8365617Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\asmjit-scope-begin.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit 2025-06-01T21:22:21.8370999Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\asmjit-scope-end.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit 2025-06-01T21:22:21.8385921Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\asmjit.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit 2025-06-01T21:22:21.8391516Z creating build\bdist.win-amd64\wheel\torch\include\asmjit\core 2025-06-01T21:22:21.8394813Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\api-config.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:22:21.8400910Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\archcommons.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:22:21.8406325Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\archtraits.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:22:21.8411961Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\assembler.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:22:21.8427368Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\builder.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:22:21.8433863Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\codebuffer.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:22:21.8439347Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\codeholder.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:22:21.8445433Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\compiler.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:22:21.8451251Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\compilerdefs.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:22:21.8456710Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\constpool.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:22:21.8467568Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\cpuinfo.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:22:21.8473834Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\emitter.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:22:21.8479753Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\environment.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:22:21.8485879Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\errorhandler.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:22:21.8493183Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\formatter.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:22:21.8499418Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\func.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:22:21.8505851Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\globals.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:22:21.8511266Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\inst.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:22:21.8517103Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\jitallocator.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:22:21.8522935Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\jitruntime.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:22:21.8528378Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\logger.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:22:21.8533687Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\operand.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:22:21.8540119Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\osutils.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:22:21.8545808Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\string.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:22:21.8551216Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\support.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:22:21.8562203Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\target.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:22:21.8579978Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\type.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:22:21.8585827Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\virtmem.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:22:21.8591105Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\zone.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:22:21.8596698Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\zonehash.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:22:21.8601895Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\zonelist.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:22:21.8607259Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\zonestack.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:22:21.8612941Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\zonestring.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:22:21.8618558Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\zonetree.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:22:21.8624200Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\zonevector.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:22:21.8630241Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit 2025-06-01T21:22:21.8636873Z creating build\bdist.win-amd64\wheel\torch\include\asmjit\x86 2025-06-01T21:22:21.8640274Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\x86\x86assembler.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\x86 2025-06-01T21:22:21.8646387Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\x86\x86builder.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\x86 2025-06-01T21:22:21.8651772Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\x86\x86compiler.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\x86 2025-06-01T21:22:21.8657544Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\x86\x86emitter.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\x86 2025-06-01T21:22:21.8684227Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\x86\x86globals.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\x86 2025-06-01T21:22:21.8691480Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\x86\x86instdb.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\x86 2025-06-01T21:22:21.8697690Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\x86\x86operand.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\x86 2025-06-01T21:22:21.8704635Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\x86.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit 2025-06-01T21:22:21.8711728Z creating build\bdist.win-amd64\wheel\torch\include\ATen 2025-06-01T21:22:21.8715299Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\AccumulateType.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:21.8720868Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ArrayRef.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:21.8725896Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ATen.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:21.8731882Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\autocast_mode.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:21.8738129Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Backend.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:21.8757968Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Backtrace.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:21.8763785Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\BlasBackend.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:21.8769017Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CachedTensorUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:21.8774723Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ceil_div.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:21.8786083Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\code_template.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:21.8793534Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CollapseDims.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:21.8799139Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeExplicitAutogradFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:21.8804721Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeExplicitAutogradFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:21.8810990Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeExplicitAutogradNonFunctionalFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:21.8821813Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeExplicitAutogradNonFunctionalFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:21.8828292Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeImplicitAutogradFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:21.8834090Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeImplicitAutogradFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:21.8840797Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeImplicitAutogradNestedTensorFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:21.8854245Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeImplicitAutogradNestedTensorFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:21.8870064Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Config.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:21.8875872Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Context.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:21.8882636Z creating build\bdist.win-amd64\wheel\torch\include\ATen\core 2025-06-01T21:22:21.8886202Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\alias_info.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.8891612Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Array.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.8896918Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ATenGeneral.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.8902248Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ATenOpList.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.8918595Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ATen_fwd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.8923696Z 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-06-01T21:22:21.8929769Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ATen_pch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.8934964Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Backtrace.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.8940038Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\blob.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.8946013Z creating build\bdist.win-amd64\wheel\torch\include\ATen\core\boxing 2025-06-01T21:22:21.8949308Z 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-06-01T21:22:21.8954530Z 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-06-01T21:22:21.8959999Z creating build\bdist.win-amd64\wheel\torch\include\ATen\core\boxing\impl 2025-06-01T21:22:21.8963347Z 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-06-01T21:22:21.8972957Z 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-06-01T21:22:21.8978690Z 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-06-01T21:22:21.8984117Z 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-06-01T21:22:21.8999526Z 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-06-01T21:22:21.9004731Z 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-06-01T21:22:21.9020462Z 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-06-01T21:22:21.9026036Z 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-06-01T21:22:21.9031167Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\builtin_function.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9041653Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\CachingHostAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9047827Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\CheckMemoryFormat.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9053023Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\class_type.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9058378Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\custom_class.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9064067Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\DeprecatedTypeProperties.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9074584Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\DeprecatedTypePropertiesRegistry.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9079795Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Dict.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9085087Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Dict_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9090185Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Dimname.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9095895Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\DimVector.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9102897Z creating build\bdist.win-amd64\wheel\torch\include\ATen\core\dispatch 2025-06-01T21:22:21.9106077Z 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-06-01T21:22:21.9111503Z 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-06-01T21:22:21.9117821Z 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-06-01T21:22:21.9123479Z 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-06-01T21:22:21.9137866Z 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-06-01T21:22:21.9143504Z 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-06-01T21:22:21.9148931Z 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-06-01T21:22:21.9154439Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\DistributionsHelper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9169872Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\dynamic_type.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9179555Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\enum_tag.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9184679Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\enum_type.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9190380Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Formatting.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9198893Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\function.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9204255Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\functional.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9214663Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\function_schema.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9223835Z 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-06-01T21:22:21.9229421Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Generator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9235063Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\GeneratorForPrivateuseone.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9240374Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\grad_mode.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9261283Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\IListRef.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9267688Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\IListRef_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9273321Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\interned_strings.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9278985Z 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-06-01T21:22:21.9284491Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ivalue.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9290803Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ivalue_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9297588Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ivalue_to.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9303089Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\jit_type.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9311256Z 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-06-01T21:22:21.9317807Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\LegacyTypeDispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9333535Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\List.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9339210Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\List_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9344823Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\MT19937RNGEngine.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9351044Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\NamedTensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9356794Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\NestedIntSymNodeImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9368633Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\operator_name.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9380939Z creating build\bdist.win-amd64\wheel\torch\include\ATen\core\op_registration 2025-06-01T21:22:21.9384753Z 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-06-01T21:22:21.9390485Z 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-06-01T21:22:21.9396558Z 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-06-01T21:22:21.9402448Z 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-06-01T21:22:21.9418681Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\PhiloxRNGEngine.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9424584Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\PythonFallbackKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9430078Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\PythonOpRegistrationTrampoline.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9435570Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\qualified_name.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9451197Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\QuantizerBase.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9456892Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Range.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9462204Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Reduction.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9467374Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\rref_interface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9472733Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Scalar.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9483042Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ScalarType.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9488184Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\stack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9493387Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\symbol.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9498539Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9503941Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\TensorAccessor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9509531Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\TensorBase.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9515831Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\TensorBody.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9543182Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\TorchDispatchUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9548459Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\TransformationHelper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9553813Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\typeid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9566162Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\type_factory.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9571594Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\type_ptr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9576953Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\UndefinedTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9582121Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\UnsafeFromTH.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9587671Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\VariableHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9593640Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Variadic.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9598830Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Vitals.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:22:21.9604256Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpp_custom_type_hack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:21.9609953Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu 2025-06-01T21:22:21.9613220Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\FlushDenormal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu 2025-06-01T21:22:21.9618232Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\Utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu 2025-06-01T21:22:21.9623752Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec 2025-06-01T21:22:21.9627017Z 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-06-01T21:22:21.9632173Z 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-06-01T21:22:21.9637506Z 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-06-01T21:22:21.9648553Z 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-06-01T21:22:21.9661402Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec\sve 2025-06-01T21:22:21.9664506Z 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-06-01T21:22:21.9669967Z 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-06-01T21:22:21.9675790Z 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-06-01T21:22:21.9681146Z 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-06-01T21:22:21.9697175Z 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-06-01T21:22:21.9703144Z 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-06-01T21:22:21.9708967Z 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-06-01T21:22:21.9714608Z 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-06-01T21:22:21.9720291Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec\vec128 2025-06-01T21:22:21.9723564Z 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-06-01T21:22:21.9728728Z 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-06-01T21:22:21.9734473Z 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-06-01T21:22:21.9739775Z 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-06-01T21:22:21.9755154Z 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-06-01T21:22:21.9772003Z 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-06-01T21:22:21.9777780Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec\vec256 2025-06-01T21:22:21.9781288Z 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-06-01T21:22:21.9787311Z 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-06-01T21:22:21.9792559Z 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-06-01T21:22:21.9798100Z 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-06-01T21:22:21.9813622Z 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-06-01T21:22:21.9819132Z 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-06-01T21:22:21.9825614Z 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-06-01T21:22:21.9831615Z 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-06-01T21:22:21.9837237Z 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-06-01T21:22:21.9842826Z 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-06-01T21:22:21.9849063Z 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-06-01T21:22:21.9855129Z 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-06-01T21:22:21.9862509Z 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-06-01T21:22:21.9875075Z 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-06-01T21:22:21.9882426Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec\vec256\vsx 2025-06-01T21:22:21.9886210Z 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-06-01T21:22:21.9891658Z 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-06-01T21:22:21.9906506Z 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-06-01T21:22:21.9913512Z 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-06-01T21:22:21.9953411Z 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-06-01T21:22:21.9959286Z 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-06-01T21:22:21.9972547Z 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-06-01T21:22:21.9978007Z 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-06-01T21:22:21.9983655Z 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-06-01T21:22:21.9989215Z 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-06-01T21:22:21.9994649Z 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-06-01T21:22:22.0000507Z 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-06-01T21:22:22.0006659Z 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-06-01T21:22:22.0012726Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec\vec256\zarch 2025-06-01T21:22:22.0016078Z 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-06-01T21:22:22.0023239Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec\vec512 2025-06-01T21:22:22.0026585Z 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-06-01T21:22:22.0032028Z 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-06-01T21:22:22.0038383Z 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-06-01T21:22:22.0044178Z 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-06-01T21:22:22.0055047Z 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-06-01T21:22:22.0060396Z 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-06-01T21:22:22.0066500Z 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-06-01T21:22:22.0072384Z 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-06-01T21:22:22.0078294Z 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-06-01T21:22:22.0084829Z 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-06-01T21:22:22.0090218Z 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-06-01T21:22:22.0096602Z 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-06-01T21:22:22.0102848Z 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-06-01T21:22:22.0108202Z 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-06-01T21:22:22.0113498Z 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-06-01T21:22:22.0118920Z 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-06-01T21:22:22.0124117Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vml.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu 2025-06-01T21:22:22.0129460Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CPUApplyUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:22.0140270Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CPUFixedAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:22.0145792Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CPUFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:22.0151329Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CPUFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:22.0157308Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CPUGeneratorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:22.0163282Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cuda 2025-06-01T21:22:22.0166634Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\ApplyGridUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:22:22.0176916Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\AsmUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:22:22.0182503Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\ATenCUDAGeneral.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:22:22.0187571Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\Atomic.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:22:22.0193478Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CachingHostAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:22:22.0209087Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\cub-RadixSortPairs.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:22:22.0214519Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\cub.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:22:22.0220158Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\cub.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:22:22.0225724Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\cub_definitions.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:22:22.0231139Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAApplyUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:22:22.0237728Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDABlas.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:22:22.0243213Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAContext.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:22:22.0248933Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAContextLight.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:22:22.0254434Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDADataType.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:22:22.0259899Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDADevice.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:22:22.0265242Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAEvent.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:22:22.0270843Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAGeneratorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:22:22.0276351Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAGraph.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:22:22.0282176Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAGraphsUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:22:22.0287862Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDASparse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:22:22.0293470Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDASparseBlas.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:22:22.0309600Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDASparseDescriptors.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:22:22.0315050Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDATensorMethods.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:22:22.0320216Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:22:22.0325714Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cuda\detail 2025-06-01T21:22:22.0329184Z 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-06-01T21:22:22.0334845Z 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-06-01T21:22:22.0340232Z 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-06-01T21:22:22.0345950Z 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-06-01T21:22:22.0361197Z 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-06-01T21:22:22.0367108Z 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-06-01T21:22:22.0372796Z 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-06-01T21:22:22.0378724Z 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-06-01T21:22:22.0384281Z 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-06-01T21:22:22.0392186Z 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-06-01T21:22:22.0403269Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\DeviceUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:22:22.0408666Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\EmptyTensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:22:22.0414496Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\Exceptions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:22:22.0419961Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\jiterator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:22:22.0425462Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\jiterator_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:22:22.0431199Z 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-06-01T21:22:22.0446093Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\NumericLimits.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:22:22.0451935Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\PeerToPeerAccess.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:22:22.0457067Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\PhiloxCudaState.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:22:22.0462460Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\PhiloxUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:22:22.0474282Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\PinnedMemoryAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:22:22.0479358Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\ScanUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:22:22.0484617Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\Sleep.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:22:22.0489686Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\ThrustAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:22:22.0495058Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cuda\tunable 2025-06-01T21:22:22.0498334Z 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-06-01T21:22:22.0504511Z 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-06-01T21:22:22.0510335Z 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-06-01T21:22:22.0515630Z 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-06-01T21:22:22.0530700Z 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-06-01T21:22:22.0536184Z 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-06-01T21:22:22.0541562Z 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-06-01T21:22:22.0547147Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CUDAFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:22.0562143Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CUDAFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:22.0568414Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cudnn 2025-06-01T21:22:22.0571635Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn\cudnn-wrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cudnn 2025-06-01T21:22:22.0576804Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn\Descriptors.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cudnn 2025-06-01T21:22:22.0582256Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn\Handle.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cudnn 2025-06-01T21:22:22.0587125Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn\Handles.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cudnn 2025-06-01T21:22:22.0591914Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn\Types.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cudnn 2025-06-01T21:22:22.0611748Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn\Utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cudnn 2025-06-01T21:22:22.0616977Z creating build\bdist.win-amd64\wheel\torch\include\ATen\detail 2025-06-01T21:22:22.0620681Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\AcceleratorHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-06-01T21:22:22.0625737Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\CUDAHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-06-01T21:22:22.0631006Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\FunctionTraits.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-06-01T21:22:22.0646484Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\HIPHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-06-01T21:22:22.0651549Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\HPUHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-06-01T21:22:22.0656828Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\IPUHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-06-01T21:22:22.0662278Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\MAIAHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-06-01T21:22:22.0667938Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\MPSHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-06-01T21:22:22.0673376Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\MTIAHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-06-01T21:22:22.0678812Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\PrivateUse1HooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-06-01T21:22:22.0684214Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\XPUHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-06-01T21:22:22.0689551Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Device.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:22.0694726Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\DeviceAccelerator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:22.0706162Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\DeviceGuard.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:22.0711585Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Dimname.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:22.0717174Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\DimVector.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:22.0722356Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:22.0728693Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Dispatch_v2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:22.0735076Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\div_rtn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:22.0740258Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\DLConvertor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:22.0745847Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\dlpack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:22.0760664Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\DynamicLibrary.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:22.0766144Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\EmptyTensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:22.0771574Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ExpandBase.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:22.0777158Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ExpandUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:22.0783154Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Formatting.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:22.0788587Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\FunctionalStorageImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:22.0794539Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\FunctionalTensorWrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:22.0800054Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Functions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:22.0806772Z creating build\bdist.win-amd64\wheel\torch\include\ATen\functorch 2025-06-01T21:22:22.0810146Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\ADInterpreters.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-06-01T21:22:22.0815581Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\BatchedFallback.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-06-01T21:22:22.0820981Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\BatchedTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-06-01T21:22:22.0836450Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\BatchingMetaprogramming.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-06-01T21:22:22.0841860Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\BatchRulesHelper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-06-01T21:22:22.0847737Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\DynamicLayer.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-06-01T21:22:22.0853344Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\FunctionalizeInterpreter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-06-01T21:22:22.0858867Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\Interpreter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-06-01T21:22:22.0870427Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\LegacyVmapTransforms.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-06-01T21:22:22.0876298Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\Macros.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-06-01T21:22:22.0881889Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\PlumbingHelper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-06-01T21:22:22.0887655Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\TensorWrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-06-01T21:22:22.0893315Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\VmapInterpreter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-06-01T21:22:22.0903338Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\FuncTorchTLS.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:22.0918849Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Generator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:22.0924112Z creating build\bdist.win-amd64\wheel\torch\include\ATen\hip 2025-06-01T21:22:22.0927417Z creating build\bdist.win-amd64\wheel\torch\include\ATen\hip\impl 2025-06-01T21:22:22.0930864Z 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-06-01T21:22:22.0936589Z 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-06-01T21:22:22.0942057Z 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-06-01T21:22:22.0956991Z 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-06-01T21:22:22.0962225Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\InferSize.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:22.0967788Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\InitialTensorOptions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:22.0972953Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\jiterator_macros.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:22.0978300Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\jit_macros.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:22.0984054Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Layout.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:22.0989152Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\LegacyBatchedFallback.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:22.0994623Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\LegacyBatchedTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:22.1000228Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\LegacyVmapMode.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:22.1024680Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\LegacyVmapTransforms.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:22.1030141Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\LinalgBackend.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:22.1035549Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\MapAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:22.1040882Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\MatrixRef.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:22.1046194Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\MemoryOverlap.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:22.1051573Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\MetaFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:22.1056906Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\MetaFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:22.1062673Z creating build\bdist.win-amd64\wheel\torch\include\ATen\metal 2025-06-01T21:22:22.1065880Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\metal\Context.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\metal 2025-06-01T21:22:22.1071140Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\MethodOperators.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:22.1076879Z creating build\bdist.win-amd64\wheel\torch\include\ATen\miopen 2025-06-01T21:22:22.1090270Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\miopen\Descriptors.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\miopen 2025-06-01T21:22:22.1096025Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\miopen\Exceptions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\miopen 2025-06-01T21:22:22.1101233Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\miopen\Handle.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\miopen 2025-06-01T21:22:22.1106269Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\miopen\miopen-wrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\miopen 2025-06-01T21:22:22.1121168Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\miopen\Types.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\miopen 2025-06-01T21:22:22.1126065Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\miopen\Utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\miopen 2025-06-01T21:22:22.1131391Z creating build\bdist.win-amd64\wheel\torch\include\ATen\mps 2025-06-01T21:22:22.1134788Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\EmptyTensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-06-01T21:22:22.1140915Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\IndexKernels.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-06-01T21:22:22.1146495Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-06-01T21:22:22.1152450Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSAllocatorInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-06-01T21:22:22.1167502Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSDevice.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-06-01T21:22:22.1173295Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSEvent.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-06-01T21:22:22.1178646Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSGeneratorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-06-01T21:22:22.1184198Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSGuardImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-06-01T21:22:22.1190057Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSHooks.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-06-01T21:22:22.1195585Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSProfiler.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-06-01T21:22:22.1201702Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSStream.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-06-01T21:22:22.1207256Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\NamedTensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:22.1212536Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\NamedTensorUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:22.1227276Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native 2025-06-01T21:22:22.1230779Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Activation.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.1236337Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\AdaptivePooling.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.1241720Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\AmpKernels.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.1247597Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\ao_sparse 2025-06-01T21:22:22.1261312Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\ao_sparse\quantized 2025-06-01T21:22:22.1264790Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\ao_sparse\quantized\cpu 2025-06-01T21:22:22.1268125Z 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-06-01T21:22:22.1273737Z 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-06-01T21:22:22.1279313Z 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-06-01T21:22:22.1284689Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\BatchLinearAlgebra.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.1290167Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\batch_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.1295728Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\BinaryOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.1301386Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\BucketizationUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.1306863Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\CanUse32BitIndexMath.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.1312031Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ComplexHelper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.1317652Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\CompositeRandomAccessor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.1323397Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\CompositeRandomAccessorCommon.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.1328881Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ConvolutionMM3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.1334230Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ConvUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.1340251Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.1346017Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\cpu 2025-06-01T21:22:22.1349431Z 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-06-01T21:22:22.1354834Z 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-06-01T21:22:22.1360531Z 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-06-01T21:22:22.1366207Z 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-06-01T21:22:22.1381419Z 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-06-01T21:22:22.1387027Z 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-06-01T21:22:22.1397552Z 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-06-01T21:22:22.1403339Z 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-06-01T21:22:22.1410073Z 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-06-01T21:22:22.1415407Z 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-06-01T21:22:22.1421043Z 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-06-01T21:22:22.1426376Z 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-06-01T21:22:22.1431501Z 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-06-01T21:22:22.1436797Z 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-06-01T21:22:22.1442085Z 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-06-01T21:22:22.1447426Z 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-06-01T21:22:22.1458575Z 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-06-01T21:22:22.1463774Z 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-06-01T21:22:22.1469317Z 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-06-01T21:22:22.1474705Z 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-06-01T21:22:22.1489712Z 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-06-01T21:22:22.1501902Z 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-06-01T21:22:22.1507483Z 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-06-01T21:22:22.1513020Z 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-06-01T21:22:22.1518307Z 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-06-01T21:22:22.1523704Z 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-06-01T21:22:22.1529077Z 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-06-01T21:22:22.1534431Z 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-06-01T21:22:22.1539598Z 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-06-01T21:22:22.1545917Z 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-06-01T21:22:22.1551631Z 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-06-01T21:22:22.1566454Z 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-06-01T21:22:22.1571795Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\CPUBlas.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.1577025Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\CPUFallback.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.1582485Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Cross.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.1588159Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\cuda 2025-06-01T21:22:22.1591620Z 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-06-01T21:22:22.1597187Z 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-06-01T21:22:22.1602541Z 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-06-01T21:22:22.1607856Z 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-06-01T21:22:22.1623773Z 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-06-01T21:22:22.1633946Z 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-06-01T21:22:22.1672891Z 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-06-01T21:22:22.1678946Z 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-06-01T21:22:22.1684824Z 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-06-01T21:22:22.1690398Z 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-06-01T21:22:22.1695700Z 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-06-01T21:22:22.1700940Z 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-06-01T21:22:22.1706490Z 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-06-01T21:22:22.1712809Z 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-06-01T21:22:22.1718571Z 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-06-01T21:22:22.1724176Z 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-06-01T21:22:22.1729485Z 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-06-01T21:22:22.1735176Z 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-06-01T21:22:22.1747014Z 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-06-01T21:22:22.1752522Z 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-06-01T21:22:22.1758331Z 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-06-01T21:22:22.1764047Z 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-06-01T21:22:22.1769607Z 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-06-01T21:22:22.1775106Z 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-06-01T21:22:22.1780285Z 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-06-01T21:22:22.1785951Z 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-06-01T21:22:22.1791390Z 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-06-01T21:22:22.1796765Z 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-06-01T21:22:22.1812724Z 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-06-01T21:22:22.1818381Z 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-06-01T21:22:22.1824118Z 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-06-01T21:22:22.1829670Z 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-06-01T21:22:22.1834961Z 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-06-01T21:22:22.1840460Z 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-06-01T21:22:22.1847474Z 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-06-01T21:22:22.1853520Z 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-06-01T21:22:22.1859194Z 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-06-01T21:22:22.1864869Z 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-06-01T21:22:22.1872235Z 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-06-01T21:22:22.1889268Z 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-06-01T21:22:22.1899471Z 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-06-01T21:22:22.1905012Z 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-06-01T21:22:22.1911374Z 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-06-01T21:22:22.1916515Z 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-06-01T21:22:22.1922555Z 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-06-01T21:22:22.1927903Z 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-06-01T21:22:22.1933051Z 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-06-01T21:22:22.1938603Z 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-06-01T21:22:22.1944122Z 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-06-01T21:22:22.1949991Z 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-06-01T21:22:22.1959861Z 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-06-01T21:22:22.1974287Z 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-06-01T21:22:22.1979763Z 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-06-01T21:22:22.1985332Z 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-06-01T21:22:22.1990541Z 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-06-01T21:22:22.1996162Z 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-06-01T21:22:22.2001825Z 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-06-01T21:22:22.2006983Z 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-06-01T21:22:22.2012314Z 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-06-01T21:22:22.2017745Z 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-06-01T21:22:22.2042043Z 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-06-01T21:22:22.2047463Z 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-06-01T21:22:22.2053310Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\DilatedConvolutionUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2068239Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\DispatchStub.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2074346Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Distance.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2079825Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Distributions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2085929Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\DistributionTemplates.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2091891Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\EmbeddingBag.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2097244Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Fill.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2102771Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ForeachUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2108284Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\FractionalMaxPooling.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2113779Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\FunctionOfAMatrixUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2119318Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\FusedAdagrad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2124569Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\FusedAdam.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2140551Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\FusedSGD.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2145795Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Gelu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2151171Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\GridSampler.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2156751Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\GridSamplerUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2162232Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\group_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2168056Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\hip 2025-06-01T21:22:22.2171392Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\hip\bgemm_kernels 2025-06-01T21:22:22.2175094Z 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-06-01T21:22:22.2181240Z 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-06-01T21:22:22.2186942Z 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-06-01T21:22:22.2191989Z 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-06-01T21:22:22.2197072Z 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-06-01T21:22:22.2202537Z 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-06-01T21:22:22.2217456Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Histogram.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2222986Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\im2col.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2228443Z 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-06-01T21:22:22.2234035Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\IndexingUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2239574Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\IndexKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2245197Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\kleidiai 2025-06-01T21:22:22.2258805Z 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-06-01T21:22:22.2264394Z 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-06-01T21:22:22.2269796Z 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-06-01T21:22:22.2275093Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\layer_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2280698Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Lerp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2288281Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\LinearAlgebra.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2293418Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\LinearAlgebraUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2304303Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\LossMulti.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2307937Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Math.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2315385Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\MathBitFallThroughLists.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2321146Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\MathBitsFallback.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2326368Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\MaxPooling.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2331906Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\mkldnn 2025-06-01T21:22:22.2335307Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\mkldnn\xpu 2025-06-01T21:22:22.2338471Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\mkldnn\xpu\detail 2025-06-01T21:22:22.2341880Z 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-06-01T21:22:22.2347597Z 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-06-01T21:22:22.2353123Z 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-06-01T21:22:22.2358169Z 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-06-01T21:22:22.2363379Z 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-06-01T21:22:22.2368771Z 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-06-01T21:22:22.2383364Z 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-06-01T21:22:22.2389400Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\mps 2025-06-01T21:22:22.2392745Z 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-06-01T21:22:22.2397908Z 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-06-01T21:22:22.2403198Z 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-06-01T21:22:22.2408395Z 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-06-01T21:22:22.2424115Z 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-06-01T21:22:22.2429526Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\mps\operations 2025-06-01T21:22:22.2432854Z 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-06-01T21:22:22.2438276Z 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-06-01T21:22:22.2443554Z 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-06-01T21:22:22.2458228Z 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-06-01T21:22:22.2463650Z 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-06-01T21:22:22.2469326Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations\Indexing.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mps\operations 2025-06-01T21:22:22.2474143Z 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-06-01T21:22:22.2484965Z 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-06-01T21:22:22.2490785Z 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-06-01T21:22:22.2496429Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\nested 2025-06-01T21:22:22.2509116Z 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-06-01T21:22:22.2514209Z 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-06-01T21:22:22.2519670Z 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-06-01T21:22:22.2534895Z 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-06-01T21:22:22.2540208Z 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-06-01T21:22:22.2545656Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\NonEmptyUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2550822Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\NonSymbolicBC.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2556163Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Normalization.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2561420Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Padding.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2566689Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\PixelShuffle.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2571959Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\PointwiseOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2577151Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Pool.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2582302Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Pow.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2587613Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\quantized 2025-06-01T21:22:22.2590942Z 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-06-01T21:22:22.2596673Z 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-06-01T21:22:22.2601617Z 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-06-01T21:22:22.2616940Z 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-06-01T21:22:22.2622328Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\quantized\cpu 2025-06-01T21:22:22.2625767Z 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-06-01T21:22:22.2630946Z 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-06-01T21:22:22.2635844Z 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-06-01T21:22:22.2641088Z 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-06-01T21:22:22.2656269Z 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-06-01T21:22:22.2661497Z 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-06-01T21:22:22.2666366Z 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-06-01T21:22:22.2671564Z 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-06-01T21:22:22.2681155Z 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-06-01T21:22:22.2686313Z 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-06-01T21:22:22.2691189Z 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-06-01T21:22:22.2696486Z 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-06-01T21:22:22.2702248Z 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-06-01T21:22:22.2707416Z 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-06-01T21:22:22.2712528Z 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-06-01T21:22:22.2717620Z 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-06-01T21:22:22.2723254Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\quantized\cudnn 2025-06-01T21:22:22.2726656Z 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-06-01T21:22:22.2732279Z 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-06-01T21:22:22.2743130Z 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-06-01T21:22:22.2748421Z 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-06-01T21:22:22.2753446Z 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-06-01T21:22:22.2758955Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\RangeFactories.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2764356Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\RangeUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2794873Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ReduceAllOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2799998Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ReduceOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2805556Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ReduceOpsUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2811654Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ReductionType.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2816954Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Repeat.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2822620Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Resize.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2827666Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ResizeCommon.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2833177Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\RNN.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2838553Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ScatterGatherChecks.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2844066Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\SegmentReduce.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2849663Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\SharedReduceOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2865447Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\SobolEngineOpsUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2871467Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Sorting.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2877079Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\SortingUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2883190Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\SparseTensorUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2889516Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\SpectralOpsUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2895601Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\StridedRandomAccessor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2901541Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorAdvancedIndexing.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2907153Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorAdvancedIndexingUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2912838Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorCompare.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2918803Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorConversions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2934960Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorDimApply.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2940903Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorFactories.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2946719Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorIterator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2952070Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorIteratorDynamicCasting.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2957607Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorProperties.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2962740Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorShape.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2968355Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorTransformations.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2974032Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TopKImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.2979809Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers 2025-06-01T21:22:22.2983416Z 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-06-01T21:22:22.2989031Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda 2025-06-01T21:22:22.2992394Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\flash_attn 2025-06-01T21:22:22.2995756Z 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-06-01T21:22:22.3001141Z 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-06-01T21:22:22.3006631Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\mem_eff_attention 2025-06-01T21:22:22.3010121Z 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-06-01T21:22:22.3015650Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue 2025-06-01T21:22:22.3019207Z 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-06-01T21:22:22.3025489Z 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-06-01T21:22:22.3031138Z 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-06-01T21:22:22.3046940Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-06-01T21:22:22.3050384Z 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-06-01T21:22:22.3056627Z 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-06-01T21:22:22.3061960Z 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-06-01T21:22:22.3067862Z 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-06-01T21:22:22.3083036Z 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-06-01T21:22:22.3088493Z 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-06-01T21:22:22.3094153Z 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-06-01T21:22:22.3100385Z 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-06-01T21:22:22.3115669Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-06-01T21:22:22.3119291Z 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-06-01T21:22:22.3124925Z 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-06-01T21:22:22.3130807Z 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-06-01T21:22:22.3146212Z 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-06-01T21:22:22.3152830Z 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-06-01T21:22:22.3159516Z 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-06-01T21:22:22.3164967Z 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-06-01T21:22:22.3170459Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernels 2025-06-01T21:22:22.3174056Z 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-06-01T21:22:22.3180598Z 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-06-01T21:22:22.3186491Z 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-06-01T21:22:22.3193429Z 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-06-01T21:22:22.3199773Z 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-06-01T21:22:22.3205317Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\mem_eff_attention\transform 2025-06-01T21:22:22.3209161Z 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-06-01T21:22:22.3214291Z 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-06-01T21:22:22.3219691Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\hip 2025-06-01T21:22:22.3223238Z 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-06-01T21:22:22.3228683Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\hip\flash_attn 2025-06-01T21:22:22.3231911Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\hip\flash_attn\ck 2025-06-01T21:22:22.3235326Z 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-06-01T21:22:22.3240852Z 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-06-01T21:22:22.3246508Z 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-06-01T21:22:22.3262373Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TransposeType.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.3267727Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TriangularOpsUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.3273311Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TypeProperties.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.3278712Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\UnaryOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.3284050Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Unfold2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.3289378Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Unfold3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.3294707Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\UnfoldBackward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.3300102Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\UpSample.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.3306574Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\utils 2025-06-01T21:22:22.3309677Z 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-06-01T21:22:22.3314671Z 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-06-01T21:22:22.3320034Z 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-06-01T21:22:22.3325469Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\verbose_wrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.3364054Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\vol2col.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:22:22.3369952Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\NativeFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:22.3376705Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\NativeMetaFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:22.3383917Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\NestedTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:22.3390178Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\NumericUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:22.3396403Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\OpaqueTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:22.3402320Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Operators.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:22.3409188Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\OpMathType.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:22.3550277Z creating build\bdist.win-amd64\wheel\torch\include\ATen\ops 2025-06-01T21:22:22.3553570Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\abs.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.3558860Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\absolute.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.3564629Z 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-06-01T21:22:22.3569632Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\absolute_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.3584798Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\absolute_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.3590103Z 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-06-01T21:22:22.3595100Z 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-06-01T21:22:22.3600562Z 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-06-01T21:22:22.3605871Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\abs_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.3611074Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\abs_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.3620327Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acos.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.3625392Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acosh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.3630749Z 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-06-01T21:22:22.3635676Z 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-06-01T21:22:22.3641038Z 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-06-01T21:22:22.3646744Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acosh_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.3651862Z 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-06-01T21:22:22.3657106Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acosh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.3662624Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acosh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.3668380Z 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-06-01T21:22:22.3683141Z 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-06-01T21:22:22.3688719Z 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-06-01T21:22:22.3694455Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acos_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.3699813Z 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-06-01T21:22:22.3705132Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acos_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.3710280Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acos_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.3715314Z 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-06-01T21:22:22.3721111Z 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-06-01T21:22:22.3726942Z 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-06-01T21:22:22.3749232Z 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-06-01T21:22:22.3754943Z 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-06-01T21:22:22.3760478Z 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-06-01T21:22:22.3766158Z 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-06-01T21:22:22.3771587Z 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-06-01T21:22:22.3777033Z 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-06-01T21:22:22.3782567Z 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-06-01T21:22:22.3788199Z 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-06-01T21:22:22.3803239Z 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-06-01T21:22:22.3808746Z 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-06-01T21:22:22.3814174Z 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-06-01T21:22:22.3819608Z 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-06-01T21:22:22.3825141Z 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-06-01T21:22:22.3830751Z 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-06-01T21:22:22.3836398Z 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-06-01T21:22:22.3841882Z 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-06-01T21:22:22.3847554Z 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-06-01T21:22:22.3853262Z 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-06-01T21:22:22.3858923Z 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-06-01T21:22:22.3884137Z 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-06-01T21:22:22.3890030Z 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-06-01T21:22:22.3895363Z 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-06-01T21:22:22.3900570Z 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-06-01T21:22:22.3906239Z 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-06-01T21:22:22.3911727Z 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-06-01T21:22:22.3917668Z 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-06-01T21:22:22.3923448Z 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-06-01T21:22:22.3929056Z 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-06-01T21:22:22.3934589Z 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-06-01T21:22:22.3940281Z 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-06-01T21:22:22.3955854Z 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-06-01T21:22:22.3961493Z 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-06-01T21:22:22.3967245Z 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-06-01T21:22:22.3972556Z 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-06-01T21:22:22.3978198Z 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-06-01T21:22:22.3983672Z 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-06-01T21:22:22.3989555Z 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-06-01T21:22:22.4004621Z 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-06-01T21:22:22.4009985Z 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-06-01T21:22:22.4015297Z 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-06-01T21:22:22.4020657Z 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-06-01T21:22:22.4026579Z 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-06-01T21:22:22.4044964Z 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-06-01T21:22:22.4053250Z 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-06-01T21:22:22.4061302Z 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-06-01T21:22:22.4069548Z 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-06-01T21:22:22.4078196Z 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-06-01T21:22:22.4084780Z 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-06-01T21:22:22.4091036Z 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-06-01T21:22:22.4096747Z 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-06-01T21:22:22.4102674Z 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-06-01T21:22:22.4108293Z 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-06-01T21:22:22.4114399Z 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-06-01T21:22:22.4120082Z 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-06-01T21:22:22.4125852Z 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-06-01T21:22:22.4131355Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\add.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.4137161Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addbmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.4142599Z 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-06-01T21:22:22.4148195Z 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-06-01T21:22:22.4153819Z 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-06-01T21:22:22.4159407Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addbmm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.4165047Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addbmm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.4170760Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcdiv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.4176702Z 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-06-01T21:22:22.4182336Z 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-06-01T21:22:22.4187939Z 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-06-01T21:22:22.5670028Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcdiv_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.5675448Z 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-06-01T21:22:22.5681028Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcdiv_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.5686570Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcdiv_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.5692322Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcmul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.5698004Z 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-06-01T21:22:22.5703476Z 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-06-01T21:22:22.5708954Z 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-06-01T21:22:22.5714489Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcmul_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.5720146Z 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-06-01T21:22:22.5725789Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcmul_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.5732150Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcmul_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.5737367Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.5743186Z 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-06-01T21:22:22.5748642Z 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-06-01T21:22:22.5754242Z 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-06-01T21:22:22.5759645Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmm_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.5765282Z 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-06-01T21:22:22.5770976Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.5776961Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.5782730Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.5788501Z 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-06-01T21:22:22.5801258Z 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-06-01T21:22:22.5806942Z 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-06-01T21:22:22.5812498Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmv_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.5818102Z 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-06-01T21:22:22.5823836Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmv_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.5829729Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmv_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.5835463Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.5841145Z 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-06-01T21:22:22.5846638Z 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-06-01T21:22:22.5852242Z 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-06-01T21:22:22.5857919Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.5863749Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.5869531Z 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-06-01T21:22:22.5875392Z 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-06-01T21:22:22.5880825Z 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-06-01T21:22:22.5886525Z 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-06-01T21:22:22.5891796Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\add_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.5897569Z 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-06-01T21:22:22.5903603Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\add_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.5909639Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\add_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.5915271Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adjoint.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.5921268Z 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-06-01T21:22:22.5926954Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adjoint_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.5932297Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adjoint_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.5938133Z 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-06-01T21:22:22.5943664Z 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-06-01T21:22:22.5949572Z 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-06-01T21:22:22.5955278Z 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-06-01T21:22:22.5960930Z 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-06-01T21:22:22.5966831Z 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-06-01T21:22:22.5980845Z 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-06-01T21:22:22.5987422Z 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-06-01T21:22:22.5993776Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alias.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.5999972Z 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-06-01T21:22:22.6006413Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alias_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6012611Z 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-06-01T21:22:22.6018302Z 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-06-01T21:22:22.6024090Z 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-06-01T21:22:22.6029558Z 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-06-01T21:22:22.6035447Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alias_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6041037Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alias_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6046674Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\align_as.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6052016Z 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-06-01T21:22:22.6057143Z 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-06-01T21:22:22.6062388Z 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-06-01T21:22:22.6067738Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\align_tensors.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6073360Z 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-06-01T21:22:22.6078608Z 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-06-01T21:22:22.6083997Z 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-06-01T21:22:22.6089238Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\align_to.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6094320Z 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-06-01T21:22:22.6099833Z 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-06-01T21:22:22.6105294Z 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-06-01T21:22:22.6110532Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\all.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6115811Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\allclose.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6121426Z 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-06-01T21:22:22.6127059Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\allclose_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6132366Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\allclose_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6138348Z 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-06-01T21:22:22.6143939Z 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-06-01T21:22:22.6149571Z 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-06-01T21:22:22.6154698Z 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-06-01T21:22:22.6160086Z 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-06-01T21:22:22.6165445Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\all_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6170864Z 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-06-01T21:22:22.6176251Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\all_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6181774Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\all_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6203459Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alpha_dropout.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6209374Z 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-06-01T21:22:22.6214821Z 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-06-01T21:22:22.6225959Z 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-06-01T21:22:22.6231562Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6237263Z 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-06-01T21:22:22.6242713Z 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-06-01T21:22:22.6248333Z 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-06-01T21:22:22.6254003Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amax_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6259671Z 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-06-01T21:22:22.6265504Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6271453Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6276776Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6282067Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\aminmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6287973Z 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-06-01T21:22:22.6293493Z 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-06-01T21:22:22.6299078Z 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-06-01T21:22:22.6304969Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\aminmax_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6310766Z 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-06-01T21:22:22.6316734Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\aminmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6322482Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\aminmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6328728Z 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-06-01T21:22:22.6334134Z 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-06-01T21:22:22.6339984Z 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-06-01T21:22:22.6345823Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amin_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6351711Z 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-06-01T21:22:22.6357586Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6363196Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6368611Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\and.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6374222Z 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-06-01T21:22:22.6379808Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\and_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6385490Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\and_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6390917Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\angle.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6396544Z 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-06-01T21:22:22.6402749Z 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-06-01T21:22:22.6409378Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\angle_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6415699Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\angle_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6421381Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\any.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6427254Z 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-06-01T21:22:22.6433219Z 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-06-01T21:22:22.6438814Z 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-06-01T21:22:22.6444589Z 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-06-01T21:22:22.6450456Z 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-06-01T21:22:22.6461364Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\any_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6466844Z 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-06-01T21:22:22.6472390Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\any_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6477822Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\any_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6483102Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arange.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6488649Z 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-06-01T21:22:22.6494094Z 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-06-01T21:22:22.6500065Z 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-06-01T21:22:22.6505759Z 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-06-01T21:22:22.6511402Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arange_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6517075Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arange_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6522648Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arccos.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6527877Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arccosh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6533373Z 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-06-01T21:22:22.6538766Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arccosh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6544598Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arccosh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6550428Z 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-06-01T21:22:22.6556033Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arccos_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6561653Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arccos_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6567084Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arcsin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6586588Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arcsinh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6592150Z 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-06-01T21:22:22.6597870Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arcsinh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6603535Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arcsinh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6609307Z 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-06-01T21:22:22.6614812Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arcsin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6620448Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arcsin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6626038Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctan.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6631302Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctan2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6636811Z 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-06-01T21:22:22.6642228Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctan2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6648007Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctan2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6653860Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctanh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6659496Z 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-06-01T21:22:22.6665757Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctanh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6671756Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctanh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6678222Z 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-06-01T21:22:22.6683937Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctan_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6689964Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctan_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6695729Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6701646Z 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-06-01T21:22:22.6707135Z 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-06-01T21:22:22.6712945Z 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-06-01T21:22:22.6718651Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmax_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6724593Z 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-06-01T21:22:22.6730443Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6736337Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6742176Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6747914Z 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-06-01T21:22:22.6753352Z 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-06-01T21:22:22.6759954Z 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-06-01T21:22:22.6765370Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmin_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6771209Z 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-06-01T21:22:22.6776952Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6782950Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6788676Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argsort.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6794525Z 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-06-01T21:22:22.6800229Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argsort_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6805903Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argsort_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6811681Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argwhere.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6816999Z 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-06-01T21:22:22.6822853Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argwhere_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6828223Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argwhere_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6833687Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6839109Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asinh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6844991Z 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-06-01T21:22:22.6850499Z 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-06-01T21:22:22.6856205Z 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-06-01T21:22:22.6868362Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asinh_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6869391Z 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-06-01T21:22:22.6872755Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asinh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6878566Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asinh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6884610Z 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-06-01T21:22:22.6890200Z 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-06-01T21:22:22.6895944Z 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-06-01T21:22:22.6902464Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asin_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6908038Z 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-06-01T21:22:22.6913728Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6919336Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6925372Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\as_strided.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.6932007Z 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-06-01T21:22:22.6937537Z 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-06-01T21:22:22.6943991Z 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-06-01T21:22:22.6949780Z 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-06-01T21:22:22.6955709Z 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-06-01T21:22:22.6967289Z 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-06-01T21:22:22.6972932Z 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-06-01T21:22:22.6978529Z 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-06-01T21:22:22.6984271Z 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-06-01T21:22:22.6989913Z 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-06-01T21:22:22.6995753Z 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-06-01T21:22:22.7001347Z 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-06-01T21:22:22.7007400Z 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-06-01T21:22:22.7013075Z 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-06-01T21:22:22.7018661Z 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-06-01T21:22:22.7024496Z 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-06-01T21:22:22.7030171Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.7035481Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.7041108Z 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-06-01T21:22:22.7046410Z 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-06-01T21:22:22.7052091Z 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-06-01T21:22:22.7057743Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan2_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.7063425Z 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-06-01T21:22:22.7069020Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.7075348Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.7080960Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atanh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.7086745Z 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-06-01T21:22:22.7091963Z 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-06-01T21:22:22.7097402Z 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-06-01T21:22:22.7103155Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atanh_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.7108632Z 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-06-01T21:22:22.7114090Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atanh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.7119865Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atanh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.7125738Z 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-06-01T21:22:22.7131039Z 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-06-01T21:22:22.7136525Z 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-06-01T21:22:22.7141897Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.7147072Z 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-06-01T21:22:22.7152717Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.7158077Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.7163610Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atleast_1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.7169203Z 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-06-01T21:22:22.7174603Z 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-06-01T21:22:22.7180264Z 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-06-01T21:22:22.7186293Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atleast_2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.7192713Z 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-06-01T21:22:22.7199085Z 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-06-01T21:22:22.7204817Z 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-06-01T21:22:22.7210598Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atleast_3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.7216688Z 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-06-01T21:22:22.7222352Z 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-06-01T21:22:22.7227756Z 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-06-01T21:22:22.7233311Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.7239132Z 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-06-01T21:22:22.7244947Z 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-06-01T21:22:22.7250484Z 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-06-01T21:22:22.7256122Z 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-06-01T21:22:22.7282139Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.7288020Z 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-06-01T21:22:22.7294295Z 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-06-01T21:22:22.7299951Z 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-06-01T21:22:22.7306148Z 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-06-01T21:22:22.7311508Z 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-06-01T21:22:22.7317180Z 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-06-01T21:22:22.7322888Z 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-06-01T21:22:22.7328702Z 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-06-01T21:22:22.7334946Z 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-06-01T21:22:22.7340791Z 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-06-01T21:22:22.7346538Z 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-06-01T21:22:22.7352259Z 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-06-01T21:22:22.7358007Z 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-06-01T21:22:22.7363713Z 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-06-01T21:22:22.7369887Z 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-06-01T21:22:22.7375696Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.7381795Z 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-06-01T21:22:22.7388020Z 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-06-01T21:22:22.7393799Z 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-06-01T21:22:22.7399362Z 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-06-01T21:22:22.7405062Z 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-06-01T21:22:22.7410766Z 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-06-01T21:22:22.7416440Z 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-06-01T21:22:22.7429164Z 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-06-01T21:22:22.7435029Z 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-06-01T21:22:22.7440741Z 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-06-01T21:22:22.7449108Z 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-06-01T21:22:22.7462007Z 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-06-01T21:22:22.7467655Z 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-06-01T21:22:22.7473387Z 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-06-01T21:22:22.7479151Z 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-06-01T21:22:22.7484679Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\baddbmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.7490382Z 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-06-01T21:22:22.7495608Z 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-06-01T21:22:22.7501103Z 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-06-01T21:22:22.7507715Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\baddbmm_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.7512876Z 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-06-01T21:22:22.7518222Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\baddbmm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.7523869Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\baddbmm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.7529478Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bartlett_window.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.7535202Z 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-06-01T21:22:22.7540607Z 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-06-01T21:22:22.7546469Z 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-06-01T21:22:22.7552110Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.7557873Z 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-06-01T21:22:22.7563994Z 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-06-01T21:22:22.7569680Z 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-06-01T21:22:22.7575226Z 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-06-01T21:22:22.7581294Z 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-06-01T21:22:22.7586820Z 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-06-01T21:22:22.7592707Z 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-06-01T21:22:22.7598191Z 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-06-01T21:22:22.7603861Z 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-06-01T21:22:22.7609523Z 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-06-01T21:22:22.7615135Z 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-06-01T21:22:22.7621280Z 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-06-01T21:22:22.7627522Z 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-06-01T21:22:22.7633268Z 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-06-01T21:22:22.7639038Z 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-06-01T21:22:22.7644980Z 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-06-01T21:22:22.7650637Z 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-06-01T21:22:22.7656433Z 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-06-01T21:22:22.7662513Z 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-06-01T21:22:22.7668268Z 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-06-01T21:22:22.7674133Z 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-06-01T21:22:22.7680193Z 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-06-01T21:22:22.7686006Z 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-06-01T21:22:22.7691785Z 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-06-01T21:22:22.7697893Z 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-06-01T21:22:22.7704034Z 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-06-01T21:22:22.7710269Z 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-06-01T21:22:22.7716149Z 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-06-01T21:22:22.7722100Z 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-06-01T21:22:22.7727852Z 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-06-01T21:22:22.7733658Z 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-06-01T21:22:22.7739369Z 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-06-01T21:22:22.7745248Z 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-06-01T21:22:22.7751347Z 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-06-01T21:22:22.7757125Z 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-06-01T21:22:22.7762909Z 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-06-01T21:22:22.7768906Z 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-06-01T21:22:22.7774563Z 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-06-01T21:22:22.7780942Z 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-06-01T21:22:22.7786849Z 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-06-01T21:22:22.7792660Z 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-06-01T21:22:22.7798228Z 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-06-01T21:22:22.7804198Z 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-06-01T21:22:22.7810010Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bernoulli.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.7816078Z 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-06-01T21:22:22.7821923Z 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-06-01T21:22:22.7827609Z 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-06-01T21:22:22.7833366Z 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-06-01T21:22:22.7845736Z 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-06-01T21:22:22.7851561Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bernoulli_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.7857411Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bernoulli_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.7863273Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bilinear.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.7868983Z 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-06-01T21:22:22.7874559Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bilinear_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.7880189Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bilinear_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.7885952Z 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-06-01T21:22:22.7891874Z 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-06-01T21:22:22.7897817Z 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-06-01T21:22:22.7903738Z 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-06-01T21:22:22.7909759Z 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-06-01T21:22:22.7915753Z 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-06-01T21:22:22.7921555Z 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-06-01T21:22:22.7927674Z 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-06-01T21:22:22.7933560Z 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-06-01T21:22:22.7939506Z 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-06-01T21:22:22.7945669Z 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-06-01T21:22:22.7951696Z 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-06-01T21:22:22.7957522Z 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-06-01T21:22:22.7963555Z 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-06-01T21:22:22.7969250Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bincount.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.7974896Z 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-06-01T21:22:22.7980531Z 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-06-01T21:22:22.7986190Z 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-06-01T21:22:22.7992302Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bincount_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.7997870Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bincount_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.8003527Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binomial.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.8013410Z 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-06-01T21:22:22.8018806Z 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-06-01T21:22:22.8024510Z 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-06-01T21:22:22.8030157Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binomial_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.8035766Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binomial_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.8041392Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_and.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.8047377Z 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-06-01T21:22:22.8053328Z 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-06-01T21:22:22.8058725Z 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-06-01T21:22:22.8064556Z 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-06-01T21:22:22.8070303Z 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-06-01T21:22:22.8075987Z 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-06-01T21:22:22.8081716Z 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-06-01T21:22:22.8087800Z 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-06-01T21:22:22.8093552Z 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-06-01T21:22:22.8099782Z 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-06-01T21:22:22.8105740Z 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-06-01T21:22:22.8111429Z 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-06-01T21:22:22.8133972Z 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-06-01T21:22:22.8139919Z 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-06-01T21:22:22.8145977Z 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-06-01T21:22:22.8151799Z 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-06-01T21:22:22.8157665Z 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-06-01T21:22:22.8163931Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_not.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.8170289Z 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-06-01T21:22:22.8176172Z 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-06-01T21:22:22.8181984Z 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-06-01T21:22:22.8188072Z 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-06-01T21:22:22.8193690Z 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-06-01T21:22:22.8200005Z 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-06-01T21:22:22.8205691Z 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-06-01T21:22:22.8211344Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_or.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.8217456Z 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-06-01T21:22:22.8224470Z 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-06-01T21:22:22.8230244Z 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-06-01T21:22:22.8236138Z 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-06-01T21:22:22.8241908Z 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-06-01T21:22:22.8247890Z 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-06-01T21:22:22.8253602Z 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-06-01T21:22:22.8259556Z 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-06-01T21:22:22.8265575Z 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-06-01T21:22:22.8271664Z 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-06-01T21:22:22.8277539Z 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-06-01T21:22:22.8283392Z 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-06-01T21:22:22.8289125Z 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-06-01T21:22:22.8295089Z 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-06-01T21:22:22.8301071Z 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-06-01T21:22:22.8306856Z 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-06-01T21:22:22.8312597Z 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-06-01T21:22:22.8318429Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_xor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.8324602Z 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-06-01T21:22:22.8330723Z 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-06-01T21:22:22.8336461Z 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-06-01T21:22:22.8342722Z 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-06-01T21:22:22.8348392Z 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-06-01T21:22:22.8354224Z 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-06-01T21:22:22.8360143Z 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-06-01T21:22:22.8371549Z 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-06-01T21:22:22.8377647Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\blackman_window.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.8383755Z 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-06-01T21:22:22.8389410Z 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-06-01T21:22:22.8395161Z 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-06-01T21:22:22.8401318Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\block_diag.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.8407442Z 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-06-01T21:22:22.8413071Z 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-06-01T21:22:22.8418977Z 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-06-01T21:22:22.8425650Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.8435881Z 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-06-01T21:22:22.8441983Z 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-06-01T21:22:22.8448414Z 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-06-01T21:22:22.8454573Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bmm_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.8459992Z 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-06-01T21:22:22.8466054Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bmm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.8471854Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bmm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.8477436Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\broadcast_tensors.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.8483246Z 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-06-01T21:22:22.8488866Z 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-06-01T21:22:22.8494163Z 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-06-01T21:22:22.8499737Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\broadcast_to.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.8505981Z 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-06-01T21:22:22.8511735Z 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-06-01T21:22:22.8517242Z 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-06-01T21:22:22.8522860Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bucketize.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.8528547Z 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-06-01T21:22:22.8534131Z 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-06-01T21:22:22.8539702Z 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-06-01T21:22:22.8545726Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bucketize_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.8551670Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bucketize_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.8557310Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\can_cast.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.8562644Z 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-06-01T21:22:22.8568285Z 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-06-01T21:22:22.8573754Z 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-06-01T21:22:22.8579387Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cartesian_prod.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.8585296Z 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-06-01T21:22:22.8590986Z 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-06-01T21:22:22.8596658Z 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-06-01T21:22:22.8602396Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cat.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.8608187Z 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-06-01T21:22:22.8613914Z 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-06-01T21:22:22.8619750Z 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-06-01T21:22:22.8625584Z 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-06-01T21:22:22.8631215Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cat_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.8636995Z 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-06-01T21:22:22.8642685Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cat_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.8648319Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cat_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.8653754Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cauchy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.8659514Z 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-06-01T21:22:22.8665287Z 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-06-01T21:22:22.8671041Z 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-06-01T21:22:22.8676926Z 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-06-01T21:22:22.8688653Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cauchy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.8694399Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cauchy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.8700191Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ccol_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.8722356Z 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-06-01T21:22:22.8728034Z 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-06-01T21:22:22.8734163Z 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-06-01T21:22:22.8740059Z 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-06-01T21:22:22.8746173Z 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-06-01T21:22:22.8752014Z 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-06-01T21:22:22.8758300Z 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-06-01T21:22:22.8763854Z 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-06-01T21:22:22.8769505Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cdist.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.8775145Z 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-06-01T21:22:22.8780760Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cdist_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.8786528Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cdist_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.8792191Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ceil.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.8798037Z 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-06-01T21:22:22.8803547Z 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-06-01T21:22:22.8809323Z 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-06-01T21:22:22.8815180Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ceil_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.8820799Z 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-06-01T21:22:22.8826517Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ceil_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.8832361Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ceil_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.8837859Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\celu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.8843548Z 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-06-01T21:22:22.8849148Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\celu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.8854760Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\celu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.8860278Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chain_matmul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.8866410Z 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-06-01T21:22:22.8872058Z 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-06-01T21:22:22.8877685Z 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-06-01T21:22:22.8883359Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chalf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.8888866Z 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-06-01T21:22:22.8894378Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chalf_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.8899837Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chalf_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.8905634Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\channel_shuffle.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.8911555Z 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-06-01T21:22:22.8917555Z 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-06-01T21:22:22.8923980Z 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-06-01T21:22:22.8930418Z 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-06-01T21:22:22.8936143Z 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-06-01T21:22:22.8942420Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.8948205Z 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-06-01T21:22:22.8953820Z 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-06-01T21:22:22.8960507Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky_inverse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.8966365Z 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-06-01T21:22:22.8971952Z 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-06-01T21:22:22.8977615Z 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-06-01T21:22:22.8983514Z 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-06-01T21:22:22.8989275Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.8994856Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9000978Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky_solve.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9007116Z 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-06-01T21:22:22.9012735Z 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-06-01T21:22:22.9018320Z 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-06-01T21:22:22.9024518Z 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-06-01T21:22:22.9030049Z 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-06-01T21:22:22.9035581Z 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-06-01T21:22:22.9041351Z 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-06-01T21:22:22.9046825Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chunk.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9052414Z 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-06-01T21:22:22.9057970Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chunk_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9063561Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chunk_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9069183Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9075008Z 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-06-01T21:22:22.9080683Z 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-06-01T21:22:22.9086362Z 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-06-01T21:22:22.9092003Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_max.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9098106Z 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-06-01T21:22:22.9104061Z 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-06-01T21:22:22.9109945Z 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-06-01T21:22:22.9115504Z 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-06-01T21:22:22.9121462Z 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-06-01T21:22:22.9127282Z 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-06-01T21:22:22.9132962Z 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-06-01T21:22:22.9139067Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9144925Z 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-06-01T21:22:22.9150621Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_min.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9156727Z 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-06-01T21:22:22.9162568Z 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-06-01T21:22:22.9168407Z 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-06-01T21:22:22.9174107Z 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-06-01T21:22:22.9179853Z 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-06-01T21:22:22.9185643Z 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-06-01T21:22:22.9191500Z 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-06-01T21:22:22.9197266Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9202997Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9208732Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clip.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9214724Z 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-06-01T21:22:22.9220321Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clip_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9226345Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clip_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9231747Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clone.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9237442Z 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-06-01T21:22:22.9242912Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clone_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9248589Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clone_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9254239Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\coalesce.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9259826Z 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-06-01T21:22:22.9270424Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\coalesce_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9275874Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\coalesce_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9281793Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col2im.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9287189Z 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-06-01T21:22:22.9292915Z 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-06-01T21:22:22.9298506Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col2im_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9304308Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col2im_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9310118Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\column_stack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9316366Z 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-06-01T21:22:22.9321879Z 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-06-01T21:22:22.9327459Z 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-06-01T21:22:22.9333218Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9339157Z 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-06-01T21:22:22.9344731Z 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-06-01T21:22:22.9350763Z 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-06-01T21:22:22.9356958Z 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-06-01T21:22:22.9362515Z 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-06-01T21:22:22.9368235Z 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-06-01T21:22:22.9374506Z 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-06-01T21:22:22.9381018Z 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-06-01T21:22:22.9387650Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\combinations.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9395238Z 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-06-01T21:22:22.9401508Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\combinations_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9407310Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\combinations_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9412887Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\complex.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9418622Z 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-06-01T21:22:22.9424131Z 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-06-01T21:22:22.9429947Z 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-06-01T21:22:22.9435817Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\complex_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9441523Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\complex_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9447113Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\concat.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9452467Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\concatenate.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9458286Z 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-06-01T21:22:22.9464132Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\concatenate_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9469838Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\concatenate_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9476043Z 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-06-01T21:22:22.9481413Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\concat_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9487117Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\concat_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9492633Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conj.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9497871Z 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-06-01T21:22:22.9503491Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conj_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9508836Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conj_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9514185Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conj_physical.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9520043Z 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-06-01T21:22:22.9526153Z 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-06-01T21:22:22.9531575Z 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-06-01T21:22:22.9537139Z 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-06-01T21:22:22.9542885Z 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-06-01T21:22:22.9548424Z 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-06-01T21:22:22.9554111Z 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-06-01T21:22:22.9560154Z 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-06-01T21:22:22.9565660Z 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-06-01T21:22:22.9571305Z 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-06-01T21:22:22.9585922Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\contiguous.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9600466Z 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-06-01T21:22:22.9605906Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\contiguous_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9611144Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\contiguous_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9617017Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9622774Z 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-06-01T21:22:22.9628250Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv1d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9633813Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv1d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9639290Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9644945Z 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-06-01T21:22:22.9655497Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9658749Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9664241Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9683613Z 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-06-01T21:22:22.9689059Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9694580Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9700147Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9705988Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9711899Z 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-06-01T21:22:22.9718093Z 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-06-01T21:22:22.9724229Z 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-06-01T21:22:22.9729806Z 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-06-01T21:22:22.9735622Z 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-06-01T21:22:22.9741887Z 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-06-01T21:22:22.9747492Z 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-06-01T21:22:22.9753494Z 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-06-01T21:22:22.9759339Z 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-06-01T21:22:22.9764944Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9770845Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9776655Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_overrideable.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9782871Z 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-06-01T21:22:22.9788707Z 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-06-01T21:22:22.9794378Z 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-06-01T21:22:22.9800166Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_depthwise3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9805806Z 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-06-01T21:22:22.9811217Z 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-06-01T21:22:22.9816807Z 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-06-01T21:22:22.9822833Z 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-06-01T21:22:22.9828390Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_tbc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9833835Z 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-06-01T21:22:22.9839957Z 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-06-01T21:22:22.9845691Z 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-06-01T21:22:22.9851723Z 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-06-01T21:22:22.9857546Z 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-06-01T21:22:22.9863559Z 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-06-01T21:22:22.9869415Z 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-06-01T21:22:22.9875287Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_transpose1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9881351Z 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-06-01T21:22:22.9887556Z 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-06-01T21:22:22.9893771Z 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-06-01T21:22:22.9900384Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_transpose2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9907339Z 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-06-01T21:22:22.9913554Z 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-06-01T21:22:22.9919493Z 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-06-01T21:22:22.9925296Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_transpose3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9931311Z 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-06-01T21:22:22.9937247Z 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-06-01T21:22:22.9943308Z 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-06-01T21:22:22.9948866Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9954679Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copysign.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9960365Z 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-06-01T21:22:22.9966046Z 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-06-01T21:22:22.9971858Z 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-06-01T21:22:22.9977414Z 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-06-01T21:22:22.9983299Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copysign_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:22.9989115Z 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-06-01T21:22:22.9994858Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copysign_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.0000533Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copysign_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.0006483Z 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-06-01T21:22:23.0011856Z 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-06-01T21:22:23.0017138Z 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-06-01T21:22:23.0022971Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.0028609Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.0034035Z 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-06-01T21:22:23.0040102Z 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-06-01T21:22:23.0045740Z 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-06-01T21:22:23.0058102Z 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-06-01T21:22:23.0064234Z 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-06-01T21:22:23.0070913Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\corrcoef.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.0076623Z 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-06-01T21:22:23.0082188Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\corrcoef_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.0087736Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\corrcoef_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.0093551Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cos.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.0098967Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.0104898Z 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-06-01T21:22:23.0110483Z 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-06-01T21:22:23.0116433Z 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-06-01T21:22:23.0122654Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosh_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.0128231Z 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-06-01T21:22:23.0134476Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.0140113Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.0145903Z 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-06-01T21:22:23.0151883Z 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-06-01T21:22:23.0157614Z 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-06-01T21:22:23.0163621Z 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-06-01T21:22:23.0169379Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosine_similarity.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.0175496Z 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-06-01T21:22:23.0181590Z 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-06-01T21:22:23.0187129Z 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-06-01T21:22:23.0193217Z 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-06-01T21:22:23.0198922Z 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-06-01T21:22:23.0204739Z 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-06-01T21:22:23.0210500Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cos_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.0215837Z 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-06-01T21:22:23.0221491Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cos_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.0227150Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cos_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.0233055Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\count_nonzero.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.0239187Z 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-06-01T21:22:23.0245275Z 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-06-01T21:22:23.0251064Z 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-06-01T21:22:23.0256913Z 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-06-01T21:22:23.0262854Z 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-06-01T21:22:23.0268693Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cov.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.0274934Z 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-06-01T21:22:23.0280047Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cov_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.0285918Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cov_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.0291723Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cross.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.0297562Z 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-06-01T21:22:23.0303234Z 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-06-01T21:22:23.0309446Z 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-06-01T21:22:23.0315139Z 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-06-01T21:22:23.0320730Z 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-06-01T21:22:23.0326741Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cross_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.0332414Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cross_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.0338098Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\crow_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.0343925Z 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-06-01T21:22:23.0360449Z 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-06-01T21:22:23.0366740Z 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-06-01T21:22:23.0372692Z 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-06-01T21:22:23.0378453Z 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-06-01T21:22:23.0384257Z 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-06-01T21:22:23.0389878Z 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-06-01T21:22:23.0395295Z 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-06-01T21:22:23.0400953Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ctc_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.0406578Z 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-06-01T21:22:23.0412070Z 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-06-01T21:22:23.0418003Z 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-06-01T21:22:23.0423851Z 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-06-01T21:22:23.0439190Z 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-06-01T21:22:23.0444958Z 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-06-01T21:22:23.0450674Z 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-06-01T21:22:23.0456396Z 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-06-01T21:22:23.0462526Z 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-06-01T21:22:23.0468484Z 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-06-01T21:22:23.0474231Z 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-06-01T21:22:23.0480187Z 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-06-01T21:22:23.0485977Z 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-06-01T21:22:23.0491972Z 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-06-01T21:22:23.0497783Z 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-06-01T21:22:23.0503867Z 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-06-01T21:22:23.0509641Z 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-06-01T21:22:23.0515423Z 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-06-01T21:22:23.0521203Z 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-06-01T21:22:23.0527878Z 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-06-01T21:22:23.0533639Z 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-06-01T21:22:23.0540459Z 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-06-01T21:22:23.0554053Z 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-06-01T21:22:23.0560832Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.0567782Z 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-06-01T21:22:23.0574478Z 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-06-01T21:22:23.0580424Z 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-06-01T21:22:23.0586470Z 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-06-01T21:22:23.0592436Z 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-06-01T21:22:23.0598294Z 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-06-01T21:22:23.0604059Z 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-06-01T21:22:23.0610076Z 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-06-01T21:22:23.0615913Z 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-06-01T21:22:23.0622287Z 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-06-01T21:22:23.0628105Z 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-06-01T21:22:23.0633851Z 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-06-01T21:22:23.0639580Z 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-06-01T21:22:23.0645715Z 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-06-01T21:22:23.0651897Z 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-06-01T21:22:23.0657627Z 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-06-01T21:22:23.0663416Z 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-06-01T21:22:23.0669097Z 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-06-01T21:22:23.0674856Z 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-06-01T21:22:23.0680843Z 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-06-01T21:22:23.0686850Z 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-06-01T21:22:23.0692603Z 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-06-01T21:22:23.0698155Z 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-06-01T21:22:23.0704041Z 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-06-01T21:22:23.0709956Z 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-06-01T21:22:23.0716130Z 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-06-01T21:22:23.0721720Z 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-06-01T21:22:23.0727337Z 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-06-01T21:22:23.0732974Z 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-06-01T21:22:23.0739010Z 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-06-01T21:22:23.0744722Z 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-06-01T21:22:23.0750388Z 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-06-01T21:22:23.0755957Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.0761343Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummaxmin_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.0767328Z 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-06-01T21:22:23.0772830Z 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-06-01T21:22:23.0778361Z 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-06-01T21:22:23.0784348Z 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-06-01T21:22:23.0790188Z 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-06-01T21:22:23.0795761Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.0801386Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.0807048Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.0812648Z 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-06-01T21:22:23.0818496Z 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-06-01T21:22:23.0824501Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.0830338Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.0836051Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.0841622Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.0848200Z 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-06-01T21:22:23.0853959Z 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-06-01T21:22:23.0859420Z 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-06-01T21:22:23.0865748Z 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-06-01T21:22:23.0872008Z 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-06-01T21:22:23.0877727Z 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-06-01T21:22:23.0883722Z 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-06-01T21:22:23.0889548Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.0895454Z 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-06-01T21:22:23.0901304Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.0907488Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.0913364Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumsum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.0919409Z 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-06-01T21:22:23.0925253Z 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-06-01T21:22:23.0936812Z 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-06-01T21:22:23.0943531Z 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-06-01T21:22:23.0949973Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumsum_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.0956049Z 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-06-01T21:22:23.0961881Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumsum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.0967744Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumsum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.0973754Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumulative_trapezoid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.0979594Z 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-06-01T21:22:23.0993154Z 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-06-01T21:22:23.0998916Z 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-06-01T21:22:23.1004738Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\data.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1010285Z 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-06-01T21:22:23.1015708Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\data_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1021069Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\data_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1026530Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\deg2rad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1032228Z 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-06-01T21:22:23.1037635Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\deg2rad_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1043156Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\deg2rad_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1048837Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dense_dim.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1054804Z 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-06-01T21:22:23.1060471Z 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-06-01T21:22:23.1066330Z 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-06-01T21:22:23.1071903Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dequantize.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1077629Z 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-06-01T21:22:23.1088733Z 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-06-01T21:22:23.1094414Z 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-06-01T21:22:23.1100205Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dequantize_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1106150Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dequantize_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1111921Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\det.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1116934Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\detach.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1122488Z 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-06-01T21:22:23.1127923Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\detach_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1133795Z 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-06-01T21:22:23.1139640Z 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-06-01T21:22:23.1145386Z 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-06-01T21:22:23.1150772Z 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-06-01T21:22:23.1161239Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\detach_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1166812Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\detach_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1172729Z 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-06-01T21:22:23.1178363Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\det_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1183844Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\det_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1189298Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diag.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1194610Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagflat.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1199868Z 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-06-01T21:22:23.1205171Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagflat_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1210646Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagflat_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1216211Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1221636Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1227461Z 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-06-01T21:22:23.1249487Z 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-06-01T21:22:23.1255302Z 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-06-01T21:22:23.1261174Z 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-06-01T21:22:23.1266996Z 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-06-01T21:22:23.1272943Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1283600Z 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-06-01T21:22:23.1289601Z 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-06-01T21:22:23.1295299Z 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-06-01T21:22:23.1301610Z 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-06-01T21:22:23.1307126Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1312812Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1318600Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_scatter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1324688Z 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-06-01T21:22:23.1330652Z 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-06-01T21:22:23.1336482Z 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-06-01T21:22:23.1342256Z 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-06-01T21:22:23.1348188Z 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-06-01T21:22:23.1353653Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diag_embed.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1359651Z 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-06-01T21:22:23.1365592Z 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-06-01T21:22:23.1371347Z 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-06-01T21:22:23.1376914Z 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-06-01T21:22:23.1382682Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diag_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1388248Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diag_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1393646Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diff.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1399453Z 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-06-01T21:22:23.1405418Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diff_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1411110Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diff_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1416590Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\digamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1428186Z 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-06-01T21:22:23.1433831Z 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-06-01T21:22:23.1439836Z 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-06-01T21:22:23.1446248Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\digamma_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1452316Z 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-06-01T21:22:23.1458909Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\digamma_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1465600Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\digamma_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1472164Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dist.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1477789Z 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-06-01T21:22:23.1483359Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dist_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1489047Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dist_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1494422Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\div.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1504909Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\divide.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1510840Z 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-06-01T21:22:23.1517375Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\divide_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1523180Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\divide_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1529184Z 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-06-01T21:22:23.1534888Z 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-06-01T21:22:23.1540502Z 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-06-01T21:22:23.1546190Z 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-06-01T21:22:23.1551801Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\div_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1557151Z 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-06-01T21:22:23.1562910Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\div_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1568407Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\div_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1573779Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dot.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1579154Z 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-06-01T21:22:23.1584677Z 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-06-01T21:22:23.1590461Z 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-06-01T21:22:23.1595979Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dot_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1601355Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dot_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1606457Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dropout.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1612044Z 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-06-01T21:22:23.1617341Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dropout_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1622735Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dropout_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1628243Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dsplit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1634023Z 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-06-01T21:22:23.1645439Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dsplit_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1650768Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dsplit_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1656199Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dstack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1661710Z 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-06-01T21:22:23.1675742Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dstack_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1681000Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dstack_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1686581Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\einsum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1692131Z 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-06-01T21:22:23.1697820Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\einsum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1703442Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\einsum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1709160Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1718109Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1730383Z 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-06-01T21:22:23.1735717Z 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-06-01T21:22:23.1741326Z 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-06-01T21:22:23.1747410Z 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-06-01T21:22:23.1753044Z 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-06-01T21:22:23.1758511Z 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-06-01T21:22:23.1764152Z 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-06-01T21:22:23.1770209Z 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-06-01T21:22:23.1775538Z 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-06-01T21:22:23.1781033Z 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-06-01T21:22:23.1786683Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1791941Z 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-06-01T21:22:23.1797398Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1802871Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1808257Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1813933Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1819717Z 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-06-01T21:22:23.1825424Z 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-06-01T21:22:23.1836534Z 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-06-01T21:22:23.1842128Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_bag.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1848298Z 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-06-01T21:22:23.1854010Z 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-06-01T21:22:23.1859825Z 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-06-01T21:22:23.1865973Z 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-06-01T21:22:23.1871567Z 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-06-01T21:22:23.1877983Z 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-06-01T21:22:23.1883848Z 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-06-01T21:22:23.1889644Z 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-06-01T21:22:23.1895444Z 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-06-01T21:22:23.1901750Z 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-06-01T21:22:23.1907653Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1913719Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1919571Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_renorm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.1932947Z 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-06-01T21:22:23.1934149Z 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-06-01T21:22:23.1937285Z 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-06-01T21:22:23.1950279Z 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-06-01T21:22:23.1956900Z 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-06-01T21:22:23.1963679Z 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-06-01T21:22:23.1969872Z 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-06-01T21:22:23.1976054Z 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-06-01T21:22:23.1981850Z 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-06-01T21:22:23.1992211Z 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-06-01T21:22:23.1997845Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.2003768Z 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-06-01T21:22:23.2009499Z 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-06-01T21:22:23.2015018Z 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-06-01T21:22:23.2021068Z 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-06-01T21:22:23.2026634Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_like.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.2032604Z 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-06-01T21:22:23.2038072Z 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-06-01T21:22:23.2043821Z 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-06-01T21:22:23.2049451Z 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-06-01T21:22:23.2055024Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.2065853Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.2071550Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_permuted.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.2077460Z 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-06-01T21:22:23.2083000Z 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-06-01T21:22:23.2088646Z 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-06-01T21:22:23.2094607Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_quantized.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.2100464Z 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-06-01T21:22:23.2106407Z 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-06-01T21:22:23.2112069Z 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-06-01T21:22:23.2117904Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_strided.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.2124295Z 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-06-01T21:22:23.2129993Z 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-06-01T21:22:23.2135840Z 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-06-01T21:22:23.2141855Z 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-06-01T21:22:23.2147611Z 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-06-01T21:22:23.2153475Z 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-06-01T21:22:23.2159184Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eq.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.2164701Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\equal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.2170054Z 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-06-01T21:22:23.2176149Z 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-06-01T21:22:23.2181902Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\equal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.2187923Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\equal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.2193977Z 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-06-01T21:22:23.2199494Z 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-06-01T21:22:23.2205281Z 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-06-01T21:22:23.2210936Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eq_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.2216424Z 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-06-01T21:22:23.2223318Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eq_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.2229333Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eq_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.2234841Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.2240364Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.2246245Z 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-06-01T21:22:23.2261196Z 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-06-01T21:22:23.2266822Z 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-06-01T21:22:23.2272596Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfc_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.2278426Z 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-06-01T21:22:23.2284134Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.2289619Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.2295048Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfinv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.2301045Z 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-06-01T21:22:23.2306562Z 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-06-01T21:22:23.2312488Z 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-06-01T21:22:23.2323222Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfinv_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.2329165Z 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-06-01T21:22:23.2334806Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfinv_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.2340426Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfinv_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.2346654Z 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-06-01T21:22:23.2352139Z 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-06-01T21:22:23.2357913Z 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-06-01T21:22:23.2363701Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erf_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.2369029Z 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-06-01T21:22:23.2375373Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erf_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.2381403Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erf_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.2386830Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.2392308Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.2397924Z 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-06-01T21:22:23.2403994Z 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-06-01T21:22:23.2410066Z 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-06-01T21:22:23.2415751Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp2_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.2421294Z 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-06-01T21:22:23.2426926Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.2432518Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.2438204Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.2443678Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand_as.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.2449449Z 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-06-01T21:22:23.2454707Z 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-06-01T21:22:23.2467090Z 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-06-01T21:22:23.2473108Z 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-06-01T21:22:23.2478683Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.2484788Z 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-06-01T21:22:23.2490680Z 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-06-01T21:22:23.2496172Z 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-06-01T21:22:23.2507244Z 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-06-01T21:22:23.2513063Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.2518435Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.2523910Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expm1.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.2529571Z 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-06-01T21:22:23.2534986Z 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-06-01T21:22:23.2545615Z 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-06-01T21:22:23.2551134Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expm1_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.2556595Z 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-06-01T21:22:23.2562380Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expm1_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.2568029Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expm1_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.2573601Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exponential.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.2583829Z 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-06-01T21:22:23.2589920Z 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-06-01T21:22:23.2595478Z 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-06-01T21:22:23.2601667Z 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-06-01T21:22:23.2606845Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exponential_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.2612828Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exponential_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.2625012Z 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-06-01T21:22:23.2630553Z 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-06-01T21:22:23.2636122Z 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-06-01T21:22:23.2641686Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.2646897Z 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-06-01T21:22:23.2652558Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.2658300Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.2663866Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eye.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.2669414Z 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-06-01T21:22:23.2674854Z 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-06-01T21:22:23.2680406Z 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-06-01T21:22:23.2685972Z 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-06-01T21:22:23.2696686Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eye_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.2702347Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eye_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.2707808Z 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-06-01T21:22:23.2713704Z 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-06-01T21:22:23.2719608Z 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-06-01T21:22:23.2725651Z 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-06-01T21:22:23.2731479Z 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-06-01T21:22:23.2737550Z 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-06-01T21:22:23.2743813Z 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-06-01T21:22:23.2749605Z 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-06-01T21:22:23.2755558Z 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-06-01T21:22:23.2761707Z 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-06-01T21:22:23.2767601Z 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-06-01T21:22:23.2773608Z 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-06-01T21:22:23.2779348Z 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-06-01T21:22:23.2785256Z 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-06-01T21:22:23.2791875Z 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-06-01T21:22:23.2797752Z 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-06-01T21:22:23.2808492Z 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-06-01T21:22:23.2814750Z 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-06-01T21:22:23.2820612Z 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-06-01T21:22:23.2826873Z 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-06-01T21:22:23.2833156Z 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-06-01T21:22:23.2853009Z 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-06-01T21:22:23.2859090Z 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-06-01T21:22:23.2865266Z 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-06-01T21:22:23.2871193Z 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-06-01T21:22:23.2877329Z 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-06-01T21:22:23.2883177Z 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-06-01T21:22:23.2889148Z 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-06-01T21:22:23.2895233Z 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-06-01T21:22:23.2901334Z 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-06-01T21:22:23.2907400Z 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-06-01T21:22:23.2913424Z 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-06-01T21:22:23.2919242Z 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-06-01T21:22:23.2925243Z 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-06-01T21:22:23.2931118Z 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-06-01T21:22:23.2937240Z 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-06-01T21:22:23.2943131Z 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-06-01T21:22:23.2949353Z 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-06-01T21:22:23.2955202Z 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-06-01T21:22:23.2961691Z 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-06-01T21:22:23.2967575Z 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-06-01T21:22:23.2973409Z 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-06-01T21:22:23.2979221Z 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-06-01T21:22:23.2985095Z 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-06-01T21:22:23.2991077Z 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-06-01T21:22:23.2997158Z 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-06-01T21:22:23.3002931Z 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-06-01T21:22:23.3009017Z 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-06-01T21:22:23.3014836Z 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-06-01T21:22:23.3021121Z 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-06-01T21:22:23.3027088Z 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-06-01T21:22:23.3032621Z 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-06-01T21:22:23.3038417Z 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-06-01T21:22:23.3044455Z 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-06-01T21:22:23.3050179Z 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-06-01T21:22:23.3056152Z 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-06-01T21:22:23.3062294Z 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-06-01T21:22:23.3068233Z 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-06-01T21:22:23.3073883Z 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-06-01T21:22:23.3079766Z 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-06-01T21:22:23.3085483Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\feature_dropout.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.3091736Z 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-06-01T21:22:23.3097608Z 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-06-01T21:22:23.3103130Z 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-06-01T21:22:23.3108779Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.3114117Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fft2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.3119738Z 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-06-01T21:22:23.3125311Z 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-06-01T21:22:23.3131166Z 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-06-01T21:22:23.3136951Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fftfreq.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.3143082Z 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-06-01T21:22:23.3148586Z 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-06-01T21:22:23.3154333Z 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-06-01T21:22:23.3160031Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fftn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.3165697Z 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-06-01T21:22:23.3171265Z 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-06-01T21:22:23.3177202Z 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-06-01T21:22:23.3183152Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fftshift.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.3189112Z 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-06-01T21:22:23.3194899Z 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-06-01T21:22:23.3200390Z 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-06-01T21:22:23.3206157Z 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-06-01T21:22:23.3211705Z 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-06-01T21:22:23.3217493Z 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-06-01T21:22:23.3223227Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_hfft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.3228843Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_hfft2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.3234597Z 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-06-01T21:22:23.3240010Z 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-06-01T21:22:23.3245633Z 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-06-01T21:22:23.3251275Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_hfftn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.3257178Z 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-06-01T21:22:23.3263155Z 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-06-01T21:22:23.3269156Z 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-06-01T21:22:23.3275769Z 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-06-01T21:22:23.3281541Z 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-06-01T21:22:23.3287266Z 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-06-01T21:22:23.3292994Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.3298424Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifft2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.3304528Z 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-06-01T21:22:23.3310090Z 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-06-01T21:22:23.3319154Z 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-06-01T21:22:23.3324891Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifftn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.3331042Z 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-06-01T21:22:23.3336770Z 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-06-01T21:22:23.3342831Z 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-06-01T21:22:23.3348591Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifftshift.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.3354888Z 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-06-01T21:22:23.3360634Z 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-06-01T21:22:23.3366175Z 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-06-01T21:22:23.3372435Z 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-06-01T21:22:23.3378159Z 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-06-01T21:22:23.3383986Z 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-06-01T21:22:23.3389816Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ihfft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.3395948Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ihfft2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.3401921Z 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-06-01T21:22:23.3407623Z 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-06-01T21:22:23.3413467Z 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-06-01T21:22:23.3419412Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ihfftn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.3425721Z 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-06-01T21:22:23.3431342Z 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-06-01T21:22:23.3437279Z 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-06-01T21:22:23.3443478Z 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-06-01T21:22:23.3449021Z 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-06-01T21:22:23.3455253Z 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-06-01T21:22:23.3461997Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_irfft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.3468929Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_irfft2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.3475090Z 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-06-01T21:22:23.3480806Z 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-06-01T21:22:23.3486902Z 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-06-01T21:22:23.3492750Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_irfftn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.3505279Z 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-06-01T21:22:23.3510637Z 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-06-01T21:22:23.3516263Z 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-06-01T21:22:23.3522356Z 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-06-01T21:22:23.3527930Z 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-06-01T21:22:23.3533708Z 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-06-01T21:22:23.3539424Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.3544890Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfft2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.3550758Z 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-06-01T21:22:23.3556461Z 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-06-01T21:22:23.3562130Z 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-06-01T21:22:23.3567984Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfftfreq.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.3579929Z 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-06-01T21:22:23.3585923Z 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-06-01T21:22:23.3591593Z 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-06-01T21:22:23.3597697Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfftn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.3603258Z 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-06-01T21:22:23.3609129Z 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-06-01T21:22:23.3620659Z 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-06-01T21:22:23.3630434Z 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-06-01T21:22:23.3634487Z 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-06-01T21:22:23.3639953Z 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-06-01T21:22:23.3645558Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fill.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.3651157Z 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-06-01T21:22:23.3656667Z 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-06-01T21:22:23.3662425Z 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-06-01T21:22:23.3668162Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fill_diagonal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.3673934Z 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-06-01T21:22:23.3679595Z 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-06-01T21:22:23.3685115Z 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-06-01T21:22:23.3711718Z 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-06-01T21:22:23.3718221Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fill_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.3723807Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fill_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.3729046Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fix.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.3734582Z 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-06-01T21:22:23.3740244Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fix_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.3745739Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fix_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.3751154Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flatten.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.3756746Z 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-06-01T21:22:23.3762256Z 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-06-01T21:22:23.3768318Z 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-06-01T21:22:23.3773552Z 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-06-01T21:22:23.3779127Z 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-06-01T21:22:23.3785185Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flatten_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.3790887Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flatten_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.3796477Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flip.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.3801730Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fliplr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.3807072Z 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-06-01T21:22:23.3813114Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fliplr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.3818112Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fliplr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.3823753Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flipud.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.3829267Z 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-06-01T21:22:23.3834728Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flipud_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.3840088Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flipud_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.3845996Z 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-06-01T21:22:23.3851439Z 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-06-01T21:22:23.3857070Z 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-06-01T21:22:23.3863014Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flip_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.3868691Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flip_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.3874024Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\float_power.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.3879945Z 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-06-01T21:22:23.3885355Z 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-06-01T21:22:23.3891028Z 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-06-01T21:22:23.3896726Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.3902449Z 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-06-01T21:22:23.3908037Z 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-06-01T21:22:23.3913783Z 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-06-01T21:22:23.3919665Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_divide.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.3925807Z 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-06-01T21:22:23.3931560Z 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-06-01T21:22:23.3937385Z 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-06-01T21:22:23.3943371Z 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-06-01T21:22:23.3954752Z 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-06-01T21:22:23.3961442Z 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-06-01T21:22:23.3968141Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.3974605Z 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-06-01T21:22:23.3981243Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.3988425Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.3994237Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.4000218Z 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-06-01T21:22:23.4006186Z 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-06-01T21:22:23.4011978Z 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-06-01T21:22:23.4017634Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmax_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.4023157Z 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-06-01T21:22:23.4028656Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.4034212Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.4039490Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.4045355Z 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-06-01T21:22:23.4051060Z 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-06-01T21:22:23.4056681Z 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-06-01T21:22:23.4062451Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmin_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.4076725Z 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-06-01T21:22:23.4082412Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.4087922Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.4093150Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmod.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.4098727Z 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-06-01T21:22:23.4104938Z 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-06-01T21:22:23.4110159Z 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-06-01T21:22:23.4115894Z 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-06-01T21:22:23.4121579Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmod_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.4127223Z 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-06-01T21:22:23.4133021Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmod_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.4138709Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmod_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.4144156Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frac.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.4149864Z 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-06-01T21:22:23.4155577Z 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-06-01T21:22:23.4161792Z 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-06-01T21:22:23.4167681Z 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-06-01T21:22:23.4173467Z 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-06-01T21:22:23.4179609Z 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-06-01T21:22:23.4186290Z 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-06-01T21:22:23.4191977Z 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-06-01T21:22:23.4197796Z 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-06-01T21:22:23.4204069Z 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-06-01T21:22:23.4210092Z 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-06-01T21:22:23.4230712Z 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-06-01T21:22:23.4236611Z 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-06-01T21:22:23.4242684Z 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-06-01T21:22:23.4248623Z 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-06-01T21:22:23.4254496Z 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-06-01T21:22:23.4260426Z 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-06-01T21:22:23.4266668Z 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-06-01T21:22:23.4272945Z 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-06-01T21:22:23.4278592Z 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-06-01T21:22:23.4284453Z 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-06-01T21:22:23.4290361Z 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-06-01T21:22:23.4302242Z 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-06-01T21:22:23.4308308Z 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-06-01T21:22:23.4314347Z 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-06-01T21:22:23.4320232Z 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-06-01T21:22:23.4326168Z 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-06-01T21:22:23.4331960Z 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-06-01T21:22:23.4346864Z 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-06-01T21:22:23.4353261Z 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-06-01T21:22:23.4358845Z 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-06-01T21:22:23.4364643Z 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-06-01T21:22:23.4370527Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frac_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.4376026Z 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-06-01T21:22:23.4381793Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frac_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.4387451Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frac_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.4393020Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frexp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.4398865Z 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-06-01T21:22:23.4404381Z 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-06-01T21:22:23.4410167Z 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-06-01T21:22:23.4415849Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frexp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.4421950Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frexp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.4428245Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frobenius_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.4451461Z 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-06-01T21:22:23.4457420Z 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-06-01T21:22:23.4463207Z 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-06-01T21:22:23.4474405Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\from_blob.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.4480160Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\from_file.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.4485962Z 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-06-01T21:22:23.4491546Z 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-06-01T21:22:23.4497014Z 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-06-01T21:22:23.4502945Z 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-06-01T21:22:23.4508615Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\full.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.4514495Z 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-06-01T21:22:23.4520174Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\full_like.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.4525752Z 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-06-01T21:22:23.4531176Z 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-06-01T21:22:23.4536739Z 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-06-01T21:22:23.4542541Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\full_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.4548318Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\full_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.4554132Z 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-06-01T21:22:23.4559742Z 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-06-01T21:22:23.4565316Z 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-06-01T21:22:23.4571295Z 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-06-01T21:22:23.4581776Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.4587347Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.4593173Z 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-06-01T21:22:23.4599119Z 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-06-01T21:22:23.4604771Z 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-06-01T21:22:23.4610626Z 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-06-01T21:22:23.4625516Z 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-06-01T21:22:23.4631398Z 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-06-01T21:22:23.4637168Z 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-06-01T21:22:23.4642742Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.4648416Z 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-06-01T21:22:23.4654065Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.4659644Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.4665287Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gcd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.4671267Z 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-06-01T21:22:23.4677085Z 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-06-01T21:22:23.4682758Z 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-06-01T21:22:23.4688391Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gcd_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.4693565Z 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-06-01T21:22:23.4699315Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gcd_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.4705066Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gcd_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.4710483Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ge.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.4715886Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.4721429Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.4727771Z 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-06-01T21:22:23.4733438Z 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-06-01T21:22:23.4739213Z 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-06-01T21:22:23.4745109Z 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-06-01T21:22:23.4751145Z 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-06-01T21:22:23.4756871Z 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-06-01T21:22:23.4767810Z 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-06-01T21:22:23.4774149Z 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-06-01T21:22:23.4779889Z 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-06-01T21:22:23.4785747Z 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-06-01T21:22:23.4791525Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.4797271Z 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-06-01T21:22:23.4808271Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.4813616Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.4819149Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geometric.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.4825031Z 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-06-01T21:22:23.4830435Z 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-06-01T21:22:23.4836038Z 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-06-01T21:22:23.4845419Z 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-06-01T21:22:23.4851079Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geometric_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.4856760Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geometric_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.4862415Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geqrf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.4867916Z 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-06-01T21:22:23.4873391Z 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-06-01T21:22:23.4878997Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geqrf_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.4884447Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geqrf_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.4889798Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ger.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.4895203Z 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-06-01T21:22:23.4900422Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ger_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.4905717Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ger_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.4917099Z 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-06-01T21:22:23.4923542Z 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-06-01T21:22:23.4930489Z 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-06-01T21:22:23.4935732Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ge_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.4941098Z 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-06-01T21:22:23.4946556Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ge_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.4953486Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ge_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.4957596Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.4962968Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.4995929Z 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-06-01T21:22:23.4996962Z 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-06-01T21:22:23.4997945Z 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-06-01T21:22:23.4999039Z 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-06-01T21:22:23.5001510Z 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-06-01T21:22:23.5002580Z 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-06-01T21:22:23.5007818Z 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-06-01T21:22:23.5013574Z 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-06-01T21:22:23.5028270Z 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-06-01T21:22:23.5034060Z 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-06-01T21:22:23.5040057Z 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-06-01T21:22:23.5046904Z 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-06-01T21:22:23.5051594Z 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-06-01T21:22:23.5057265Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_jvp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.5063160Z 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-06-01T21:22:23.5073817Z 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-06-01T21:22:23.5079429Z 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-06-01T21:22:23.5085159Z 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-06-01T21:22:23.5090757Z 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-06-01T21:22:23.5096416Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.5101732Z 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-06-01T21:22:23.5107339Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.5113021Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.5118314Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gradient.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.5124042Z 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-06-01T21:22:23.5129770Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gradient_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.5135395Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gradient_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.5141081Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\greater.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.5146748Z 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-06-01T21:22:23.5152170Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\greater_equal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.5158194Z 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-06-01T21:22:23.5163730Z 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-06-01T21:22:23.5169466Z 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-06-01T21:22:23.5175235Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\greater_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.5181244Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\greater_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.5186990Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.5192550Z 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-06-01T21:22:23.5198435Z 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-06-01T21:22:23.5204168Z 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-06-01T21:22:23.5209744Z 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-06-01T21:22:23.5215750Z 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-06-01T21:22:23.5221605Z 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-06-01T21:22:23.5227255Z 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-06-01T21:22:23.5233327Z 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-06-01T21:22:23.5239367Z 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-06-01T21:22:23.5245140Z 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-06-01T21:22:23.5250946Z 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-06-01T21:22:23.5256686Z 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-06-01T21:22:23.5262649Z 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-06-01T21:22:23.5268628Z 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-06-01T21:22:23.5280937Z 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-06-01T21:22:23.5286832Z 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-06-01T21:22:23.5292878Z 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-06-01T21:22:23.5298806Z 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-06-01T21:22:23.5304806Z 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-06-01T21:22:23.5310894Z 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-06-01T21:22:23.5316935Z 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-06-01T21:22:23.5322945Z 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-06-01T21:22:23.5328938Z 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-06-01T21:22:23.5334714Z 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-06-01T21:22:23.5340902Z 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-06-01T21:22:23.5346670Z 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-06-01T21:22:23.5352667Z 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-06-01T21:22:23.5358620Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\group_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.5364472Z 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-06-01T21:22:23.5370109Z 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-06-01T21:22:23.5376020Z 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-06-01T21:22:23.5381923Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gru.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.5387304Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gru_cell.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.5393277Z 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-06-01T21:22:23.5399333Z 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-06-01T21:22:23.5405047Z 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-06-01T21:22:23.5411406Z 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-06-01T21:22:23.5417042Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gru_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.5422687Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gru_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.5433186Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.5439150Z 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-06-01T21:22:23.5444977Z 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-06-01T21:22:23.5450751Z 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-06-01T21:22:23.5456410Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gt_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.5462061Z 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-06-01T21:22:23.5467828Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gt_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.5473402Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gt_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.5479354Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hamming_window.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.5485762Z 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-06-01T21:22:23.5492286Z 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-06-01T21:22:23.5498546Z 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-06-01T21:22:23.5505249Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hann_window.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.5512109Z 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-06-01T21:22:23.5518342Z 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-06-01T21:22:23.5525783Z 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-06-01T21:22:23.5531566Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.5537283Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.5543845Z 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-06-01T21:22:23.5549473Z 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-06-01T21:22:23.5555357Z 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-06-01T21:22:23.5561029Z 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-06-01T21:22:23.5566805Z 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-06-01T21:22:23.5572730Z 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-06-01T21:22:23.5578466Z 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-06-01T21:22:23.5584662Z 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-06-01T21:22:23.5590156Z 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-06-01T21:22:23.5595760Z 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-06-01T21:22:23.5601499Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.5607336Z 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-06-01T21:22:23.5613186Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.5618990Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.5625074Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.5630842Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.5636780Z 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-06-01T21:22:23.5642389Z 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-06-01T21:22:23.5653587Z 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-06-01T21:22:23.5659382Z 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-06-01T21:22:23.5665028Z 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-06-01T21:22:23.5670597Z 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-06-01T21:22:23.5676006Z 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-06-01T21:22:23.5682082Z 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-06-01T21:22:23.5687647Z 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-06-01T21:22:23.5693566Z 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-06-01T21:22:23.5705883Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.5706927Z 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-06-01T21:22:23.5712154Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.5717972Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.5723488Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardswish.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.5729276Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardswish_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.5735121Z 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-06-01T21:22:23.5741086Z 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-06-01T21:22:23.5746809Z 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-06-01T21:22:23.5752478Z 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-06-01T21:22:23.5758106Z 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-06-01T21:22:23.5763869Z 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-06-01T21:22:23.5769517Z 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-06-01T21:22:23.5775503Z 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-06-01T21:22:23.5781327Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardswish_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.5787556Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardswish_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.5793053Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardtanh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.5798456Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardtanh_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.5804388Z 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-06-01T21:22:23.5810083Z 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-06-01T21:22:23.5815842Z 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-06-01T21:22:23.5821583Z 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-06-01T21:22:23.5827193Z 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-06-01T21:22:23.5832968Z 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-06-01T21:22:23.5838586Z 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-06-01T21:22:23.5844205Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardtanh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.5850007Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardtanh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.5855646Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\heaviside.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.5867243Z 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-06-01T21:22:23.5885894Z 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-06-01T21:22:23.5891621Z 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-06-01T21:22:23.5897107Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\heaviside_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.5903139Z 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-06-01T21:22:23.5908902Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\heaviside_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.5914789Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\heaviside_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.5920816Z 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-06-01T21:22:23.5926764Z 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-06-01T21:22:23.5932594Z 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-06-01T21:22:23.5938336Z 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-06-01T21:22:23.5943746Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.5954596Z 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-06-01T21:22:23.5960491Z 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-06-01T21:22:23.5966925Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6005959Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6006892Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histogram.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6007813Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histogramdd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6008888Z 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-06-01T21:22:23.6009995Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histogramdd_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6012339Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histogramdd_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6013318Z 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-06-01T21:22:23.6018800Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histogram_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6024641Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histogram_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6034506Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hsplit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6055139Z 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-06-01T21:22:23.6061070Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hsplit_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6066603Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hsplit_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6072103Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hspmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6077457Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hspmm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6083319Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hspmm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6089003Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hstack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6094722Z 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-06-01T21:22:23.6100082Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hstack_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6105505Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hstack_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6111153Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\huber_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6116650Z 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-06-01T21:22:23.6122478Z 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-06-01T21:22:23.6128359Z 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-06-01T21:22:23.6134042Z 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-06-01T21:22:23.6139889Z 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-06-01T21:22:23.6145627Z 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-06-01T21:22:23.6151264Z 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-06-01T21:22:23.6156863Z 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-06-01T21:22:23.6162638Z 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-06-01T21:22:23.6168260Z 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-06-01T21:22:23.6173808Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hypot.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6179365Z 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-06-01T21:22:23.6184951Z 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-06-01T21:22:23.6190383Z 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-06-01T21:22:23.6196064Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hypot_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6201606Z 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-06-01T21:22:23.6207319Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hypot_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6212852Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hypot_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6218488Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\i0.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6224214Z 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-06-01T21:22:23.6229781Z 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-06-01T21:22:23.6235352Z 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-06-01T21:22:23.6241013Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\i0_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6246176Z 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-06-01T21:22:23.6251924Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\i0_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6257088Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\i0_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6262403Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6267697Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igammac.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6273174Z 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-06-01T21:22:23.6278435Z 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-06-01T21:22:23.6284978Z 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-06-01T21:22:23.6289528Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igammac_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6295341Z 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-06-01T21:22:23.6301072Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igammac_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6307232Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igammac_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6313128Z 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-06-01T21:22:23.6318592Z 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-06-01T21:22:23.6324152Z 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-06-01T21:22:23.6329702Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igamma_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6335367Z 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-06-01T21:22:23.6341389Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igamma_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6346929Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igamma_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6352478Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\im2col.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6357976Z 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-06-01T21:22:23.6363447Z 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-06-01T21:22:23.6368962Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\im2col_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6374451Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\im2col_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6379980Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\imag.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6385927Z 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-06-01T21:22:23.6391242Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\imag_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6396556Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\imag_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6401865Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6407178Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_add.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6413162Z 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-06-01T21:22:23.6418948Z 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-06-01T21:22:23.6424678Z 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-06-01T21:22:23.6430241Z 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-06-01T21:22:23.6435882Z 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-06-01T21:22:23.6441581Z 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-06-01T21:22:23.6447070Z 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-06-01T21:22:23.6452723Z 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-06-01T21:22:23.6458838Z 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-06-01T21:22:23.6464714Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6470708Z 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-06-01T21:22:23.6476495Z 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-06-01T21:22:23.6481987Z 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-06-01T21:22:23.6487707Z 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-06-01T21:22:23.6494250Z 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-06-01T21:22:23.6500538Z 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-06-01T21:22:23.6507191Z 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-06-01T21:22:23.6513830Z 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-06-01T21:22:23.6520186Z 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-06-01T21:22:23.6527233Z 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-06-01T21:22:23.6533666Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_fill.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6539875Z 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-06-01T21:22:23.6546023Z 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-06-01T21:22:23.6553230Z 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-06-01T21:22:23.6559068Z 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-06-01T21:22:23.6563510Z 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-06-01T21:22:23.6570078Z 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-06-01T21:22:23.6575245Z 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-06-01T21:22:23.6580853Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6586721Z 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-06-01T21:22:23.6592531Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6598393Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6604038Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_put.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6609916Z 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-06-01T21:22:23.6615524Z 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-06-01T21:22:23.6621478Z 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-06-01T21:22:23.6627229Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_reduce.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6633506Z 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-06-01T21:22:23.6639442Z 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-06-01T21:22:23.6645175Z 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-06-01T21:22:23.6650824Z 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-06-01T21:22:23.6656627Z 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-06-01T21:22:23.6662375Z 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-06-01T21:22:23.6668139Z 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-06-01T21:22:23.6674035Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_select.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6680140Z 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-06-01T21:22:23.6685985Z 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-06-01T21:22:23.6691467Z 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-06-01T21:22:23.6697253Z 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-06-01T21:22:23.6703315Z 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-06-01T21:22:23.6708968Z 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-06-01T21:22:23.6714827Z 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-06-01T21:22:23.6720348Z 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-06-01T21:22:23.6726387Z 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-06-01T21:22:23.6731938Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6737279Z 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-06-01T21:22:23.6743624Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\indices_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6749430Z 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-06-01T21:22:23.6755311Z 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-06-01T21:22:23.6761422Z 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-06-01T21:22:23.6767045Z 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-06-01T21:22:23.6772667Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\indices_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6779878Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\indices_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6822751Z 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-06-01T21:22:23.6824175Z 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-06-01T21:22:23.6825504Z 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-06-01T21:22:23.6826696Z 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-06-01T21:22:23.6829230Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\inner.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6830260Z 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-06-01T21:22:23.6831319Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\inner_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6836399Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\inner_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6842056Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\instance_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6848500Z 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-06-01T21:22:23.6854058Z 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-06-01T21:22:23.6859769Z 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-06-01T21:22:23.6865449Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\int_repr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6870998Z 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-06-01T21:22:23.6877271Z 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-06-01T21:22:23.6882522Z 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-06-01T21:22:23.6888298Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\inverse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6893847Z 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-06-01T21:22:23.6899302Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\inverse_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6904864Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\inverse_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6910646Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isclose.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6916025Z 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-06-01T21:22:23.6921703Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isclose_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6927098Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isclose_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6932702Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isfinite.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6938212Z 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-06-01T21:22:23.6943906Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isfinite_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6949257Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isfinite_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6954875Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6960048Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isinf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6965782Z 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-06-01T21:22:23.6971791Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isinf_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6977382Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isinf_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.6990927Z 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-06-01T21:22:23.6996380Z 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-06-01T21:22:23.7002128Z 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-06-01T21:22:23.7007631Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isin_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.7013362Z 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-06-01T21:22:23.7019129Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.7024679Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.7029960Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isnan.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.7035563Z 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-06-01T21:22:23.7040931Z 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-06-01T21:22:23.7046556Z 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-06-01T21:22:23.7052206Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isnan_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.7057844Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isnan_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.7063651Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isneginf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.7070128Z 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-06-01T21:22:23.7075636Z 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-06-01T21:22:23.7081342Z 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-06-01T21:22:23.7086798Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isneginf_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.7092262Z 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-06-01T21:22:23.7097848Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isneginf_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.7103709Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isneginf_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.7109463Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isposinf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.7115155Z 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-06-01T21:22:23.7120596Z 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-06-01T21:22:23.7126198Z 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-06-01T21:22:23.7131956Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isposinf_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.7137640Z 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-06-01T21:22:23.7143395Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isposinf_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.7149263Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isposinf_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.7154854Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isreal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.7160198Z 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-06-01T21:22:23.7165987Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isreal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.7171192Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isreal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.7177074Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\istft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.7182768Z 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-06-01T21:22:23.7188310Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\istft_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.7194553Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\istft_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.7201039Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_coalesced.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.7206797Z 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-06-01T21:22:23.7213580Z 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-06-01T21:22:23.7219484Z 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-06-01T21:22:23.7224907Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_complex.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.7230770Z 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-06-01T21:22:23.7236369Z 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-06-01T21:22:23.7242187Z 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-06-01T21:22:23.7247797Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_conj.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.7253671Z 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-06-01T21:22:23.7259256Z 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-06-01T21:22:23.7264996Z 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-06-01T21:22:23.7270724Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_distributed.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.7276695Z 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-06-01T21:22:23.7282316Z 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-06-01T21:22:23.7287962Z 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-06-01T21:22:23.7293669Z 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-06-01T21:22:23.7299747Z 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-06-01T21:22:23.7305570Z 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-06-01T21:22:23.7311035Z 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-06-01T21:22:23.7316791Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_inference.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.7322967Z 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-06-01T21:22:23.7328657Z 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-06-01T21:22:23.7334172Z 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-06-01T21:22:23.7339996Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_leaf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.7345621Z 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-06-01T21:22:23.7351499Z 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-06-01T21:22:23.7356903Z 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-06-01T21:22:23.7362770Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_neg.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.7368326Z 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-06-01T21:22:23.7374119Z 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-06-01T21:22:23.7379382Z 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-06-01T21:22:23.7385275Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_nonzero.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.7391889Z 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-06-01T21:22:23.7397766Z 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-06-01T21:22:23.7403405Z 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-06-01T21:22:23.7409656Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_pinned.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.7415986Z 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-06-01T21:22:23.7421634Z 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-06-01T21:22:23.7427259Z 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-06-01T21:22:23.7433117Z 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-06-01T21:22:23.7438851Z 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-06-01T21:22:23.7445965Z 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-06-01T21:22:23.7450870Z 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-06-01T21:22:23.7456403Z 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-06-01T21:22:23.7461757Z 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-06-01T21:22:23.7467310Z 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-06-01T21:22:23.7473526Z 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-06-01T21:22:23.7478949Z 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-06-01T21:22:23.7484589Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_signed.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.7490535Z 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-06-01T21:22:23.7496143Z 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-06-01T21:22:23.7507210Z 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-06-01T21:22:23.7513185Z 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-06-01T21:22:23.7519011Z 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-06-01T21:22:23.7524388Z 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-06-01T21:22:23.7529767Z 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-06-01T21:22:23.7535483Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\item.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.7541022Z 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-06-01T21:22:23.7566509Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\item_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.7572226Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\item_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.7577545Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kaiser_window.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.7583608Z 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-06-01T21:22:23.7589327Z 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-06-01T21:22:23.7595082Z 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-06-01T21:22:23.7600969Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kl_div.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.7606639Z 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-06-01T21:22:23.7612215Z 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-06-01T21:22:23.7617722Z 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-06-01T21:22:23.7623433Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kron.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.7629071Z 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-06-01T21:22:23.7634688Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kron_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.7640558Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kron_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.7646299Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kthvalue.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.7652253Z 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-06-01T21:22:23.7658571Z 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-06-01T21:22:23.7664544Z 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-06-01T21:22:23.7670175Z 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-06-01T21:22:23.7675886Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kthvalue_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.7681589Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kthvalue_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.7687287Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\l1_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.7693081Z 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-06-01T21:22:23.7703844Z 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-06-01T21:22:23.7709462Z 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-06-01T21:22:23.7715311Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\layer_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.7721126Z 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-06-01T21:22:23.7727044Z 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-06-01T21:22:23.7732683Z 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-06-01T21:22:23.7738608Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lcm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.7744357Z 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-06-01T21:22:23.7750658Z 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-06-01T21:22:23.7756376Z 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-06-01T21:22:23.7762021Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lcm_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.7767491Z 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-06-01T21:22:23.7773136Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lcm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.7778650Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lcm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.7784419Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ldexp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.7790112Z 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-06-01T21:22:23.7795798Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ldexp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.7801461Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ldexp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.7807169Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\le.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.7812545Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\leaky_relu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.7818399Z 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-06-01T21:22:23.7824634Z 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-06-01T21:22:23.7830689Z 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-06-01T21:22:23.7836552Z 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-06-01T21:22:23.7842273Z 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-06-01T21:22:23.7848097Z 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-06-01T21:22:23.7854213Z 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-06-01T21:22:23.7860020Z 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-06-01T21:22:23.7866461Z 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-06-01T21:22:23.7872102Z 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-06-01T21:22:23.7878078Z 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-06-01T21:22:23.7884108Z 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-06-01T21:22:23.7889994Z 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-06-01T21:22:23.7895750Z 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-06-01T21:22:23.7902569Z 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-06-01T21:22:23.7908499Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lerp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.7914298Z 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-06-01T21:22:23.7919920Z 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-06-01T21:22:23.7925778Z 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-06-01T21:22:23.7931611Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lerp_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.7937389Z 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-06-01T21:22:23.7943379Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lerp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.7949957Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lerp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.7955852Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\less.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.7962304Z 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-06-01T21:22:23.7968233Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\less_equal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.7974687Z 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-06-01T21:22:23.7980997Z 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-06-01T21:22:23.7987214Z 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-06-01T21:22:23.7993422Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\less_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.8000116Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\less_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.8007347Z 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-06-01T21:22:23.8013714Z 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-06-01T21:22:23.8019850Z 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-06-01T21:22:23.8025399Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\le_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.8030724Z 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-06-01T21:22:23.8036469Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\le_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.8042239Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\le_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.8047676Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lgamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.8053392Z 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-06-01T21:22:23.8059031Z 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-06-01T21:22:23.8064858Z 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-06-01T21:22:23.8070608Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lgamma_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.8076016Z 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-06-01T21:22:23.8081684Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lgamma_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.8087231Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lgamma_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.8092767Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lift.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.8098797Z 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-06-01T21:22:23.8104350Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lift_fresh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.8110183Z 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-06-01T21:22:23.8116124Z 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-06-01T21:22:23.8122331Z 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-06-01T21:22:23.8127910Z 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-06-01T21:22:23.8133826Z 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-06-01T21:22:23.8139426Z 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-06-01T21:22:23.8145239Z 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-06-01T21:22:23.8150737Z 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-06-01T21:22:23.8156442Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lift_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.8172910Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lift_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.8173455Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cholesky.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.8174048Z 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-06-01T21:22:23.8178964Z 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-06-01T21:22:23.8184998Z 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-06-01T21:22:23.8190538Z 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-06-01T21:22:23.8196198Z 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-06-01T21:22:23.8201870Z 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-06-01T21:22:23.8207628Z 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-06-01T21:22:23.8214068Z 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-06-01T21:22:23.8219786Z 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-06-01T21:22:23.8225622Z 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-06-01T21:22:23.8231331Z 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-06-01T21:22:23.8237668Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cond.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.8243580Z 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-06-01T21:22:23.8248972Z 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-06-01T21:22:23.8254852Z 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-06-01T21:22:23.8260509Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cross.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.8266671Z 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-06-01T21:22:23.8272235Z 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-06-01T21:22:23.8277956Z 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-06-01T21:22:23.8283649Z 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-06-01T21:22:23.8289395Z 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-06-01T21:22:23.8295227Z 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-06-01T21:22:23.8300686Z 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-06-01T21:22:23.8306408Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_det.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.8312671Z 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-06-01T21:22:23.8318423Z 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-06-01T21:22:23.8324414Z 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-06-01T21:22:23.8346549Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_diagonal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.8352658Z 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-06-01T21:22:23.8358278Z 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-06-01T21:22:23.8364053Z 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-06-01T21:22:23.8369698Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eig.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.8375769Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eigh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.8381875Z 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-06-01T21:22:23.8387692Z 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-06-01T21:22:23.8393645Z 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-06-01T21:22:23.8399549Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eigvals.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.8405461Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eigvalsh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.8411872Z 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-06-01T21:22:23.8417596Z 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-06-01T21:22:23.8423572Z 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-06-01T21:22:23.8429670Z 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-06-01T21:22:23.8435905Z 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-06-01T21:22:23.8441762Z 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-06-01T21:22:23.8447503Z 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-06-01T21:22:23.8453168Z 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-06-01T21:22:23.8459165Z 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-06-01T21:22:23.8465280Z 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-06-01T21:22:23.8471038Z 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-06-01T21:22:23.8477014Z 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-06-01T21:22:23.8483020Z 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-06-01T21:22:23.8488969Z 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-06-01T21:22:23.8495364Z 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-06-01T21:22:23.8501976Z 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-06-01T21:22:23.8508296Z 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-06-01T21:22:23.8514281Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_inv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.8526045Z 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-06-01T21:22:23.8531766Z 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-06-01T21:22:23.8537961Z 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-06-01T21:22:23.8543761Z 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-06-01T21:22:23.8549586Z 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-06-01T21:22:23.8555617Z 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-06-01T21:22:23.8561411Z 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-06-01T21:22:23.8567594Z 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-06-01T21:22:23.8573218Z 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-06-01T21:22:23.8579045Z 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-06-01T21:22:23.8584728Z 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-06-01T21:22:23.8590504Z 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-06-01T21:22:23.8596645Z 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-06-01T21:22:23.8602395Z 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-06-01T21:22:23.8608822Z 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-06-01T21:22:23.8614577Z 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-06-01T21:22:23.8620127Z 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-06-01T21:22:23.8625696Z 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-06-01T21:22:23.8631403Z 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-06-01T21:22:23.8636876Z 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-06-01T21:22:23.8642494Z 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-06-01T21:22:23.8648122Z 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-06-01T21:22:23.8654020Z 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-06-01T21:22:23.8659674Z 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-06-01T21:22:23.8666028Z 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-06-01T21:22:23.8671781Z 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-06-01T21:22:23.8677368Z 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-06-01T21:22:23.8683018Z 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-06-01T21:22:23.8689046Z 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-06-01T21:22:23.8694746Z 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-06-01T21:22:23.8700352Z 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-06-01T21:22:23.8706430Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lstsq.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.8712418Z 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-06-01T21:22:23.8718053Z 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-06-01T21:22:23.8723698Z 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-06-01T21:22:23.8729316Z 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-06-01T21:22:23.8734996Z 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-06-01T21:22:23.8740838Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.8747008Z 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-06-01T21:22:23.8752832Z 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-06-01T21:22:23.8758572Z 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-06-01T21:22:23.8764239Z 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-06-01T21:22:23.8770304Z 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-06-01T21:22:23.8776433Z 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-06-01T21:22:23.8782536Z 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-06-01T21:22:23.8788316Z 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-06-01T21:22:23.8794025Z 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-06-01T21:22:23.8799911Z 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-06-01T21:22:23.8805584Z 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-06-01T21:22:23.8811474Z 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-06-01T21:22:23.8817334Z 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-06-01T21:22:23.8823492Z 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-06-01T21:22:23.8829905Z 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-06-01T21:22:23.8835648Z 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-06-01T21:22:23.8841525Z 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-06-01T21:22:23.8847377Z 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-06-01T21:22:23.8853319Z 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-06-01T21:22:23.8859398Z 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-06-01T21:22:23.8865796Z 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-06-01T21:22:23.8871736Z 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-06-01T21:22:23.8877532Z 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-06-01T21:22:23.8883314Z 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-06-01T21:22:23.8889193Z 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-06-01T21:22:23.8895032Z 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-06-01T21:22:23.8900978Z 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-06-01T21:22:23.8907287Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matmul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.8913563Z 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-06-01T21:22:23.8919263Z 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-06-01T21:22:23.8925285Z 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-06-01T21:22:23.8931090Z 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-06-01T21:22:23.8938369Z 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-06-01T21:22:23.8944272Z 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-06-01T21:22:23.8949981Z 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-06-01T21:22:23.8955705Z 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-06-01T21:22:23.8961450Z 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-06-01T21:22:23.8967146Z 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-06-01T21:22:23.8973107Z 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-06-01T21:22:23.8978908Z 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-06-01T21:22:23.8985029Z 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-06-01T21:22:23.8991237Z 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-06-01T21:22:23.8997504Z 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-06-01T21:22:23.9003273Z 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-06-01T21:22:23.9009182Z 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-06-01T21:22:23.9015344Z 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-06-01T21:22:23.9021857Z 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-06-01T21:22:23.9033885Z 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-06-01T21:22:23.9034656Z 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-06-01T21:22:23.9040501Z 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-06-01T21:22:23.9046693Z 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-06-01T21:22:23.9052635Z 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-06-01T21:22:23.9058462Z 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-06-01T21:22:23.9064624Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.9070793Z 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-06-01T21:22:23.9076578Z 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-06-01T21:22:23.9082484Z 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-06-01T21:22:23.9088255Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_pinv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.9094437Z 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-06-01T21:22:23.9116330Z 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-06-01T21:22:23.9122457Z 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-06-01T21:22:23.9128245Z 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-06-01T21:22:23.9134171Z 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-06-01T21:22:23.9140146Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_qr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.9146297Z 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-06-01T21:22:23.9152415Z 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-06-01T21:22:23.9157759Z 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-06-01T21:22:23.9163201Z 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-06-01T21:22:23.9168954Z 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-06-01T21:22:23.9174619Z 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-06-01T21:22:23.9180427Z 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-06-01T21:22:23.9186100Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_slogdet.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.9192081Z 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-06-01T21:22:23.9197863Z 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-06-01T21:22:23.9203821Z 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-06-01T21:22:23.9209509Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_solve.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.9215563Z 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-06-01T21:22:23.9221931Z 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-06-01T21:22:23.9228121Z 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-06-01T21:22:23.9233661Z 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-06-01T21:22:23.9239514Z 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-06-01T21:22:23.9245140Z 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-06-01T21:22:23.9251155Z 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-06-01T21:22:23.9256930Z 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-06-01T21:22:23.9262839Z 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-06-01T21:22:23.9268529Z 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-06-01T21:22:23.9274277Z 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-06-01T21:22:23.9280281Z 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-06-01T21:22:23.9285962Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_svd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.9291683Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_svdvals.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.9297709Z 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-06-01T21:22:23.9303525Z 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-06-01T21:22:23.9309756Z 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-06-01T21:22:23.9315519Z 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-06-01T21:22:23.9321327Z 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-06-01T21:22:23.9327061Z 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-06-01T21:22:23.9332790Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_tensorinv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.9338841Z 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-06-01T21:22:23.9350472Z 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-06-01T21:22:23.9356160Z 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-06-01T21:22:23.9362024Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_tensorsolve.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.9368105Z 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-06-01T21:22:23.9373716Z 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-06-01T21:22:23.9379425Z 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-06-01T21:22:23.9385360Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_vander.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.9391381Z 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-06-01T21:22:23.9397074Z 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-06-01T21:22:23.9402811Z 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-06-01T21:22:23.9416452Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_vecdot.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.9424142Z 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-06-01T21:22:23.9447079Z 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-06-01T21:22:23.9452814Z 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-06-01T21:22:23.9458555Z 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-06-01T21:22:23.9465007Z 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-06-01T21:22:23.9471186Z 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-06-01T21:22:23.9477025Z 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-06-01T21:22:23.9482805Z 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-06-01T21:22:23.9488644Z 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-06-01T21:22:23.9494512Z 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-06-01T21:22:23.9500192Z 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-06-01T21:22:23.9506919Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linear.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.9511994Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linear_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.9518623Z 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-06-01T21:22:23.9524707Z 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-06-01T21:22:23.9530650Z 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-06-01T21:22:23.9536869Z 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-06-01T21:22:23.9542848Z 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-06-01T21:22:23.9548693Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linear_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.9554437Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linear_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.9560197Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linspace.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.9565863Z 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-06-01T21:22:23.9571540Z 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-06-01T21:22:23.9577413Z 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-06-01T21:22:23.9583180Z 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-06-01T21:22:23.9589032Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linspace_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.9594824Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linspace_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.9600423Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.9605537Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log10.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.9611279Z 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-06-01T21:22:23.9617014Z 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-06-01T21:22:23.9623126Z 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-06-01T21:22:23.9629286Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log10_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.9635053Z 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-06-01T21:22:23.9641425Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log10_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.9648087Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log10_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.9654490Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log1p.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.9660680Z 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-06-01T21:22:23.9666461Z 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-06-01T21:22:23.9672484Z 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-06-01T21:22:23.9679320Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log1p_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.9684966Z 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-06-01T21:22:23.9690998Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log1p_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.9696792Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log1p_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.9703434Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.9709315Z 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-06-01T21:22:23.9715035Z 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-06-01T21:22:23.9720814Z 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-06-01T21:22:23.9726752Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log2_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.9732691Z 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-06-01T21:22:23.9738569Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.9744254Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.9749601Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.9755360Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.9761457Z 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-06-01T21:22:23.9767192Z 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-06-01T21:22:23.9773155Z 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-06-01T21:22:23.9778793Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp2_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.9784766Z 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-06-01T21:22:23.9790572Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.9796070Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.9802310Z 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-06-01T21:22:23.9808053Z 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-06-01T21:22:23.9813953Z 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-06-01T21:22:23.9819541Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.9825481Z 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-06-01T21:22:23.9831154Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.9837077Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.9842794Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logcumsumexp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.9848658Z 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-06-01T21:22:23.9854403Z 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-06-01T21:22:23.9860096Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logcumsumexp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.9866154Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logcumsumexp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.9871866Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logdet.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.9877340Z 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-06-01T21:22:23.9882865Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logdet_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.9888326Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logdet_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.9894113Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_and.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.9900109Z 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-06-01T21:22:23.9905892Z 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-06-01T21:22:23.9911484Z 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-06-01T21:22:23.9917357Z 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-06-01T21:22:23.9923135Z 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-06-01T21:22:23.9928903Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_not.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.9934750Z 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-06-01T21:22:23.9940675Z 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-06-01T21:22:23.9946534Z 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-06-01T21:22:23.9952316Z 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-06-01T21:22:23.9958166Z 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-06-01T21:22:23.9964171Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_or.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:23.9970162Z 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-06-01T21:22:23.9975659Z 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-06-01T21:22:23.9981443Z 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-06-01T21:22:23.9986873Z 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-06-01T21:22:23.9992500Z 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-06-01T21:22:23.9998257Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_xor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.0004158Z 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-06-01T21:22:24.0009799Z 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-06-01T21:22:24.0015597Z 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-06-01T21:22:24.0022570Z 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-06-01T21:22:24.0028476Z 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-06-01T21:22:24.0034136Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.0039918Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.0046281Z 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-06-01T21:22:24.0051814Z 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-06-01T21:22:24.0057469Z 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-06-01T21:22:24.0063593Z 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-06-01T21:22:24.0069391Z 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-06-01T21:22:24.0075070Z 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-06-01T21:22:24.0080730Z 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-06-01T21:22:24.0086558Z 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-06-01T21:22:24.0092303Z 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-06-01T21:22:24.0097938Z 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-06-01T21:22:24.0103987Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.0109733Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.0115467Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logspace.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.0121191Z 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-06-01T21:22:24.0126887Z 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-06-01T21:22:24.0132637Z 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-06-01T21:22:24.0138306Z 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-06-01T21:22:24.0144032Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logspace_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.0149976Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logspace_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.0155908Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logsumexp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.0161858Z 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-06-01T21:22:24.0167607Z 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-06-01T21:22:24.0173424Z 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-06-01T21:22:24.0179134Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logsumexp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.0185016Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logsumexp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.0191236Z 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-06-01T21:22:24.0196721Z 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-06-01T21:22:24.0202339Z 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-06-01T21:22:24.0207853Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.0213056Z 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-06-01T21:22:24.0218804Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.0224485Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_normal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.0230324Z 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-06-01T21:22:24.0236531Z 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-06-01T21:22:24.0242134Z 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-06-01T21:22:24.0247585Z 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-06-01T21:22:24.0253243Z 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-06-01T21:22:24.0258898Z 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-06-01T21:22:24.0264651Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.0270053Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_sigmoid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.0275933Z 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-06-01T21:22:24.0281552Z 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-06-01T21:22:24.0287196Z 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-06-01T21:22:24.0293104Z 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-06-01T21:22:24.0298739Z 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-06-01T21:22:24.0304734Z 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-06-01T21:22:24.0310587Z 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-06-01T21:22:24.0316687Z 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-06-01T21:22:24.0322592Z 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-06-01T21:22:24.0328413Z 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-06-01T21:22:24.0334322Z 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-06-01T21:22:24.0340155Z 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-06-01T21:22:24.0346372Z 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-06-01T21:22:24.0352437Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.0358610Z 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-06-01T21:22:24.0364477Z 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-06-01T21:22:24.0370358Z 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-06-01T21:22:24.0376141Z 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-06-01T21:22:24.0382047Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lshift.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.0387853Z 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-06-01T21:22:24.0393705Z 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-06-01T21:22:24.0399461Z 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-06-01T21:22:24.0405156Z 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-06-01T21:22:24.0410937Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lshift_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.0417180Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lshift_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.0423288Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lstm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.0428865Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lstm_cell.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.0434841Z 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-06-01T21:22:24.0440617Z 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-06-01T21:22:24.0446388Z 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-06-01T21:22:24.0452331Z 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-06-01T21:22:24.0457826Z 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-06-01T21:22:24.0464020Z 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-06-01T21:22:24.0469689Z 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-06-01T21:22:24.0475442Z 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-06-01T21:22:24.0481473Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lstm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.0487216Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lstm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.0493173Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.0499613Z 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-06-01T21:22:24.0504915Z 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-06-01T21:22:24.0511359Z 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-06-01T21:22:24.0517785Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lt_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.0523560Z 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-06-01T21:22:24.0529474Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lt_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.0535881Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lt_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.0541548Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lu_solve.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.0547536Z 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-06-01T21:22:24.0553291Z 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-06-01T21:22:24.0559081Z 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-06-01T21:22:24.0565076Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lu_unpack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.0571175Z 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-06-01T21:22:24.0576903Z 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-06-01T21:22:24.0582704Z 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-06-01T21:22:24.0588333Z 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-06-01T21:22:24.0594121Z 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-06-01T21:22:24.0599860Z 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-06-01T21:22:24.0605710Z 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-06-01T21:22:24.0611447Z 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-06-01T21:22:24.0617539Z 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-06-01T21:22:24.0623063Z 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-06-01T21:22:24.0628649Z 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-06-01T21:22:24.0634332Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_fill.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.0640248Z 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-06-01T21:22:24.0664923Z 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-06-01T21:22:24.0670534Z 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-06-01T21:22:24.0676337Z 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-06-01T21:22:24.0682259Z 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-06-01T21:22:24.0687955Z 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-06-01T21:22:24.0693845Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_scatter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.0699556Z 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-06-01T21:22:24.0705723Z 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-06-01T21:22:24.0711398Z 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-06-01T21:22:24.0717447Z 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-06-01T21:22:24.0723319Z 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-06-01T21:22:24.0728957Z 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-06-01T21:22:24.0734703Z 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-06-01T21:22:24.0740360Z 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-06-01T21:22:24.0746113Z 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-06-01T21:22:24.0752018Z 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-06-01T21:22:24.0757781Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_select.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.0764338Z 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-06-01T21:22:24.0770579Z 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-06-01T21:22:24.0776342Z 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-06-01T21:22:24.0782075Z 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-06-01T21:22:24.0788196Z 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-06-01T21:22:24.0794275Z 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-06-01T21:22:24.0800650Z 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-06-01T21:22:24.0806586Z 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-06-01T21:22:24.0812489Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matmul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.0818115Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matmul_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.0824226Z 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-06-01T21:22:24.0829931Z 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-06-01T21:22:24.0836042Z 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-06-01T21:22:24.0842559Z 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-06-01T21:22:24.0848310Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matmul_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.0854193Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matmul_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.0860183Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_exp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.0865986Z 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-06-01T21:22:24.0875619Z 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-06-01T21:22:24.0881561Z 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-06-01T21:22:24.0887148Z 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-06-01T21:22:24.0893050Z 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-06-01T21:22:24.0898806Z 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-06-01T21:22:24.0904610Z 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-06-01T21:22:24.0910525Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_H.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.0915835Z 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-06-01T21:22:24.0921693Z 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-06-01T21:22:24.0927501Z 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-06-01T21:22:24.0933418Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_power.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.0939381Z 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-06-01T21:22:24.0945416Z 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-06-01T21:22:24.0951143Z 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-06-01T21:22:24.0956953Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.0962585Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\maximum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.0968266Z 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-06-01T21:22:24.0973688Z 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-06-01T21:22:24.0979453Z 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-06-01T21:22:24.0985357Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\maximum_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.0991268Z 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-06-01T21:22:24.0997170Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\maximum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.1003024Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\maximum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.1009484Z 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-06-01T21:22:24.1015407Z 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-06-01T21:22:24.1022546Z 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-06-01T21:22:24.1028606Z 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-06-01T21:22:24.1034528Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.1040038Z 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-06-01T21:22:24.1046486Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.1052395Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.1058108Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.1064422Z 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-06-01T21:22:24.1070187Z 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-06-01T21:22:24.1076463Z 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-06-01T21:22:24.1082272Z 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-06-01T21:22:24.1088271Z 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-06-01T21:22:24.1094309Z 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-06-01T21:22:24.1100020Z 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-06-01T21:22:24.1105696Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.1111365Z 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-06-01T21:22:24.1117283Z 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-06-01T21:22:24.1122989Z 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-06-01T21:22:24.1128677Z 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-06-01T21:22:24.1134774Z 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-06-01T21:22:24.1140675Z 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-06-01T21:22:24.1146331Z 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-06-01T21:22:24.1151976Z 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-06-01T21:22:24.1157901Z 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-06-01T21:22:24.1164250Z 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-06-01T21:22:24.1170237Z 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-06-01T21:22:24.1176085Z 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-06-01T21:22:24.1182077Z 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-06-01T21:22:24.1188001Z 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-06-01T21:22:24.1193747Z 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-06-01T21:22:24.1199817Z 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-06-01T21:22:24.1206004Z 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-06-01T21:22:24.1218956Z 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-06-01T21:22:24.1225465Z 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-06-01T21:22:24.1231286Z 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-06-01T21:22:24.1237636Z 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-06-01T21:22:24.1244034Z 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-06-01T21:22:24.1249807Z 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-06-01T21:22:24.1255580Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.1261723Z 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-06-01T21:22:24.1267630Z 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-06-01T21:22:24.1273218Z 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-06-01T21:22:24.1280510Z 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-06-01T21:22:24.1286260Z 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-06-01T21:22:24.1292231Z 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-06-01T21:22:24.1298145Z 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-06-01T21:22:24.1304134Z 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-06-01T21:22:24.1309992Z 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-06-01T21:22:24.1316131Z 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-06-01T21:22:24.1322679Z 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-06-01T21:22:24.1328503Z 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-06-01T21:22:24.1334247Z 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-06-01T21:22:24.1339914Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_unpool2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.1345855Z 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-06-01T21:22:24.1351609Z 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-06-01T21:22:24.1357416Z 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-06-01T21:22:24.1363225Z 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-06-01T21:22:24.1369051Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_unpool3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.1374911Z 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-06-01T21:22:24.1380729Z 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-06-01T21:22:24.1386641Z 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-06-01T21:22:24.1392481Z 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-06-01T21:22:24.1398360Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mean.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.1404034Z 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-06-01T21:22:24.1409831Z 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-06-01T21:22:24.1415501Z 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-06-01T21:22:24.1426064Z 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-06-01T21:22:24.1431988Z 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-06-01T21:22:24.1437850Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mean_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.1444025Z 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-06-01T21:22:24.1449766Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mean_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.1456233Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mean_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.1461932Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\median.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.1468129Z 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-06-01T21:22:24.1473985Z 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-06-01T21:22:24.1479652Z 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-06-01T21:22:24.1485353Z 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-06-01T21:22:24.1491449Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\median_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.1497355Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\median_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.1503265Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\meshgrid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.1509087Z 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-06-01T21:22:24.1515638Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\meshgrid_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.1522123Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\meshgrid_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.1528641Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mH.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.1534297Z 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-06-01T21:22:24.1541062Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mH_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.1547056Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mH_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.1552548Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\min.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.1557887Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\minimum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.1569209Z 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-06-01T21:22:24.1575011Z 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-06-01T21:22:24.1580658Z 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-06-01T21:22:24.1586878Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\minimum_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.1592649Z 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-06-01T21:22:24.1598372Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\minimum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.1604116Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\minimum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.1610193Z 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-06-01T21:22:24.1615851Z 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-06-01T21:22:24.1621380Z 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-06-01T21:22:24.1627074Z 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-06-01T21:22:24.1633135Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\min_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.1638480Z 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-06-01T21:22:24.1644039Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\min_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.1649542Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\min_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.1654924Z 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-06-01T21:22:24.1660619Z 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-06-01T21:22:24.1666783Z 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-06-01T21:22:24.1673276Z 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-06-01T21:22:24.1679168Z 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-06-01T21:22:24.1684980Z 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-06-01T21:22:24.1691208Z 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-06-01T21:22:24.1697355Z 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-06-01T21:22:24.1703244Z 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-06-01T21:22:24.1709221Z 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-06-01T21:22:24.1714888Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_convolution.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.1720703Z 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-06-01T21:22:24.1726566Z 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-06-01T21:22:24.1732332Z 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-06-01T21:22:24.1738049Z 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-06-01T21:22:24.1744364Z 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-06-01T21:22:24.1750691Z 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-06-01T21:22:24.1756053Z 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-06-01T21:22:24.1761849Z 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-06-01T21:22:24.1767697Z 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-06-01T21:22:24.1773798Z 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-06-01T21:22:24.1779518Z 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-06-01T21:22:24.1785724Z 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-06-01T21:22:24.1791625Z 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-06-01T21:22:24.1797982Z 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-06-01T21:22:24.1804004Z 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-06-01T21:22:24.1809850Z 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-06-01T21:22:24.1815978Z 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-06-01T21:22:24.1822069Z 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-06-01T21:22:24.1828287Z 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-06-01T21:22:24.1834399Z 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-06-01T21:22:24.1840334Z 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-06-01T21:22:24.1846319Z 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-06-01T21:22:24.1852395Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_rnn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.1858346Z 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-06-01T21:22:24.1864631Z 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-06-01T21:22:24.1870537Z 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-06-01T21:22:24.1876471Z 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-06-01T21:22:24.1895266Z 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-06-01T21:22:24.1901741Z 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-06-01T21:22:24.1907620Z 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-06-01T21:22:24.1913546Z 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-06-01T21:22:24.1919611Z 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-06-01T21:22:24.1925415Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.1931410Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.1937481Z 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-06-01T21:22:24.1943886Z 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-06-01T21:22:24.1949770Z 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-06-01T21:22:24.1955507Z 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-06-01T21:22:24.1961348Z 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-06-01T21:22:24.1967326Z 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-06-01T21:22:24.1972711Z 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-06-01T21:22:24.1978576Z 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-06-01T21:22:24.1984593Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.1990289Z 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-06-01T21:22:24.1996018Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.2001865Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.2015213Z 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-06-01T21:22:24.2021321Z 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-06-01T21:22:24.2027365Z 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-06-01T21:22:24.2033339Z 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-06-01T21:22:24.2039444Z 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-06-01T21:22:24.2045390Z 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-06-01T21:22:24.2051503Z 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-06-01T21:22:24.2057673Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_convolution.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.2064573Z 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-06-01T21:22:24.2070631Z 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-06-01T21:22:24.2076393Z 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-06-01T21:22:24.2082097Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_linear.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.2088160Z 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-06-01T21:22:24.2095024Z 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-06-01T21:22:24.2100905Z 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-06-01T21:22:24.2107436Z 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-06-01T21:22:24.2113065Z 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-06-01T21:22:24.2119587Z 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-06-01T21:22:24.2125341Z 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-06-01T21:22:24.2131138Z 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-06-01T21:22:24.2136896Z 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-06-01T21:22:24.2143781Z 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-06-01T21:22:24.2150053Z 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-06-01T21:22:24.2155816Z 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-06-01T21:22:24.2161768Z 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-06-01T21:22:24.2168251Z 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-06-01T21:22:24.2174412Z 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-06-01T21:22:24.2180312Z 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-06-01T21:22:24.2186804Z 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-06-01T21:22:24.2193050Z 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-06-01T21:22:24.2198801Z 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-06-01T21:22:24.2204616Z 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-06-01T21:22:24.2211236Z 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-06-01T21:22:24.2217408Z 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-06-01T21:22:24.2223363Z 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-06-01T21:22:24.2445212Z 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-06-01T21:22:24.2451254Z 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-06-01T21:22:24.2458179Z 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-06-01T21:22:24.2464203Z 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-06-01T21:22:24.2470401Z 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-06-01T21:22:24.2476804Z 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-06-01T21:22:24.2482736Z 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-06-01T21:22:24.2488800Z 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-06-01T21:22:24.2494985Z 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-06-01T21:22:24.2501242Z 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-06-01T21:22:24.2507422Z 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-06-01T21:22:24.2513796Z 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-06-01T21:22:24.2520047Z 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-06-01T21:22:24.2526499Z 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-06-01T21:22:24.2533039Z 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-06-01T21:22:24.2540632Z 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-06-01T21:22:24.2547262Z 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-06-01T21:22:24.2553274Z 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-06-01T21:22:24.2560133Z 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-06-01T21:22:24.2566205Z 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-06-01T21:22:24.2572219Z 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-06-01T21:22:24.2578061Z 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-06-01T21:22:24.2584785Z 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-06-01T21:22:24.2591457Z 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-06-01T21:22:24.2597554Z 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-06-01T21:22:24.2603475Z 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-06-01T21:22:24.2609703Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.2615413Z 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-06-01T21:22:24.2634453Z 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-06-01T21:22:24.2640199Z 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-06-01T21:22:24.2646176Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mm_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.2650994Z 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-06-01T21:22:24.2657525Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.2663155Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.2668743Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mode.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.2674144Z 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-06-01T21:22:24.2680680Z 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-06-01T21:22:24.2686529Z 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-06-01T21:22:24.2692441Z 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-06-01T21:22:24.2697908Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mode_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.2704140Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mode_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.2709609Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\moveaxis.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.2715125Z 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-06-01T21:22:24.2721075Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\moveaxis_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.2727453Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\moveaxis_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.2733097Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\movedim.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.2739278Z 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-06-01T21:22:24.2745138Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\movedim_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.2780153Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\movedim_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.2880283Z 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-06-01T21:22:24.2891941Z 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-06-01T21:22:24.2898130Z 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-06-01T21:22:24.2904460Z 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-06-01T21:22:24.2910516Z 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-06-01T21:22:24.2916884Z 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-06-01T21:22:24.2922925Z 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-06-01T21:22:24.2929326Z 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-06-01T21:22:24.2935232Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mse_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.2940707Z 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-06-01T21:22:24.2946905Z 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-06-01T21:22:24.2953545Z 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-06-01T21:22:24.2959286Z 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-06-01T21:22:24.2965201Z 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-06-01T21:22:24.2978729Z 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-06-01T21:22:24.2979666Z 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-06-01T21:22:24.2985252Z 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-06-01T21:22:24.2991242Z 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-06-01T21:22:24.2997135Z 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-06-01T21:22:24.3003205Z 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-06-01T21:22:24.3009279Z 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-06-01T21:22:24.3015257Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\msort.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.3021096Z 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-06-01T21:22:24.3026693Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\msort_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.3038224Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\msort_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.3044540Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mT.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.3050632Z 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-06-01T21:22:24.3056170Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mT_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.3061762Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mT_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.3067258Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.3073069Z 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-06-01T21:22:24.3079245Z 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-06-01T21:22:24.3084984Z 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-06-01T21:22:24.3091478Z 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-06-01T21:22:24.3098152Z 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-06-01T21:22:24.3104985Z 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-06-01T21:22:24.3112230Z 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-06-01T21:22:24.3118979Z 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-06-01T21:22:24.3126452Z 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-06-01T21:22:24.3132201Z 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-06-01T21:22:24.3138169Z 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-06-01T21:22:24.3144432Z 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-06-01T21:22:24.3150380Z 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-06-01T21:22:24.3156252Z 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-06-01T21:22:24.3162124Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multinomial.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.3167760Z 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-06-01T21:22:24.3173835Z 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-06-01T21:22:24.3180014Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multinomial_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.3186607Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multinomial_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.3192739Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multiply.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.3198495Z 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-06-01T21:22:24.3203976Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multiply_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.3210250Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multiply_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.3215912Z 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-06-01T21:22:24.3221677Z 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-06-01T21:22:24.3227687Z 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-06-01T21:22:24.3233590Z 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-06-01T21:22:24.3239374Z 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-06-01T21:22:24.3245153Z 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-06-01T21:22:24.3250998Z 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-06-01T21:22:24.3256786Z 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-06-01T21:22:24.3262638Z 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-06-01T21:22:24.3268661Z 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-06-01T21:22:24.3274643Z 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-06-01T21:22:24.3280246Z 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-06-01T21:22:24.3285875Z 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-06-01T21:22:24.3291519Z 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-06-01T21:22:24.3297140Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mul_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.3302749Z 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-06-01T21:22:24.3308546Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mul_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.3504508Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mul_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.3509701Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.3514982Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mvlgamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.3520578Z 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-06-01T21:22:24.3526076Z 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-06-01T21:22:24.3531699Z 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-06-01T21:22:24.3537288Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mvlgamma_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.3543884Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mvlgamma_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.3550482Z 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-06-01T21:22:24.3556591Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mv_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.3562856Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mv_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.3569022Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmean.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.3575434Z 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-06-01T21:22:24.3582885Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmean_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.3590823Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmean_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.3598883Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmedian.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.3607597Z 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-06-01T21:22:24.3614975Z 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-06-01T21:22:24.3620866Z 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-06-01T21:22:24.3626886Z 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-06-01T21:22:24.3632943Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmedian_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.3638822Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmedian_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.3644660Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanquantile.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.3650743Z 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-06-01T21:22:24.3656265Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanquantile_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.3661956Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanquantile_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.3667792Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nansum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.3673266Z 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-06-01T21:22:24.3680050Z 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-06-01T21:22:24.3686248Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nansum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.3692085Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nansum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.3697649Z 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-06-01T21:22:24.3703645Z 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-06-01T21:22:24.3709235Z 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-06-01T21:22:24.3714868Z 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-06-01T21:22:24.3720564Z 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-06-01T21:22:24.3726240Z 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-06-01T21:22:24.3732094Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\narrow.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.3737776Z 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-06-01T21:22:24.3751611Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\narrow_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.3757615Z 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-06-01T21:22:24.3763171Z 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-06-01T21:22:24.3768846Z 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-06-01T21:22:24.3774512Z 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-06-01T21:22:24.3780448Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\narrow_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.3786293Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\narrow_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.3792776Z 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-06-01T21:22:24.3798797Z 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-06-01T21:22:24.3804833Z 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-06-01T21:22:24.3810881Z 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-06-01T21:22:24.3816813Z 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-06-01T21:22:24.3822960Z 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-06-01T21:22:24.3828705Z 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-06-01T21:22:24.3839026Z 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-06-01T21:22:24.3845387Z 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-06-01T21:22:24.3851172Z 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-06-01T21:22:24.3856985Z 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-06-01T21:22:24.3863252Z 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-06-01T21:22:24.3869543Z 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-06-01T21:22:24.3875455Z 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-06-01T21:22:24.3881420Z 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-06-01T21:22:24.3887329Z 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-06-01T21:22:24.3893438Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_dropout.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.3899813Z 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-06-01T21:22:24.3906650Z 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-06-01T21:22:24.3912536Z 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-06-01T21:22:24.3918541Z 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-06-01T21:22:24.3924479Z 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-06-01T21:22:24.3930384Z 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-06-01T21:22:24.3936907Z 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-06-01T21:22:24.3942898Z 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-06-01T21:22:24.3948857Z 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-06-01T21:22:24.3954750Z 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-06-01T21:22:24.3960869Z 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-06-01T21:22:24.3966855Z 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-06-01T21:22:24.3972953Z 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-06-01T21:22:24.3979611Z 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-06-01T21:22:24.3985754Z 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-06-01T21:22:24.3991717Z 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-06-01T21:22:24.3998031Z 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-06-01T21:22:24.4003976Z 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-06-01T21:22:24.4010166Z 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-06-01T21:22:24.4016310Z 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-06-01T21:22:24.4022819Z 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-06-01T21:22:24.4029606Z 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-06-01T21:22:24.4036319Z 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-06-01T21:22:24.4042997Z 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-06-01T21:22:24.4049124Z 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-06-01T21:22:24.4055800Z 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-06-01T21:22:24.4062538Z 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-06-01T21:22:24.4068687Z 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-06-01T21:22:24.4074625Z 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-06-01T21:22:24.4080406Z 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-06-01T21:22:24.4086352Z 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-06-01T21:22:24.4092491Z 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-06-01T21:22:24.4098285Z 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-06-01T21:22:24.4104099Z 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-06-01T21:22:24.4109908Z 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-06-01T21:22:24.4115688Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.4121888Z 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-06-01T21:22:24.4127850Z 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-06-01T21:22:24.4133724Z 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-06-01T21:22:24.4139559Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ne.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.4144925Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\neg.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.4150755Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\negative.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.4156315Z 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-06-01T21:22:24.4161829Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\negative_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.4167433Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\negative_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.4173557Z 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-06-01T21:22:24.4179154Z 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-06-01T21:22:24.4184880Z 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-06-01T21:22:24.4190603Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\neg_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.4195910Z 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-06-01T21:22:24.4201673Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\neg_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.4207481Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\neg_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.4212957Z 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-06-01T21:22:24.4219489Z 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-06-01T21:22:24.4225274Z 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-06-01T21:22:24.4231016Z 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-06-01T21:22:24.4237285Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_empty.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.4243495Z 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-06-01T21:22:24.4249160Z 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-06-01T21:22:24.4255282Z 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-06-01T21:22:24.4261661Z 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-06-01T21:22:24.4268043Z 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-06-01T21:22:24.4273901Z 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-06-01T21:22:24.4288781Z 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-06-01T21:22:24.4294344Z 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-06-01T21:22:24.4300036Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_full.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.4306187Z 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-06-01T21:22:24.4311916Z 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-06-01T21:22:24.4317733Z 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-06-01T21:22:24.4324317Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_ones.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.4330323Z 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-06-01T21:22:24.4336322Z 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-06-01T21:22:24.4342370Z 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-06-01T21:22:24.4349021Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_zeros.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.5150388Z 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-06-01T21:22:24.5156352Z 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-06-01T21:22:24.5162893Z 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-06-01T21:22:24.5168659Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nextafter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.5174661Z 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-06-01T21:22:24.5180230Z 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-06-01T21:22:24.5186489Z 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-06-01T21:22:24.5192103Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nextafter_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.5198225Z 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-06-01T21:22:24.5231260Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nextafter_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.5237554Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nextafter_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.5309133Z 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-06-01T21:22:24.5315374Z 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-06-01T21:22:24.5321360Z 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-06-01T21:22:24.5327155Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ne_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.5332763Z 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-06-01T21:22:24.5338504Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ne_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.5344452Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ne_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.5350182Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.5355661Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.5361438Z 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-06-01T21:22:24.5367367Z 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-06-01T21:22:24.5373381Z 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-06-01T21:22:24.5379207Z 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-06-01T21:22:24.5385179Z 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-06-01T21:22:24.5391271Z 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-06-01T21:22:24.5397043Z 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-06-01T21:22:24.5403180Z 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-06-01T21:22:24.5409144Z 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-06-01T21:22:24.5415167Z 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-06-01T21:22:24.5421116Z 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-06-01T21:22:24.5427048Z 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-06-01T21:22:24.5432833Z 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-06-01T21:22:24.5438801Z 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-06-01T21:22:24.5445198Z 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-06-01T21:22:24.5451286Z 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-06-01T21:22:24.5457205Z 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-06-01T21:22:24.5463777Z 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-06-01T21:22:24.5469151Z 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-06-01T21:22:24.5474970Z 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-06-01T21:22:24.5480839Z 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-06-01T21:22:24.5486992Z 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-06-01T21:22:24.5492953Z 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-06-01T21:22:24.5499378Z 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-06-01T21:22:24.5505257Z 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-06-01T21:22:24.5511180Z 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-06-01T21:22:24.5517159Z 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-06-01T21:22:24.5523142Z 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-06-01T21:22:24.5529249Z 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-06-01T21:22:24.5536185Z 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-06-01T21:22:24.5542927Z 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-06-01T21:22:24.5548938Z 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-06-01T21:22:24.5555131Z 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-06-01T21:22:24.5560945Z 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-06-01T21:22:24.5566928Z 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-06-01T21:22:24.5574094Z 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-06-01T21:22:24.5579939Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.5585494Z 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-06-01T21:22:24.5591135Z 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-06-01T21:22:24.5596884Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.5602711Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero_numpy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.5608701Z 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-06-01T21:22:24.5614398Z 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-06-01T21:22:24.5620170Z 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-06-01T21:22:24.5643639Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.5644571Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero_static.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.5645560Z 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-06-01T21:22:24.5646602Z 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-06-01T21:22:24.5649040Z 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-06-01T21:22:24.5654790Z 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-06-01T21:22:24.5660844Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.5666218Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\normal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.5672089Z 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-06-01T21:22:24.5677399Z 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-06-01T21:22:24.5683102Z 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-06-01T21:22:24.5701164Z 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-06-01T21:22:24.5706626Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\normal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.5712308Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\normal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.5718653Z 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-06-01T21:22:24.5724337Z 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-06-01T21:22:24.5729991Z 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-06-01T21:22:24.5735696Z 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-06-01T21:22:24.5741723Z 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-06-01T21:22:24.5747419Z 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-06-01T21:22:24.5753394Z 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-06-01T21:22:24.5759139Z 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-06-01T21:22:24.5764423Z 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-06-01T21:22:24.5770089Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.5775865Z 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-06-01T21:22:24.5781598Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.5787331Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.5792779Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\not_equal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.5798695Z 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-06-01T21:22:24.5804424Z 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-06-01T21:22:24.5810102Z 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-06-01T21:22:24.5815887Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nuclear_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.5821886Z 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-06-01T21:22:24.5827441Z 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-06-01T21:22:24.5833071Z 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-06-01T21:22:24.5838919Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\numpy_T.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.5844610Z 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-06-01T21:22:24.5850299Z 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-06-01T21:22:24.5856054Z 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-06-01T21:22:24.5861693Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ones.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.5867468Z 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-06-01T21:22:24.5873052Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ones_like.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.5879119Z 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-06-01T21:22:24.5884939Z 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-06-01T21:22:24.5890877Z 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-06-01T21:22:24.5896799Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ones_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.5902597Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ones_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.5908042Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\one_hot.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.5913835Z 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-06-01T21:22:24.5919417Z 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-06-01T21:22:24.5924959Z 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-06-01T21:22:24.5931130Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\or.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.5936539Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\orgqr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.5942455Z 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-06-01T21:22:24.5948195Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\orgqr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.5953974Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\orgqr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.5960041Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ormqr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.5965630Z 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-06-01T21:22:24.5971262Z 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-06-01T21:22:24.5976945Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ormqr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.5983017Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ormqr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.5988972Z 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-06-01T21:22:24.5994570Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\or_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6000244Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\or_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6005661Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\outer.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6011379Z 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-06-01T21:22:24.6016998Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\outer_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6023178Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\outer_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6029071Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\output_nr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6035119Z 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-06-01T21:22:24.6041378Z 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-06-01T21:22:24.6047640Z 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-06-01T21:22:24.6053340Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6059220Z 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-06-01T21:22:24.6064844Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pad_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6070264Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pad_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6075915Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pad_sequence.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6082006Z 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-06-01T21:22:24.6087621Z 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-06-01T21:22:24.6093197Z 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-06-01T21:22:24.6099081Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pairwise_distance.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6105079Z 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-06-01T21:22:24.6110555Z 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-06-01T21:22:24.6116587Z 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-06-01T21:22:24.6122435Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pdist.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6127810Z 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-06-01T21:22:24.6133478Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pdist_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6138693Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pdist_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6144362Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\permute.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6149785Z 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-06-01T21:22:24.6155346Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\permute_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6161554Z 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-06-01T21:22:24.6167304Z 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-06-01T21:22:24.6172887Z 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-06-01T21:22:24.6178617Z 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-06-01T21:22:24.6184572Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\permute_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6190517Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\permute_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6196151Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pinverse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6205744Z 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-06-01T21:22:24.6209805Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pinverse_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6215293Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pinverse_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6220745Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pin_memory.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6226482Z 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-06-01T21:22:24.6232041Z 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-06-01T21:22:24.6237682Z 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-06-01T21:22:24.6243592Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pixel_shuffle.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6249500Z 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-06-01T21:22:24.6255212Z 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-06-01T21:22:24.6260843Z 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-06-01T21:22:24.6266525Z 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-06-01T21:22:24.6272189Z 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-06-01T21:22:24.6277952Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pixel_unshuffle.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6284362Z 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-06-01T21:22:24.6290461Z 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-06-01T21:22:24.6296621Z 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-06-01T21:22:24.6303042Z 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-06-01T21:22:24.6309509Z 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-06-01T21:22:24.6315748Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\poisson.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6322237Z 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-06-01T21:22:24.6328136Z 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-06-01T21:22:24.6333859Z 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-06-01T21:22:24.6339455Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\poisson_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6345256Z 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-06-01T21:22:24.6351495Z 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-06-01T21:22:24.6357260Z 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-06-01T21:22:24.6363146Z 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-06-01T21:22:24.6368672Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\poisson_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6398983Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polar.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6404612Z 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-06-01T21:22:24.6410597Z 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-06-01T21:22:24.6416278Z 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-06-01T21:22:24.6422076Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polar_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6427735Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polar_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6433758Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polygamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6458824Z 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-06-01T21:22:24.6464746Z 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-06-01T21:22:24.6470459Z 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-06-01T21:22:24.6476323Z 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-06-01T21:22:24.6492095Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polygamma_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6498145Z 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-06-01T21:22:24.6504226Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polygamma_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6510413Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polygamma_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6516354Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\positive.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6522598Z 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-06-01T21:22:24.6527985Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\positive_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6533671Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\positive_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6539489Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pow.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6546609Z 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-06-01T21:22:24.6553272Z 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-06-01T21:22:24.6559856Z 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-06-01T21:22:24.6567050Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pow_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6572667Z 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-06-01T21:22:24.6578436Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pow_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6584300Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pow_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6589732Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prelu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6595273Z 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-06-01T21:22:24.6601075Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prelu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6639384Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prelu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6763256Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prod.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6798797Z 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-06-01T21:22:24.6805030Z 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-06-01T21:22:24.6811308Z 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-06-01T21:22:24.6817274Z 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-06-01T21:22:24.6823689Z 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-06-01T21:22:24.6829938Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prod_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6836201Z 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-06-01T21:22:24.6841768Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prod_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6847399Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prod_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6852928Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\promote_types.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6858798Z 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-06-01T21:22:24.6864701Z 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-06-01T21:22:24.6870123Z 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-06-01T21:22:24.6875755Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\put.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6881600Z 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-06-01T21:22:24.6887241Z 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-06-01T21:22:24.6892859Z 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-06-01T21:22:24.6898489Z 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-06-01T21:22:24.6904193Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\put_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6909880Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\put_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6915251Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\qr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6920797Z 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-06-01T21:22:24.6926356Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\qr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6931879Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\qr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6937215Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\qscheme.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6942455Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\qscheme_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6948325Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\qscheme_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6954226Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantile.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6960253Z 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-06-01T21:22:24.6965804Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantile_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6971572Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantile_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.6977315Z 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-06-01T21:22:24.6983582Z 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-06-01T21:22:24.7023089Z 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-06-01T21:22:24.7028964Z 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-06-01T21:22:24.7035106Z 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-06-01T21:22:24.7041402Z 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-06-01T21:22:24.7047908Z 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-06-01T21:22:24.7054657Z 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-06-01T21:22:24.7061341Z 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-06-01T21:22:24.7068331Z 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-06-01T21:22:24.7074914Z 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-06-01T21:22:24.7080835Z 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-06-01T21:22:24.7086797Z 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-06-01T21:22:24.7093189Z 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-06-01T21:22:24.7098925Z 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-06-01T21:22:24.7104685Z 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-06-01T21:22:24.7111020Z 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-06-01T21:22:24.7117087Z 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-06-01T21:22:24.7122905Z 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-06-01T21:22:24.7128670Z 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-06-01T21:22:24.7134536Z 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-06-01T21:22:24.7140530Z 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-06-01T21:22:24.7146551Z 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-06-01T21:22:24.7152343Z 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-06-01T21:22:24.7158397Z 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-06-01T21:22:24.7164262Z 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-06-01T21:22:24.7169989Z 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-06-01T21:22:24.7175784Z 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-06-01T21:22:24.7181672Z 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-06-01T21:22:24.7188439Z 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-06-01T21:22:24.7194747Z 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-06-01T21:22:24.7201157Z 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-06-01T21:22:24.7207132Z 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-06-01T21:22:24.7213199Z 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-06-01T21:22:24.7219101Z 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-06-01T21:22:24.7225106Z 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-06-01T21:22:24.7230754Z 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-06-01T21:22:24.7236439Z 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-06-01T21:22:24.7242290Z 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-06-01T21:22:24.7248296Z 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-06-01T21:22:24.7254015Z 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-06-01T21:22:24.7259991Z 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-06-01T21:22:24.7265982Z 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-06-01T21:22:24.7271930Z 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-06-01T21:22:24.7277701Z 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-06-01T21:22:24.7283499Z 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-06-01T21:22:24.7289640Z 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-06-01T21:22:24.7295288Z 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-06-01T21:22:24.7300980Z 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-06-01T21:22:24.7306694Z 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-06-01T21:22:24.7312362Z 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-06-01T21:22:24.7317989Z 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-06-01T21:22:24.7323380Z 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-06-01T21:22:24.7329136Z 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-06-01T21:22:24.7334994Z 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-06-01T21:22:24.7340646Z 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-06-01T21:22:24.7346440Z 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-06-01T21:22:24.7352312Z 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-06-01T21:22:24.7358647Z 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-06-01T21:22:24.7364640Z 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-06-01T21:22:24.7370462Z 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-06-01T21:22:24.7376166Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\q_scale.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.7381502Z 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-06-01T21:22:24.7387347Z 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-06-01T21:22:24.7393767Z 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-06-01T21:22:24.7400112Z 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-06-01T21:22:24.7406441Z 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-06-01T21:22:24.7412950Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rad2deg.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.7419550Z 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-06-01T21:22:24.7426031Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rad2deg_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.7432565Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rad2deg_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.7438463Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rand.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.7444285Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randint.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.7450571Z 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-06-01T21:22:24.7456647Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randint_like.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.7462990Z 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-06-01T21:22:24.7468630Z 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-06-01T21:22:24.7474466Z 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-06-01T21:22:24.7480357Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randint_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.7486212Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randint_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.7491922Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.7498047Z 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-06-01T21:22:24.7504054Z 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-06-01T21:22:24.7509559Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randn_like.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.7515538Z 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-06-01T21:22:24.7521806Z 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-06-01T21:22:24.7527389Z 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-06-01T21:22:24.7533137Z 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-06-01T21:22:24.7539042Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randn_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.7545114Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randn_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.7550703Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\random.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.7556291Z 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-06-01T21:22:24.7561791Z 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-06-01T21:22:24.7567384Z 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-06-01T21:22:24.7573035Z 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-06-01T21:22:24.7578622Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\random_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.7584652Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\random_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.7590453Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randperm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.7596182Z 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-06-01T21:22:24.7602085Z 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-06-01T21:22:24.7608151Z 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-06-01T21:22:24.7615686Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randperm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.7622000Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randperm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.7628567Z 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-06-01T21:22:24.7635177Z 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-06-01T21:22:24.7641288Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rand_like.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.7647806Z 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-06-01T21:22:24.7653715Z 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-06-01T21:22:24.7659596Z 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-06-01T21:22:24.7665624Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rand_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.7671418Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rand_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.7677067Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\range.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.7682542Z 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-06-01T21:22:24.7687893Z 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-06-01T21:22:24.7693348Z 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-06-01T21:22:24.7699049Z 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-06-01T21:22:24.7704916Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\range_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.7710712Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\range_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.7716337Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ravel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.7722112Z 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-06-01T21:22:24.7727638Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ravel_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.7733198Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ravel_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.7738750Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\real.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.7744252Z 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-06-01T21:22:24.7749788Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\real_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.7755051Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\real_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.7760350Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reciprocal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.7766573Z 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-06-01T21:22:24.7771848Z 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-06-01T21:22:24.7777512Z 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-06-01T21:22:24.7783335Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reciprocal_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.7788863Z 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-06-01T21:22:24.7794412Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reciprocal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.7800103Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reciprocal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.7806079Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\record_stream.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.7811572Z 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-06-01T21:22:24.7817156Z 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-06-01T21:22:24.7822844Z 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-06-01T21:22:24.7828456Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\refine_names.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.7834238Z 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-06-01T21:22:24.7840269Z 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-06-01T21:22:24.7845677Z 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-06-01T21:22:24.7851607Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.7857271Z 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-06-01T21:22:24.7863474Z 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-06-01T21:22:24.7869180Z 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-06-01T21:22:24.7875015Z 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-06-01T21:22:24.7881037Z 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-06-01T21:22:24.7887114Z 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-06-01T21:22:24.7892824Z 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-06-01T21:22:24.7898615Z 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-06-01T21:22:24.7904777Z 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-06-01T21:22:24.7910393Z 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-06-01T21:22:24.7916378Z 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-06-01T21:22:24.7922103Z 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-06-01T21:22:24.7928917Z 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-06-01T21:22:24.7934665Z 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-06-01T21:22:24.7940476Z 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-06-01T21:22:24.7946410Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.7952252Z 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-06-01T21:22:24.7959050Z 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-06-01T21:22:24.7964344Z 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-06-01T21:22:24.7970206Z 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-06-01T21:22:24.7976071Z 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-06-01T21:22:24.7982035Z 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-06-01T21:22:24.7987705Z 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-06-01T21:22:24.7993630Z 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-06-01T21:22:24.7999361Z 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-06-01T21:22:24.8005043Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.8010961Z 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-06-01T21:22:24.8017127Z 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-06-01T21:22:24.8022917Z 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-06-01T21:22:24.8028871Z 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-06-01T21:22:24.8034679Z 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-06-01T21:22:24.8040584Z 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-06-01T21:22:24.8046694Z 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-06-01T21:22:24.8053279Z 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-06-01T21:22:24.8059451Z 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-06-01T21:22:24.8065425Z 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-06-01T21:22:24.8071270Z 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-06-01T21:22:24.8076942Z 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-06-01T21:22:24.8083164Z 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-06-01T21:22:24.8089993Z 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-06-01T21:22:24.8095643Z 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-06-01T21:22:24.8102208Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.8108869Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu6.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.8115505Z 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-06-01T21:22:24.8121855Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu6_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.8128453Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu6_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.8160352Z 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-06-01T21:22:24.8165903Z 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-06-01T21:22:24.8171813Z 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-06-01T21:22:24.8181591Z 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-06-01T21:22:24.8186457Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.8192176Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.8197432Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\remainder.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.8203517Z 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-06-01T21:22:24.8209364Z 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-06-01T21:22:24.8215104Z 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-06-01T21:22:24.8220914Z 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-06-01T21:22:24.8226991Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\remainder_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.8232776Z 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-06-01T21:22:24.8238506Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\remainder_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.8244279Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\remainder_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.8250028Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rename.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.8255493Z 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-06-01T21:22:24.8261231Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rename_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.8266921Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rename_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.8272782Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\renorm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.8278576Z 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-06-01T21:22:24.8284323Z 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-06-01T21:22:24.8289944Z 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-06-01T21:22:24.8295597Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\renorm_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.8301931Z 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-06-01T21:22:24.8307731Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\renorm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.8313706Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\renorm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.8319443Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\repeat.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.8325075Z 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-06-01T21:22:24.8330710Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\repeat_interleave.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.8336771Z 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-06-01T21:22:24.8342898Z 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-06-01T21:22:24.8348570Z 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-06-01T21:22:24.8354542Z 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-06-01T21:22:24.8360337Z 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-06-01T21:22:24.8366142Z 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-06-01T21:22:24.8371896Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\repeat_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.8377726Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\repeat_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.8383654Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.8389368Z 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-06-01T21:22:24.8395873Z 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-06-01T21:22:24.8401643Z 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-06-01T21:22:24.8407623Z 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-06-01T21:22:24.8413380Z 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-06-01T21:22:24.8419495Z 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-06-01T21:22:24.8425551Z 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-06-01T21:22:24.8431368Z 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-06-01T21:22:24.8437614Z 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-06-01T21:22:24.8443339Z 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-06-01T21:22:24.8449192Z 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-06-01T21:22:24.8455041Z 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-06-01T21:22:24.8461292Z 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-06-01T21:22:24.8467179Z 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-06-01T21:22:24.8473050Z 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-06-01T21:22:24.8478837Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.8484792Z 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-06-01T21:22:24.8490725Z 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-06-01T21:22:24.8496544Z 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-06-01T21:22:24.8502670Z 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-06-01T21:22:24.8508519Z 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-06-01T21:22:24.8514641Z 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-06-01T21:22:24.8520952Z 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-06-01T21:22:24.8527312Z 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-06-01T21:22:24.8533416Z 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-06-01T21:22:24.8539467Z 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-06-01T21:22:24.8545682Z 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-06-01T21:22:24.8551857Z 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-06-01T21:22:24.8558600Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.8564783Z 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-06-01T21:22:24.8602208Z 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-06-01T21:22:24.8608579Z 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-06-01T21:22:24.8614649Z 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-06-01T21:22:24.8620739Z 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-06-01T21:22:24.8627261Z 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-06-01T21:22:24.8633142Z 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-06-01T21:22:24.8639164Z 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-06-01T21:22:24.8645159Z 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-06-01T21:22:24.8651087Z 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-06-01T21:22:24.8657154Z 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-06-01T21:22:24.8663106Z 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-06-01T21:22:24.8668947Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\requires_grad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.8674683Z 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-06-01T21:22:24.8680646Z 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-06-01T21:22:24.8686252Z 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-06-01T21:22:24.8691916Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reshape.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.8697452Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reshape_as.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.8703269Z 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-06-01T21:22:24.8709255Z 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-06-01T21:22:24.8714943Z 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-06-01T21:22:24.8721037Z 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-06-01T21:22:24.8727161Z 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-06-01T21:22:24.8733186Z 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-06-01T21:22:24.8738888Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reshape_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.8744709Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reshape_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.8750411Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.8755921Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_as.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.8761686Z 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-06-01T21:22:24.8767888Z 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-06-01T21:22:24.8773648Z 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-06-01T21:22:24.8779390Z 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-06-01T21:22:24.8785616Z 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-06-01T21:22:24.8791387Z 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-06-01T21:22:24.8797245Z 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-06-01T21:22:24.8803225Z 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-06-01T21:22:24.8809215Z 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-06-01T21:22:24.8814964Z 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-06-01T21:22:24.8820736Z 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-06-01T21:22:24.8826503Z 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-06-01T21:22:24.8832147Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.8847948Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.8853783Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resolve_conj.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.8859853Z 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-06-01T21:22:24.8865732Z 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-06-01T21:22:24.8871298Z 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-06-01T21:22:24.8877304Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resolve_neg.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.8883939Z 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-06-01T21:22:24.8889856Z 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-06-01T21:22:24.8895551Z 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-06-01T21:22:24.8901776Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\result_type.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.8907816Z 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-06-01T21:22:24.8913457Z 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-06-01T21:22:24.8919274Z 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-06-01T21:22:24.8924933Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\retains_grad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.8930680Z 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-06-01T21:22:24.8936434Z 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-06-01T21:22:24.8942353Z 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-06-01T21:22:24.8948241Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\retain_grad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.8954193Z 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-06-01T21:22:24.8959972Z 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-06-01T21:22:24.8965665Z 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-06-01T21:22:24.8971615Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rms_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.8977374Z 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-06-01T21:22:24.8983436Z 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-06-01T21:22:24.8989232Z 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-06-01T21:22:24.8995568Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rnn_relu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.9001050Z 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-06-01T21:22:24.9007864Z 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-06-01T21:22:24.9012982Z 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-06-01T21:22:24.9024857Z 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-06-01T21:22:24.9030857Z 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-06-01T21:22:24.9036743Z 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-06-01T21:22:24.9042637Z 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-06-01T21:22:24.9048506Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rnn_tanh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.9054042Z 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-06-01T21:22:24.9060253Z 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-06-01T21:22:24.9066818Z 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-06-01T21:22:24.9073684Z 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-06-01T21:22:24.9080052Z 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-06-01T21:22:24.9086062Z 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-06-01T21:22:24.9092080Z 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-06-01T21:22:24.9097968Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\roll.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.9104002Z 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-06-01T21:22:24.9109543Z 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-06-01T21:22:24.9115907Z 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-06-01T21:22:24.9121481Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\roll_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.9128233Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\roll_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.9133918Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rot90.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.9139528Z 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-06-01T21:22:24.9145309Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rot90_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.9150992Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rot90_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.9156602Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\round.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.9162421Z 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-06-01T21:22:24.9167955Z 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-06-01T21:22:24.9173801Z 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-06-01T21:22:24.9179416Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\round_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.9185275Z 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-06-01T21:22:24.9190987Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\round_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.9196858Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\round_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.9202573Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\row_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.9208143Z 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-06-01T21:22:24.9213780Z 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-06-01T21:22:24.9220022Z 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-06-01T21:22:24.9226325Z 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-06-01T21:22:24.9231982Z 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-06-01T21:22:24.9237674Z 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-06-01T21:22:24.9243404Z 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-06-01T21:22:24.9248924Z 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-06-01T21:22:24.9254809Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\row_stack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.9260761Z 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-06-01T21:22:24.9266593Z 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-06-01T21:22:24.9272005Z 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-06-01T21:22:24.9277674Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.9283333Z 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-06-01T21:22:24.9288847Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.9294715Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.9300713Z 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-06-01T21:22:24.9306607Z 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-06-01T21:22:24.9312630Z 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-06-01T21:22:24.9318454Z 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-06-01T21:22:24.9324186Z 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-06-01T21:22:24.9330142Z 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-06-01T21:22:24.9335960Z 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-06-01T21:22:24.9350204Z 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-06-01T21:22:24.9355992Z 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-06-01T21:22:24.9361772Z 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-06-01T21:22:24.9367643Z 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-06-01T21:22:24.9373641Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rshift.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.9379377Z 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-06-01T21:22:24.9385423Z 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-06-01T21:22:24.9391143Z 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-06-01T21:22:24.9396902Z 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-06-01T21:22:24.9402784Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rshift_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.9408674Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rshift_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.9414611Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsqrt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.9420441Z 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-06-01T21:22:24.9426516Z 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-06-01T21:22:24.9432450Z 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-06-01T21:22:24.9438156Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsqrt_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.9443813Z 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-06-01T21:22:24.9449632Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsqrt_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.9455815Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsqrt_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.9461758Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsub.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.9467519Z 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-06-01T21:22:24.9473305Z 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-06-01T21:22:24.9479086Z 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-06-01T21:22:24.9484939Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsub_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.9490770Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsub_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.9496368Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scalar_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.9502927Z 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-06-01T21:22:24.9508572Z 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-06-01T21:22:24.9514350Z 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-06-01T21:22:24.9520588Z 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-06-01T21:22:24.9526626Z 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-06-01T21:22:24.9532335Z 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-06-01T21:22:24.9538241Z 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-06-01T21:22:24.9544692Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.9550808Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_add.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.9557395Z 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-06-01T21:22:24.9564285Z 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-06-01T21:22:24.9570856Z 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-06-01T21:22:24.9577345Z 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-06-01T21:22:24.9583251Z 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-06-01T21:22:24.9589352Z 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-06-01T21:22:24.9595293Z 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-06-01T21:22:24.9601537Z 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-06-01T21:22:24.9614564Z 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-06-01T21:22:24.9620115Z 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-06-01T21:22:24.9625844Z 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-06-01T21:22:24.9631839Z 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-06-01T21:22:24.9637543Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.9643360Z 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-06-01T21:22:24.9649503Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.9655277Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.9661502Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_reduce.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.9667756Z 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-06-01T21:22:24.9673735Z 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-06-01T21:22:24.9679624Z 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-06-01T21:22:24.9685457Z 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-06-01T21:22:24.9691309Z 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-06-01T21:22:24.9696937Z 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-06-01T21:22:24.9703036Z 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-06-01T21:22:24.9708814Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\searchsorted.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.9714700Z 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-06-01T21:22:24.9720373Z 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-06-01T21:22:24.9726134Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\searchsorted_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.9732274Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\searchsorted_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.9738024Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\segment_reduce.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.9743994Z 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-06-01T21:22:24.9749507Z 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-06-01T21:22:24.9755157Z 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-06-01T21:22:24.9760755Z 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-06-01T21:22:24.9766252Z 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-06-01T21:22:24.9776225Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.9781722Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.9787957Z 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-06-01T21:22:24.9793677Z 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-06-01T21:22:24.9802204Z 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-06-01T21:22:24.9805350Z 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-06-01T21:22:24.9811511Z 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-06-01T21:22:24.9817474Z 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-06-01T21:22:24.9823186Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.9829452Z 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-06-01T21:22:24.9835339Z 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-06-01T21:22:24.9840948Z 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-06-01T21:22:24.9846712Z 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-06-01T21:22:24.9852555Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.9858281Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.9864182Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_scatter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.9870383Z 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-06-01T21:22:24.9876131Z 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-06-01T21:22:24.9881977Z 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-06-01T21:22:24.9887737Z 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-06-01T21:22:24.9893808Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\selu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.9899443Z 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-06-01T21:22:24.9905080Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\selu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.9910455Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\selu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.9916425Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\set.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.9922830Z 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-06-01T21:22:24.9929687Z 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-06-01T21:22:24.9935979Z 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-06-01T21:22:24.9943498Z 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-06-01T21:22:24.9949371Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\set_data.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.9955379Z 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-06-01T21:22:24.9961167Z 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-06-01T21:22:24.9966782Z 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-06-01T21:22:24.9973181Z 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-06-01T21:22:24.9978844Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\set_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.9984408Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\set_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.9989988Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sgn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:24.9995671Z 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-06-01T21:22:25.0001125Z 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-06-01T21:22:25.0007040Z 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-06-01T21:22:25.0012559Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sgn_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.0018014Z 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-06-01T21:22:25.0023704Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sgn_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.0029193Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sgn_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.0034499Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.0039977Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.0046226Z 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-06-01T21:22:25.0051800Z 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-06-01T21:22:25.0057335Z 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-06-01T21:22:25.0063343Z 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-06-01T21:22:25.0069135Z 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-06-01T21:22:25.0074829Z 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-06-01T21:22:25.0080825Z 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-06-01T21:22:25.0086690Z 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-06-01T21:22:25.0098035Z 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-06-01T21:22:25.0104217Z 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-06-01T21:22:25.0109907Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.0115711Z 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-06-01T21:22:25.0121465Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.0127568Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.0133259Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sign.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.0138610Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\signbit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.0174583Z 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-06-01T21:22:25.0180071Z 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-06-01T21:22:25.0185893Z 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-06-01T21:22:25.0191480Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\signbit_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.0197247Z 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-06-01T21:22:25.0202919Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\signbit_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.0208603Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\signbit_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.0214737Z 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-06-01T21:22:25.0220612Z 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-06-01T21:22:25.0226351Z 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-06-01T21:22:25.0231973Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sign_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.0237446Z 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-06-01T21:22:25.0243233Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sign_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.0248787Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sign_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.0254148Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.0259457Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.0265602Z 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-06-01T21:22:25.0271487Z 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-06-01T21:22:25.0277198Z 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-06-01T21:22:25.0282871Z 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-06-01T21:22:25.0289028Z 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-06-01T21:22:25.0294673Z 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-06-01T21:22:25.0306186Z 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-06-01T21:22:25.0312370Z 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-06-01T21:22:25.0318913Z 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-06-01T21:22:25.0324598Z 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-06-01T21:22:25.0330371Z 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-06-01T21:22:25.0336184Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.0341937Z 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-06-01T21:22:25.0354524Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.0355459Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.0361056Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.0366322Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.0372158Z 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-06-01T21:22:25.0377907Z 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-06-01T21:22:25.0384358Z 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-06-01T21:22:25.0390081Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinc_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.0395771Z 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-06-01T21:22:25.0401381Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.0407288Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.0412720Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.0418571Z 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-06-01T21:22:25.0424405Z 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-06-01T21:22:25.0430187Z 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-06-01T21:22:25.0436095Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinh_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.0441669Z 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-06-01T21:22:25.0447453Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.0453308Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.0459237Z 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-06-01T21:22:25.0464932Z 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-06-01T21:22:25.0470671Z 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-06-01T21:22:25.0476362Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sin_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.0481766Z 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-06-01T21:22:25.0487462Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.0493272Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.0498914Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\size.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.0504729Z 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-06-01T21:22:25.0510378Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\size_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.0515909Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\size_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.0521336Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.0527187Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.0533258Z 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-06-01T21:22:25.0547574Z 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-06-01T21:22:25.0553380Z 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-06-01T21:22:25.0559578Z 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-06-01T21:22:25.0565478Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.0572024Z 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-06-01T21:22:25.0578010Z 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-06-01T21:22:25.0584066Z 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-06-01T21:22:25.0590294Z 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-06-01T21:22:25.0596321Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_inverse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.0602424Z 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-06-01T21:22:25.0608308Z 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-06-01T21:22:25.0614570Z 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-06-01T21:22:25.0620450Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.0626406Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.0632143Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_scatter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.0638416Z 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-06-01T21:22:25.0644312Z 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-06-01T21:22:25.0650134Z 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-06-01T21:22:25.0655816Z 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-06-01T21:22:25.0661707Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slogdet.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.0667345Z 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-06-01T21:22:25.0673092Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slogdet_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.0678952Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slogdet_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.0684640Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.0690677Z 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-06-01T21:22:25.0696244Z 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-06-01T21:22:25.0702165Z 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-06-01T21:22:25.0708355Z 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-06-01T21:22:25.0714962Z 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-06-01T21:22:25.0721013Z 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-06-01T21:22:25.0726886Z 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-06-01T21:22:25.0732884Z 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-06-01T21:22:25.0739230Z 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-06-01T21:22:25.0745324Z 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-06-01T21:22:25.0751373Z 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-06-01T21:22:25.0758183Z 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-06-01T21:22:25.0764013Z 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-06-01T21:22:25.0769861Z 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-06-01T21:22:25.0776294Z 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-06-01T21:22:25.0782204Z 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-06-01T21:22:25.0788126Z 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-06-01T21:22:25.0794218Z 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-06-01T21:22:25.0801030Z 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-06-01T21:22:25.0807353Z 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-06-01T21:22:25.0814049Z 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-06-01T21:22:25.0819995Z 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-06-01T21:22:25.0826278Z 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-06-01T21:22:25.0832882Z 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-06-01T21:22:25.0838969Z 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-06-01T21:22:25.0845043Z 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-06-01T21:22:25.0851020Z 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-06-01T21:22:25.0856982Z 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-06-01T21:22:25.0863274Z 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-06-01T21:22:25.0869431Z 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-06-01T21:22:25.0875442Z 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-06-01T21:22:25.0881406Z 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-06-01T21:22:25.0887202Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.0892838Z 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-06-01T21:22:25.0898552Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.0904199Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.0909762Z 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-06-01T21:22:25.0915984Z 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-06-01T21:22:25.0922242Z 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-06-01T21:22:25.0928125Z 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-06-01T21:22:25.0934176Z 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-06-01T21:22:25.0940076Z 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-06-01T21:22:25.0946067Z 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-06-01T21:22:25.0952605Z 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-06-01T21:22:25.0958487Z 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-06-01T21:22:25.0964352Z 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-06-01T21:22:25.0970354Z 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-06-01T21:22:25.0976275Z 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-06-01T21:22:25.0982151Z 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-06-01T21:22:25.0988131Z 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-06-01T21:22:25.0993899Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.0999688Z 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-06-01T21:22:25.1005378Z 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-06-01T21:22:25.1010981Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.1016736Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.1022635Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.1028471Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.1034634Z 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-06-01T21:22:25.1040334Z 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-06-01T21:22:25.1046094Z 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-06-01T21:22:25.1051798Z 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-06-01T21:22:25.1058093Z 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-06-01T21:22:25.1064236Z 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-06-01T21:22:25.1070060Z 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-06-01T21:22:25.1076202Z 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-06-01T21:22:25.1081877Z 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-06-01T21:22:25.1087962Z 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-06-01T21:22:25.1093711Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.1099884Z 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-06-01T21:22:25.1105686Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.1111526Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.1117290Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.1122961Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.1129144Z 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-06-01T21:22:25.1134852Z 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-06-01T21:22:25.1140633Z 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-06-01T21:22:25.1147080Z 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-06-01T21:22:25.1152972Z 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-06-01T21:22:25.1158830Z 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-06-01T21:22:25.1164659Z 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-06-01T21:22:25.1170755Z 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-06-01T21:22:25.1176371Z 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-06-01T21:22:25.1182522Z 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-06-01T21:22:25.1188440Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.1194213Z 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-06-01T21:22:25.1199967Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.1205807Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.1211647Z 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-06-01T21:22:25.1217381Z 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-06-01T21:22:25.1223851Z 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-06-01T21:22:25.1229944Z 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-06-01T21:22:25.1235790Z 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-06-01T21:22:25.1241852Z 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-06-01T21:22:25.1247583Z 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-06-01T21:22:25.1253463Z 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-06-01T21:22:25.1259192Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sort.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.1265228Z 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-06-01T21:22:25.1271476Z 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-06-01T21:22:25.1277261Z 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-06-01T21:22:25.1282987Z 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-06-01T21:22:25.1288809Z 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-06-01T21:22:25.1305886Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sort_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.1306978Z 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-06-01T21:22:25.1307950Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sort_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.1312296Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sort_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.1317782Z 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-06-01T21:22:25.1324300Z 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-06-01T21:22:25.1329937Z 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-06-01T21:22:25.1335666Z 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-06-01T21:22:25.1341467Z 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-06-01T21:22:25.1347900Z 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-06-01T21:22:25.1353804Z 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-06-01T21:22:25.1359575Z 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-06-01T21:22:25.1365325Z 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-06-01T21:22:25.1371523Z 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-06-01T21:22:25.1377273Z 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-06-01T21:22:25.1383503Z 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-06-01T21:22:25.1389293Z 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-06-01T21:22:25.1395496Z 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-06-01T21:22:25.1416495Z 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-06-01T21:22:25.1422474Z 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-06-01T21:22:25.1428871Z 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-06-01T21:22:25.1435081Z 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-06-01T21:22:25.1441342Z 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-06-01T21:22:25.1447243Z 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-06-01T21:22:25.1453209Z 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-06-01T21:22:25.1459209Z 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-06-01T21:22:25.1465721Z 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-06-01T21:22:25.1471619Z 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-06-01T21:22:25.1478687Z 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-06-01T21:22:25.1484368Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_dim.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.1490214Z 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-06-01T21:22:25.1495793Z 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-06-01T21:22:25.1502199Z 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-06-01T21:22:25.1508023Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_mask.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.1514027Z 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-06-01T21:22:25.1520130Z 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-06-01T21:22:25.1531355Z 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-06-01T21:22:25.1537213Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_resize.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.1543310Z 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-06-01T21:22:25.1549544Z 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-06-01T21:22:25.1555731Z 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-06-01T21:22:25.1561812Z 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-06-01T21:22:25.1567963Z 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-06-01T21:22:25.1586113Z 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-06-01T21:22:25.1587267Z 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-06-01T21:22:25.1588279Z 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-06-01T21:22:25.1593314Z 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-06-01T21:22:25.1599320Z 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-06-01T21:22:25.1605677Z 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-06-01T21:22:25.1611539Z 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-06-01T21:22:25.1617705Z 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-06-01T21:22:25.1623983Z 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-06-01T21:22:25.1629815Z 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-06-01T21:22:25.1635366Z 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-06-01T21:22:25.1649958Z 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-06-01T21:22:25.1655778Z 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-06-01T21:22:25.1661672Z 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-06-01T21:22:25.1668071Z 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-06-01T21:22:25.1673710Z 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-06-01T21:22:25.1679905Z 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-06-01T21:22:25.1685629Z 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-06-01T21:22:25.1691657Z 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-06-01T21:22:25.1733337Z 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-06-01T21:22:25.1739281Z 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-06-01T21:22:25.1745266Z 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-06-01T21:22:25.1751085Z 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-06-01T21:22:25.1756999Z 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-06-01T21:22:25.1763378Z 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-06-01T21:22:25.1769996Z 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-06-01T21:22:25.1815581Z 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-06-01T21:22:25.1821394Z 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-06-01T21:22:25.1827457Z 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-06-01T21:22:25.1833407Z 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-06-01T21:22:25.1839549Z 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-06-01T21:22:25.1845673Z 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-06-01T21:22:25.1851918Z 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-06-01T21:22:25.1857723Z 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-06-01T21:22:25.1863782Z 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-06-01T21:22:25.1869639Z 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-06-01T21:22:25.1875828Z 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-06-01T21:22:25.1881823Z 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-06-01T21:22:25.1887887Z 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-06-01T21:22:25.1894109Z 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-06-01T21:22:25.1900564Z 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-06-01T21:22:25.1906536Z 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-06-01T21:22:25.1912546Z 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-06-01T21:22:25.1918630Z 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-06-01T21:22:25.1924783Z 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-06-01T21:22:25.1930643Z 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-06-01T21:22:25.1936578Z 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-06-01T21:22:25.1942697Z 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-06-01T21:22:25.1948945Z 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-06-01T21:22:25.1955174Z 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-06-01T21:22:25.1962170Z 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-06-01T21:22:25.1968296Z 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-06-01T21:22:25.1974220Z 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-06-01T21:22:25.1980346Z 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-06-01T21:22:25.1986630Z 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-06-01T21:22:25.1992685Z 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-06-01T21:22:25.1998618Z 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-06-01T21:22:25.2022741Z 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-06-01T21:22:25.2028883Z 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-06-01T21:22:25.2035390Z 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-06-01T21:22:25.2041887Z 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-06-01T21:22:25.2047871Z 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-06-01T21:22:25.2054012Z 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-06-01T21:22:25.2059903Z 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-06-01T21:22:25.2066356Z 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-06-01T21:22:25.2072377Z 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-06-01T21:22:25.2078629Z 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-06-01T21:22:25.2084535Z 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-06-01T21:22:25.2090334Z 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-06-01T21:22:25.2096540Z 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-06-01T21:22:25.2102856Z 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-06-01T21:22:25.2108811Z 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-06-01T21:22:25.2114627Z 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-06-01T21:22:25.2120576Z 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-06-01T21:22:25.2126728Z 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-06-01T21:22:25.2133088Z 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-06-01T21:22:25.2139052Z 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-06-01T21:22:25.2145206Z 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-06-01T21:22:25.2151056Z 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-06-01T21:22:25.2157616Z 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-06-01T21:22:25.2165362Z 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-06-01T21:22:25.2172989Z 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-06-01T21:22:25.2180723Z 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-06-01T21:22:25.2189069Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_digamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.2197115Z 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-06-01T21:22:25.2204537Z 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-06-01T21:22:25.2211468Z 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-06-01T21:22:25.2217978Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_entr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.2225329Z 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-06-01T21:22:25.2230832Z 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-06-01T21:22:25.2236732Z 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-06-01T21:22:25.2243192Z 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-06-01T21:22:25.2248531Z 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-06-01T21:22:25.2254200Z 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-06-01T21:22:25.2260025Z 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-06-01T21:22:25.2266038Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.2272199Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.2278021Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfcx.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.2284129Z 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-06-01T21:22:25.2290135Z 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-06-01T21:22:25.2295967Z 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-06-01T21:22:25.2301899Z 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-06-01T21:22:25.2307901Z 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-06-01T21:22:25.2314248Z 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-06-01T21:22:25.2320090Z 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-06-01T21:22:25.2326279Z 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-06-01T21:22:25.2332063Z 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-06-01T21:22:25.2337618Z 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-06-01T21:22:25.2374602Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfinv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.2380817Z 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-06-01T21:22:25.2386856Z 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-06-01T21:22:25.2392577Z 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-06-01T21:22:25.2398820Z 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-06-01T21:22:25.2404692Z 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-06-01T21:22:25.2410377Z 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-06-01T21:22:25.2416325Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_exp2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.2422672Z 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-06-01T21:22:25.2428557Z 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-06-01T21:22:25.2434257Z 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-06-01T21:22:25.2440427Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_expit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.2446562Z 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-06-01T21:22:25.2452301Z 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-06-01T21:22:25.2457958Z 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-06-01T21:22:25.2464022Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_expm1.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.2470119Z 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-06-01T21:22:25.2475954Z 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-06-01T21:22:25.2489634Z 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-06-01T21:22:25.2496500Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_gammainc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.2502528Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_gammaincc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.2508871Z 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-06-01T21:22:25.2514764Z 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-06-01T21:22:25.2520864Z 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-06-01T21:22:25.2527512Z 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-06-01T21:22:25.2533798Z 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-06-01T21:22:25.2539764Z 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-06-01T21:22:25.2545839Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_gammaln.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.2552043Z 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-06-01T21:22:25.2558085Z 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-06-01T21:22:25.2563922Z 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-06-01T21:22:25.2571929Z 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-06-01T21:22:25.2577760Z 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-06-01T21:22:25.2589509Z 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-06-01T21:22:25.2591383Z 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-06-01T21:22:25.2597968Z 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-06-01T21:22:25.2604267Z 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-06-01T21:22:25.2610409Z 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-06-01T21:22:25.2616489Z 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-06-01T21:22:25.2622606Z 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-06-01T21:22:25.2628530Z 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-06-01T21:22:25.2634907Z 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-06-01T21:22:25.2641158Z 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-06-01T21:22:25.2647024Z 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-06-01T21:22:25.2653055Z 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-06-01T21:22:25.2658938Z 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-06-01T21:22:25.2665405Z 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-06-01T21:22:25.2690208Z 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-06-01T21:22:25.2695868Z 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-06-01T21:22:25.2701580Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i0.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.2707287Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i0e.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.2713194Z 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-06-01T21:22:25.2718533Z 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-06-01T21:22:25.2724529Z 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-06-01T21:22:25.2730725Z 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-06-01T21:22:25.2736218Z 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-06-01T21:22:25.2742251Z 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-06-01T21:22:25.2748174Z 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-06-01T21:22:25.2754337Z 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-06-01T21:22:25.2760253Z 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-06-01T21:22:25.2766710Z 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-06-01T21:22:25.2772826Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i1.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.2778728Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i1e.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.2785415Z 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-06-01T21:22:25.2791291Z 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-06-01T21:22:25.2797174Z 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-06-01T21:22:25.2803021Z 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-06-01T21:22:25.2809100Z 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-06-01T21:22:25.2815016Z 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-06-01T21:22:25.2820984Z 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-06-01T21:22:25.2827391Z 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-06-01T21:22:25.2833148Z 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-06-01T21:22:25.2839020Z 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-06-01T21:22:25.2844984Z 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-06-01T21:22:25.2850933Z 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-06-01T21:22:25.2856834Z 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-06-01T21:22:25.2863064Z 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-06-01T21:22:25.2869161Z 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-06-01T21:22:25.2875513Z 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-06-01T21:22:25.2881554Z 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-06-01T21:22:25.2887595Z 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-06-01T21:22:25.2895469Z 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-06-01T21:22:25.2901447Z 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-06-01T21:22:25.2907578Z 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-06-01T21:22:25.2913573Z 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-06-01T21:22:25.2919774Z 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-06-01T21:22:25.2926105Z 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-06-01T21:22:25.2932513Z 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-06-01T21:22:25.2938691Z 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-06-01T21:22:25.2944764Z 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-06-01T21:22:25.2951001Z 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-06-01T21:22:25.2957091Z 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-06-01T21:22:25.2963135Z 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-06-01T21:22:25.2969168Z 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-06-01T21:22:25.2975158Z 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-06-01T21:22:25.2981072Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_log1p.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.3009081Z 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-06-01T21:22:25.3015140Z 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-06-01T21:22:25.3020980Z 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-06-01T21:22:25.3027071Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_logit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.3033387Z 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-06-01T21:22:25.3039281Z 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-06-01T21:22:25.3045337Z 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-06-01T21:22:25.3051426Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_logsumexp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.3057586Z 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-06-01T21:22:25.3063506Z 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-06-01T21:22:25.3069341Z 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-06-01T21:22:25.3075257Z 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-06-01T21:22:25.3081576Z 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-06-01T21:22:25.3087408Z 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-06-01T21:22:25.3093291Z 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-06-01T21:22:25.3099115Z 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-06-01T21:22:25.3105130Z 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-06-01T21:22:25.3110895Z 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-06-01T21:22:25.3116684Z 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-06-01T21:22:25.3122517Z 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-06-01T21:22:25.3128919Z 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-06-01T21:22:25.3134631Z 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-06-01T21:22:25.3140455Z 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-06-01T21:22:25.3146428Z 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-06-01T21:22:25.3152613Z 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-06-01T21:22:25.3158840Z 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-06-01T21:22:25.3164830Z 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-06-01T21:22:25.3170748Z 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-06-01T21:22:25.3176706Z 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-06-01T21:22:25.3182695Z 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-06-01T21:22:25.3188558Z 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-06-01T21:22:25.3194300Z 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-06-01T21:22:25.3200573Z 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-06-01T21:22:25.3206456Z 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-06-01T21:22:25.3212498Z 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-06-01T21:22:25.3218257Z 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-06-01T21:22:25.3224745Z 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-06-01T21:22:25.3230821Z 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-06-01T21:22:25.3236749Z 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-06-01T21:22:25.3242815Z 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-06-01T21:22:25.3249174Z 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-06-01T21:22:25.3255023Z 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-06-01T21:22:25.3261467Z 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-06-01T21:22:25.3267689Z 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-06-01T21:22:25.3273886Z 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-06-01T21:22:25.3280172Z 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-06-01T21:22:25.3286029Z 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-06-01T21:22:25.3292204Z 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-06-01T21:22:25.3298691Z 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-06-01T21:22:25.3304805Z 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-06-01T21:22:25.3310871Z 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-06-01T21:22:25.3316970Z 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-06-01T21:22:25.3323085Z 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-06-01T21:22:25.3329290Z 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-06-01T21:22:25.3335375Z 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-06-01T21:22:25.3341626Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_multigammaln.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.3348245Z 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-06-01T21:22:25.3354611Z 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-06-01T21:22:25.3360466Z 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-06-01T21:22:25.3366445Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_ndtr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.3372724Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_ndtri.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.3379113Z 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-06-01T21:22:25.3385102Z 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-06-01T21:22:25.3391022Z 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-06-01T21:22:25.3396949Z 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-06-01T21:22:25.3402969Z 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-06-01T21:22:25.3409080Z 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-06-01T21:22:25.3415188Z 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-06-01T21:22:25.3421354Z 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-06-01T21:22:25.3427394Z 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-06-01T21:22:25.3433554Z 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-06-01T21:22:25.3439633Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_polygamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.3445777Z 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-06-01T21:22:25.3451774Z 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-06-01T21:22:25.3457694Z 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-06-01T21:22:25.3463754Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_psi.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.3469917Z 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-06-01T21:22:25.3475719Z 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-06-01T21:22:25.3481415Z 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-06-01T21:22:25.3519882Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_round.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.3526198Z 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-06-01T21:22:25.3532281Z 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-06-01T21:22:25.3538194Z 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-06-01T21:22:25.3544438Z 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-06-01T21:22:25.3563969Z 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-06-01T21:22:25.3570072Z 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-06-01T21:22:25.3576484Z 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-06-01T21:22:25.3582698Z 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-06-01T21:22:25.3589511Z 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-06-01T21:22:25.3596019Z 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-06-01T21:22:25.3602093Z 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-06-01T21:22:25.3608290Z 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-06-01T21:22:25.3614793Z 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-06-01T21:22:25.3620795Z 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-06-01T21:22:25.3626859Z 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-06-01T21:22:25.3633066Z 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-06-01T21:22:25.3639283Z 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-06-01T21:22:25.3645442Z 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-06-01T21:22:25.3651692Z 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-06-01T21:22:25.3657308Z 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-06-01T21:22:25.3664203Z 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-06-01T21:22:25.3670133Z 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-06-01T21:22:25.3683380Z 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-06-01T21:22:25.3689404Z 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-06-01T21:22:25.3695372Z 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-06-01T21:22:25.3701995Z 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-06-01T21:22:25.3708144Z 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-06-01T21:22:25.3714266Z 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-06-01T21:22:25.3720184Z 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-06-01T21:22:25.3726748Z 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-06-01T21:22:25.3733277Z 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-06-01T21:22:25.3739374Z 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-06-01T21:22:25.3745568Z 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-06-01T21:22:25.3751402Z 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-06-01T21:22:25.3757501Z 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-06-01T21:22:25.3763848Z 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-06-01T21:22:25.3770055Z 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-06-01T21:22:25.3776200Z 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-06-01T21:22:25.3782935Z 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-06-01T21:22:25.3789754Z 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-06-01T21:22:25.3796027Z 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-06-01T21:22:25.3802120Z 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-06-01T21:22:25.3808343Z 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-06-01T21:22:25.3815026Z 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-06-01T21:22:25.3821795Z 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-06-01T21:22:25.3827907Z 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-06-01T21:22:25.3834367Z 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-06-01T21:22:25.3842111Z 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-06-01T21:22:25.3848604Z 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-06-01T21:22:25.3855005Z 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-06-01T21:22:25.3861442Z 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-06-01T21:22:25.3867611Z 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-06-01T21:22:25.3873726Z 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-06-01T21:22:25.3880092Z 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-06-01T21:22:25.3886176Z 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-06-01T21:22:25.3892178Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_sinc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.3898680Z 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-06-01T21:22:25.3904615Z 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-06-01T21:22:25.3910470Z 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-06-01T21:22:25.3916579Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.3923132Z 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-06-01T21:22:25.3929607Z 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-06-01T21:22:25.3935293Z 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-06-01T21:22:25.3941605Z 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-06-01T21:22:25.3948026Z 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-06-01T21:22:25.3953823Z 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-06-01T21:22:25.3960125Z 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-06-01T21:22:25.3966186Z 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-06-01T21:22:25.3972199Z 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-06-01T21:22:25.3978246Z 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-06-01T21:22:25.3984827Z 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-06-01T21:22:25.3991094Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_xlog1py.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.3997475Z 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-06-01T21:22:25.4003826Z 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-06-01T21:22:25.4009579Z 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-06-01T21:22:25.4015571Z 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-06-01T21:22:25.4021750Z 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-06-01T21:22:25.4027957Z 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-06-01T21:22:25.4033901Z 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-06-01T21:22:25.4039856Z 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-06-01T21:22:25.4045820Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_xlogy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.4052182Z 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-06-01T21:22:25.4057984Z 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-06-01T21:22:25.4064180Z 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-06-01T21:22:25.4070313Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_zeta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.4076576Z 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-06-01T21:22:25.4082744Z 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-06-01T21:22:25.4088584Z 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-06-01T21:22:25.4094372Z 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-06-01T21:22:25.4100314Z 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-06-01T21:22:25.4106503Z 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-06-01T21:22:25.4112722Z 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-06-01T21:22:25.4118672Z 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-06-01T21:22:25.4124431Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.4130029Z 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-06-01T21:22:25.4136394Z 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-06-01T21:22:25.4141917Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.4147945Z 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-06-01T21:22:25.4153837Z 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-06-01T21:22:25.4159505Z 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-06-01T21:22:25.4165220Z 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-06-01T21:22:25.4171258Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.4177029Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.4183081Z 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-06-01T21:22:25.4189143Z 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-06-01T21:22:25.4194968Z 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-06-01T21:22:25.4201911Z 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-06-01T21:22:25.4207902Z 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-06-01T21:22:25.4213624Z 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-06-01T21:22:25.4227681Z 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-06-01T21:22:25.4233583Z 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-06-01T21:22:25.4239395Z 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-06-01T21:22:25.4245317Z 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-06-01T21:22:25.4251101Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sqrt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.4256779Z 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-06-01T21:22:25.4262333Z 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-06-01T21:22:25.4268148Z 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-06-01T21:22:25.4274164Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sqrt_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.4279797Z 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-06-01T21:22:25.4285583Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sqrt_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.4291289Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sqrt_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.4296831Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\square.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.4302723Z 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-06-01T21:22:25.4308372Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\square_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.4314188Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\square_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.4319891Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\squeeze.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.4325811Z 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-06-01T21:22:25.4331601Z 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-06-01T21:22:25.4337370Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\squeeze_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.4343767Z 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-06-01T21:22:25.4349522Z 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-06-01T21:22:25.4355246Z 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-06-01T21:22:25.4361299Z 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-06-01T21:22:25.4367603Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\squeeze_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.4373422Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\squeeze_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.4379346Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sspaddmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.4385249Z 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-06-01T21:22:25.4390969Z 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-06-01T21:22:25.4396702Z 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-06-01T21:22:25.4403100Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sspaddmm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.4408710Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sspaddmm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.4414467Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.4420220Z 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-06-01T21:22:25.4426658Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stack_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.4432359Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stack_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.4438113Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\std.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.4443913Z 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-06-01T21:22:25.4449804Z 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-06-01T21:22:25.4455686Z 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-06-01T21:22:25.4461644Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\std_mean.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.4467521Z 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-06-01T21:22:25.4473374Z 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-06-01T21:22:25.4479049Z 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-06-01T21:22:25.4484926Z 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-06-01T21:22:25.4491205Z 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-06-01T21:22:25.4497163Z 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-06-01T21:22:25.4503146Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\std_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.4508881Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\std_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.4514201Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.4523042Z 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-06-01T21:22:25.4528873Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stft_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.4534508Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stft_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.4539960Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stride.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.4545978Z 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-06-01T21:22:25.4551612Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stride_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.4557436Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stride_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.4563672Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sub.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.4569342Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\subtract.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.4575576Z 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-06-01T21:22:25.4581386Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\subtract_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.4587294Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\subtract_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.4594261Z 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-06-01T21:22:25.4600118Z 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-06-01T21:22:25.4605874Z 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-06-01T21:22:25.4611574Z 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-06-01T21:22:25.4617333Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sub_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.4622588Z 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-06-01T21:22:25.4629115Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sub_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.4634840Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sub_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.4640132Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.4645819Z 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-06-01T21:22:25.4651563Z 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-06-01T21:22:25.4657232Z 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-06-01T21:22:25.4663184Z 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-06-01T21:22:25.4668884Z 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-06-01T21:22:25.4674619Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.4679794Z 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-06-01T21:22:25.4685391Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.4690935Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.4696348Z 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-06-01T21:22:25.4702333Z 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-06-01T21:22:25.4708029Z 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-06-01T21:22:25.4713434Z 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-06-01T21:22:25.4719421Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\svd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.4725002Z 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-06-01T21:22:25.4730436Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\svd_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.4735930Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\svd_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.4741304Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\swapaxes.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.4746918Z 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-06-01T21:22:25.4752563Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\swapaxes_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.4758237Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\swapaxes_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.4764042Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\swapdims.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.4769661Z 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-06-01T21:22:25.4775234Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\swapdims_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.4780917Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\swapdims_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.4792734Z 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-06-01T21:22:25.4794796Z 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-06-01T21:22:25.4800336Z 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-06-01T21:22:25.4806370Z 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-06-01T21:22:25.4812636Z 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-06-01T21:22:25.4818774Z 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-06-01T21:22:25.4824679Z 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-06-01T21:22:25.4830316Z 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-06-01T21:22:25.4836032Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_numel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.4841897Z 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-06-01T21:22:25.4847615Z 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-06-01T21:22:25.4853091Z 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-06-01T21:22:25.4858717Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_size.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.4864416Z 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-06-01T21:22:25.4869806Z 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-06-01T21:22:25.4875102Z 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-06-01T21:22:25.4880643Z 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-06-01T21:22:25.4886797Z 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-06-01T21:22:25.4892293Z 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-06-01T21:22:25.4897740Z 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-06-01T21:22:25.4903398Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_stride.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.4909628Z 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-06-01T21:22:25.4920460Z 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-06-01T21:22:25.4925704Z 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-06-01T21:22:25.4931272Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\t.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.4936122Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\take.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.4941976Z 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-06-01T21:22:25.4947205Z 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-06-01T21:22:25.4952489Z 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-06-01T21:22:25.4958047Z 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-06-01T21:22:25.4963682Z 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-06-01T21:22:25.7270464Z 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-06-01T21:22:25.7276673Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\take_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.7282532Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\take_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.7287995Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tan.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.7293903Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.7299333Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.7305549Z 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-06-01T21:22:25.7311558Z 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-06-01T21:22:25.7316974Z 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-06-01T21:22:25.7322985Z 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-06-01T21:22:25.7328943Z 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-06-01T21:22:25.7339676Z 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-06-01T21:22:25.7345934Z 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-06-01T21:22:25.7351934Z 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-06-01T21:22:25.7357563Z 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-06-01T21:22:25.7363538Z 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-06-01T21:22:25.7369276Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.7374728Z 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-06-01T21:22:25.7380489Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.7421853Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.7428080Z 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-06-01T21:22:25.7434351Z 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-06-01T21:22:25.7440898Z 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-06-01T21:22:25.7447365Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tan_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.7453315Z 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-06-01T21:22:25.7459434Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tan_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.7465656Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tan_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.7471754Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.7477805Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tensordot.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.7484356Z 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-06-01T21:22:25.7489973Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tensordot_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.7495853Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tensordot_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.7502152Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tensor_split.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.7508491Z 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-06-01T21:22:25.7514078Z 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-06-01T21:22:25.7519955Z 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-06-01T21:22:25.7525712Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\thnn_conv2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.7531755Z 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-06-01T21:22:25.7537292Z 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-06-01T21:22:25.7543386Z 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-06-01T21:22:25.7549255Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.7583261Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.7589456Z 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-06-01T21:22:25.7595164Z 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-06-01T21:22:25.7600758Z 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-06-01T21:22:25.7606948Z 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-06-01T21:22:25.7612550Z 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-06-01T21:22:25.7618432Z 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-06-01T21:22:25.7624648Z 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-06-01T21:22:25.7636323Z 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-06-01T21:22:25.7641948Z 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-06-01T21:22:25.7652117Z 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-06-01T21:22:25.7658096Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.7663959Z 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-06-01T21:22:25.7669558Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.7675289Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.7680974Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tile.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.7692048Z 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-06-01T21:22:25.7697656Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tile_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.7703203Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tile_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.7708833Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.7713797Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\topk.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.7719633Z 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-06-01T21:22:25.7725316Z 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-06-01T21:22:25.7730915Z 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-06-01T21:22:25.7736496Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\topk_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.7742416Z 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-06-01T21:22:25.7748153Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\topk_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.7753852Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\topk_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.7759479Z 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-06-01T21:22:25.7765306Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_dense.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.7770606Z 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-06-01T21:22:25.7776551Z 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-06-01T21:22:25.7782307Z 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-06-01T21:22:25.7787801Z 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-06-01T21:22:25.7793901Z 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-06-01T21:22:25.7799473Z 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-06-01T21:22:25.7805238Z 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-06-01T21:22:25.7810965Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_mkldnn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.7816573Z 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-06-01T21:22:25.7822633Z 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-06-01T21:22:25.7828299Z 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-06-01T21:22:25.7833950Z 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-06-01T21:22:25.7839915Z 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-06-01T21:22:25.7845616Z 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-06-01T21:22:25.7851261Z 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-06-01T21:22:25.7856945Z 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-06-01T21:22:25.7862892Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.7868457Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.7873930Z 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-06-01T21:22:25.7880072Z 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-06-01T21:22:25.7885606Z 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-06-01T21:22:25.7891302Z 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-06-01T21:22:25.7897029Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.7902648Z 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-06-01T21:22:25.7908358Z 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-06-01T21:22:25.7914143Z 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-06-01T21:22:25.7919551Z 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-06-01T21:22:25.7925365Z 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-06-01T21:22:25.7931168Z 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-06-01T21:22:25.7936880Z 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-06-01T21:22:25.7942515Z 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-06-01T21:22:25.7948473Z 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-06-01T21:22:25.7954359Z 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-06-01T21:22:25.7960210Z 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-06-01T21:22:25.7965883Z 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-06-01T21:22:25.7971458Z 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-06-01T21:22:25.7977349Z 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-06-01T21:22:25.7983313Z 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-06-01T21:22:25.7989039Z 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-06-01T21:22:25.7994703Z 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-06-01T21:22:25.8000519Z 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-06-01T21:22:25.8006295Z 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-06-01T21:22:25.8012012Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trace.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.8017472Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trace_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.8023543Z 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-06-01T21:22:25.8029216Z 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-06-01T21:22:25.8035075Z 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-06-01T21:22:25.8041203Z 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-06-01T21:22:25.8047190Z 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-06-01T21:22:25.8053091Z 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-06-01T21:22:25.8058882Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trace_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.8064829Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trace_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.8070719Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\transpose.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.8076720Z 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-06-01T21:22:25.8082933Z 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-06-01T21:22:25.8089112Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\transpose_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.8095488Z 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-06-01T21:22:25.8101605Z 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-06-01T21:22:25.8107386Z 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-06-01T21:22:25.8113282Z 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-06-01T21:22:25.8119611Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\transpose_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.8126005Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\transpose_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.8132418Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trapezoid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.8139035Z 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-06-01T21:22:25.8145509Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trapezoid_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.8152020Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trapezoid_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.8158146Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trapz.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.8164086Z 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-06-01T21:22:25.8170010Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trapz_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.8175814Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trapz_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.8181708Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triangular_solve.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.8188033Z 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-06-01T21:22:25.8193634Z 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-06-01T21:22:25.8199300Z 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-06-01T21:22:25.8210884Z 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-06-01T21:22:25.8216665Z 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-06-01T21:22:25.8222523Z 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-06-01T21:22:25.8228501Z 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-06-01T21:22:25.8235275Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.8241181Z 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-06-01T21:22:25.8246796Z 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-06-01T21:22:25.8252788Z 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-06-01T21:22:25.8258477Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.8264603Z 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-06-01T21:22:25.8270230Z 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-06-01T21:22:25.8276021Z 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-06-01T21:22:25.8281818Z 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-06-01T21:22:25.8287485Z 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-06-01T21:22:25.8293435Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.8298996Z 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-06-01T21:22:25.8304815Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.8310417Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.8315984Z 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-06-01T21:22:25.8321900Z 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-06-01T21:22:25.8327486Z 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-06-01T21:22:25.8333304Z 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-06-01T21:22:25.8339246Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.8345119Z 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-06-01T21:22:25.8350720Z 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-06-01T21:22:25.8356309Z 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-06-01T21:22:25.8362008Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.8367946Z 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-06-01T21:22:25.8373504Z 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-06-01T21:22:25.8379450Z 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-06-01T21:22:25.8385405Z 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-06-01T21:22:25.8391145Z 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-06-01T21:22:25.8397068Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.8402616Z 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-06-01T21:22:25.8408169Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.8413923Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.8419305Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\true_divide.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.8425497Z 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-06-01T21:22:25.8431300Z 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-06-01T21:22:25.8437210Z 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-06-01T21:22:25.8443036Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trunc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.8448992Z 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-06-01T21:22:25.8454800Z 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-06-01T21:22:25.8460572Z 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-06-01T21:22:25.8466668Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trunc_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.8472962Z 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-06-01T21:22:25.8478808Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trunc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.8484688Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trunc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.8490536Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\type_as.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.8496009Z 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-06-01T21:22:25.8501888Z 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-06-01T21:22:25.8515485Z 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-06-01T21:22:25.8521729Z 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-06-01T21:22:25.8527403Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\t_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.8533520Z 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-06-01T21:22:25.8539164Z 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-06-01T21:22:25.8544999Z 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-06-01T21:22:25.8550817Z 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-06-01T21:22:25.8556365Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\t_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.8561781Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\t_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.8567224Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unbind.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.8573277Z 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-06-01T21:22:25.8578826Z 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-06-01T21:22:25.8584844Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unbind_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.8591047Z 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-06-01T21:22:25.8596899Z 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-06-01T21:22:25.8603406Z 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-06-01T21:22:25.8609419Z 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-06-01T21:22:25.8615313Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unbind_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.8622083Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unbind_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.8628655Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unflatten.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.8634731Z 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-06-01T21:22:25.8641158Z 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-06-01T21:22:25.8647959Z 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-06-01T21:22:25.8658978Z 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-06-01T21:22:25.8664775Z 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-06-01T21:22:25.8670704Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unflatten_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.8676478Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unflatten_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.8682387Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.8687693Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.8693959Z 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-06-01T21:22:25.8699810Z 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-06-01T21:22:25.8705892Z 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-06-01T21:22:25.8711541Z 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-06-01T21:22:25.8717227Z 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-06-01T21:22:25.8723184Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.8729256Z 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-06-01T21:22:25.8735234Z 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-06-01T21:22:25.8740955Z 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-06-01T21:22:25.8746720Z 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-06-01T21:22:25.8752599Z 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-06-01T21:22:25.8758235Z 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-06-01T21:22:25.8764119Z 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-06-01T21:22:25.8769987Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.8775661Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.8781429Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\uniform.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.8787214Z 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-06-01T21:22:25.8793123Z 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-06-01T21:22:25.8803338Z 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-06-01T21:22:25.8808967Z 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-06-01T21:22:25.8815259Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\uniform_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.8821449Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\uniform_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.8827253Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_consecutive.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.8833241Z 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-06-01T21:22:25.8838857Z 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-06-01T21:22:25.8844583Z 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-06-01T21:22:25.8850389Z 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-06-01T21:22:25.8856088Z 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-06-01T21:22:25.8862050Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_dim.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.8868040Z 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-06-01T21:22:25.8873761Z 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-06-01T21:22:25.8879642Z 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-06-01T21:22:25.8885103Z 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-06-01T21:22:25.8890674Z 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-06-01T21:22:25.8896526Z 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-06-01T21:22:25.8902237Z 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-06-01T21:22:25.8908103Z 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-06-01T21:22:25.8913898Z 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-06-01T21:22:25.8919678Z 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-06-01T21:22:25.8925486Z 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-06-01T21:22:25.8931516Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsafe_chunk.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.8937772Z 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-06-01T21:22:25.8943599Z 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-06-01T21:22:25.8949150Z 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-06-01T21:22:25.8954965Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsafe_split.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.8961194Z 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-06-01T21:22:25.8967047Z 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-06-01T21:22:25.8972832Z 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-06-01T21:22:25.8979013Z 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-06-01T21:22:25.8985514Z 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-06-01T21:22:25.9019391Z 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-06-01T21:22:25.9025608Z 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-06-01T21:22:25.9043602Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsqueeze.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.9049716Z 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-06-01T21:22:25.9062060Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsqueeze_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.9068320Z 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-06-01T21:22:25.9074281Z 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-06-01T21:22:25.9080204Z 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-06-01T21:22:25.9086162Z 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-06-01T21:22:25.9092113Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsqueeze_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.9098111Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsqueeze_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.9105164Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bicubic2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.9111218Z 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-06-01T21:22:25.9117622Z 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-06-01T21:22:25.9124227Z 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-06-01T21:22:25.9130833Z 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-06-01T21:22:25.9137404Z 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-06-01T21:22:25.9143924Z 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-06-01T21:22:25.9150012Z 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-06-01T21:22:25.9156145Z 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-06-01T21:22:25.9162703Z 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-06-01T21:22:25.9168489Z 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-06-01T21:22:25.9174641Z 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-06-01T21:22:25.9180495Z 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-06-01T21:22:25.9186505Z 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-06-01T21:22:25.9198907Z 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-06-01T21:22:25.9200309Z 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-06-01T21:22:25.9205865Z 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-06-01T21:22:25.9211936Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bilinear2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.9218147Z 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-06-01T21:22:25.9224560Z 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-06-01T21:22:25.9230338Z 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-06-01T21:22:25.9236190Z 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-06-01T21:22:25.9241965Z 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-06-01T21:22:25.9248508Z 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-06-01T21:22:25.9254023Z 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-06-01T21:22:25.9259762Z 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-06-01T21:22:25.9266042Z 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-06-01T21:22:25.9271874Z 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-06-01T21:22:25.9278330Z 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-06-01T21:22:25.9289262Z 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-06-01T21:22:25.9294879Z 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-06-01T21:22:25.9315321Z 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-06-01T21:22:25.9321415Z 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-06-01T21:22:25.9327293Z 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-06-01T21:22:25.9333268Z 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-06-01T21:22:25.9339033Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_linear1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.9345222Z 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-06-01T21:22:25.9351384Z 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-06-01T21:22:25.9357364Z 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-06-01T21:22:25.9363583Z 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-06-01T21:22:25.9369323Z 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-06-01T21:22:25.9375305Z 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-06-01T21:22:25.9381561Z 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-06-01T21:22:25.9387098Z 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-06-01T21:22:25.9393131Z 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-06-01T21:22:25.9399260Z 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-06-01T21:22:25.9404989Z 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-06-01T21:22:25.9411131Z 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-06-01T21:22:25.9416691Z 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-06-01T21:22:25.9422598Z 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-06-01T21:22:25.9428460Z 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-06-01T21:22:25.9434562Z 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-06-01T21:22:25.9440223Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.9451038Z 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-06-01T21:22:25.9457435Z 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-06-01T21:22:25.9463363Z 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-06-01T21:22:25.9469260Z 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-06-01T21:22:25.9475436Z 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-06-01T21:22:25.9481324Z 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-06-01T21:22:25.9487312Z 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-06-01T21:22:25.9493600Z 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-06-01T21:22:25.9499566Z 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-06-01T21:22:25.9505915Z 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-06-01T21:22:25.9511821Z 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-06-01T21:22:25.9517742Z 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-06-01T21:22:25.9523692Z 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-06-01T21:22:25.9529791Z 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-06-01T21:22:25.9535879Z 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-06-01T21:22:25.9542194Z 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-06-01T21:22:25.9548275Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.9554250Z 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-06-01T21:22:25.9560753Z 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-06-01T21:22:25.9618251Z 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-06-01T21:22:25.9619793Z 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-06-01T21:22:25.9621217Z 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-06-01T21:22:25.9622543Z 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-06-01T21:22:25.9623764Z 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-06-01T21:22:25.9624968Z 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-06-01T21:22:25.9626288Z 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-06-01T21:22:25.9628174Z 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-06-01T21:22:25.9629473Z 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-06-01T21:22:25.9630699Z 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-06-01T21:22:25.9641215Z 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-06-01T21:22:25.9647399Z 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-06-01T21:22:25.9653425Z 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-06-01T21:22:25.9659698Z 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-06-01T21:22:25.9665748Z 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-06-01T21:22:25.9671781Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.9677941Z 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-06-01T21:22:25.9684496Z 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-06-01T21:22:25.9690510Z 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-06-01T21:22:25.9696678Z 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-06-01T21:22:25.9702887Z 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-06-01T21:22:25.9708914Z 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-06-01T21:22:25.9714991Z 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-06-01T21:22:25.9726389Z 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-06-01T21:22:25.9732699Z 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-06-01T21:22:25.9739309Z 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-06-01T21:22:25.9745246Z 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-06-01T21:22:25.9751299Z 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-06-01T21:22:25.9757083Z 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-06-01T21:22:25.9763089Z 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-06-01T21:22:25.9769042Z 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-06-01T21:22:25.9774851Z 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-06-01T21:22:25.9780967Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_trilinear3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.9787033Z 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-06-01T21:22:25.9793350Z 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-06-01T21:22:25.9799281Z 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-06-01T21:22:25.9805550Z 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-06-01T21:22:25.9811369Z 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-06-01T21:22:25.9817347Z 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-06-01T21:22:25.9823316Z 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-06-01T21:22:25.9829194Z 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-06-01T21:22:25.9835395Z 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-06-01T21:22:25.9841557Z 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-06-01T21:22:25.9847407Z 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-06-01T21:22:25.9853360Z 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-06-01T21:22:25.9859156Z 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-06-01T21:22:25.9865205Z 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-06-01T21:22:25.9871324Z 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-06-01T21:22:25.9877253Z 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-06-01T21:22:25.9882905Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\values.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.9888319Z 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-06-01T21:22:25.9893909Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\values_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.9899987Z 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-06-01T21:22:25.9906253Z 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-06-01T21:22:25.9912579Z 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-06-01T21:22:25.9918375Z 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-06-01T21:22:25.9924358Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\values_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.9931100Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\values_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.9937213Z 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-06-01T21:22:25.9943999Z 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-06-01T21:22:25.9950154Z 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-06-01T21:22:25.9956201Z 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-06-01T21:22:25.9961993Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vander.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.9967957Z 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-06-01T21:22:25.9973734Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vander_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.9979769Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vander_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.9985833Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\var.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:25.9991923Z 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-06-01T21:22:25.9997652Z 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-06-01T21:22:26.0003435Z 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-06-01T21:22:26.0009383Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\var_mean.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.0015392Z 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-06-01T21:22:26.0021885Z 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-06-01T21:22:26.0027694Z 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-06-01T21:22:26.0034348Z 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-06-01T21:22:26.0040349Z 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-06-01T21:22:26.0046227Z 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-06-01T21:22:26.0052138Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\var_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.0057769Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\var_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.0063365Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vdot.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.0069056Z 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-06-01T21:22:26.0074740Z 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-06-01T21:22:26.0080850Z 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-06-01T21:22:26.0086705Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vdot_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.0092408Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vdot_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.0097873Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.0103221Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.0108427Z 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-06-01T21:22:26.0114309Z 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-06-01T21:22:26.0120365Z 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-06-01T21:22:26.0126605Z 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-06-01T21:22:26.0132288Z 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-06-01T21:22:26.0138007Z 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-06-01T21:22:26.0143969Z 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-06-01T21:22:26.0149816Z 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-06-01T21:22:26.0155566Z 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-06-01T21:22:26.0161695Z 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-06-01T21:22:26.0167180Z 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-06-01T21:22:26.0173057Z 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-06-01T21:22:26.0178587Z 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-06-01T21:22:26.0184299Z 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-06-01T21:22:26.0195706Z 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-06-01T21:22:26.0201718Z 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-06-01T21:22:26.0212642Z 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-06-01T21:22:26.0218834Z 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-06-01T21:22:26.0224901Z 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-06-01T21:22:26.0230747Z 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-06-01T21:22:26.0236540Z 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-06-01T21:22:26.0242316Z 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-06-01T21:22:26.0248426Z 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-06-01T21:22:26.0254232Z 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-06-01T21:22:26.0259713Z 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-06-01T21:22:26.0265769Z 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-06-01T21:22:26.0271269Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.0277420Z 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-06-01T21:22:26.0287334Z 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-06-01T21:22:26.0293177Z 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-06-01T21:22:26.0299466Z 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-06-01T21:22:26.0305443Z 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-06-01T21:22:26.0311402Z 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-06-01T21:22:26.0317206Z 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-06-01T21:22:26.0323056Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.0328649Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.0334020Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vsplit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.0339692Z 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-06-01T21:22:26.0350911Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vsplit_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.0356526Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vsplit_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.0362168Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vstack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.0367667Z 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-06-01T21:22:26.0373279Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vstack_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.0378714Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vstack_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.0384555Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\where.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.0390313Z 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-06-01T21:22:26.0396023Z 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-06-01T21:22:26.0401612Z 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-06-01T21:22:26.0407240Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\where_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.0412914Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\where_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.0418561Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xlogy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.0424546Z 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-06-01T21:22:26.0430347Z 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-06-01T21:22:26.0435901Z 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-06-01T21:22:26.0441945Z 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-06-01T21:22:26.0447651Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xlogy_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.0453532Z 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-06-01T21:22:26.0459399Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xlogy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.0465377Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xlogy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.0471115Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.0476935Z 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-06-01T21:22:26.0482574Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.0488321Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.0493661Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zero.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.0499010Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zeros.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.0505062Z 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-06-01T21:22:26.0510684Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zeros_like.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.0516676Z 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-06-01T21:22:26.0522967Z 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-06-01T21:22:26.0528663Z 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-06-01T21:22:26.0534612Z 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-06-01T21:22:26.0540543Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zeros_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.0546550Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zeros_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.0552685Z 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-06-01T21:22:26.0558460Z 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-06-01T21:22:26.0564566Z 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-06-01T21:22:26.0570329Z 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-06-01T21:22:26.0576103Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zero_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.0582036Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zero_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.0587684Z 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-06-01T21:22:26.0593564Z 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-06-01T21:22:26.0599869Z 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-06-01T21:22:26.0606025Z 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-06-01T21:22:26.0612033Z 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-06-01T21:22:26.0618125Z 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-06-01T21:22:26.0624166Z 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-06-01T21:22:26.0658035Z 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-06-01T21:22:26.0665267Z 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-06-01T21:22:26.0671650Z 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-06-01T21:22:26.0678124Z 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-06-01T21:22:26.0684375Z 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-06-01T21:22:26.0690328Z 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-06-01T21:22:26.0696442Z 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-06-01T21:22:26.0702879Z 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-06-01T21:22:26.0708886Z 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-06-01T21:22:26.0714973Z 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-06-01T21:22:26.0720955Z 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-06-01T21:22:26.0726807Z 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-06-01T21:22:26.0732991Z 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-06-01T21:22:26.0739081Z 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-06-01T21:22:26.0745094Z 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-06-01T21:22:26.0751007Z 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-06-01T21:22:26.0757058Z 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-06-01T21:22:26.0763037Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_addmm_activation.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.0773650Z 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-06-01T21:22:26.0779423Z 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-06-01T21:22:26.0785461Z 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-06-01T21:22:26.0791190Z 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-06-01T21:22:26.0797062Z 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-06-01T21:22:26.0803612Z 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-06-01T21:22:26.0809466Z 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-06-01T21:22:26.0815681Z 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-06-01T21:22:26.0821879Z 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-06-01T21:22:26.0827591Z 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-06-01T21:22:26.0836608Z 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-06-01T21:22:26.0842437Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_add_relu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.0848522Z 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-06-01T21:22:26.0854336Z 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-06-01T21:22:26.0860392Z 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-06-01T21:22:26.0866462Z 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-06-01T21:22:26.0872493Z 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-06-01T21:22:26.0878551Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_aminmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.0884641Z 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-06-01T21:22:26.0890512Z 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-06-01T21:22:26.0896320Z 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-06-01T21:22:26.0902439Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_aminmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.0908378Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_aminmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.0914587Z 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-06-01T21:22:26.0920938Z 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-06-01T21:22:26.0926956Z 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-06-01T21:22:26.0933010Z 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-06-01T21:22:26.0939468Z 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-06-01T21:22:26.0945734Z 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-06-01T21:22:26.0951495Z 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-06-01T21:22:26.0958176Z 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-06-01T21:22:26.0963979Z 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-06-01T21:22:26.0970155Z 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-06-01T21:22:26.0976164Z 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-06-01T21:22:26.0982400Z 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-06-01T21:22:26.0988377Z 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-06-01T21:22:26.0994271Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_assert_async.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.1000275Z 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-06-01T21:22:26.1006165Z 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-06-01T21:22:26.1012183Z 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-06-01T21:22:26.1017941Z 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-06-01T21:22:26.1024058Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_assert_scalar.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.1030230Z 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-06-01T21:22:26.1035982Z 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-06-01T21:22:26.1041684Z 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-06-01T21:22:26.1047712Z 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-06-01T21:22:26.1054085Z 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-06-01T21:22:26.1060118Z 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-06-01T21:22:26.1066169Z 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-06-01T21:22:26.1072107Z 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-06-01T21:22:26.1077817Z 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-06-01T21:22:26.1083651Z 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-06-01T21:22:26.1089725Z 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-06-01T21:22:26.1095351Z 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-06-01T21:22:26.1101351Z 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-06-01T21:22:26.1107498Z 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-06-01T21:22:26.1113257Z 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-06-01T21:22:26.1119406Z 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-06-01T21:22:26.1125546Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.1131509Z 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-06-01T21:22:26.1137156Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.1143280Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.1149015Z 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-06-01T21:22:26.1154789Z 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-06-01T21:22:26.1161005Z 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-06-01T21:22:26.1166859Z 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-06-01T21:22:26.1172732Z 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-06-01T21:22:26.1207170Z 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-06-01T21:22:26.1212737Z 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-06-01T21:22:26.1218690Z 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-06-01T21:22:26.1224521Z 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-06-01T21:22:26.1230531Z 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-06-01T21:22:26.1236276Z 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-06-01T21:22:26.1242001Z 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-06-01T21:22:26.1247817Z 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-06-01T21:22:26.1254058Z 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-06-01T21:22:26.1260878Z 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-06-01T21:22:26.1267152Z 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-06-01T21:22:26.1272911Z 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-06-01T21:22:26.1278636Z 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-06-01T21:22:26.1295517Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Byte.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.1302122Z 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-06-01T21:22:26.1307963Z 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-06-01T21:22:26.1313516Z 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-06-01T21:22:26.1319265Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Char.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.1325259Z 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-06-01T21:22:26.1331081Z 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-06-01T21:22:26.1336758Z 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-06-01T21:22:26.1343319Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Double.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.1349572Z 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-06-01T21:22:26.1355281Z 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-06-01T21:22:26.1360686Z 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-06-01T21:22:26.1366499Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Float.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.1373059Z 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-06-01T21:22:26.1378821Z 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-06-01T21:22:26.1384631Z 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-06-01T21:22:26.1390633Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Half.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.1396536Z 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-06-01T21:22:26.1402208Z 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-06-01T21:22:26.1407959Z 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-06-01T21:22:26.1436647Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Int.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.1442677Z 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-06-01T21:22:26.1448754Z 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-06-01T21:22:26.1454548Z 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-06-01T21:22:26.1460333Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Long.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.1466551Z 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-06-01T21:22:26.1472264Z 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-06-01T21:22:26.1478119Z 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-06-01T21:22:26.1483827Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Short.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.1489835Z 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-06-01T21:22:26.1495673Z 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-06-01T21:22:26.1501208Z 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-06-01T21:22:26.1507080Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cdist_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.1513086Z 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-06-01T21:22:26.1518677Z 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-06-01T21:22:26.1524451Z 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-06-01T21:22:26.1530129Z 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-06-01T21:22:26.1536065Z 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-06-01T21:22:26.1542162Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cdist_forward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.1548345Z 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-06-01T21:22:26.1554170Z 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-06-01T21:22:26.1560141Z 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-06-01T21:22:26.1566023Z 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-06-01T21:22:26.1571842Z 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-06-01T21:22:26.1578167Z 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-06-01T21:22:26.1584455Z 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-06-01T21:22:26.1590287Z 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-06-01T21:22:26.1596205Z 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-06-01T21:22:26.1602189Z 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-06-01T21:22:26.1614217Z 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-06-01T21:22:26.1615817Z 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-06-01T21:22:26.1622100Z 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-06-01T21:22:26.1627744Z 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-06-01T21:22:26.1633362Z 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-06-01T21:22:26.1639824Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_chunk_cat.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.1646622Z 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-06-01T21:22:26.1653870Z 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-06-01T21:22:26.1660410Z 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-06-01T21:22:26.1666386Z 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-06-01T21:22:26.1672550Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_coalesce.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.1679082Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_coalesced.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.1685367Z 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-06-01T21:22:26.1691316Z 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-06-01T21:22:26.1698179Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_coalesced_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.1704547Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_coalesced_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.1710890Z 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-06-01T21:22:26.1716825Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_coalesce_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.1722730Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_coalesce_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.1728938Z 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-06-01T21:22:26.1735155Z 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-06-01T21:22:26.1741256Z 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-06-01T21:22:26.1747064Z 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-06-01T21:22:26.1752763Z 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-06-01T21:22:26.1759213Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.1764742Z 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-06-01T21:22:26.1770304Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.1776393Z 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-06-01T21:22:26.1782511Z 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-06-01T21:22:26.1788335Z 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-06-01T21:22:26.1794149Z 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-06-01T21:22:26.1799841Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.1805358Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.1811191Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj_physical.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.1817237Z 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-06-01T21:22:26.1823243Z 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-06-01T21:22:26.1829012Z 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-06-01T21:22:26.1834954Z 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-06-01T21:22:26.1841161Z 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-06-01T21:22:26.1846916Z 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-06-01T21:22:26.1853057Z 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-06-01T21:22:26.1858991Z 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-06-01T21:22:26.1864992Z 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-06-01T21:22:26.1870851Z 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-06-01T21:22:26.1876671Z 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-06-01T21:22:26.1882730Z 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-06-01T21:22:26.1889075Z 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-06-01T21:22:26.1894859Z 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-06-01T21:22:26.1900773Z 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-06-01T21:22:26.1906786Z 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-06-01T21:22:26.1913053Z 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-06-01T21:22:26.1919117Z 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-06-01T21:22:26.1925479Z 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-06-01T21:22:26.1930915Z 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-06-01T21:22:26.1936799Z 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-06-01T21:22:26.1942765Z 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-06-01T21:22:26.1949110Z 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-06-01T21:22:26.1955157Z 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-06-01T21:22:26.1960991Z 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-06-01T21:22:26.1967050Z 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-06-01T21:22:26.1972809Z 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-06-01T21:22:26.1978772Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convolution.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.1985469Z 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-06-01T21:22:26.1991572Z 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-06-01T21:22:26.1998507Z 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-06-01T21:22:26.2004957Z 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-06-01T21:22:26.2010953Z 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-06-01T21:22:26.2019256Z 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-06-01T21:22:26.2025797Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convolution_mode.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.2032127Z 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-06-01T21:22:26.2038218Z 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-06-01T21:22:26.2044521Z 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-06-01T21:22:26.2050521Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convolution_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.2056559Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convolution_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.2063060Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conv_depthwise2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.2069185Z 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-06-01T21:22:26.2075024Z 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-06-01T21:22:26.2080799Z 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-06-01T21:22:26.2086615Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_copy_from.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.2092416Z 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-06-01T21:22:26.2104432Z 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-06-01T21:22:26.2110659Z 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-06-01T21:22:26.2116421Z 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-06-01T21:22:26.2122517Z 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-06-01T21:22:26.2128489Z 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-06-01T21:22:26.2134379Z 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-06-01T21:22:26.2140492Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cslt_compress.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.2147309Z 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-06-01T21:22:26.2154044Z 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-06-01T21:22:26.2160424Z 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-06-01T21:22:26.2167203Z 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-06-01T21:22:26.2173557Z 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-06-01T21:22:26.2179474Z 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-06-01T21:22:26.2185699Z 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-06-01T21:22:26.2191775Z 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-06-01T21:22:26.2197942Z 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-06-01T21:22:26.2204117Z 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-06-01T21:22:26.2209916Z 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-06-01T21:22:26.2215535Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_ctc_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.2221506Z 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-06-01T21:22:26.2227595Z 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-06-01T21:22:26.2233332Z 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-06-01T21:22:26.2239346Z 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-06-01T21:22:26.2245225Z 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-06-01T21:22:26.2251185Z 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-06-01T21:22:26.2257318Z 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-06-01T21:22:26.2263169Z 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-06-01T21:22:26.2268968Z 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-06-01T21:22:26.2274890Z 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-06-01T21:22:26.2316051Z 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-06-01T21:22:26.2321853Z 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-06-01T21:22:26.2327805Z 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-06-01T21:22:26.2333654Z 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-06-01T21:22:26.2339411Z 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-06-01T21:22:26.2345371Z 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-06-01T21:22:26.2351241Z 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-06-01T21:22:26.2357308Z 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-06-01T21:22:26.2363225Z 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-06-01T21:22:26.2369034Z 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-06-01T21:22:26.2374906Z 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-06-01T21:22:26.2380721Z 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-06-01T21:22:26.2386913Z 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-06-01T21:22:26.2392889Z 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-06-01T21:22:26.2398732Z 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-06-01T21:22:26.2404626Z 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-06-01T21:22:26.2410461Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_rnn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.2416387Z 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-06-01T21:22:26.2423075Z 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-06-01T21:22:26.2429126Z 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-06-01T21:22:26.2439999Z 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-06-01T21:22:26.2445887Z 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-06-01T21:22:26.2452082Z 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-06-01T21:22:26.2458233Z 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-06-01T21:22:26.2464313Z 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-06-01T21:22:26.2470817Z 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-06-01T21:22:26.2476803Z 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-06-01T21:22:26.2482773Z 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-06-01T21:22:26.2488848Z 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-06-01T21:22:26.2494768Z 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-06-01T21:22:26.2501095Z 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-06-01T21:22:26.2507501Z 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-06-01T21:22:26.2513658Z 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-06-01T21:22:26.2519473Z 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-06-01T21:22:26.2525160Z 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-06-01T21:22:26.2531052Z 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-06-01T21:22:26.2537222Z 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-06-01T21:22:26.2543477Z 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-06-01T21:22:26.2549198Z 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-06-01T21:22:26.2555172Z 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-06-01T21:22:26.2561358Z 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-06-01T21:22:26.2567302Z 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-06-01T21:22:26.2573082Z 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-06-01T21:22:26.2579216Z 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-06-01T21:22:26.2585726Z 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-06-01T21:22:26.2591668Z 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-06-01T21:22:26.2597462Z 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-06-01T21:22:26.2603643Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cummax_helper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.2609696Z 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-06-01T21:22:26.2615488Z 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-06-01T21:22:26.2621478Z 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-06-01T21:22:26.2627312Z 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-06-01T21:22:26.2633230Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cummin_helper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.2639761Z 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-06-01T21:22:26.2646392Z 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-06-01T21:22:26.2653097Z 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-06-01T21:22:26.2666536Z 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-06-01T21:22:26.2672649Z 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-06-01T21:22:26.2678772Z 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-06-01T21:22:26.2684707Z 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-06-01T21:22:26.2690195Z 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-06-01T21:22:26.2695961Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dimI.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.2701756Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dimI_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.2707206Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dimI_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.2713011Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dimV.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.2718323Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dimV_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.2723761Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dimV_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.2729601Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dim_arange.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.2735591Z 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-06-01T21:22:26.2741257Z 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-06-01T21:22:26.2747081Z 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-06-01T21:22:26.2752912Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dirichlet_grad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.2758941Z 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-06-01T21:22:26.2764849Z 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-06-01T21:22:26.2770585Z 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-06-01T21:22:26.2776455Z 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-06-01T21:22:26.2782327Z 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-06-01T21:22:26.2788291Z 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-06-01T21:22:26.2794123Z 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-06-01T21:22:26.2800067Z 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-06-01T21:22:26.2805651Z 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-06-01T21:22:26.2811279Z 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-06-01T21:22:26.2817380Z 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-06-01T21:22:26.2823893Z 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-06-01T21:22:26.2829764Z 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-06-01T21:22:26.2835530Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficientzerotensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.2841613Z 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-06-01T21:22:26.2847331Z 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-06-01T21:22:26.2853362Z 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-06-01T21:22:26.2859351Z 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-06-01T21:22:26.2865615Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficientzerotensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.2871646Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficientzerotensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.2877479Z 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-06-01T21:22:26.2883583Z 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-06-01T21:22:26.2889833Z 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-06-01T21:22:26.2895625Z 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-06-01T21:22:26.2902011Z 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-06-01T21:22:26.2908575Z 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-06-01T21:22:26.2914540Z 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-06-01T21:22:26.2920542Z 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-06-01T21:22:26.2926648Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.2932579Z 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-06-01T21:22:26.2938967Z 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-06-01T21:22:26.2945158Z 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-06-01T21:22:26.2950952Z 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-06-01T21:22:26.2974320Z 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-06-01T21:22:26.2980652Z 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-06-01T21:22:26.2986577Z 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-06-01T21:22:26.2992859Z 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-06-01T21:22:26.2999363Z 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-06-01T21:22:26.3005532Z 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-06-01T21:22:26.3011461Z 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-06-01T21:22:26.3017793Z 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-06-01T21:22:26.3024031Z 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-06-01T21:22:26.3030251Z 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-06-01T21:22:26.3036229Z 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-06-01T21:22:26.3042688Z 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-06-01T21:22:26.3048546Z 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-06-01T21:22:26.3055084Z 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-06-01T21:22:26.3061227Z 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-06-01T21:22:26.3067718Z 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-06-01T21:22:26.3073932Z 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-06-01T21:22:26.3080293Z 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-06-01T21:22:26.3086581Z 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-06-01T21:22:26.3093096Z 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-06-01T21:22:26.3099701Z 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-06-01T21:22:26.3106143Z 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-06-01T21:22:26.3112330Z 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-06-01T21:22:26.3118474Z 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-06-01T21:22:26.3124718Z 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-06-01T21:22:26.3131518Z 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-06-01T21:22:26.3137964Z 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-06-01T21:22:26.3144359Z 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-06-01T21:22:26.3151263Z 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-06-01T21:22:26.3158548Z 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-06-01T21:22:26.3165804Z 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-06-01T21:22:26.3172504Z 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-06-01T21:22:26.3178598Z 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-06-01T21:22:26.3185432Z 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-06-01T21:22:26.3192187Z 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-06-01T21:22:26.3198516Z 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-06-01T21:22:26.3204605Z 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-06-01T21:22:26.3210839Z 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-06-01T21:22:26.3217250Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_euclidean_dist.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.3223691Z 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-06-01T21:22:26.3229764Z 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-06-01T21:22:26.3235848Z 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-06-01T21:22:26.3241741Z 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-06-01T21:22:26.3247817Z 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-06-01T21:22:26.3253978Z 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-06-01T21:22:26.3260758Z 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-06-01T21:22:26.3267369Z 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-06-01T21:22:26.3273799Z 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-06-01T21:22:26.3280184Z 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-06-01T21:22:26.3293540Z 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-06-01T21:22:26.3300062Z 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-06-01T21:22:26.3306302Z 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-06-01T21:22:26.3312437Z 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-06-01T21:22:26.3318954Z 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-06-01T21:22:26.3325201Z 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-06-01T21:22:26.3331616Z 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-06-01T21:22:26.3337579Z 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-06-01T21:22:26.3343965Z 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-06-01T21:22:26.3350014Z 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-06-01T21:22:26.3356323Z 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-06-01T21:22:26.3362593Z 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-06-01T21:22:26.3369028Z 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-06-01T21:22:26.3375463Z 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-06-01T21:22:26.3381810Z 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-06-01T21:22:26.3387972Z 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-06-01T21:22:26.3394516Z 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-06-01T21:22:26.3400763Z 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-06-01T21:22:26.3406884Z 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-06-01T21:22:26.3413829Z 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-06-01T21:22:26.3420025Z 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-06-01T21:22:26.3426221Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_c2c.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.3432006Z 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-06-01T21:22:26.3437892Z 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-06-01T21:22:26.3443831Z 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-06-01T21:22:26.3450112Z 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-06-01T21:22:26.3456309Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_c2r.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.3462241Z 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-06-01T21:22:26.3468150Z 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-06-01T21:22:26.3474124Z 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-06-01T21:22:26.3480333Z 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-06-01T21:22:26.3486527Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_r2c.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.3492408Z 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-06-01T21:22:26.3498579Z 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-06-01T21:22:26.3504790Z 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-06-01T21:22:26.3511264Z 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-06-01T21:22:26.3517168Z 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-06-01T21:22:26.3523232Z 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-06-01T21:22:26.3529399Z 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-06-01T21:22:26.3535483Z 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-06-01T21:22:26.3541590Z 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-06-01T21:22:26.3547779Z 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-06-01T21:22:26.3553848Z 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-06-01T21:22:26.3559772Z 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-06-01T21:22:26.3565765Z 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-06-01T21:22:26.3571857Z 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-06-01T21:22:26.3578342Z 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-06-01T21:22:26.3584635Z 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-06-01T21:22:26.3590778Z 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-06-01T21:22:26.3596759Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foobar.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.3602443Z 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-06-01T21:22:26.3608442Z 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-06-01T21:22:26.3614626Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foobar_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.3620753Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foobar_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.3627114Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_abs.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.3633458Z 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-06-01T21:22:26.3640436Z 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-06-01T21:22:26.3646693Z 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-06-01T21:22:26.3653531Z 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-06-01T21:22:26.3660052Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_acos.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.3666553Z 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-06-01T21:22:26.3672540Z 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-06-01T21:22:26.3686639Z 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-06-01T21:22:26.3692833Z 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-06-01T21:22:26.3698997Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_add.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.3705101Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_addcdiv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.3711635Z 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-06-01T21:22:26.3717872Z 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-06-01T21:22:26.3724130Z 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-06-01T21:22:26.3729957Z 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-06-01T21:22:26.3736026Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_addcmul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.3742338Z 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-06-01T21:22:26.3748085Z 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-06-01T21:22:26.3753961Z 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-06-01T21:22:26.3760148Z 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-06-01T21:22:26.3766245Z 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-06-01T21:22:26.3772127Z 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-06-01T21:22:26.3778915Z 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-06-01T21:22:26.3785154Z 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-06-01T21:22:26.3791162Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_asin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.3797827Z 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-06-01T21:22:26.3804110Z 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-06-01T21:22:26.3810153Z 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-06-01T21:22:26.3816103Z 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-06-01T21:22:26.3822379Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_atan.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.3828820Z 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-06-01T21:22:26.3834831Z 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-06-01T21:22:26.3840799Z 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-06-01T21:22:26.3847256Z 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-06-01T21:22:26.3853312Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_ceil.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.3860416Z 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-06-01T21:22:26.3866749Z 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-06-01T21:22:26.3873136Z 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-06-01T21:22:26.3879629Z 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-06-01T21:22:26.3885811Z 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-06-01T21:22:26.3892510Z 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-06-01T21:22:26.3899414Z 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-06-01T21:22:26.3905112Z 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-06-01T21:22:26.3911143Z 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-06-01T21:22:26.3917458Z 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-06-01T21:22:26.3924103Z 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-06-01T21:22:26.3930569Z 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-06-01T21:22:26.3973301Z 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-06-01T21:22:26.3979275Z 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-06-01T21:22:26.3985928Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.3992655Z 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-06-01T21:22:26.3999637Z 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-06-01T21:22:26.4005905Z 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-06-01T21:22:26.4011968Z 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-06-01T21:22:26.4018281Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_cos.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.4024551Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_cosh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.4030845Z 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-06-01T21:22:26.4036689Z 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-06-01T21:22:26.4042875Z 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-06-01T21:22:26.4048961Z 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-06-01T21:22:26.4055357Z 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-06-01T21:22:26.4061509Z 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-06-01T21:22:26.4067370Z 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-06-01T21:22:26.4073370Z 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-06-01T21:22:26.4079698Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_div.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.4086114Z 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-06-01T21:22:26.4099634Z 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-06-01T21:22:26.4106615Z 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-06-01T21:22:26.4112540Z 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-06-01T21:22:26.4118735Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_erf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.4124932Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_erfc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.4131255Z 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-06-01T21:22:26.4137356Z 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-06-01T21:22:26.4143353Z 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-06-01T21:22:26.4149528Z 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-06-01T21:22:26.4155641Z 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-06-01T21:22:26.4161441Z 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-06-01T21:22:26.4167398Z 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-06-01T21:22:26.4173070Z 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-06-01T21:22:26.4179148Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_exp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.4185239Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_expm1.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.4191634Z 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-06-01T21:22:26.4198177Z 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-06-01T21:22:26.4204490Z 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-06-01T21:22:26.4210934Z 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-06-01T21:22:26.4217921Z 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-06-01T21:22:26.4224438Z 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-06-01T21:22:26.4231207Z 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-06-01T21:22:26.4237682Z 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-06-01T21:22:26.4244273Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_floor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.4250824Z 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-06-01T21:22:26.4256822Z 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-06-01T21:22:26.4263078Z 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-06-01T21:22:26.4269110Z 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-06-01T21:22:26.4276598Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_frac.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.4284275Z 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-06-01T21:22:26.4290047Z 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-06-01T21:22:26.4296143Z 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-06-01T21:22:26.4302141Z 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-06-01T21:22:26.4308435Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_lerp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.4314599Z 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-06-01T21:22:26.4320843Z 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-06-01T21:22:26.4326869Z 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-06-01T21:22:26.4332736Z 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-06-01T21:22:26.4338653Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_lgamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.4345027Z 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-06-01T21:22:26.4351104Z 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-06-01T21:22:26.4356933Z 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-06-01T21:22:26.4362787Z 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-06-01T21:22:26.4369282Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.4375596Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log10.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.4382254Z 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-06-01T21:22:26.4388287Z 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-06-01T21:22:26.4394178Z 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-06-01T21:22:26.4400182Z 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-06-01T21:22:26.4406134Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log1p.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.4412561Z 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-06-01T21:22:26.4418425Z 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-06-01T21:22:26.4424297Z 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-06-01T21:22:26.4430442Z 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-06-01T21:22:26.4436364Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.4442578Z 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-06-01T21:22:26.4448591Z 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-06-01T21:22:26.4454442Z 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-06-01T21:22:26.4460283Z 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-06-01T21:22:26.4467270Z 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-06-01T21:22:26.4473103Z 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-06-01T21:22:26.4479344Z 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-06-01T21:22:26.4485449Z 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-06-01T21:22:26.4491435Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_max.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.4497320Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_maximum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.4503748Z 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-06-01T21:22:26.4509588Z 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-06-01T21:22:26.4515811Z 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-06-01T21:22:26.4521895Z 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-06-01T21:22:26.4527932Z 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-06-01T21:22:26.4534644Z 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-06-01T21:22:26.4540628Z 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-06-01T21:22:26.4546627Z 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-06-01T21:22:26.4552752Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_minimum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.4558997Z 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-06-01T21:22:26.4564805Z 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-06-01T21:22:26.4570818Z 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-06-01T21:22:26.4577034Z 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-06-01T21:22:26.4583384Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_mul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.4589553Z 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-06-01T21:22:26.4595357Z 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-06-01T21:22:26.4601327Z 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-06-01T21:22:26.4607365Z 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-06-01T21:22:26.4613726Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_neg.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.4619863Z 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-06-01T21:22:26.4625779Z 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-06-01T21:22:26.4631503Z 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-06-01T21:22:26.4637389Z 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-06-01T21:22:26.4643388Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.4649717Z 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-06-01T21:22:26.4655664Z 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-06-01T21:22:26.4661915Z 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-06-01T21:22:26.4667718Z 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-06-01T21:22:26.4673698Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_pow.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.4681163Z 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-06-01T21:22:26.4687097Z 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-06-01T21:22:26.4694055Z 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-06-01T21:22:26.4701280Z 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-06-01T21:22:26.4708126Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_reciprocal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.4715346Z 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-06-01T21:22:26.4721635Z 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-06-01T21:22:26.4727924Z 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-06-01T21:22:26.4734324Z 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-06-01T21:22:26.4740874Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_round.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.4747489Z 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-06-01T21:22:26.4754774Z 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-06-01T21:22:26.4761095Z 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-06-01T21:22:26.4767266Z 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-06-01T21:22:26.4773221Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_rsqrt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.4780105Z 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-06-01T21:22:26.4786593Z 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-06-01T21:22:26.4792711Z 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-06-01T21:22:26.4798803Z 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-06-01T21:22:26.4804740Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sigmoid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.4811573Z 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-06-01T21:22:26.4817356Z 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-06-01T21:22:26.4823340Z 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-06-01T21:22:26.4829497Z 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-06-01T21:22:26.4835560Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sign.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.4870520Z 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-06-01T21:22:26.4876561Z 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-06-01T21:22:26.4882329Z 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-06-01T21:22:26.4888260Z 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-06-01T21:22:26.4894268Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.4900433Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sinh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.4906698Z 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-06-01T21:22:26.4912569Z 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-06-01T21:22:26.4918553Z 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-06-01T21:22:26.4924330Z 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-06-01T21:22:26.4936478Z 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-06-01T21:22:26.4942410Z 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-06-01T21:22:26.4948660Z 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-06-01T21:22:26.4955170Z 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-06-01T21:22:26.4961107Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sqrt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.4967591Z 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-06-01T21:22:26.4973729Z 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-06-01T21:22:26.4979901Z 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-06-01T21:22:26.4986045Z 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-06-01T21:22:26.4992387Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sub.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.4998950Z 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-06-01T21:22:26.5004993Z 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-06-01T21:22:26.5011054Z 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-06-01T21:22:26.5017055Z 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-06-01T21:22:26.5023338Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_tan.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.5029443Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_tanh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.5036141Z 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-06-01T21:22:26.5042314Z 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-06-01T21:22:26.5048503Z 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-06-01T21:22:26.5054811Z 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-06-01T21:22:26.5061188Z 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-06-01T21:22:26.5067204Z 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-06-01T21:22:26.5073478Z 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-06-01T21:22:26.5079837Z 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-06-01T21:22:26.5085916Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_trunc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.5092293Z 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-06-01T21:22:26.5098500Z 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-06-01T21:22:26.5105127Z 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-06-01T21:22:26.5111304Z 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-06-01T21:22:26.5117846Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_zero.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.5124442Z 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-06-01T21:22:26.5131165Z 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-06-01T21:22:26.5137873Z 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-06-01T21:22:26.5144570Z 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-06-01T21:22:26.5150729Z 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-06-01T21:22:26.5157171Z 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-06-01T21:22:26.5164177Z 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-06-01T21:22:26.5170432Z 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-06-01T21:22:26.5177408Z 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-06-01T21:22:26.5184885Z 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-06-01T21:22:26.5191216Z 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-06-01T21:22:26.5198459Z 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-06-01T21:22:26.5205112Z 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-06-01T21:22:26.5211725Z 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-06-01T21:22:26.5217948Z 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-06-01T21:22:26.5224967Z 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-06-01T21:22:26.5231382Z 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-06-01T21:22:26.5237889Z 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-06-01T21:22:26.5244501Z 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-06-01T21:22:26.5250795Z 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-06-01T21:22:26.5257032Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adagrad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.5263769Z 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-06-01T21:22:26.5270069Z 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-06-01T21:22:26.5276416Z 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-06-01T21:22:26.5282478Z 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-06-01T21:22:26.5288398Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adam.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.5294625Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adamw.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.5301308Z 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-06-01T21:22:26.5307373Z 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-06-01T21:22:26.5313717Z 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-06-01T21:22:26.5320020Z 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-06-01T21:22:26.5326075Z 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-06-01T21:22:26.5332392Z 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-06-01T21:22:26.5338381Z 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-06-01T21:22:26.5344543Z 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-06-01T21:22:26.5350627Z 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-06-01T21:22:26.5356595Z 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-06-01T21:22:26.5363227Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_dropout.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.5375558Z 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-06-01T21:22:26.5376728Z 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-06-01T21:22:26.5381524Z 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-06-01T21:22:26.5387887Z 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-06-01T21:22:26.5394129Z 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-06-01T21:22:26.5400472Z 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-06-01T21:22:26.5406678Z 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-06-01T21:22:26.5412995Z 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-06-01T21:22:26.5419202Z 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-06-01T21:22:26.5425160Z 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-06-01T21:22:26.5431353Z 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-06-01T21:22:26.5438970Z 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-06-01T21:22:26.5444713Z 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-06-01T21:22:26.5450565Z 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-06-01T21:22:26.5456674Z 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-06-01T21:22:26.5463023Z 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-06-01T21:22:26.5468961Z 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-06-01T21:22:26.5475181Z 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-06-01T21:22:26.5482005Z 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-06-01T21:22:26.5488522Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_sgd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.5494926Z 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-06-01T21:22:26.5501218Z 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-06-01T21:22:26.5507386Z 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-06-01T21:22:26.5513501Z 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-06-01T21:22:26.5519658Z 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-06-01T21:22:26.5526220Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fw_primal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.5532235Z 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-06-01T21:22:26.5538112Z 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-06-01T21:22:26.5544730Z 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-06-01T21:22:26.5551210Z 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-06-01T21:22:26.5557391Z 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-06-01T21:22:26.5563711Z 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-06-01T21:22:26.5569889Z 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-06-01T21:22:26.5575894Z 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-06-01T21:22:26.5582356Z 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-06-01T21:22:26.5588470Z 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-06-01T21:22:26.5594408Z 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-06-01T21:22:26.5600711Z 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-06-01T21:22:26.5607027Z 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-06-01T21:22:26.5612900Z 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-06-01T21:22:26.5650276Z 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-06-01T21:22:26.5656484Z 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-06-01T21:22:26.5663011Z 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-06-01T21:22:26.5670497Z 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-06-01T21:22:26.5677288Z 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-06-01T21:22:26.5683665Z 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-06-01T21:22:26.5689695Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_grouped_mm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.5695978Z 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-06-01T21:22:26.5702399Z 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-06-01T21:22:26.5708538Z 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-06-01T21:22:26.5714669Z 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-06-01T21:22:26.5721011Z 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-06-01T21:22:26.5727220Z 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-06-01T21:22:26.5733023Z 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-06-01T21:22:26.5738752Z 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-06-01T21:22:26.5745562Z 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-06-01T21:22:26.5751796Z 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-06-01T21:22:26.5757697Z 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-06-01T21:22:26.5763486Z 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-06-01T21:22:26.5769941Z 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-06-01T21:22:26.5775781Z 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-06-01T21:22:26.5782124Z 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-06-01T21:22:26.5787940Z 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-06-01T21:22:26.5794072Z 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-06-01T21:22:26.5800767Z 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-06-01T21:22:26.5806719Z 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-06-01T21:22:26.5812824Z 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-06-01T21:22:26.5819267Z 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-06-01T21:22:26.5825369Z 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-06-01T21:22:26.5831874Z 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-06-01T21:22:26.5837774Z 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-06-01T21:22:26.5844058Z 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-06-01T21:22:26.5850144Z 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-06-01T21:22:26.5856407Z 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-06-01T21:22:26.5862630Z 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-06-01T21:22:26.5868773Z 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-06-01T21:22:26.5874674Z 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-06-01T21:22:26.5880729Z 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-06-01T21:22:26.5886885Z 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-06-01T21:22:26.5892963Z 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-06-01T21:22:26.5898914Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.5904567Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_indices_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.5910928Z 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-06-01T21:22:26.5917030Z 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-06-01T21:22:26.5922819Z 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-06-01T21:22:26.5928889Z 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-06-01T21:22:26.5935362Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_indices_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.5940969Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_indices_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.5947122Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_int_mm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.5952748Z 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-06-01T21:22:26.5958811Z 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-06-01T21:22:26.5964697Z 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-06-01T21:22:26.5970941Z 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-06-01T21:22:26.5977206Z 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-06-01T21:22:26.5983833Z 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-06-01T21:22:26.5989635Z 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-06-01T21:22:26.5995645Z 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-06-01T21:22:26.6001804Z 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-06-01T21:22:26.6008038Z 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-06-01T21:22:26.6013849Z 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-06-01T21:22:26.6019602Z 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-06-01T21:22:26.6025967Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_is_zerotensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.6032398Z 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-06-01T21:22:26.6038141Z 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-06-01T21:22:26.6044404Z 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-06-01T21:22:26.6050501Z 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-06-01T21:22:26.6056416Z 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-06-01T21:22:26.6062703Z 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-06-01T21:22:26.6069273Z 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-06-01T21:22:26.6075284Z 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-06-01T21:22:26.6081283Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_lazy_clone.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.6087331Z 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-06-01T21:22:26.6093499Z 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-06-01T21:22:26.6099663Z 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-06-01T21:22:26.6105765Z 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-06-01T21:22:26.6111871Z 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-06-01T21:22:26.6117684Z 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-06-01T21:22:26.6123351Z 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-06-01T21:22:26.6129381Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_det.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.6135845Z 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-06-01T21:22:26.6146680Z 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-06-01T21:22:26.6152648Z 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-06-01T21:22:26.6158602Z 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-06-01T21:22:26.6164543Z 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-06-01T21:22:26.6171047Z 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-06-01T21:22:26.6177418Z 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-06-01T21:22:26.6183579Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_eigh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.6190261Z 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-06-01T21:22:26.6196509Z 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-06-01T21:22:26.6202468Z 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-06-01T21:22:26.6208740Z 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-06-01T21:22:26.6214858Z 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-06-01T21:22:26.6220843Z 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-06-01T21:22:26.6226881Z 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-06-01T21:22:26.6233214Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_eigvals.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.6239198Z 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-06-01T21:22:26.6245265Z 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-06-01T21:22:26.6251081Z 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-06-01T21:22:26.6256707Z 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-06-01T21:22:26.6262983Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_slogdet.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.6269263Z 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-06-01T21:22:26.6275165Z 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-06-01T21:22:26.6281217Z 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-06-01T21:22:26.6286959Z 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-06-01T21:22:26.6292988Z 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-06-01T21:22:26.6299418Z 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-06-01T21:22:26.6305068Z 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-06-01T21:22:26.6311129Z 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-06-01T21:22:26.6317486Z 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-06-01T21:22:26.6323283Z 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-06-01T21:22:26.6329107Z 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-06-01T21:22:26.6334910Z 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-06-01T21:22:26.6340754Z 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-06-01T21:22:26.6346529Z 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-06-01T21:22:26.6352516Z 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-06-01T21:22:26.6358272Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_svd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.6364530Z 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-06-01T21:22:26.6370231Z 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-06-01T21:22:26.6375961Z 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-06-01T21:22:26.6381762Z 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-06-01T21:22:26.6387601Z 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-06-01T21:22:26.6393537Z 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-06-01T21:22:26.6399255Z 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-06-01T21:22:26.6405328Z 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-06-01T21:22:26.6411078Z 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-06-01T21:22:26.6416746Z 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-06-01T21:22:26.6422741Z 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-06-01T21:22:26.6428645Z 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-06-01T21:22:26.6435543Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_logcumsumexp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.6441510Z 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-06-01T21:22:26.6447432Z 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-06-01T21:22:26.6453643Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_logcumsumexp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.6466350Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_logcumsumexp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.6469643Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_log_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.6475515Z 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-06-01T21:22:26.6482625Z 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-06-01T21:22:26.6488489Z 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-06-01T21:22:26.6494926Z 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-06-01T21:22:26.6500881Z 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-06-01T21:22:26.6507133Z 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-06-01T21:22:26.6513046Z 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-06-01T21:22:26.6519008Z 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-06-01T21:22:26.6525471Z 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-06-01T21:22:26.6531449Z 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-06-01T21:22:26.6537322Z 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-06-01T21:22:26.6543572Z 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-06-01T21:22:26.6549668Z 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-06-01T21:22:26.6555783Z 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-06-01T21:22:26.6561567Z 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-06-01T21:22:26.6567316Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_lstm_mps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.6594160Z 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-06-01T21:22:26.6600198Z 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-06-01T21:22:26.6605943Z 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-06-01T21:22:26.6611842Z 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-06-01T21:22:26.6618113Z 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-06-01T21:22:26.6623919Z 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-06-01T21:22:26.6629565Z 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-06-01T21:22:26.6636758Z 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-06-01T21:22:26.6642182Z 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-06-01T21:22:26.6648065Z 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-06-01T21:22:26.6653819Z 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-06-01T21:22:26.6659804Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_dual.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.6666296Z 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-06-01T21:22:26.6672130Z 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-06-01T21:22:26.6678566Z 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-06-01T21:22:26.6685064Z 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-06-01T21:22:26.6691084Z 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-06-01T21:22:26.6698000Z 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-06-01T21:22:26.6705267Z 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-06-01T21:22:26.6711793Z 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-06-01T21:22:26.6718975Z 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-06-01T21:22:26.6725759Z 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-06-01T21:22:26.6732180Z 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-06-01T21:22:26.6738329Z 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-06-01T21:22:26.6744827Z 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-06-01T21:22:26.6751021Z 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-06-01T21:22:26.6757166Z 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-06-01T21:22:26.6763612Z 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-06-01T21:22:26.6769604Z 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-06-01T21:22:26.6776297Z 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-06-01T21:22:26.6782468Z 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-06-01T21:22:26.6788438Z 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-06-01T21:22:26.6794136Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_scale.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.6800353Z 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-06-01T21:22:26.6806464Z 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-06-01T21:22:26.6812338Z 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-06-01T21:22:26.6818568Z 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-06-01T21:22:26.6824677Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.6830535Z 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-06-01T21:22:26.6836753Z 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-06-01T21:22:26.6842651Z 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-06-01T21:22:26.6849388Z 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-06-01T21:22:26.6856701Z 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-06-01T21:22:26.6862676Z 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-06-01T21:22:26.6868616Z 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-06-01T21:22:26.6874707Z 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-06-01T21:22:26.6880492Z 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-06-01T21:22:26.6888170Z 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-06-01T21:22:26.6894286Z 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-06-01T21:22:26.6900196Z 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-06-01T21:22:26.6906160Z 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-06-01T21:22:26.6922389Z 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-06-01T21:22:26.6928181Z 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-06-01T21:22:26.6934159Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mkldnn_reshape.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.6940735Z 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-06-01T21:22:26.6946512Z 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-06-01T21:22:26.6952404Z 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-06-01T21:22:26.6958223Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mkldnn_transpose.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.6964688Z 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-06-01T21:22:26.6970668Z 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-06-01T21:22:26.6976872Z 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-06-01T21:22:26.6982989Z 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-06-01T21:22:26.6989026Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mps_convolution.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.6996345Z 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-06-01T21:22:26.7002431Z 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-06-01T21:22:26.7008435Z 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-06-01T21:22:26.7014650Z 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-06-01T21:22:26.7021250Z 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-06-01T21:22:26.7027482Z 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-06-01T21:22:26.7033423Z 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-06-01T21:22:26.7039402Z 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-06-01T21:22:26.7045872Z 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-06-01T21:22:26.7051952Z 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-06-01T21:22:26.7058011Z 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-06-01T21:22:26.7064433Z 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-06-01T21:22:26.7070550Z 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-06-01T21:22:26.7091916Z 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-06-01T21:22:26.7097897Z 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-06-01T21:22:26.7104535Z 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-06-01T21:22:26.7110637Z 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-06-01T21:22:26.7116917Z 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-06-01T21:22:26.7123300Z 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-06-01T21:22:26.7129366Z 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-06-01T21:22:26.7135742Z 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-06-01T21:22:26.7141896Z 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-06-01T21:22:26.7148076Z 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-06-01T21:22:26.7154065Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_neg_view.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.7160057Z 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-06-01T21:22:26.7165775Z 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-06-01T21:22:26.7173067Z 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-06-01T21:22:26.7180263Z 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-06-01T21:22:26.7186461Z 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-06-01T21:22:26.7192114Z 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-06-01T21:22:26.7198432Z 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-06-01T21:22:26.7204142Z 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-06-01T21:22:26.7210248Z 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-06-01T21:22:26.7216462Z 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-06-01T21:22:26.7222446Z 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-06-01T21:22:26.7234411Z 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-06-01T21:22:26.7240362Z 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-06-01T21:22:26.7246066Z 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-06-01T21:22:26.7252547Z 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-06-01T21:22:26.7258716Z 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-06-01T21:22:26.7264807Z 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-06-01T21:22:26.7270706Z 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-06-01T21:22:26.7276680Z 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-06-01T21:22:26.7312870Z 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-06-01T21:22:26.7318862Z 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-06-01T21:22:26.7324946Z 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-06-01T21:22:26.7330826Z 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-06-01T21:22:26.7336793Z 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-06-01T21:22:26.7342817Z 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-06-01T21:22:26.7348777Z 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-06-01T21:22:26.7355316Z 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-06-01T21:22:26.7361350Z 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-06-01T21:22:26.7366920Z 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-06-01T21:22:26.7372724Z 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-06-01T21:22:26.7378485Z 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-06-01T21:22:26.7384421Z 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-06-01T21:22:26.7390869Z 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-06-01T21:22:26.7396747Z 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-06-01T21:22:26.7402116Z 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-06-01T21:22:26.7434908Z 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-06-01T21:22:26.7441696Z 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-06-01T21:22:26.7448373Z 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-06-01T21:22:26.7454948Z 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-06-01T21:22:26.7461612Z 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-06-01T21:22:26.7467721Z 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-06-01T21:22:26.7473727Z 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-06-01T21:22:26.7479684Z 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-06-01T21:22:26.7485364Z 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-06-01T21:22:26.7491343Z 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-06-01T21:22:26.7497279Z 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-06-01T21:22:26.7503993Z 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-06-01T21:22:26.7510232Z 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-06-01T21:22:26.7516123Z 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-06-01T21:22:26.7522016Z 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-06-01T21:22:26.7527946Z 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-06-01T21:22:26.7533897Z 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-06-01T21:22:26.7539675Z 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-06-01T21:22:26.7545816Z 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-06-01T21:22:26.7551915Z 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-06-01T21:22:26.7557699Z 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-06-01T21:22:26.7563544Z 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-06-01T21:22:26.7569644Z 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-06-01T21:22:26.7575884Z 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-06-01T21:22:26.7582184Z 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-06-01T21:22:26.7588053Z 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-06-01T21:22:26.7593924Z 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-06-01T21:22:26.7600164Z 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-06-01T21:22:26.7606493Z 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-06-01T21:22:26.7612796Z 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-06-01T21:22:26.7618728Z 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-06-01T21:22:26.7624723Z 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-06-01T21:22:26.7630597Z 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-06-01T21:22:26.7636433Z 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-06-01T21:22:26.7642497Z 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-06-01T21:22:26.7648758Z 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-06-01T21:22:26.7654808Z 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-06-01T21:22:26.7661183Z 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-06-01T21:22:26.7667031Z 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-06-01T21:22:26.7673157Z 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-06-01T21:22:26.7679350Z 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-06-01T21:22:26.7685257Z 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-06-01T21:22:26.7691222Z 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-06-01T21:22:26.7721797Z 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-06-01T21:22:26.7727786Z 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-06-01T21:22:26.7733582Z 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-06-01T21:22:26.7740304Z 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-06-01T21:22:26.7746309Z 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-06-01T21:22:26.7752554Z 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-06-01T21:22:26.7758502Z 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-06-01T21:22:26.7765228Z 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-06-01T21:22:26.7771306Z 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-06-01T21:22:26.7777280Z 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-06-01T21:22:26.7783594Z 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-06-01T21:22:26.7789430Z 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-06-01T21:22:26.7795774Z 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-06-01T21:22:26.7802093Z 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-06-01T21:22:26.7808614Z 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-06-01T21:22:26.7815108Z 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-06-01T21:22:26.7821938Z 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-06-01T21:22:26.7828094Z 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-06-01T21:22:26.7834437Z 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-06-01T21:22:26.7840914Z 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-06-01T21:22:26.7846962Z 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-06-01T21:22:26.7853413Z 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-06-01T21:22:26.7860258Z 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-06-01T21:22:26.7866954Z 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-06-01T21:22:26.7873167Z 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-06-01T21:22:26.7879425Z 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-06-01T21:22:26.7885688Z 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-06-01T21:22:26.7891500Z 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-06-01T21:22:26.7897621Z 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-06-01T21:22:26.7903947Z 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-06-01T21:22:26.7910476Z 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-06-01T21:22:26.7916495Z 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-06-01T21:22:26.7922753Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nnpack_available.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.7928925Z 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-06-01T21:22:26.7935156Z 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-06-01T21:22:26.7941327Z 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-06-01T21:22:26.7947424Z 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-06-01T21:22:26.7953788Z 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-06-01T21:22:26.7959875Z 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-06-01T21:22:26.7966503Z 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-06-01T21:22:26.7972611Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nnz.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.7978119Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nnz_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.7984147Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nnz_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.7990119Z 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-06-01T21:22:26.7996022Z 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-06-01T21:22:26.8002260Z 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-06-01T21:22:26.8008502Z 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-06-01T21:22:26.8014634Z 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-06-01T21:22:26.8021082Z 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-06-01T21:22:26.8027306Z 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-06-01T21:22:26.8033635Z 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-06-01T21:22:26.8039883Z 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-06-01T21:22:26.8046027Z 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-06-01T21:22:26.8052022Z 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-06-01T21:22:26.8058452Z 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-06-01T21:22:26.8064609Z 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-06-01T21:22:26.8070722Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pad_circular.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.8076970Z 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-06-01T21:22:26.8082945Z 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-06-01T21:22:26.8088717Z 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-06-01T21:22:26.8094901Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pad_enum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.8101242Z 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-06-01T21:22:26.8106906Z 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-06-01T21:22:26.8112809Z 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-06-01T21:22:26.8118883Z 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-06-01T21:22:26.8125079Z 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-06-01T21:22:26.8130672Z 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-06-01T21:22:26.8136944Z 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-06-01T21:22:26.8142874Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pdist_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.8149115Z 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-06-01T21:22:26.8155014Z 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-06-01T21:22:26.8161141Z 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-06-01T21:22:26.8166888Z 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-06-01T21:22:26.8172690Z 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-06-01T21:22:26.8179003Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pdist_forward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.8185300Z 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-06-01T21:22:26.8190850Z 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-06-01T21:22:26.8216652Z 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-06-01T21:22:26.8223151Z 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-06-01T21:22:26.8229026Z 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-06-01T21:22:26.8235210Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pin_memory.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.8242129Z 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-06-01T21:22:26.8247978Z 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-06-01T21:22:26.8254235Z 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-06-01T21:22:26.8260311Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_prelu_kernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.8266707Z 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-06-01T21:22:26.8272919Z 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-06-01T21:22:26.8308519Z 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-06-01T21:22:26.8314659Z 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-06-01T21:22:26.8320927Z 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-06-01T21:22:26.8327202Z 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-06-01T21:22:26.8333260Z 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-06-01T21:22:26.8339330Z 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-06-01T21:22:26.8345595Z 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-06-01T21:22:26.8351599Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_print.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.8357622Z 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-06-01T21:22:26.8363430Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_print_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.8369488Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_print_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.8375440Z 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-06-01T21:22:26.8381475Z 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-06-01T21:22:26.8412752Z 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-06-01T21:22:26.8423419Z 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-06-01T21:22:26.8429739Z 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-06-01T21:22:26.8435828Z 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-06-01T21:22:26.8441649Z 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-06-01T21:22:26.8447354Z 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-06-01T21:22:26.8453478Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_alias.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.8459569Z 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-06-01T21:22:26.8466058Z 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-06-01T21:22:26.8472538Z 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-06-01T21:22:26.8478598Z 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-06-01T21:22:26.8484372Z 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-06-01T21:22:26.8490785Z 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-06-01T21:22:26.8497101Z 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-06-01T21:22:26.8503502Z 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-06-01T21:22:26.8514698Z 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-06-01T21:22:26.8520709Z 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-06-01T21:22:26.8527095Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.8533337Z 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-06-01T21:22:26.8539143Z 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-06-01T21:22:26.8545233Z 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-06-01T21:22:26.8551482Z 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-06-01T21:22:26.8557807Z 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-06-01T21:22:26.8563703Z 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-06-01T21:22:26.8577146Z 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-06-01T21:22:26.8582269Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_resize_output.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.8588328Z 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-06-01T21:22:26.8594633Z 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-06-01T21:22:26.8600362Z 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-06-01T21:22:26.8606630Z 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-06-01T21:22:26.8612622Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_rowwise_prune.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.8618775Z 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-06-01T21:22:26.8624981Z 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-06-01T21:22:26.8631006Z 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-06-01T21:22:26.8637564Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_safe_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.8644584Z 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-06-01T21:22:26.8650671Z 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-06-01T21:22:26.8656402Z 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-06-01T21:22:26.8662874Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sample_dirichlet.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.8669142Z 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-06-01T21:22:26.8674880Z 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-06-01T21:22:26.8703332Z 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-06-01T21:22:26.8709636Z 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-06-01T21:22:26.8721874Z 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-06-01T21:22:26.8728021Z 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-06-01T21:22:26.8734119Z 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-06-01T21:22:26.8740132Z 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-06-01T21:22:26.8746157Z 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-06-01T21:22:26.8752124Z 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-06-01T21:22:26.8758523Z 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-06-01T21:22:26.8769354Z 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-06-01T21:22:26.8775870Z 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-06-01T21:22:26.8781663Z 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-06-01T21:22:26.8788004Z 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-06-01T21:22:26.8794173Z 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-06-01T21:22:26.8800244Z 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-06-01T21:22:26.8806152Z 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-06-01T21:22:26.8812131Z 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-06-01T21:22:26.8818599Z 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-06-01T21:22:26.8824898Z 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-06-01T21:22:26.8831350Z 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-06-01T21:22:26.8838104Z 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-06-01T21:22:26.8844322Z 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-06-01T21:22:26.8850925Z 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-06-01T21:22:26.8857296Z 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-06-01T21:22:26.8864200Z 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-06-01T21:22:26.8870632Z 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-06-01T21:22:26.8877176Z 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-06-01T21:22:26.8884157Z 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-06-01T21:22:26.8890621Z 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-06-01T21:22:26.8897310Z 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-06-01T21:22:26.8903329Z 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-06-01T21:22:26.8909374Z 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-06-01T21:22:26.8915901Z 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-06-01T21:22:26.8922020Z 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-06-01T21:22:26.8928525Z 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-06-01T21:22:26.8935106Z 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-06-01T21:22:26.8941167Z 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-06-01T21:22:26.8947892Z 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-06-01T21:22:26.8954791Z 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-06-01T21:22:26.8961331Z 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-06-01T21:22:26.8967491Z 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-06-01T21:22:26.8973826Z 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-06-01T21:22:26.8980122Z 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-06-01T21:22:26.8986384Z 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-06-01T21:22:26.8993087Z 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-06-01T21:22:26.8999453Z 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-06-01T21:22:26.9006029Z 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-06-01T21:22:26.9012315Z 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-06-01T21:22:26.9019313Z 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-06-01T21:22:26.9025847Z 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-06-01T21:22:26.9031832Z 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-06-01T21:22:26.9038781Z 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-06-01T21:22:26.9044972Z 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-06-01T21:22:26.9051052Z 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-06-01T21:22:26.9057144Z 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-06-01T21:22:26.9064314Z 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-06-01T21:22:26.9100486Z 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-06-01T21:22:26.9113435Z 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-06-01T21:22:26.9124334Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_mm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.9130499Z 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-06-01T21:22:26.9136500Z 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-06-01T21:22:26.9142612Z 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-06-01T21:22:26.9148970Z 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-06-01T21:22:26.9154922Z 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-06-01T21:22:26.9160859Z 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-06-01T21:22:26.9166811Z 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-06-01T21:22:26.9173066Z 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-06-01T21:22:26.9178927Z 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-06-01T21:22:26.9185491Z 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-06-01T21:22:26.9191577Z 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-06-01T21:22:26.9197557Z 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-06-01T21:22:26.9203625Z 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-06-01T21:22:26.9209377Z 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-06-01T21:22:26.9215113Z 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-06-01T21:22:26.9221469Z 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-06-01T21:22:26.9227461Z 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-06-01T21:22:26.9233614Z 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-06-01T21:22:26.9239540Z 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-06-01T21:22:26.9245614Z 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-06-01T21:22:26.9251385Z 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-06-01T21:22:26.9257464Z 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-06-01T21:22:26.9263719Z 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-06-01T21:22:26.9269991Z 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-06-01T21:22:26.9275833Z 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-06-01T21:22:26.9281842Z 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-06-01T21:22:26.9287926Z 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-06-01T21:22:26.9293573Z 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-06-01T21:22:26.9299678Z 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-06-01T21:22:26.9305684Z 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-06-01T21:22:26.9311865Z 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-06-01T21:22:26.9317699Z 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-06-01T21:22:26.9323696Z 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-06-01T21:22:26.9329528Z 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-06-01T21:22:26.9335748Z 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-06-01T21:22:26.9341999Z 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-06-01T21:22:26.9347820Z 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-06-01T21:22:26.9353670Z 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-06-01T21:22:26.9359980Z 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-06-01T21:22:26.9365817Z 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-06-01T21:22:26.9371535Z 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-06-01T21:22:26.9377330Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.9383145Z 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-06-01T21:22:26.9389418Z 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-06-01T21:22:26.9395258Z 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-06-01T21:22:26.9401061Z 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-06-01T21:22:26.9407008Z 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-06-01T21:22:26.9413107Z 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-06-01T21:22:26.9419164Z 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-06-01T21:22:26.9425646Z 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-06-01T21:22:26.9431833Z 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-06-01T21:22:26.9437562Z 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-06-01T21:22:26.9443581Z 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-06-01T21:22:26.9449842Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.9455679Z 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-06-01T21:22:26.9461780Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.9467587Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.9473644Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_addmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.9479625Z 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-06-01T21:22:26.9485281Z 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-06-01T21:22:26.9491508Z 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-06-01T21:22:26.9497236Z 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-06-01T21:22:26.9508020Z 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-06-01T21:22:26.9514253Z 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-06-01T21:22:26.9520073Z 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-06-01T21:22:26.9526186Z 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-06-01T21:22:26.9532280Z 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-06-01T21:22:26.9541851Z 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-06-01T21:22:26.9547339Z 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-06-01T21:22:26.9558297Z 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-06-01T21:22:26.9564617Z 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-06-01T21:22:26.9570405Z 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-06-01T21:22:26.9576851Z 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-06-01T21:22:26.9582832Z 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-06-01T21:22:26.9589017Z 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-06-01T21:22:26.9600737Z 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-06-01T21:22:26.9606670Z 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-06-01T21:22:26.9612683Z 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-06-01T21:22:26.9619354Z 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-06-01T21:22:26.9625863Z 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-06-01T21:22:26.9631895Z 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-06-01T21:22:26.9637795Z 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-06-01T21:22:26.9644033Z 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-06-01T21:22:26.9650344Z 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-06-01T21:22:26.9656550Z 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-06-01T21:22:26.9662782Z 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-06-01T21:22:26.9669202Z 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-06-01T21:22:26.9675420Z 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-06-01T21:22:26.9681526Z 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-06-01T21:22:26.9688347Z 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-06-01T21:22:26.9700159Z 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-06-01T21:22:26.9707241Z 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-06-01T21:22:26.9713743Z 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-06-01T21:22:26.9719934Z 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-06-01T21:22:26.9726566Z 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-06-01T21:22:26.9733052Z 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-06-01T21:22:26.9745147Z 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-06-01T21:22:26.9751354Z 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-06-01T21:22:26.9757909Z 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-06-01T21:22:26.9765246Z 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-06-01T21:22:26.9772131Z 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-06-01T21:22:26.9778133Z 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-06-01T21:22:26.9784463Z 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-06-01T21:22:26.9790366Z 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-06-01T21:22:26.9796802Z 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-06-01T21:22:26.9802920Z 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-06-01T21:22:26.9808913Z 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-06-01T21:22:26.9814775Z 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-06-01T21:22:26.9821252Z 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-06-01T21:22:26.9827041Z 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-06-01T21:22:26.9832693Z 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-06-01T21:22:26.9838786Z 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-06-01T21:22:26.9845047Z 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-06-01T21:22:26.9850995Z 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-06-01T21:22:26.9856918Z 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-06-01T21:22:26.9862830Z 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-06-01T21:22:26.9869105Z 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-06-01T21:22:26.9875267Z 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-06-01T21:22:26.9881288Z 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-06-01T21:22:26.9887091Z 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-06-01T21:22:26.9893443Z 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-06-01T21:22:26.9899657Z 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-06-01T21:22:26.9905798Z 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-06-01T21:22:26.9911665Z 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-06-01T21:22:26.9917314Z 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-06-01T21:22:26.9923665Z 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-06-01T21:22:26.9929418Z 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-06-01T21:22:26.9935543Z 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-06-01T21:22:26.9941435Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_mm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:26.9947818Z 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-06-01T21:22:26.9953633Z 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-06-01T21:22:26.9959405Z 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-06-01T21:22:26.9965307Z 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-06-01T21:22:26.9971130Z 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-06-01T21:22:26.9977466Z 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-06-01T21:22:26.9983669Z 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-06-01T21:22:26.9989448Z 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-06-01T21:22:26.9995989Z 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-06-01T21:22:27.0001927Z 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-06-01T21:22:27.0007814Z 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-06-01T21:22:27.0013854Z 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-06-01T21:22:27.0020220Z 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-06-01T21:22:27.0026299Z 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-06-01T21:22:27.0032404Z 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-06-01T21:22:27.0038478Z 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-06-01T21:22:27.0044782Z 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-06-01T21:22:27.0050901Z 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-06-01T21:22:27.0057333Z 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-06-01T21:22:27.0063700Z 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-06-01T21:22:27.0069649Z 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-06-01T21:22:27.0075505Z 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-06-01T21:22:27.0081885Z 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-06-01T21:22:27.0088051Z 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-06-01T21:22:27.0094218Z 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-06-01T21:22:27.0100472Z 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-06-01T21:22:27.0107697Z 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-06-01T21:22:27.0113883Z 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-06-01T21:22:27.0119718Z 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-06-01T21:22:27.0125797Z 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-06-01T21:22:27.0132172Z 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-06-01T21:22:27.0138066Z 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-06-01T21:22:27.0144340Z 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-06-01T21:22:27.0150937Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:27.0157135Z 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-06-01T21:22:27.0163740Z 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-06-01T21:22:27.0170166Z 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-06-01T21:22:27.0176312Z 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-06-01T21:22:27.0188319Z 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-06-01T21:22:27.0195528Z 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-06-01T21:22:27.0201890Z 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-06-01T21:22:27.0208585Z 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-06-01T21:22:27.0215163Z 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-06-01T21:22:27.0222233Z 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-06-01T21:22:27.0228115Z 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-06-01T21:22:27.0233978Z 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-06-01T21:22:27.0240058Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_sum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:27.0246360Z 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-06-01T21:22:27.0252813Z 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-06-01T21:22:27.0258788Z 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-06-01T21:22:27.0264752Z 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-06-01T21:22:27.0270948Z 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-06-01T21:22:27.0282207Z 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-06-01T21:22:27.0287938Z 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-06-01T21:22:27.0294033Z 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-06-01T21:22:27.0299853Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_spdiags.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:27.0306005Z 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-06-01T21:22:27.0311935Z 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-06-01T21:22:27.0317613Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_spdiags_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:27.0323745Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_spdiags_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:27.0329849Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_spsolve.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:27.0335457Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_spsolve_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:27.0341233Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_spsolve_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:27.0346954Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_stack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:27.0352849Z 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-06-01T21:22:27.0358647Z 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-06-01T21:22:27.0364502Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_stack_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:27.0370576Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_stack_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:27.0376692Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_standard_gamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:27.0382767Z 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-06-01T21:22:27.0388661Z 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-06-01T21:22:27.0394829Z 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-06-01T21:22:27.0400608Z 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-06-01T21:22:27.0413277Z 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-06-01T21:22:27.0419153Z 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-06-01T21:22:27.0425142Z 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-06-01T21:22:27.0431149Z 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-06-01T21:22:27.0436927Z 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-06-01T21:22:27.0442811Z 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-06-01T21:22:27.0448405Z 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-06-01T21:22:27.0454465Z 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-06-01T21:22:27.0460440Z 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-06-01T21:22:27.0466422Z 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-06-01T21:22:27.0472215Z 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-06-01T21:22:27.0478518Z 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-06-01T21:22:27.0484866Z 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-06-01T21:22:27.0498957Z 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-06-01T21:22:27.0505518Z 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-06-01T21:22:27.0511730Z 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-06-01T21:22:27.0518418Z 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-06-01T21:22:27.0524877Z 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-06-01T21:22:27.0531096Z 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-06-01T21:22:27.0537988Z 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-06-01T21:22:27.0544320Z 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-06-01T21:22:27.0555865Z 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-06-01T21:22:27.0562002Z 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-06-01T21:22:27.0568587Z 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-06-01T21:22:27.0574490Z 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-06-01T21:22:27.0580690Z 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-06-01T21:22:27.0587295Z 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-06-01T21:22:27.0593403Z 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-06-01T21:22:27.0599596Z 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-06-01T21:22:27.0605985Z 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-06-01T21:22:27.0612426Z 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-06-01T21:22:27.0618652Z 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-06-01T21:22:27.0625011Z 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-06-01T21:22:27.0630892Z 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-06-01T21:22:27.0636913Z 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-06-01T21:22:27.0643824Z 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-06-01T21:22:27.0649761Z 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-06-01T21:22:27.0655777Z 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-06-01T21:22:27.0662059Z 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-06-01T21:22:27.0668294Z 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-06-01T21:22:27.0674798Z 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-06-01T21:22:27.0680965Z 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-06-01T21:22:27.0687110Z 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-06-01T21:22:27.0693530Z 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-06-01T21:22:27.0700285Z 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-06-01T21:22:27.0707095Z 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-06-01T21:22:27.0713702Z 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-06-01T21:22:27.0719978Z 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-06-01T21:22:27.0725830Z 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-06-01T21:22:27.0732024Z 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-06-01T21:22:27.0738225Z 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-06-01T21:22:27.0774080Z 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-06-01T21:22:27.0779821Z 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-06-01T21:22:27.0786106Z 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-06-01T21:22:27.0792692Z 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-06-01T21:22:27.0798657Z 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-06-01T21:22:27.0804524Z 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-06-01T21:22:27.0810364Z 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-06-01T21:22:27.0816832Z 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-06-01T21:22:27.0822783Z 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-06-01T21:22:27.0828363Z 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-06-01T21:22:27.0834173Z 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-06-01T21:22:27.0840411Z 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-06-01T21:22:27.0846576Z 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-06-01T21:22:27.0852929Z 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-06-01T21:22:27.0858905Z 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-06-01T21:22:27.0865442Z 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-06-01T21:22:27.0871406Z 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-06-01T21:22:27.0883365Z 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-06-01T21:22:27.0887403Z 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-06-01T21:22:27.0894043Z 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-06-01T21:22:27.0900114Z 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-06-01T21:22:27.0906392Z 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-06-01T21:22:27.0912362Z 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-06-01T21:22:27.0918583Z 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-06-01T21:22:27.0925035Z 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-06-01T21:22:27.0931164Z 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-06-01T21:22:27.0937401Z 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-06-01T21:22:27.0943610Z 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-06-01T21:22:27.0949915Z 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-06-01T21:22:27.0956226Z 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-06-01T21:22:27.0962454Z 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-06-01T21:22:27.0968461Z 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-06-01T21:22:27.0974514Z 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-06-01T21:22:27.0980611Z 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-06-01T21:22:27.0987175Z 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-06-01T21:22:27.0993501Z 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-06-01T21:22:27.1000011Z 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-06-01T21:22:27.1006067Z 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-06-01T21:22:27.1012275Z 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-06-01T21:22:27.1018649Z 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-06-01T21:22:27.1025022Z 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-06-01T21:22:27.1031020Z 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-06-01T21:22:27.1037112Z 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-06-01T21:22:27.1042955Z 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-06-01T21:22:27.1049203Z 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-06-01T21:22:27.1056647Z 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-06-01T21:22:27.1062535Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:27.1068327Z 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-06-01T21:22:27.1074945Z 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-06-01T21:22:27.1080897Z 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-06-01T21:22:27.1086678Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_cpu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:27.1092186Z 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-06-01T21:22:27.1098074Z 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-06-01T21:22:27.1103715Z 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-06-01T21:22:27.1109591Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_dense.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:27.1115490Z 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-06-01T21:22:27.1121505Z 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-06-01T21:22:27.1127744Z 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-06-01T21:22:27.1133476Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:27.1139119Z 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-06-01T21:22:27.1145693Z 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-06-01T21:22:27.1151507Z 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-06-01T21:22:27.1157447Z 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-06-01T21:22:27.1163253Z 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-06-01T21:22:27.1169014Z 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-06-01T21:22:27.1175020Z 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-06-01T21:22:27.1181420Z 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-06-01T21:22:27.1187404Z 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-06-01T21:22:27.1193357Z 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-06-01T21:22:27.1199249Z 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-06-01T21:22:27.1205156Z 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-06-01T21:22:27.1211172Z 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-06-01T21:22:27.1216848Z 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-06-01T21:22:27.1222918Z 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-06-01T21:22:27.1229076Z 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-06-01T21:22:27.1235037Z 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-06-01T21:22:27.1240819Z 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-06-01T21:22:27.1246612Z 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-06-01T21:22:27.1252853Z 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-06-01T21:22:27.1258825Z 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-06-01T21:22:27.1265249Z 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-06-01T21:22:27.1271452Z 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-06-01T21:22:27.1278115Z 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-06-01T21:22:27.1284289Z 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-06-01T21:22:27.1290049Z 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-06-01T21:22:27.1296039Z 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-06-01T21:22:27.1301881Z 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-06-01T21:22:27.1308757Z 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-06-01T21:22:27.1315419Z 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-06-01T21:22:27.1322549Z 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-06-01T21:22:27.1329833Z 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-06-01T21:22:27.1335858Z 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-06-01T21:22:27.1342509Z 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-06-01T21:22:27.1348836Z 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-06-01T21:22:27.1355170Z 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-06-01T21:22:27.1361547Z 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-06-01T21:22:27.1367520Z 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-06-01T21:22:27.1373463Z 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-06-01T21:22:27.1380126Z 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-06-01T21:22:27.1386378Z 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-06-01T21:22:27.1392374Z 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-06-01T21:22:27.1398763Z 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-06-01T21:22:27.1404803Z 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-06-01T21:22:27.1419534Z 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-06-01T21:22:27.1425906Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_trilinear.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:27.1432396Z 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-06-01T21:22:27.1438284Z 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-06-01T21:22:27.1444090Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_trilinear_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:27.1450178Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_trilinear_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:27.1456383Z 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-06-01T21:22:27.1462884Z 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-06-01T21:22:27.1468890Z 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-06-01T21:22:27.1475123Z 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-06-01T21:22:27.1480959Z 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-06-01T21:22:27.1487034Z 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-06-01T21:22:27.1493302Z 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-06-01T21:22:27.1499529Z 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-06-01T21:22:27.1505606Z 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-06-01T21:22:27.1520784Z 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-06-01T21:22:27.1521884Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:27.1523029Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:27.1528864Z 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-06-01T21:22:27.1535008Z 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-06-01T21:22:27.1541049Z 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-06-01T21:22:27.1552588Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:27.1558729Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:27.1564982Z 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-06-01T21:22:27.1570678Z 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-06-01T21:22:27.1576505Z 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-06-01T21:22:27.1582468Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:27.1588858Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:27.1613607Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unpack_dual.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:27.1619613Z 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-06-01T21:22:27.1625816Z 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-06-01T21:22:27.1631700Z 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-06-01T21:22:27.1637494Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_index.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:27.1643378Z 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-06-01T21:22:27.1649513Z 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-06-01T21:22:27.1655070Z 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-06-01T21:22:27.1661432Z 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-06-01T21:22:27.1667773Z 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-06-01T21:22:27.1673525Z 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-06-01T21:22:27.1679706Z 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-06-01T21:22:27.1685665Z 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-06-01T21:22:27.1692840Z 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-06-01T21:22:27.1700635Z 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-06-01T21:22:27.1706715Z 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-06-01T21:22:27.1712972Z 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-06-01T21:22:27.1720052Z 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-06-01T21:22:27.1726339Z 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-06-01T21:22:27.1732582Z 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-06-01T21:22:27.1738828Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_view.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:27.1750895Z 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-06-01T21:22:27.1756479Z 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-06-01T21:22:27.1762580Z 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-06-01T21:22:27.1768874Z 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-06-01T21:22:27.1775029Z 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-06-01T21:22:27.1811367Z 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-06-01T21:22:27.1817035Z 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-06-01T21:22:27.1823489Z 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-06-01T21:22:27.1829567Z 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-06-01T21:22:27.1835736Z 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-06-01T21:22:27.1841846Z 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-06-01T21:22:27.1848005Z 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-06-01T21:22:27.1854437Z 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-06-01T21:22:27.1860486Z 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-06-01T21:22:27.1866966Z 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-06-01T21:22:27.1872867Z 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-06-01T21:22:27.1878639Z 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-06-01T21:22:27.1884716Z 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-06-01T21:22:27.1890545Z 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-06-01T21:22:27.1896586Z 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-06-01T21:22:27.1902891Z 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-06-01T21:22:27.1908871Z 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-06-01T21:22:27.1915166Z 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-06-01T21:22:27.1921320Z 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-06-01T21:22:27.1927318Z 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-06-01T21:22:27.1933408Z 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-06-01T21:22:27.1939564Z 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-06-01T21:22:27.1945616Z 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-06-01T21:22:27.1951644Z 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-06-01T21:22:27.1957919Z 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-06-01T21:22:27.1964253Z 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-06-01T21:22:27.1971194Z 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-06-01T21:22:27.1986480Z 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-06-01T21:22:27.1994046Z 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-06-01T21:22:27.2001683Z 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-06-01T21:22:27.2023807Z 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-06-01T21:22:27.2031575Z 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-06-01T21:22:27.2038688Z 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-06-01T21:22:27.2044485Z 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-06-01T21:22:27.2050959Z 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-06-01T21:22:27.2056904Z 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-06-01T21:22:27.2063102Z 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-06-01T21:22:27.2069177Z 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-06-01T21:22:27.2075323Z 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-06-01T21:22:27.2081305Z 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-06-01T21:22:27.2087347Z 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-06-01T21:22:27.2094006Z 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-06-01T21:22:27.2100132Z 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-06-01T21:22:27.2106302Z 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-06-01T21:22:27.2112568Z 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-06-01T21:22:27.2118565Z 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-06-01T21:22:27.2125022Z 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-06-01T21:22:27.2130944Z 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-06-01T21:22:27.2136881Z 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-06-01T21:22:27.2142919Z 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-06-01T21:22:27.2149058Z 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-06-01T21:22:27.2155607Z 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-06-01T21:22:27.2161683Z 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-06-01T21:22:27.2167763Z 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-06-01T21:22:27.2173852Z 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-06-01T21:22:27.2179985Z 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-06-01T21:22:27.2186155Z 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-06-01T21:22:27.2192414Z 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-06-01T21:22:27.2200207Z 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-06-01T21:22:27.2206343Z 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-06-01T21:22:27.2212535Z 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-06-01T21:22:27.2218610Z 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-06-01T21:22:27.2227748Z 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-06-01T21:22:27.2232074Z 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-06-01T21:22:27.2237981Z 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-06-01T21:22:27.2244017Z 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-06-01T21:22:27.2251136Z 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-06-01T21:22:27.2257688Z 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-06-01T21:22:27.2264560Z 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-06-01T21:22:27.2271368Z 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-06-01T21:22:27.2277717Z 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-06-01T21:22:27.2284019Z 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-06-01T21:22:27.2290327Z 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-06-01T21:22:27.2296533Z 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-06-01T21:22:27.2302511Z 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-06-01T21:22:27.2327478Z 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-06-01T21:22:27.2333414Z 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-06-01T21:22:27.2339367Z 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-06-01T21:22:27.2345425Z 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-06-01T21:22:27.2351388Z 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-06-01T21:22:27.2357368Z 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-06-01T21:22:27.2363115Z 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-06-01T21:22:27.2368968Z 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-06-01T21:22:27.2374869Z 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-06-01T21:22:27.2380576Z 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-06-01T21:22:27.2386375Z 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-06-01T21:22:27.2392099Z 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-06-01T21:22:27.2398219Z 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-06-01T21:22:27.2404168Z 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-06-01T21:22:27.2410165Z 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-06-01T21:22:27.2416040Z 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-06-01T21:22:27.2422181Z 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-06-01T21:22:27.2428206Z 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-06-01T21:22:27.2434351Z 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-06-01T21:22:27.2440238Z 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-06-01T21:22:27.2446533Z 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-06-01T21:22:27.2452505Z 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-06-01T21:22:27.2458833Z 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-06-01T21:22:27.2465412Z 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-06-01T21:22:27.2980653Z 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-06-01T21:22:27.2986888Z 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-06-01T21:22:27.2993281Z 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-06-01T21:22:27.2999343Z 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-06-01T21:22:27.3005431Z 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-06-01T21:22:27.3011462Z 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-06-01T21:22:27.3017812Z 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-06-01T21:22:27.3024266Z 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-06-01T21:22:27.3030311Z 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-06-01T21:22:27.3036360Z 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-06-01T21:22:27.3042590Z 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-06-01T21:22:27.3048780Z 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-06-01T21:22:27.3054814Z 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-06-01T21:22:27.3060865Z 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-06-01T21:22:27.3067301Z 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-06-01T21:22:27.3073366Z 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-06-01T21:22:27.3079436Z 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-06-01T21:22:27.3085710Z 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-06-01T21:22:27.3092318Z 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-06-01T21:22:27.3098287Z 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-06-01T21:22:27.3104312Z 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-06-01T21:22:27.3110110Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_values.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:27.3115682Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_values_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:27.3122096Z 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-06-01T21:22:27.3128082Z 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-06-01T21:22:27.3133846Z 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-06-01T21:22:27.3145702Z 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-06-01T21:22:27.3151555Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_values_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:27.3157276Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_values_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:27.3163268Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_version.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:27.3168938Z 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-06-01T21:22:27.3178625Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_version_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:27.3182071Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_version_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:27.3188108Z 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-06-01T21:22:27.3193920Z 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-06-01T21:22:27.3199710Z 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-06-01T21:22:27.3206005Z 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-06-01T21:22:27.3212374Z 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-06-01T21:22:27.3218348Z 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-06-01T21:22:27.3224727Z 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-06-01T21:22:27.3231039Z 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-06-01T21:22:27.3237534Z 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-06-01T21:22:27.3243531Z 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-06-01T21:22:27.3249490Z 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-06-01T21:22:27.3255873Z 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-06-01T21:22:27.3261714Z 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-06-01T21:22:27.3267632Z 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-06-01T21:22:27.3273361Z 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-06-01T21:22:27.3279221Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:22:27.3285184Z 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-06-01T21:22:27.3291314Z 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-06-01T21:22:27.3297433Z 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-06-01T21:22:27.3303383Z 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-06-01T21:22:27.3309458Z 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-06-01T21:22:27.3315395Z 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-06-01T21:22:27.3321432Z 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-06-01T21:22:27.3327671Z 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-06-01T21:22:27.3338847Z 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-06-01T21:22:27.3344828Z 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-06-01T21:22:27.3350956Z 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-06-01T21:22:27.3356934Z 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-06-01T21:22:27.3362959Z 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-06-01T21:22:27.3368865Z 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-06-01T21:22:27.3374727Z 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-06-01T21:22:27.3386235Z 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-06-01T21:22:27.3392242Z 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-06-01T21:22:27.3398277Z 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-06-01T21:22:27.3403820Z 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-06-01T21:22:27.3409834Z 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-06-01T21:22:27.3415853Z 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-06-01T21:22:27.3421869Z 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-06-01T21:22:27.3427539Z 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-06-01T21:22:27.3433857Z 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-06-01T21:22:27.3439946Z 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-06-01T21:22:27.3445970Z 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-06-01T21:22:27.3451911Z 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-06-01T21:22:27.3464908Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\PadNd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:27.3470017Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Parallel-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:27.3475703Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Parallel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:27.3481180Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ParallelFuture.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:27.3486374Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ParallelNative.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:27.3491587Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ParallelOpenMP.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:27.3497150Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\PTThreadPool.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:27.3502602Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\PythonTorchFunctionTLS.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:27.3508858Z creating build\bdist.win-amd64\wheel\torch\include\ATen\quantized 2025-06-01T21:22:27.3512500Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\quantized\QTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\quantized 2025-06-01T21:22:27.3522598Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\quantized\Quantizer.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\quantized 2025-06-01T21:22:27.3528291Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\record_function.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:27.3534721Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\RedispatchFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:27.3559669Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\RegistrationDeclarations.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:27.3572653Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ROCmFABackend.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:27.3578241Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SavedTensorHooks.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:27.3583876Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Scalar.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:27.3615178Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ScalarOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:27.3620835Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ScalarType.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:27.3626163Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SDPBackend.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:27.3631825Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SequenceNumber.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:27.3642979Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SmallVector.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:27.3648310Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SparseCsrTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:27.3654052Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SparseCsrTensorUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:27.3660109Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SparseTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:27.3665914Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Storage.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:27.3671297Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\StorageUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:27.3676769Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:27.3682299Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorAccessor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:27.3688042Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorGeometry.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:27.3693621Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorIndexing.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:27.3699642Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorIterator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:27.3706602Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorIteratorInternal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:27.3712579Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorMeta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:27.3718169Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorNames.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:27.3723954Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorOperators.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:27.3730502Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorOptions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:27.3736957Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorSubclassLikeUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:27.3743266Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:27.3749227Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ThreadLocalPythonObjects.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:27.3754783Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ThreadLocalState.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:27.3772912Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TracerMode.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:27.3778499Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TypeDefault.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:27.3784293Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:27.3789568Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Version.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:27.3794969Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\VmapGeneratedPlumbing.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:27.3815582Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\WrapDimUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:27.3821084Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\WrapDimUtilsMulti.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:22:27.3827807Z creating build\bdist.win-amd64\wheel\torch\include\ATen\xpu 2025-06-01T21:22:27.3831233Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\CachingHostAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\xpu 2025-06-01T21:22:27.3836666Z creating build\bdist.win-amd64\wheel\torch\include\ATen\xpu\detail 2025-06-01T21:22:27.3839906Z 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-06-01T21:22:27.3845581Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\PinnedMemoryAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\xpu 2025-06-01T21:22:27.3850535Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\XPUContext.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\xpu 2025-06-01T21:22:27.3866956Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\XPUDevice.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\xpu 2025-06-01T21:22:27.3872022Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\XPUEvent.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\xpu 2025-06-01T21:22:27.3877488Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\XPUGeneratorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\xpu 2025-06-01T21:22:27.3889241Z creating build\bdist.win-amd64\wheel\torch\include\c10 2025-06-01T21:22:27.3892917Z creating build\bdist.win-amd64\wheel\torch\include\c10\core 2025-06-01T21:22:27.3896197Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\alignment.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:22:27.3901512Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Allocator.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:22:27.3906924Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\AutogradState.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:22:27.3919799Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Backend.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:22:27.3936655Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\CachingDeviceAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:22:27.3942066Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\CompileTimeFunctionPointer.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:22:27.3947527Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\ConstantSymNodeImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:22:27.3953004Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Contiguity.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:22:27.3958302Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\CopyBytes.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:22:27.3968846Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\CPUAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:22:27.3974523Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DefaultDtype.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:22:27.3979756Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DefaultTensorOptions.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:22:27.3985623Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Device.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:22:27.3990944Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DeviceArray.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:22:27.3996129Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DeviceGuard.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:22:27.4001758Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DeviceType.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:22:27.4007183Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DispatchKey.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:22:27.4013272Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DispatchKeySet.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:22:27.4019394Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DynamicCast.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:22:27.4026270Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Event.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:22:27.4043112Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\GeneratorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:22:27.4048192Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\GradMode.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:22:27.4053916Z creating build\bdist.win-amd64\wheel\torch\include\c10\core\impl 2025-06-01T21:22:27.4057124Z 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-06-01T21:22:27.4067770Z 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-06-01T21:22:27.4073190Z 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-06-01T21:22:27.4078795Z 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-06-01T21:22:27.4095697Z 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-06-01T21:22:27.4101253Z 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-06-01T21:22:27.4106898Z 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-06-01T21:22:27.4112347Z 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-06-01T21:22:27.4117755Z 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-06-01T21:22:27.4123480Z 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-06-01T21:22:27.4129041Z 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-06-01T21:22:27.4134784Z 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-06-01T21:22:27.4140319Z 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-06-01T21:22:27.4146021Z 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-06-01T21:22:27.4151554Z 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-06-01T21:22:27.4157134Z 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-06-01T21:22:27.4162708Z 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-06-01T21:22:27.4168288Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\InferenceMode.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:22:27.4173959Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Layout.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:22:27.4179590Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\MemoryFormat.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:22:27.4185645Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\OptionalRef.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:22:27.4191259Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\PyHandleCache.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:22:27.4196685Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\QEngine.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:22:27.4202096Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\QScheme.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:22:27.4207604Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\RefcountedDeleter.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:22:27.4213827Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\SafePyObject.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:22:27.4219548Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Scalar.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:22:27.4238209Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\ScalarType.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:22:27.4244623Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\ScalarTypeToTypeMeta.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:22:27.4250108Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Storage.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:22:27.4255612Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\StorageImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:22:27.4261463Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Stream.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:22:27.4266818Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\StreamGuard.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:22:27.4272492Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\SymbolicShapeMeta.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:22:27.4277714Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\SymBool.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:22:27.4289145Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\SymFloat.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:22:27.4294370Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\SymInt.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:22:27.4299896Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\SymIntArrayRef.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:22:27.4305687Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\SymNodeImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:22:27.4322579Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\TensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:22:27.4329433Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\TensorOptions.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:22:27.4335185Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\thread_pool.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:22:27.4340711Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\UndefinedTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:22:27.4346238Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\WrapDimMinimal.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:22:27.4352104Z creating build\bdist.win-amd64\wheel\torch\include\c10\cuda 2025-06-01T21:22:27.4355418Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAAlgorithm.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-06-01T21:22:27.4360876Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAAllocatorConfig.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-06-01T21:22:27.4366420Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDACachingAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-06-01T21:22:27.4372159Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDADeviceAssertion.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-06-01T21:22:27.4388549Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDADeviceAssertionHost.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-06-01T21:22:27.4394073Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAException.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-06-01T21:22:27.4399396Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-06-01T21:22:27.4404797Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAGraphsC10Utils.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-06-01T21:22:27.4410719Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAGuard.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-06-01T21:22:27.4416666Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAMacros.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-06-01T21:22:27.4422460Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAMathCompat.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-06-01T21:22:27.4428088Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAMiscFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-06-01T21:22:27.4433390Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAStream.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-06-01T21:22:27.4438968Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\driver_api.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-06-01T21:22:27.4444635Z creating build\bdist.win-amd64\wheel\torch\include\c10\cuda\impl 2025-06-01T21:22:27.4447994Z 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-06-01T21:22:27.4453651Z 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-06-01T21:22:27.4459125Z creating build\bdist.win-amd64\wheel\torch\include\c10\macros 2025-06-01T21:22:27.4462467Z copying build\lib.win-amd64-cpython-39\torch\include\c10\macros\cmake_macros.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\macros 2025-06-01T21:22:27.4467587Z copying build\lib.win-amd64-cpython-39\torch\include\c10\macros\Export.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\macros 2025-06-01T21:22:27.4473114Z copying build\lib.win-amd64-cpython-39\torch\include\c10\macros\Macros.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\macros 2025-06-01T21:22:27.4479315Z creating build\bdist.win-amd64\wheel\torch\include\c10\metal 2025-06-01T21:22:27.4482386Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\atomic.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-06-01T21:22:27.4487536Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\common.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-06-01T21:22:27.4492813Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\indexing.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-06-01T21:22:27.4498477Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\random.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-06-01T21:22:27.4504029Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\reduction_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-06-01T21:22:27.4509313Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\special_math.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-06-01T21:22:27.4527185Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\utils.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-06-01T21:22:27.4532673Z creating build\bdist.win-amd64\wheel\torch\include\c10\mobile 2025-06-01T21:22:27.4535964Z copying build\lib.win-amd64-cpython-39\torch\include\c10\mobile\CPUCachingAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\mobile 2025-06-01T21:22:27.4541854Z copying build\lib.win-amd64-cpython-39\torch\include\c10\mobile\CPUProfilingAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\mobile 2025-06-01T21:22:27.4547560Z creating build\bdist.win-amd64\wheel\torch\include\c10\test 2025-06-01T21:22:27.4554580Z creating build\bdist.win-amd64\wheel\torch\include\c10\test\util 2025-06-01T21:22:27.4557994Z 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-06-01T21:22:27.4564022Z 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-06-01T21:22:27.4570030Z 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-06-01T21:22:27.4576601Z creating build\bdist.win-amd64\wheel\torch\include\c10\util 2025-06-01T21:22:27.4579992Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\AbortHandler.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.4585658Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\accumulate.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.4591181Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\AlignOf.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.4596559Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ApproximateClock.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.4614266Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Array.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.4619351Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ArrayRef.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.4624890Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Backtrace.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.4630412Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\BFloat16-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.4636141Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\BFloat16-math.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.4641675Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\BFloat16.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.4646973Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\bits.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.4652301Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Bitset.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.4657762Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\bit_cast.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.4663496Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\C++17.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.4703867Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\CallOnce.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.4709538Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\complex.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.4715850Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\complex_math.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.4722349Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\complex_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.4728679Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ConstexprCrc.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.4734344Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\copysign.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.4739810Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\DeadlockDetection.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.4745493Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Deprecated.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.4751578Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\DimVector.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.4757255Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\DynamicCounter.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.4768221Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Enumerate.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.4773473Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\env.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.4779574Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\error.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.4784761Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Exception.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.4790596Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ExclusivelyOwned.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.4796144Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ExclusivelyOwnedTensorTraits.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.4801661Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\FbcodeMaps.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.4807005Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Flags.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.4812548Z 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-06-01T21:22:27.4818834Z 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-06-01T21:22:27.4824536Z 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-06-01T21:22:27.4841076Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float8_e4m3fn.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.4846454Z 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-06-01T21:22:27.4852018Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float8_e4m3fnuz.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.4857628Z 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-06-01T21:22:27.4863285Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float8_e5m2.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.4869187Z 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-06-01T21:22:27.4875029Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float8_e5m2fnuz.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.4880474Z 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-06-01T21:22:27.4885978Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float8_e8m0fnu.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.4902335Z 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-06-01T21:22:27.4907844Z 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-06-01T21:22:27.4913261Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\FunctionRef.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.4918766Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Gauge.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.4924181Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\generic_math.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.4929588Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Half-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.4934963Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Half.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.4940627Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\hash.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.4946246Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\IdWrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.4951464Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\int128.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.4956868Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\IntrusiveList.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.4962417Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\intrusive_ptr.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.4968721Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\irange.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.4984838Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Lazy.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.4990657Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\LeftRight.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.4996236Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\llvmMathExtras.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.5002288Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Load.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.5007683Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Logging.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.5017923Z 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-06-01T21:22:27.5023776Z 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-06-01T21:22:27.5029381Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\MathConstants.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.5035149Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\MaybeOwned.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.5040733Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Metaprogramming.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.5046501Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\NetworkFlow.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.5074212Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\numa.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.5084908Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Optional.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.5090366Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\OptionalArrayRef.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.5096188Z 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-06-01T21:22:27.5102797Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\overflows.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.5108548Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\overloaded.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.5114168Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ParallelGuard.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.5119329Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\python_stub.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.5124990Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\qint32.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.5130229Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\qint8.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.5135288Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\quint2x4.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.5140516Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\quint4x2.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.5156358Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\quint8.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.5161715Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Registry.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.5167006Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\safe_numerics.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.5177283Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ScopeExit.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.5182832Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Semaphore.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.5188544Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\signal_handler.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.5194141Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\SmallBuffer.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.5199709Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\SmallVector.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.5206148Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\sparse_bitset.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.5212182Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ssize.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.5217593Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\static_tracepoint.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.5223837Z 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-06-01T21:22:27.5240661Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\strides.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.5245816Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\StringUtil.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.5251784Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\string_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.5257143Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\string_view.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.5263213Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\strong_type.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.5274708Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Synchronized.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.5280261Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\tempfile.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.5285668Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ThreadLocal.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.5291289Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ThreadLocalDebugInfo.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.5296804Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\thread_name.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.5302100Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Type.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.5307726Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\TypeCast.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.5313337Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\typeid.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.5319110Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\TypeIndex.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.5324743Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\TypeList.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.5330605Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\TypeSafeSignMath.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.5335956Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\TypeTraits.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.5342130Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Unicode.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.5347176Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\UniqueVoidPtr.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.5352667Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Unroll.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.5358105Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\WaitCounter.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.5363885Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\WaitCounterDynamicBackend.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.5369368Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\win32-headers.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:22:27.5385884Z creating build\bdist.win-amd64\wheel\torch\include\c10\xpu 2025-06-01T21:22:27.5399681Z creating build\bdist.win-amd64\wheel\torch\include\c10\xpu\impl 2025-06-01T21:22:27.5402814Z 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-06-01T21:22:27.5408380Z creating build\bdist.win-amd64\wheel\torch\include\c10\xpu\test 2025-06-01T21:22:27.5411538Z creating build\bdist.win-amd64\wheel\torch\include\c10\xpu\test\impl 2025-06-01T21:22:27.5414698Z 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-06-01T21:22:27.5425096Z copying build\lib.win-amd64-cpython-39\torch\include\c10\xpu\XPUCachingAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\xpu 2025-06-01T21:22:27.5430402Z copying build\lib.win-amd64-cpython-39\torch\include\c10\xpu\XPUDeviceProp.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\xpu 2025-06-01T21:22:27.5436052Z copying build\lib.win-amd64-cpython-39\torch\include\c10\xpu\XPUException.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\xpu 2025-06-01T21:22:27.5451728Z copying build\lib.win-amd64-cpython-39\torch\include\c10\xpu\XPUFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\xpu 2025-06-01T21:22:27.5456936Z copying build\lib.win-amd64-cpython-39\torch\include\c10\xpu\XPUMacros.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\xpu 2025-06-01T21:22:27.5462385Z copying build\lib.win-amd64-cpython-39\torch\include\c10\xpu\XPUStream.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\xpu 2025-06-01T21:22:27.5468160Z creating build\bdist.win-amd64\wheel\torch\include\caffe2 2025-06-01T21:22:27.5471359Z creating build\bdist.win-amd64\wheel\torch\include\caffe2\core 2025-06-01T21:22:27.5474532Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\core\common.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\core 2025-06-01T21:22:27.5479826Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\core\macros.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\core 2025-06-01T21:22:27.5485159Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\core\timer.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\core 2025-06-01T21:22:27.5490790Z creating build\bdist.win-amd64\wheel\torch\include\caffe2\perfkernels 2025-06-01T21:22:27.5494121Z 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-06-01T21:22:27.5499647Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\perfkernels\common.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\perfkernels 2025-06-01T21:22:27.5505003Z 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-06-01T21:22:27.5523403Z creating build\bdist.win-amd64\wheel\torch\include\caffe2\serialize 2025-06-01T21:22:27.5526643Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize\crc_alt.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\serialize 2025-06-01T21:22:27.5533120Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize\file_adapter.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\serialize 2025-06-01T21:22:27.5538649Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize\inline_container.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\serialize 2025-06-01T21:22:27.5544344Z 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-06-01T21:22:27.5560120Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize\istream_adapter.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\serialize 2025-06-01T21:22:27.5565587Z 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-06-01T21:22:27.5570765Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize\versions.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\serialize 2025-06-01T21:22:27.5576483Z creating build\bdist.win-amd64\wheel\torch\include\caffe2\utils 2025-06-01T21:22:27.5580162Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\fixed_divisor.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\utils 2025-06-01T21:22:27.5585836Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\proto_wrap.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\utils 2025-06-01T21:22:27.5591202Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\string_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\utils 2025-06-01T21:22:27.5596824Z creating build\bdist.win-amd64\wheel\torch\include\caffe2\utils\threadpool 2025-06-01T21:22:27.5611586Z 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-06-01T21:22:27.5617074Z 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-06-01T21:22:27.5622672Z 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-06-01T21:22:27.5638238Z 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-06-01T21:22:27.5643647Z 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-06-01T21:22:27.5648761Z 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-06-01T21:22:27.5654325Z copying build\lib.win-amd64-cpython-39\torch\include\cpuinfo.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-06-01T21:22:27.5670210Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-06-01T21:22:27.5675611Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl.hpp -> build\bdist.win-amd64\wheel\.\torch\include 2025-06-01T21:22:27.5680885Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_config.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-06-01T21:22:27.5686294Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_debug.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-06-01T21:22:27.5691735Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_ocl.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-06-01T21:22:27.5696985Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_ocl.hpp -> build\bdist.win-amd64\wheel\.\torch\include 2025-06-01T21:22:27.5702348Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_sycl.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-06-01T21:22:27.5707719Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_sycl.hpp -> build\bdist.win-amd64\wheel\.\torch\include 2025-06-01T21:22:27.5713396Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_sycl_types.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-06-01T21:22:27.5719001Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_threadpool.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-06-01T21:22:27.5725369Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_threadpool.hpp -> build\bdist.win-amd64\wheel\.\torch\include 2025-06-01T21:22:27.5731947Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_threadpool_iface.hpp -> build\bdist.win-amd64\wheel\.\torch\include 2025-06-01T21:22:27.5737611Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_types.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-06-01T21:22:27.5743229Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_version.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-06-01T21:22:27.5748808Z copying build\lib.win-amd64-cpython-39\torch\include\experiments-config.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-06-01T21:22:27.5754942Z creating build\bdist.win-amd64\wheel\torch\include\fbgemm 2025-06-01T21:22:27.5758369Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\ConvUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-06-01T21:22:27.5763778Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\Fbgemm.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-06-01T21:22:27.5769758Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmBuild.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-06-01T21:22:27.5775150Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmConvert.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-06-01T21:22:27.5790982Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmEmbedding.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-06-01T21:22:27.5796546Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmFP16.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-06-01T21:22:27.5801856Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmFP32.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-06-01T21:22:27.5807140Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmFPCommon.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-06-01T21:22:27.5812588Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmI64.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-06-01T21:22:27.5817845Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmI8DepthwiseAvx2.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-06-01T21:22:27.5824025Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmI8DirectconvAvx2.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-06-01T21:22:27.5829493Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmI8Spmdm.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-06-01T21:22:27.5834759Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmPackMatrixB.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-06-01T21:22:27.5840381Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmSparse.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-06-01T21:22:27.5845923Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FloatConversion.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-06-01T21:22:27.5851146Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\OutputProcessing-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-06-01T21:22:27.5856562Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\PackingTraits-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-06-01T21:22:27.5862576Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\QuantUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-06-01T21:22:27.5868210Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\QuantUtilsAvx2.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-06-01T21:22:27.5884478Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\QuantUtilsAvx512.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-06-01T21:22:27.5889750Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\QuantUtilsNeon.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-06-01T21:22:27.5895217Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\SimdUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-06-01T21:22:27.5900589Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\spmmUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-06-01T21:22:27.5906101Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\spmmUtilsAvx2.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-06-01T21:22:27.5911471Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\Types.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-06-01T21:22:27.5916518Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\Utils.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-06-01T21:22:27.5921705Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\UtilsAvx2.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-06-01T21:22:27.5927701Z creating build\bdist.win-amd64\wheel\torch\include\fmt 2025-06-01T21:22:27.5930890Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\args.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-06-01T21:22:27.5936096Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\base.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-06-01T21:22:27.5942557Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\chrono.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-06-01T21:22:27.5948706Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\color.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-06-01T21:22:27.5954301Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\compile.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-06-01T21:22:27.5959851Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\core.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-06-01T21:22:27.5964657Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\format-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-06-01T21:22:27.5982503Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\format.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-06-01T21:22:27.5989591Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\os.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-06-01T21:22:27.5994605Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\ostream.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-06-01T21:22:27.5999945Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\printf.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-06-01T21:22:27.6005496Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\ranges.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-06-01T21:22:27.6011109Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\std.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-06-01T21:22:27.6016702Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\xchar.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-06-01T21:22:27.6022277Z creating build\bdist.win-amd64\wheel\torch\include\fp16 2025-06-01T21:22:27.6025744Z copying build\lib.win-amd64-cpython-39\torch\include\fp16\bitcasts.h -> build\bdist.win-amd64\wheel\.\torch\include\fp16 2025-06-01T21:22:27.6030734Z copying build\lib.win-amd64-cpython-39\torch\include\fp16\fp16.h -> build\bdist.win-amd64\wheel\.\torch\include\fp16 2025-06-01T21:22:27.6036164Z copying build\lib.win-amd64-cpython-39\torch\include\fp16\psimd.h -> build\bdist.win-amd64\wheel\.\torch\include\fp16 2025-06-01T21:22:27.6041505Z copying build\lib.win-amd64-cpython-39\torch\include\fp16.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-06-01T21:22:27.6046381Z copying build\lib.win-amd64-cpython-39\torch\include\fxdiv.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-06-01T21:22:27.6061898Z creating build\bdist.win-amd64\wheel\torch\include\google 2025-06-01T21:22:27.6065600Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf 2025-06-01T21:22:27.6068962Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\any.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:22:27.6074478Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\any.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:22:27.6079974Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\api.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:22:27.6086261Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\arena.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:22:27.6092208Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\arenastring.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:22:27.6107963Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\arena_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:22:27.6113701Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler 2025-06-01T21:22:27.6117138Z 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-06-01T21:22:27.6122682Z 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-06-01T21:22:27.6128643Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\cpp 2025-06-01T21:22:27.6132174Z 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-06-01T21:22:27.6137980Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\csharp 2025-06-01T21:22:27.6141521Z 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-06-01T21:22:27.6146949Z 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-06-01T21:22:27.6152228Z 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-06-01T21:22:27.6168277Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\java 2025-06-01T21:22:27.6172041Z 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-06-01T21:22:27.6177420Z 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-06-01T21:22:27.6183056Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\js 2025-06-01T21:22:27.6186379Z 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-06-01T21:22:27.6192062Z 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-06-01T21:22:27.6197603Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\objectivec 2025-06-01T21:22:27.6201334Z 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-06-01T21:22:27.6207025Z 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-06-01T21:22:27.6212458Z 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-06-01T21:22:27.6218539Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\php 2025-06-01T21:22:27.6222490Z 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-06-01T21:22:27.6228860Z 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-06-01T21:22:27.6234395Z 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-06-01T21:22:27.6241847Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\python 2025-06-01T21:22:27.6245908Z 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-06-01T21:22:27.6251694Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\ruby 2025-06-01T21:22:27.6255185Z 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-06-01T21:22:27.6260865Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\descriptor.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:22:27.6267980Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\descriptor.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:22:27.6278440Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\descriptor_database.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:22:27.6284497Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\duration.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:22:27.6290064Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\dynamic_message.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:22:27.6295465Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\empty.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:22:27.6301668Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\extension_set.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:22:27.6308118Z 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-06-01T21:22:27.6313347Z 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-06-01T21:22:27.6318980Z 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-06-01T21:22:27.6324397Z 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-06-01T21:22:27.6330092Z 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-06-01T21:22:27.6335615Z 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-06-01T21:22:27.6351152Z 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-06-01T21:22:27.6356587Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\has_bits.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:22:27.6396273Z 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-06-01T21:22:27.6401653Z 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-06-01T21:22:27.6407454Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\io 2025-06-01T21:22:27.6410816Z 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-06-01T21:22:27.6417054Z 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-06-01T21:22:27.6422419Z 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-06-01T21:22:27.6427619Z 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-06-01T21:22:27.6432871Z 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-06-01T21:22:27.6442909Z 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-06-01T21:22:27.6448735Z 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-06-01T21:22:27.6454049Z 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-06-01T21:22:27.6459695Z 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-06-01T21:22:27.6465722Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\map.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:22:27.6471583Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\map_entry.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:22:27.6477197Z 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-06-01T21:22:27.6483043Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\map_field.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:22:27.6488940Z 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-06-01T21:22:27.6494436Z 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-06-01T21:22:27.6510470Z 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-06-01T21:22:27.6516454Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\message.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:22:27.6522898Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\message_lite.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:22:27.6528774Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\metadata.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:22:27.6534047Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\metadata_lite.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:22:27.6539696Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\parse_context.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:22:27.6545694Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\port.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:22:27.6551132Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\reflection.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:22:27.6557216Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\reflection_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:22:27.6563071Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\repeated_field.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:22:27.6569868Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\service.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:22:27.6575566Z 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-06-01T21:22:27.6590892Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\struct.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:22:27.6597311Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\stubs 2025-06-01T21:22:27.6600709Z 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-06-01T21:22:27.6606220Z 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-06-01T21:22:27.6611925Z 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-06-01T21:22:27.6617271Z 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-06-01T21:22:27.6622794Z 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-06-01T21:22:27.6628032Z 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-06-01T21:22:27.6643630Z 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-06-01T21:22:27.6648981Z 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-06-01T21:22:27.6654624Z 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-06-01T21:22:27.6660354Z 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-06-01T21:22:27.6666136Z 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-06-01T21:22:27.6671334Z 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-06-01T21:22:27.6676636Z 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-06-01T21:22:27.6682056Z 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-06-01T21:22:27.6687290Z 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-06-01T21:22:27.6692591Z 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-06-01T21:22:27.6698947Z 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-06-01T21:22:27.6704784Z 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-06-01T21:22:27.6710481Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\text_format.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:22:27.6716763Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\timestamp.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:22:27.6722227Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\type.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:22:27.6729046Z 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-06-01T21:22:27.6734874Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\util 2025-06-01T21:22:27.6738643Z 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-06-01T21:22:27.6744229Z 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-06-01T21:22:27.6749655Z 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-06-01T21:22:27.6766297Z 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-06-01T21:22:27.6772563Z 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-06-01T21:22:27.6778757Z 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-06-01T21:22:27.6784237Z 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-06-01T21:22:27.6789992Z 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-06-01T21:22:27.6795789Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\wire_format.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:22:27.6801942Z 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-06-01T21:22:27.6808737Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\wrappers.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:22:27.6824992Z copying build\lib.win-amd64-cpython-39\torch\include\ittnotify-zca.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-06-01T21:22:27.6830504Z copying build\lib.win-amd64-cpython-39\torch\include\ittnotify.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-06-01T21:22:27.6838152Z copying build\lib.win-amd64-cpython-39\torch\include\jitprofiling.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-06-01T21:22:27.6844257Z creating build\bdist.win-amd64\wheel\torch\include\kineto 2025-06-01T21:22:27.6847535Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\AbstractConfig.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-06-01T21:22:27.6852999Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ActivityProfilerInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-06-01T21:22:27.6858269Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ActivityTraceInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-06-01T21:22:27.6874398Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ActivityType.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-06-01T21:22:27.6879760Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ClientInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-06-01T21:22:27.6884969Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\Config.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-06-01T21:22:27.6890227Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\GenericTraceActivity.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-06-01T21:22:27.6895739Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\IActivityProfiler.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-06-01T21:22:27.6901096Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ILoggerObserver.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-06-01T21:22:27.6906558Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ITraceActivity.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-06-01T21:22:27.6911781Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\libkineto.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-06-01T21:22:27.6917115Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\LoggingAPI.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-06-01T21:22:27.6922197Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\output_base.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-06-01T21:22:27.6927456Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ThreadUtil.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-06-01T21:22:27.6932833Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\time_since_epoch.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-06-01T21:22:27.6937879Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\TraceSpan.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-06-01T21:22:27.6943315Z creating build\bdist.win-amd64\wheel\torch\include\legacy 2025-06-01T21:22:27.6946386Z copying build\lib.win-amd64-cpython-39\torch\include\legacy\ittnotify.h -> build\bdist.win-amd64\wheel\.\torch\include\legacy 2025-06-01T21:22:27.6952129Z copying build\lib.win-amd64-cpython-39\torch\include\libittnotify.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-06-01T21:22:27.6957006Z copying build\lib.win-amd64-cpython-39\torch\include\libshm.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-06-01T21:22:27.6962421Z creating build\bdist.win-amd64\wheel\torch\include\mimalloc-2.2 2025-06-01T21:22:27.6965736Z 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-06-01T21:22:27.6971096Z 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-06-01T21:22:27.6976333Z 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-06-01T21:22:27.6992096Z 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-06-01T21:22:27.6998268Z creating build\bdist.win-amd64\wheel\torch\include\oneapi 2025-06-01T21:22:27.7001774Z creating build\bdist.win-amd64\wheel\torch\include\oneapi\dnnl 2025-06-01T21:22:27.7004916Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-06-01T21:22:27.7013106Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-06-01T21:22:27.7024246Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_common.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-06-01T21:22:27.7029734Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_common.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-06-01T21:22:27.7035263Z 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-06-01T21:22:27.7050950Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_config.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-06-01T21:22:27.7056370Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_debug.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-06-01T21:22:27.7062001Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_graph.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-06-01T21:22:27.7068035Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_graph.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-06-01T21:22:27.7075152Z 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-06-01T21:22:27.7080034Z 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-06-01T21:22:27.7085307Z 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-06-01T21:22:27.7090612Z 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-06-01T21:22:27.7095844Z 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-06-01T21:22:27.7101687Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_ocl.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-06-01T21:22:27.7107129Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_ocl.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-06-01T21:22:27.7112820Z 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-06-01T21:22:27.7118254Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_sycl.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-06-01T21:22:27.7123963Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_sycl.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-06-01T21:22:27.7129545Z 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-06-01T21:22:27.7135015Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_threadpool.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-06-01T21:22:27.7150708Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_threadpool.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-06-01T21:22:27.7156273Z 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-06-01T21:22:27.7161840Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_types.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-06-01T21:22:27.7168666Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_ukernel.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-06-01T21:22:27.7174366Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_ukernel.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-06-01T21:22:27.7180679Z 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-06-01T21:22:27.7186502Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_version.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-06-01T21:22:27.7192051Z 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-06-01T21:22:27.7197597Z copying build\lib.win-amd64-cpython-39\torch\include\psimd.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-06-01T21:22:27.7203522Z copying build\lib.win-amd64-cpython-39\torch\include\pthreadpool.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-06-01T21:22:27.7210764Z creating build\bdist.win-amd64\wheel\torch\include\pybind11 2025-06-01T21:22:27.7213955Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\attr.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-06-01T21:22:27.7219737Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\buffer_info.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-06-01T21:22:27.7225361Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\cast.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-06-01T21:22:27.7232242Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\chrono.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-06-01T21:22:27.7238533Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\common.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-06-01T21:22:27.7244154Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\complex.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-06-01T21:22:27.7260845Z creating build\bdist.win-amd64\wheel\torch\include\pybind11\detail 2025-06-01T21:22:27.7264218Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\class.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-06-01T21:22:27.7270186Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\common.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-06-01T21:22:27.7277129Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\cpp_conduit.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-06-01T21:22:27.7282601Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\descr.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-06-01T21:22:27.7288124Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\exception_translation.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-06-01T21:22:27.7304191Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\init.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-06-01T21:22:27.7309974Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\internals.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-06-01T21:22:27.7315847Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\typeid.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-06-01T21:22:27.7321082Z 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-06-01T21:22:27.7327024Z 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-06-01T21:22:27.7332324Z creating build\bdist.win-amd64\wheel\torch\include\pybind11\eigen 2025-06-01T21:22:27.7335570Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen\common.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\eigen 2025-06-01T21:22:27.7340752Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen\matrix.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\eigen 2025-06-01T21:22:27.7346857Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen\tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\eigen 2025-06-01T21:22:27.7352636Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-06-01T21:22:27.7357939Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\embed.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-06-01T21:22:27.7363170Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\eval.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-06-01T21:22:27.7368451Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\functional.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-06-01T21:22:27.7373917Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\gil.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-06-01T21:22:27.7379215Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\gil_safe_call_once.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-06-01T21:22:27.7384795Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\iostream.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-06-01T21:22:27.7389928Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\numpy.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-06-01T21:22:27.7396216Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\operators.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-06-01T21:22:27.7401849Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\options.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-06-01T21:22:27.7407292Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\pybind11.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-06-01T21:22:27.7414124Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\pytypes.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-06-01T21:22:27.7420842Z creating build\bdist.win-amd64\wheel\torch\include\pybind11\stl 2025-06-01T21:22:27.7424277Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\stl\filesystem.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\stl 2025-06-01T21:22:27.7429889Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\stl.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-06-01T21:22:27.7435240Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\stl_bind.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-06-01T21:22:27.7440970Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\type_caster_pyobject_ptr.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-06-01T21:22:27.7446201Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\typing.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-06-01T21:22:27.7451431Z copying build\lib.win-amd64-cpython-39\torch\include\sleef.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-06-01T21:22:27.7459734Z creating build\bdist.win-amd64\wheel\torch\include\torch 2025-06-01T21:22:27.7473551Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc 2025-06-01T21:22:27.7476740Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api 2025-06-01T21:22:27.7479937Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include 2025-06-01T21:22:27.7483290Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch 2025-06-01T21:22:27.7486512Z 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-06-01T21:22:27.7491562Z 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-06-01T21:22:27.7496798Z 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-06-01T21:22:27.7502745Z 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-06-01T21:22:27.7508854Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\data 2025-06-01T21:22:27.7512821Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\data\dataloader 2025-06-01T21:22:27.7516397Z 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-06-01T21:22:27.7521946Z 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-06-01T21:22:27.7527385Z 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-06-01T21:22:27.7533069Z 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-06-01T21:22:27.7538642Z 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-06-01T21:22:27.7544318Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\data\datasets 2025-06-01T21:22:27.7558785Z 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-06-01T21:22:27.7564142Z 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-06-01T21:22:27.7569921Z 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-06-01T21:22:27.7575504Z 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-06-01T21:22:27.7580764Z 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-06-01T21:22:27.7586576Z 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-06-01T21:22:27.7592047Z 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-06-01T21:22:27.7607304Z 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-06-01T21:22:27.7612700Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\data\detail 2025-06-01T21:22:27.7616228Z 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-06-01T21:22:27.7621799Z 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-06-01T21:22:27.7627227Z 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-06-01T21:22:27.7632573Z 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-06-01T21:22:27.7637932Z 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-06-01T21:22:27.7643726Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\data\samplers 2025-06-01T21:22:27.7647114Z 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-06-01T21:22:27.7652553Z 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-06-01T21:22:27.7657862Z 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-06-01T21:22:27.7663394Z 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-06-01T21:22:27.7668748Z 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-06-01T21:22:27.7683645Z 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-06-01T21:22:27.7689116Z 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-06-01T21:22:27.7694487Z 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-06-01T21:22:27.7699826Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\data\transforms 2025-06-01T21:22:27.7703371Z 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-06-01T21:22:27.7709027Z 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-06-01T21:22:27.7714370Z 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-06-01T21:22:27.7719658Z 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-06-01T21:22:27.7725058Z 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-06-01T21:22:27.7730820Z 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-06-01T21:22:27.7736225Z 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-06-01T21:22:27.7742303Z 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-06-01T21:22:27.7747660Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\detail 2025-06-01T21:22:27.7750970Z 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-06-01T21:22:27.7756483Z 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-06-01T21:22:27.7762879Z 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-06-01T21:22:27.7778020Z 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-06-01T21:22:27.7783387Z 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-06-01T21:22:27.7788637Z 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-06-01T21:22:27.7793770Z 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-06-01T21:22:27.7798761Z 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-06-01T21:22:27.7803980Z 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-06-01T21:22:27.7809440Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn 2025-06-01T21:22:27.7812797Z 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-06-01T21:22:27.7818451Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn\functional 2025-06-01T21:22:27.7821989Z 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-06-01T21:22:27.7827827Z 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-06-01T21:22:27.7833251Z 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-06-01T21:22:27.7838501Z 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-06-01T21:22:27.7853101Z 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-06-01T21:22:27.7858307Z 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-06-01T21:22:27.7864339Z 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-06-01T21:22:27.7869910Z 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-06-01T21:22:27.7876240Z 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-06-01T21:22:27.7881586Z 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-06-01T21:22:27.7887478Z 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-06-01T21:22:27.7893025Z 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-06-01T21:22:27.7898635Z 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-06-01T21:22:27.7904182Z 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-06-01T21:22:27.7910122Z 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-06-01T21:22:27.7915688Z 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-06-01T21:22:27.7920799Z 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-06-01T21:22:27.7926105Z 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-06-01T21:22:27.7950848Z 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-06-01T21:22:27.7951212Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn\modules 2025-06-01T21:22:27.7951860Z 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-06-01T21:22:27.7956694Z 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-06-01T21:22:27.7962136Z 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-06-01T21:22:27.7967822Z 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-06-01T21:22:27.7973496Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-06-01T21:22:27.8014951Z 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-06-01T21:22:27.8020660Z 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-06-01T21:22:27.8026312Z 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-06-01T21:22:27.8031740Z 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-06-01T21:22:27.8047889Z 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-06-01T21:22:27.8053284Z 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-06-01T21:22:27.8058644Z 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-06-01T21:22:27.8064412Z 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-06-01T21:22:27.8069984Z 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-06-01T21:22:27.8075465Z 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-06-01T21:22:27.8080904Z 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-06-01T21:22:27.8086769Z 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-06-01T21:22:27.8092140Z 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-06-01T21:22:27.8097444Z 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-06-01T21:22:27.8103060Z 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-06-01T21:22:27.8108510Z 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-06-01T21:22:27.8114244Z 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-06-01T21:22:27.8119802Z 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-06-01T21:22:27.8125751Z 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-06-01T21:22:27.8131176Z 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-06-01T21:22:27.8136624Z 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-06-01T21:22:27.8142270Z 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-06-01T21:22:27.8147974Z 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-06-01T21:22:27.8153355Z 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-06-01T21:22:27.8158979Z 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-06-01T21:22:27.8164787Z 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-06-01T21:22:27.8178138Z 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-06-01T21:22:27.8183719Z 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-06-01T21:22:27.8189015Z 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-06-01T21:22:27.8194285Z 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-06-01T21:22:27.8224786Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn\options 2025-06-01T21:22:27.8228116Z 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-06-01T21:22:27.8234016Z 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-06-01T21:22:27.8239629Z 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-06-01T21:22:27.8244927Z 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-06-01T21:22:27.8250419Z 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-06-01T21:22:27.8265596Z 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-06-01T21:22:27.8271322Z 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-06-01T21:22:27.8276542Z 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-06-01T21:22:27.8282199Z 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-06-01T21:22:27.8287522Z 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-06-01T21:22:27.8300312Z 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-06-01T21:22:27.8306421Z 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-06-01T21:22:27.8311767Z 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-06-01T21:22:27.8331958Z 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-06-01T21:22:27.8337261Z 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-06-01T21:22:27.8343792Z 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-06-01T21:22:27.8349911Z 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-06-01T21:22:27.8356126Z 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-06-01T21:22:27.8362599Z 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-06-01T21:22:27.8368477Z 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-06-01T21:22:27.8374097Z 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-06-01T21:22:27.8379671Z 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-06-01T21:22:27.8385156Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn\parallel 2025-06-01T21:22:27.8388684Z 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-06-01T21:22:27.8394312Z 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-06-01T21:22:27.8400072Z 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-06-01T21:22:27.8405608Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn\utils 2025-06-01T21:22:27.8409155Z 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-06-01T21:22:27.8414964Z 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-06-01T21:22:27.8420214Z 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-06-01T21:22:27.8425661Z 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-06-01T21:22:27.8431026Z 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-06-01T21:22:27.8436802Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\optim 2025-06-01T21:22:27.8440230Z 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-06-01T21:22:27.8445722Z 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-06-01T21:22:27.8451100Z 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-06-01T21:22:27.8456494Z 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-06-01T21:22:27.8462067Z 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-06-01T21:22:27.8467755Z 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-06-01T21:22:27.8484195Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\optim\schedulers 2025-06-01T21:22:27.8487774Z 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-06-01T21:22:27.8493545Z 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-06-01T21:22:27.8498912Z 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-06-01T21:22:27.8513944Z 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-06-01T21:22:27.8519522Z 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-06-01T21:22:27.8524784Z 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-06-01T21:22:27.8530166Z 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-06-01T21:22:27.8536297Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\python 2025-06-01T21:22:27.8539673Z 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-06-01T21:22:27.8544970Z 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-06-01T21:22:27.8550543Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\serialize 2025-06-01T21:22:27.8554099Z 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-06-01T21:22:27.8559300Z 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-06-01T21:22:27.8564524Z 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-06-01T21:22:27.8569930Z 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-06-01T21:22:27.8585312Z 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-06-01T21:22:27.8590636Z 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-06-01T21:22:27.8595734Z 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-06-01T21:22:27.8601632Z 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-06-01T21:22:27.8606610Z 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-06-01T21:22:27.8611916Z 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-06-01T21:22:27.8617126Z 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-06-01T21:22:27.8622328Z 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-06-01T21:22:27.8648453Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\autograd 2025-06-01T21:22:27.8651757Z 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-06-01T21:22:27.8657146Z 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-06-01T21:22:27.8662749Z 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-06-01T21:22:27.8668046Z 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-06-01T21:22:27.8683456Z 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-06-01T21:22:27.8689434Z 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-06-01T21:22:27.8694839Z 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-06-01T21:22:27.8700407Z 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-06-01T21:22:27.8705819Z 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-06-01T21:22:27.8712310Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\autograd\functions 2025-06-01T21:22:27.8715852Z 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-06-01T21:22:27.8721137Z 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-06-01T21:22:27.8726517Z 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-06-01T21:22:27.8731860Z 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-06-01T21:22:27.8747787Z 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-06-01T21:22:27.8753636Z 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-06-01T21:22:27.8759934Z 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-06-01T21:22:27.8766067Z 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-06-01T21:22:27.8771890Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\autograd\generated 2025-06-01T21:22:27.8775568Z 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-06-01T21:22:27.8786242Z 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-06-01T21:22:27.8792152Z 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-06-01T21:22:27.8807923Z 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-06-01T21:22:27.8813632Z 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-06-01T21:22:27.8820324Z 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-06-01T21:22:27.8826759Z 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-06-01T21:22:27.8832067Z 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-06-01T21:22:27.8837659Z 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-06-01T21:22:27.8842887Z 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-06-01T21:22:27.8848393Z 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-06-01T21:22:27.8853814Z 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-06-01T21:22:27.8859669Z 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-06-01T21:22:27.8864575Z 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-06-01T21:22:27.8870183Z 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-06-01T21:22:27.8886274Z 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-06-01T21:22:27.8891597Z 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-06-01T21:22:27.8897083Z 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-06-01T21:22:27.8902449Z 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-06-01T21:22:27.8907943Z 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-06-01T21:22:27.8913469Z 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-06-01T21:22:27.8918788Z 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-06-01T21:22:27.8924250Z 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-06-01T21:22:27.8929749Z 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-06-01T21:22:27.8945479Z 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-06-01T21:22:27.8950892Z 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-06-01T21:22:27.8956383Z 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-06-01T21:22:27.8961606Z 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-06-01T21:22:27.8967004Z 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-06-01T21:22:27.8973104Z 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-06-01T21:22:27.8978377Z 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-06-01T21:22:27.8983911Z 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-06-01T21:22:27.8989255Z 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-06-01T21:22:27.9005268Z 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-06-01T21:22:27.9010870Z 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-06-01T21:22:27.9016014Z 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-06-01T21:22:27.9021613Z 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-06-01T21:22:27.9026815Z 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-06-01T21:22:27.9032007Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\autograd\utils 2025-06-01T21:22:27.9035288Z 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-06-01T21:22:27.9040409Z 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-06-01T21:22:27.9045732Z 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-06-01T21:22:27.9051441Z 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-06-01T21:22:27.9066815Z 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-06-01T21:22:27.9071881Z 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-06-01T21:22:27.9077242Z 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-06-01T21:22:27.9083292Z 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-06-01T21:22:27.9088855Z 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-06-01T21:22:27.9115493Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\copy_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:22:27.9120884Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\cpu 2025-06-01T21:22:27.9124357Z 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-06-01T21:22:27.9129606Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\cuda 2025-06-01T21:22:27.9132822Z 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-06-01T21:22:27.9138264Z 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-06-01T21:22:27.9143651Z 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-06-01T21:22:27.9148724Z 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-06-01T21:22:27.9153955Z 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-06-01T21:22:27.9169169Z 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-06-01T21:22:27.9174491Z 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-06-01T21:22:27.9179486Z 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-06-01T21:22:27.9184871Z 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-06-01T21:22:27.9190064Z 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-06-01T21:22:27.9195444Z 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-06-01T21:22:27.9200459Z 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-06-01T21:22:27.9205458Z 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-06-01T21:22:27.9210475Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\CudaIPCTypes.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:22:27.9226718Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\DataLoader.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:22:27.9231902Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Device.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:22:27.9237124Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\DeviceAccelerator.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:22:27.9242544Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed 2025-06-01T21:22:27.9245861Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\autograd 2025-06-01T21:22:27.9249171Z 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-06-01T21:22:27.9255122Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\autograd\context 2025-06-01T21:22:27.9258525Z 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-06-01T21:22:27.9264858Z 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-06-01T21:22:27.9271107Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\autograd\engine 2025-06-01T21:22:27.9274560Z 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-06-01T21:22:27.9280383Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\autograd\functions 2025-06-01T21:22:27.9284018Z 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-06-01T21:22:27.9289797Z 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-06-01T21:22:27.9296043Z 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-06-01T21:22:27.9310976Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-06-01T21:22:27.9314795Z 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-06-01T21:22:27.9320463Z 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-06-01T21:22:27.9326037Z 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-06-01T21:22:27.9341525Z 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-06-01T21:22:27.9347152Z 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-06-01T21:22:27.9352978Z 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-06-01T21:22:27.9358594Z 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-06-01T21:22:27.9364759Z 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-06-01T21:22:27.9370254Z 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-06-01T21:22:27.9375894Z 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-06-01T21:22:27.9381213Z 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-06-01T21:22:27.9387495Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:27.9391055Z 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-06-01T21:22:27.9396424Z 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-06-01T21:22:27.9401968Z 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-06-01T21:22:27.9433455Z 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-06-01T21:22:27.9438898Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\c10d\control_collectives 2025-06-01T21:22:27.9442476Z 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-06-01T21:22:27.9447906Z 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-06-01T21:22:27.9453199Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\c10d\control_plane 2025-06-01T21:22:27.9466772Z 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-06-01T21:22:27.9472521Z 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-06-01T21:22:27.9478386Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\c10d\cuda 2025-06-01T21:22:27.9481656Z 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-06-01T21:22:27.9486725Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\CUDASymmetricMemory-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:27.9492567Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\CUDASymmetricMemory.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:27.9497969Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\CUDASymmetricMemoryTypes.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:27.9503177Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\CUDASymmetricMemoryUtils.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:27.9508292Z 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-06-01T21:22:27.9513344Z 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-06-01T21:22:27.9519071Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\DMAConnectivity.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:27.9524332Z 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-06-01T21:22:27.9529430Z 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-06-01T21:22:27.9535086Z 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-06-01T21:22:27.9540616Z 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-06-01T21:22:27.9546115Z 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-06-01T21:22:27.9551726Z 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-06-01T21:22:27.9556778Z 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-06-01T21:22:27.9562232Z 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-06-01T21:22:27.9577550Z 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-06-01T21:22:27.9583044Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\intra_node_comm.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:27.9588582Z 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-06-01T21:22:27.9593889Z 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-06-01T21:22:27.9599143Z 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-06-01T21:22:27.9604198Z 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-06-01T21:22:27.9609699Z 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-06-01T21:22:27.9615061Z 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-06-01T21:22:27.9632568Z 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-06-01T21:22:27.9638917Z 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-06-01T21:22:27.9655227Z 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-06-01T21:22:27.9661648Z 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-06-01T21:22:27.9667348Z 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-06-01T21:22:27.9674331Z 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-06-01T21:22:27.9680246Z 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-06-01T21:22:27.9685926Z 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-06-01T21:22:27.9691560Z 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-06-01T21:22:27.9697302Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\c10d\quantization 2025-06-01T21:22:27.9700969Z 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-06-01T21:22:27.9706323Z 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-06-01T21:22:27.9712297Z 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-06-01T21:22:27.9756718Z 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-06-01T21:22:27.9772420Z 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-06-01T21:22:27.9778443Z 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-06-01T21:22:27.9784200Z 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-06-01T21:22:27.9789850Z 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-06-01T21:22:27.9795226Z 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-06-01T21:22:27.9800971Z 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-06-01T21:22:27.9806676Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\SymmetricMemory.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:22:27.9812574Z 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-06-01T21:22:27.9818651Z 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-06-01T21:22:27.9824791Z 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-06-01T21:22:27.9830484Z 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-06-01T21:22:27.9836018Z 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-06-01T21:22:27.9851689Z 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-06-01T21:22:27.9856796Z 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-06-01T21:22:27.9862140Z 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-06-01T21:22:27.9868015Z 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-06-01T21:22:27.9873308Z 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-06-01T21:22:27.9879249Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\rpc 2025-06-01T21:22:27.9882693Z 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-06-01T21:22:27.9887963Z 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-06-01T21:22:27.9893340Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\rpc\metrics 2025-06-01T21:22:27.9896747Z 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-06-01T21:22:27.9902452Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\rpc\profiler 2025-06-01T21:22:27.9906043Z 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-06-01T21:22:27.9911550Z 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-06-01T21:22:27.9916720Z 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-06-01T21:22:27.9932198Z 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-06-01T21:22:27.9937520Z 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-06-01T21:22:27.9942971Z 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-06-01T21:22:27.9948372Z 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-06-01T21:22:27.9954127Z 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-06-01T21:22:27.9959431Z 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-06-01T21:22:27.9964972Z 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-06-01T21:22:27.9986950Z 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-06-01T21:22:27.9992813Z 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-06-01T21:22:27.9997859Z 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-06-01T21:22:28.0003223Z 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-06-01T21:22:28.0008573Z 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-06-01T21:22:28.0013986Z 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-06-01T21:22:28.0019965Z 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-06-01T21:22:28.0025473Z 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-06-01T21:22:28.0031042Z 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-06-01T21:22:28.0046678Z 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-06-01T21:22:28.0052430Z 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-06-01T21:22:28.0058287Z 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-06-01T21:22:28.0063958Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\rpc\testing 2025-06-01T21:22:28.0067482Z 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-06-01T21:22:28.0072881Z 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-06-01T21:22:28.0077971Z 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-06-01T21:22:28.0083203Z 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-06-01T21:22:28.0088253Z 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-06-01T21:22:28.0093698Z 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-06-01T21:22:28.0099207Z 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-06-01T21:22:28.0104744Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Dtype.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:22:28.0110156Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\DynamicTypes.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:22:28.0115518Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\dynamo 2025-06-01T21:22:28.0118670Z 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-06-01T21:22:28.0124003Z 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-06-01T21:22:28.0130179Z 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-06-01T21:22:28.0135251Z 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-06-01T21:22:28.0151282Z 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-06-01T21:22:28.0156666Z 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-06-01T21:22:28.0162100Z 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-06-01T21:22:28.0167557Z 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-06-01T21:22:28.0172689Z 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-06-01T21:22:28.0177883Z 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-06-01T21:22:28.0183259Z 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-06-01T21:22:28.0188674Z 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-06-01T21:22:28.0193795Z 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-06-01T21:22:28.0198689Z 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-06-01T21:22:28.0203708Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Event.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:22:28.0209172Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Exceptions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:22:28.0216472Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\export 2025-06-01T21:22:28.0219479Z 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-06-01T21:22:28.0225429Z 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-06-01T21:22:28.0231218Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Export.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:22:28.0237234Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\functorch 2025-06-01T21:22:28.0241120Z 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-06-01T21:22:28.0246752Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\fx 2025-06-01T21:22:28.0250262Z 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-06-01T21:22:28.0255860Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Generator.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:22:28.0261934Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor 2025-06-01T21:22:28.0265261Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_eager 2025-06-01T21:22:28.0269048Z 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-06-01T21:22:28.0274689Z 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-06-01T21:22:28.0280394Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_include 2025-06-01T21:22:28.0283840Z 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-06-01T21:22:28.0288987Z 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-06-01T21:22:28.0294125Z 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-06-01T21:22:28.0299315Z 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-06-01T21:22:28.0304662Z 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-06-01T21:22:28.0327662Z 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-06-01T21:22:28.0333022Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_package 2025-06-01T21:22:28.0336677Z 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-06-01T21:22:28.0342313Z 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-06-01T21:22:28.0348196Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_runner 2025-06-01T21:22:28.0361608Z 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-06-01T21:22:28.0367353Z 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-06-01T21:22:28.0372402Z 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-06-01T21:22:28.0387780Z 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-06-01T21:22:28.0392926Z 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-06-01T21:22:28.0398326Z 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-06-01T21:22:28.0403526Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_runtime 2025-06-01T21:22:28.0407379Z 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-06-01T21:22:28.0412703Z 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-06-01T21:22:28.0417884Z 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-06-01T21:22:28.0433085Z 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-06-01T21:22:28.0438595Z 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-06-01T21:22:28.0443671Z 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-06-01T21:22:28.0449528Z 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-06-01T21:22:28.0455397Z 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-06-01T21:22:28.0460850Z 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-06-01T21:22:28.0466606Z 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-06-01T21:22:28.0471746Z 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-06-01T21:22:28.0476989Z 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-06-01T21:22:28.0482546Z 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-06-01T21:22:28.0487967Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_torch 2025-06-01T21:22:28.0491295Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_torch\c 2025-06-01T21:22:28.0494595Z 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-06-01T21:22:28.0500340Z 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-06-01T21:22:28.0505631Z 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-06-01T21:22:28.0511043Z 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-06-01T21:22:28.0516351Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_torch\generated 2025-06-01T21:22:28.0519730Z 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-06-01T21:22:28.0525866Z 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-06-01T21:22:28.0531778Z 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-06-01T21:22:28.0546910Z 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-06-01T21:22:28.0552436Z 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-06-01T21:22:28.0557753Z 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-06-01T21:22:28.0573025Z 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-06-01T21:22:28.0578316Z 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-06-01T21:22:28.0583690Z 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-06-01T21:22:28.0589205Z 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-06-01T21:22:28.0594798Z 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-06-01T21:22:28.0601086Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\cpp_wrapper 2025-06-01T21:22:28.0604511Z 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-06-01T21:22:28.0609757Z 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-06-01T21:22:28.0615183Z 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-06-01T21:22:28.0620118Z 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-06-01T21:22:28.0625507Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal 2025-06-01T21:22:28.0638893Z 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-06-01T21:22:28.0644697Z 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-06-01T21:22:28.0649780Z 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-06-01T21:22:28.0655162Z 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-06-01T21:22:28.0660341Z 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-06-01T21:22:28.0665481Z 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-06-01T21:22:28.0670744Z 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-06-01T21:22:28.0676245Z 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-06-01T21:22:28.0681533Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\instruction_counter 2025-06-01T21:22:28.0685088Z 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-06-01T21:22:28.0690085Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\itt.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:22:28.0695212Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\itt_wrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:22:28.0700757Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit 2025-06-01T21:22:28.0704221Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\api 2025-06-01T21:22:28.0707687Z 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-06-01T21:22:28.0713462Z 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-06-01T21:22:28.0718899Z 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-06-01T21:22:28.0724237Z 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-06-01T21:22:28.0730140Z 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-06-01T21:22:28.0745712Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends 2025-06-01T21:22:28.0748922Z 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-06-01T21:22:28.0754973Z 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-06-01T21:22:28.0761212Z 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-06-01T21:22:28.0766715Z 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-06-01T21:22:28.0782182Z 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-06-01T21:22:28.0787881Z 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-06-01T21:22:28.0793067Z 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-06-01T21:22:28.0823839Z 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-06-01T21:22:28.0829287Z 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-06-01T21:22:28.0834773Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\coreml 2025-06-01T21:22:28.0838096Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\coreml\cpp 2025-06-01T21:22:28.0841311Z 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-06-01T21:22:28.0846495Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\coreml\objc 2025-06-01T21:22:28.0850192Z 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-06-01T21:22:28.0855386Z 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-06-01T21:22:28.0860687Z 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-06-01T21:22:28.0876095Z 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-06-01T21:22:28.0881596Z 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-06-01T21:22:28.0886900Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\xnnpack 2025-06-01T21:22:28.0890319Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\xnnpack\compiler 2025-06-01T21:22:28.0893705Z 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-06-01T21:22:28.0899075Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\xnnpack\executor 2025-06-01T21:22:28.0902725Z 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-06-01T21:22:28.0908139Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\xnnpack\serialization 2025-06-01T21:22:28.0911728Z 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-06-01T21:22:28.0917366Z 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-06-01T21:22:28.0923099Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\codegen 2025-06-01T21:22:28.0926294Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\codegen\cuda 2025-06-01T21:22:28.0929845Z 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-06-01T21:22:28.0935684Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\codegen\fuser 2025-06-01T21:22:28.0939089Z 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-06-01T21:22:28.0944608Z 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-06-01T21:22:28.0949838Z 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-06-01T21:22:28.0955289Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\codegen\fuser\cpu 2025-06-01T21:22:28.0958706Z 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-06-01T21:22:28.0964317Z 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-06-01T21:22:28.0969686Z 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-06-01T21:22:28.0975310Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\codegen\fuser\cuda 2025-06-01T21:22:28.0978879Z 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-06-01T21:22:28.0984738Z 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-06-01T21:22:28.0990186Z 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-06-01T21:22:28.0995394Z 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-06-01T21:22:28.1010294Z 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-06-01T21:22:28.1015647Z 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-06-01T21:22:28.1021207Z 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-06-01T21:22:28.1026757Z 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-06-01T21:22:28.1032508Z 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-06-01T21:22:28.1038325Z 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-06-01T21:22:28.1044009Z 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-06-01T21:22:28.1049566Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\codegen\onednn 2025-06-01T21:22:28.1052925Z 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-06-01T21:22:28.1058331Z 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-06-01T21:22:28.1063654Z 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-06-01T21:22:28.1069267Z 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-06-01T21:22:28.1084557Z 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-06-01T21:22:28.1089765Z 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-06-01T21:22:28.1095305Z 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-06-01T21:22:28.1100753Z 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-06-01T21:22:28.1106502Z 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-06-01T21:22:28.1112032Z 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-06-01T21:22:28.1117370Z 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-06-01T21:22:28.1122677Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\cuda 2025-06-01T21:22:28.1126097Z 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-06-01T21:22:28.1131816Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\frontend 2025-06-01T21:22:28.1135288Z 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-06-01T21:22:28.1140596Z 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-06-01T21:22:28.1145810Z 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-06-01T21:22:28.1161842Z 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-06-01T21:22:28.1167366Z 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-06-01T21:22:28.1172630Z 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-06-01T21:22:28.1178096Z 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-06-01T21:22:28.1183531Z 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-06-01T21:22:28.1189935Z 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-06-01T21:22:28.1194646Z 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-06-01T21:22:28.1199863Z 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-06-01T21:22:28.1217105Z 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-06-01T21:22:28.1222919Z 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-06-01T21:22:28.1228351Z 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-06-01T21:22:28.1233682Z 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-06-01T21:22:28.1238984Z 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-06-01T21:22:28.1244567Z 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-06-01T21:22:28.1249986Z 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-06-01T21:22:28.1255314Z 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-06-01T21:22:28.1260950Z 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-06-01T21:22:28.1276445Z 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-06-01T21:22:28.1282475Z 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-06-01T21:22:28.1287761Z 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-06-01T21:22:28.1292959Z 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-06-01T21:22:28.1298843Z 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-06-01T21:22:28.1304204Z 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-06-01T21:22:28.1309503Z 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-06-01T21:22:28.1315557Z 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-06-01T21:22:28.1321227Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\ir 2025-06-01T21:22:28.1324633Z 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-06-01T21:22:28.1330337Z 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-06-01T21:22:28.1368730Z 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-06-01T21:22:28.1373985Z 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-06-01T21:22:28.1386179Z 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-06-01T21:22:28.1391415Z 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-06-01T21:22:28.1398694Z 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-06-01T21:22:28.1405243Z 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-06-01T21:22:28.1410461Z 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-06-01T21:22:28.1416113Z 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-06-01T21:22:28.1421362Z 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-06-01T21:22:28.1427403Z 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-06-01T21:22:28.1432994Z 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-06-01T21:22:28.1438099Z 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-06-01T21:22:28.1443567Z 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-06-01T21:22:28.1459855Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\mobile 2025-06-01T21:22:28.1463444Z 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-06-01T21:22:28.1469073Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\mobile\compatibility 2025-06-01T21:22:28.1472521Z 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-06-01T21:22:28.1477783Z 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-06-01T21:22:28.1523194Z 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-06-01T21:22:28.1538867Z 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-06-01T21:22:28.1544426Z 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-06-01T21:22:28.1549995Z 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-06-01T21:22:28.1565776Z 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-06-01T21:22:28.1571042Z 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-06-01T21:22:28.1576604Z 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-06-01T21:22:28.1581950Z 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-06-01T21:22:28.1587573Z 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-06-01T21:22:28.1593254Z 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-06-01T21:22:28.1599068Z 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-06-01T21:22:28.1604093Z 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-06-01T21:22:28.1609702Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\mobile\model_tracer 2025-06-01T21:22:28.1613354Z 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-06-01T21:22:28.1618804Z 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-06-01T21:22:28.1624330Z 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-06-01T21:22:28.1639765Z 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-06-01T21:22:28.1645089Z 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-06-01T21:22:28.1650419Z 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-06-01T21:22:28.1655657Z 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-06-01T21:22:28.1660866Z 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-06-01T21:22:28.1666467Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\mobile\nnc 2025-06-01T21:22:28.1669899Z 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-06-01T21:22:28.1675066Z 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-06-01T21:22:28.1680539Z 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-06-01T21:22:28.1685878Z 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-06-01T21:22:28.1691012Z 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-06-01T21:22:28.1696298Z 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-06-01T21:22:28.1701741Z 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-06-01T21:22:28.1707301Z 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-06-01T21:22:28.1712902Z 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-06-01T21:22:28.1718619Z 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-06-01T21:22:28.1723932Z 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-06-01T21:22:28.1739505Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\mobile\train 2025-06-01T21:22:28.1743058Z 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-06-01T21:22:28.1748601Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\mobile\train\optim 2025-06-01T21:22:28.1751687Z 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-06-01T21:22:28.1756952Z 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-06-01T21:22:28.1762236Z 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-06-01T21:22:28.1767654Z 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-06-01T21:22:28.1773021Z 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-06-01T21:22:28.1778610Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\operator_upgraders 2025-06-01T21:22:28.1782110Z 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-06-01T21:22:28.1787302Z 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-06-01T21:22:28.1792287Z 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-06-01T21:22:28.1797810Z 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-06-01T21:22:28.1814763Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\passes 2025-06-01T21:22:28.1818022Z 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-06-01T21:22:28.1823327Z 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-06-01T21:22:28.1828667Z 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-06-01T21:22:28.1834321Z 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-06-01T21:22:28.1850549Z 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-06-01T21:22:28.1856590Z 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-06-01T21:22:28.1862726Z 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-06-01T21:22:28.1878506Z 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-06-01T21:22:28.1883673Z 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-06-01T21:22:28.1889118Z 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-06-01T21:22:28.1895057Z 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-06-01T21:22:28.1900572Z 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-06-01T21:22:28.1906422Z 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-06-01T21:22:28.1912015Z 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-06-01T21:22:28.1917595Z 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-06-01T21:22:28.1923232Z 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-06-01T21:22:28.1928570Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\passes\dbr_quantization 2025-06-01T21:22:28.1932179Z 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-06-01T21:22:28.1937261Z 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-06-01T21:22:28.1943367Z 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-06-01T21:22:28.1958443Z 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-06-01T21:22:28.1963778Z 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-06-01T21:22:28.1969035Z 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-06-01T21:22:28.1974347Z 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-06-01T21:22:28.1979687Z 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-06-01T21:22:28.1985250Z 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-06-01T21:22:28.1990645Z 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-06-01T21:22:28.1996384Z 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-06-01T21:22:28.2002039Z 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-06-01T21:22:28.2017329Z 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-06-01T21:22:28.2022588Z 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-06-01T21:22:28.2028105Z 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-06-01T21:22:28.2033621Z 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-06-01T21:22:28.2038780Z 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-06-01T21:22:28.2043795Z 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-06-01T21:22:28.2049449Z 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-06-01T21:22:28.2055153Z 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-06-01T21:22:28.2060116Z 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-06-01T21:22:28.2074935Z 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-06-01T21:22:28.2080395Z 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-06-01T21:22:28.2085832Z 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-06-01T21:22:28.2090938Z 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-06-01T21:22:28.2096064Z 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-06-01T21:22:28.2101681Z 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-06-01T21:22:28.2107063Z 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-06-01T21:22:28.2112464Z 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-06-01T21:22:28.2117763Z 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-06-01T21:22:28.2133364Z 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-06-01T21:22:28.2138632Z 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-06-01T21:22:28.2143934Z 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-06-01T21:22:28.2149130Z 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-06-01T21:22:28.2155377Z 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-06-01T21:22:28.2160783Z 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-06-01T21:22:28.2166269Z 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-06-01T21:22:28.2171976Z 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-06-01T21:22:28.2177412Z 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-06-01T21:22:28.2183044Z 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-06-01T21:22:28.2188348Z 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-06-01T21:22:28.2212072Z 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-06-01T21:22:28.2218047Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\passes\onnx 2025-06-01T21:22:28.2222021Z 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-06-01T21:22:28.2227363Z 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-06-01T21:22:28.2232757Z 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-06-01T21:22:28.2238326Z 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-06-01T21:22:28.2253832Z 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-06-01T21:22:28.2259460Z 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-06-01T21:22:28.2265165Z 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-06-01T21:22:28.2271216Z 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-06-01T21:22:28.2277963Z 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-06-01T21:22:28.2284110Z 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-06-01T21:22:28.2291179Z 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-06-01T21:22:28.2296411Z 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-06-01T21:22:28.2302138Z 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-06-01T21:22:28.2307544Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion 2025-06-01T21:22:28.2311470Z 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-06-01T21:22:28.2316989Z 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-06-01T21:22:28.2322280Z 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-06-01T21:22:28.2337935Z 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-06-01T21:22:28.2343488Z 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-06-01T21:22:28.2348567Z 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-06-01T21:22:28.2353948Z 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-06-01T21:22:28.2396624Z 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-06-01T21:22:28.2401856Z 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-06-01T21:22:28.2407109Z 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-06-01T21:22:28.2422694Z 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-06-01T21:22:28.2428402Z 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-06-01T21:22:28.2433510Z 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-06-01T21:22:28.2438947Z 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-06-01T21:22:28.2444604Z 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-06-01T21:22:28.2449791Z 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-06-01T21:22:28.2455404Z 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-06-01T21:22:28.2461163Z 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-06-01T21:22:28.2466259Z 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-06-01T21:22:28.2593401Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\passes\quantization 2025-06-01T21:22:28.2596893Z 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-06-01T21:22:28.2602563Z 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-06-01T21:22:28.2608058Z 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-06-01T21:22:28.2613401Z 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-06-01T21:22:28.2629125Z 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-06-01T21:22:28.2634856Z 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-06-01T21:22:28.2640492Z 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-06-01T21:22:28.2647002Z 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-06-01T21:22:28.2652544Z 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-06-01T21:22:28.2657698Z 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-06-01T21:22:28.2663565Z 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-06-01T21:22:28.2668970Z 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-06-01T21:22:28.2674853Z 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-06-01T21:22:28.2680280Z 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-06-01T21:22:28.2685537Z 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-06-01T21:22:28.2691658Z 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-06-01T21:22:28.2697458Z 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-06-01T21:22:28.2713834Z 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-06-01T21:22:28.2719269Z 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-06-01T21:22:28.2724818Z 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-06-01T21:22:28.2730717Z 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-06-01T21:22:28.2736320Z 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-06-01T21:22:28.2742389Z 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-06-01T21:22:28.2748125Z 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-06-01T21:22:28.2780946Z 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-06-01T21:22:28.2787712Z 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-06-01T21:22:28.2794052Z 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-06-01T21:22:28.2800069Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\passes\utils 2025-06-01T21:22:28.2803736Z 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-06-01T21:22:28.2809443Z 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-06-01T21:22:28.2814938Z 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-06-01T21:22:28.2830359Z 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-06-01T21:22:28.2835735Z 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-06-01T21:22:28.2841391Z 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-06-01T21:22:28.2846898Z 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-06-01T21:22:28.2852426Z 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-06-01T21:22:28.2857754Z 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-06-01T21:22:28.2863986Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\python 2025-06-01T21:22:28.2867488Z 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-06-01T21:22:28.2872742Z 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-06-01T21:22:28.2878101Z 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-06-01T21:22:28.2883700Z 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-06-01T21:22:28.2889403Z 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-06-01T21:22:28.2904404Z 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-06-01T21:22:28.2909648Z 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-06-01T21:22:28.2914980Z 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-06-01T21:22:28.2920495Z 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-06-01T21:22:28.2926227Z 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-06-01T21:22:28.2931632Z 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-06-01T21:22:28.2937370Z 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-06-01T21:22:28.2943166Z 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-06-01T21:22:28.2948570Z 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-06-01T21:22:28.2954011Z 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-06-01T21:22:28.2959442Z 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-06-01T21:22:28.2964503Z 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-06-01T21:22:28.2970319Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\runtime 2025-06-01T21:22:28.2973876Z 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-06-01T21:22:28.2979648Z 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-06-01T21:22:28.2985726Z 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-06-01T21:22:28.2991407Z 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-06-01T21:22:28.3006623Z 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-06-01T21:22:28.3012274Z 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-06-01T21:22:28.3017686Z 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-06-01T21:22:28.3023460Z 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-06-01T21:22:28.3028735Z 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-06-01T21:22:28.3034100Z 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-06-01T21:22:28.3039778Z 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-06-01T21:22:28.3045414Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\runtime\interpreter 2025-06-01T21:22:28.3048810Z 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-06-01T21:22:28.3054180Z 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-06-01T21:22:28.3059949Z 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-06-01T21:22:28.3065358Z 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-06-01T21:22:28.3080488Z 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-06-01T21:22:28.3086075Z 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-06-01T21:22:28.3091572Z 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-06-01T21:22:28.3096935Z 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-06-01T21:22:28.3102470Z 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-06-01T21:22:28.3108004Z 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-06-01T21:22:28.3113261Z 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-06-01T21:22:28.3118559Z 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-06-01T21:22:28.3133801Z 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-06-01T21:22:28.3139712Z 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-06-01T21:22:28.3145827Z 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-06-01T21:22:28.3151774Z 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-06-01T21:22:28.3157430Z 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-06-01T21:22:28.3163013Z 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-06-01T21:22:28.3168738Z 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-06-01T21:22:28.3174272Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\runtime\static 2025-06-01T21:22:28.3177779Z 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-06-01T21:22:28.3183353Z 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-06-01T21:22:28.3189578Z 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-06-01T21:22:28.3194648Z 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-06-01T21:22:28.3199904Z 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-06-01T21:22:28.3205619Z 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-06-01T21:22:28.3221135Z 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-06-01T21:22:28.3226646Z 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-06-01T21:22:28.3232369Z 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-06-01T21:22:28.3292805Z 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-06-01T21:22:28.3298433Z 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-06-01T21:22:28.3447287Z 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-06-01T21:22:28.3453118Z 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-06-01T21:22:28.3458419Z 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-06-01T21:22:28.3463753Z 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-06-01T21:22:28.3469486Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\serialization 2025-06-01T21:22:28.3473100Z 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-06-01T21:22:28.3478353Z 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-06-01T21:22:28.3483737Z 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-06-01T21:22:28.3498834Z 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-06-01T21:22:28.3504400Z 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-06-01T21:22:28.3509789Z 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-06-01T21:22:28.3515143Z 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-06-01T21:22:28.3520433Z 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-06-01T21:22:28.3525692Z 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-06-01T21:22:28.3531078Z 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-06-01T21:22:28.3536412Z 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-06-01T21:22:28.3542077Z 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-06-01T21:22:28.3548806Z 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-06-01T21:22:28.3554168Z 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-06-01T21:22:28.3559932Z 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-06-01T21:22:28.3565517Z 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-06-01T21:22:28.3571260Z 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-06-01T21:22:28.3576979Z 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-06-01T21:22:28.3582676Z 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-06-01T21:22:28.3588202Z 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-06-01T21:22:28.3603218Z 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-06-01T21:22:28.3609274Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:22:28.3613000Z 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-06-01T21:22:28.3618749Z 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-06-01T21:22:28.3624256Z 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-06-01T21:22:28.3629692Z 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-06-01T21:22:28.3645475Z 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-06-01T21:22:28.3650905Z 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-06-01T21:22:28.3656454Z 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-06-01T21:22:28.3662001Z 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-06-01T21:22:28.3667480Z 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-06-01T21:22:28.3683582Z 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-06-01T21:22:28.3689222Z 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-06-01T21:22:28.3694777Z 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-06-01T21:22:28.3700235Z 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-06-01T21:22:28.3706391Z 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-06-01T21:22:28.3712654Z 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-06-01T21:22:28.3718424Z 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-06-01T21:22:28.3724215Z 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-06-01T21:22:28.3729970Z 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-06-01T21:22:28.3736008Z 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-06-01T21:22:28.3741646Z 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-06-01T21:22:28.3747004Z 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-06-01T21:22:28.3762998Z 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-06-01T21:22:28.3768561Z 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-06-01T21:22:28.3774262Z 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-06-01T21:22:28.3780921Z 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-06-01T21:22:28.3786532Z 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-06-01T21:22:28.3791962Z 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-06-01T21:22:28.3797789Z 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-06-01T21:22:28.3803300Z 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-06-01T21:22:28.3808998Z 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-06-01T21:22:28.3814310Z 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-06-01T21:22:28.3820131Z 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-06-01T21:22:28.3835589Z 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-06-01T21:22:28.3841642Z 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-06-01T21:22:28.3847366Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\tensorexpr\operators 2025-06-01T21:22:28.3850819Z 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-06-01T21:22:28.3856184Z 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-06-01T21:22:28.3861465Z 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-06-01T21:22:28.3867080Z 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-06-01T21:22:28.3872151Z 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-06-01T21:22:28.3886728Z 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-06-01T21:22:28.3892117Z 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-06-01T21:22:28.3897657Z 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-06-01T21:22:28.3903368Z 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-06-01T21:22:28.3908352Z 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-06-01T21:22:28.3913881Z 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-06-01T21:22:28.3919413Z 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-06-01T21:22:28.3925597Z 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-06-01T21:22:28.3931122Z 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-06-01T21:22:28.3936400Z 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-06-01T21:22:28.3942766Z 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-06-01T21:22:28.3948217Z 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-06-01T21:22:28.3954245Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\testing 2025-06-01T21:22:28.3957585Z 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-06-01T21:22:28.3962781Z 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-06-01T21:22:28.3968902Z 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-06-01T21:22:28.3974722Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Layout.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:22:28.3980275Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy 2025-06-01T21:22:28.3983707Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\backend 2025-06-01T21:22:28.3987004Z 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-06-01T21:22:28.3992491Z 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-06-01T21:22:28.3998655Z 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-06-01T21:22:28.4004324Z 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-06-01T21:22:28.4020020Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\core 2025-06-01T21:22:28.4023956Z 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-06-01T21:22:28.4029432Z 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-06-01T21:22:28.4034621Z 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-06-01T21:22:28.4039688Z 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-06-01T21:22:28.4045123Z 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-06-01T21:22:28.4059759Z 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-06-01T21:22:28.4065433Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\core\internal_ops 2025-06-01T21:22:28.4068892Z 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-06-01T21:22:28.4074318Z 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-06-01T21:22:28.4079868Z 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-06-01T21:22:28.4085442Z 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-06-01T21:22:28.4090856Z 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-06-01T21:22:28.4096488Z 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-06-01T21:22:28.4102128Z 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-06-01T21:22:28.4108087Z 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-06-01T21:22:28.4113652Z 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-06-01T21:22:28.4119449Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\core\ops 2025-06-01T21:22:28.4122997Z 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-06-01T21:22:28.4128541Z 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-06-01T21:22:28.4134952Z 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-06-01T21:22:28.4139965Z 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-06-01T21:22:28.4145797Z 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-06-01T21:22:28.4151580Z 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-06-01T21:22:28.4157167Z 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-06-01T21:22:28.4163115Z 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-06-01T21:22:28.4168563Z 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-06-01T21:22:28.4173980Z 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-06-01T21:22:28.4179491Z 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-06-01T21:22:28.4246599Z 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-06-01T21:22:28.4251969Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\generated 2025-06-01T21:22:28.4255484Z 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-06-01T21:22:28.4264372Z 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-06-01T21:22:28.4270410Z 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-06-01T21:22:28.4276249Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\python 2025-06-01T21:22:28.4280107Z 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-06-01T21:22:28.4285930Z 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-06-01T21:22:28.4291778Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\ts_backend 2025-06-01T21:22:28.4305845Z 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-06-01T21:22:28.4311121Z 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-06-01T21:22:28.4316463Z 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-06-01T21:22:28.4322151Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\ts_backend\ops 2025-06-01T21:22:28.4335293Z 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-06-01T21:22:28.4340677Z 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-06-01T21:22:28.4346372Z 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-06-01T21:22:28.4351489Z 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-06-01T21:22:28.4356581Z 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-06-01T21:22:28.4362355Z 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-06-01T21:22:28.4368105Z 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-06-01T21:22:28.4373449Z 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-06-01T21:22:28.4378632Z 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-06-01T21:22:28.4416761Z 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-06-01T21:22:28.4422437Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\MemoryFormat.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:22:28.4437805Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Module.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:22:28.4443245Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\monitor 2025-06-01T21:22:28.4446503Z 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-06-01T21:22:28.4452302Z 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-06-01T21:22:28.4457502Z 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-06-01T21:22:28.4462961Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\mps 2025-06-01T21:22:28.4466876Z 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-06-01T21:22:28.4472619Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\mtia 2025-06-01T21:22:28.4476178Z 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-06-01T21:22:28.4481509Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\mtia\profiler 2025-06-01T21:22:28.4485035Z 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-06-01T21:22:28.4490792Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\multiprocessing 2025-06-01T21:22:28.4494230Z 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-06-01T21:22:28.4499410Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\onnx 2025-06-01T21:22:28.4502945Z 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-06-01T21:22:28.4508769Z 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-06-01T21:22:28.4514385Z 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-06-01T21:22:28.4519921Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\profiler 2025-06-01T21:22:28.4523308Z 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-06-01T21:22:28.4528518Z 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-06-01T21:22:28.4534513Z 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-06-01T21:22:28.4539988Z 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-06-01T21:22:28.4554919Z 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-06-01T21:22:28.4574984Z 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-06-01T21:22:28.4580738Z 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-06-01T21:22:28.4586109Z 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-06-01T21:22:28.4592298Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\profiler\orchestration 2025-06-01T21:22:28.4595613Z 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-06-01T21:22:28.4600946Z 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-06-01T21:22:28.4606511Z 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-06-01T21:22:28.4611884Z 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-06-01T21:22:28.4617319Z 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-06-01T21:22:28.4623381Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\profiler\python 2025-06-01T21:22:28.4626897Z 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-06-01T21:22:28.4632588Z 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-06-01T21:22:28.4637909Z 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-06-01T21:22:28.4643679Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\profiler\standalone 2025-06-01T21:22:28.4647710Z 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-06-01T21:22:28.4653291Z 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-06-01T21:22:28.4658333Z 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-06-01T21:22:28.4673628Z 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-06-01T21:22:28.4679122Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\profiler\stubs 2025-06-01T21:22:28.4682365Z 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-06-01T21:22:28.4688252Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\profiler\unwind 2025-06-01T21:22:28.4691706Z 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-06-01T21:22:28.4697183Z 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-06-01T21:22:28.4702770Z 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-06-01T21:22:28.4708293Z 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-06-01T21:22:28.4723553Z 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-06-01T21:22:28.4729084Z 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-06-01T21:22:28.4734835Z 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-06-01T21:22:28.4740674Z 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-06-01T21:22:28.4746084Z 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-06-01T21:22:28.4751947Z 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-06-01T21:22:28.4757524Z 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-06-01T21:22:28.4763055Z 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-06-01T21:22:28.4768461Z 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-06-01T21:22:28.4773882Z 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-06-01T21:22:28.4778992Z 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-06-01T21:22:28.4784578Z 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-06-01T21:22:28.4790070Z 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-06-01T21:22:28.4795659Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\PyInterpreter.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:22:28.4801070Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\python_dimname.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:22:28.4806432Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\python_headers.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:22:28.4811897Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\QScheme.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:22:28.4816949Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\serialization.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:22:28.4822805Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Size.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:22:28.4828146Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\stable 2025-06-01T21:22:28.4841273Z 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-06-01T21:22:28.4846837Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Storage.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:22:28.4852618Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\StorageMethods.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:22:28.4858079Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\StorageSharing.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:22:28.4863306Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Stream.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:22:28.4868503Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\tensor 2025-06-01T21:22:28.4871700Z 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-06-01T21:22:28.4896643Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\THConcat.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:22:28.4902231Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\THP.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:22:28.4907864Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\TypeInfo.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:22:28.4913260Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Types.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:22:28.4919320Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\utils 2025-06-01T21:22:28.4923556Z 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-06-01T21:22:28.4930175Z 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-06-01T21:22:28.4935394Z 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-06-01T21:22:28.4940875Z 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-06-01T21:22:28.4956904Z 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-06-01T21:22:28.4962641Z 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-06-01T21:22:28.4969931Z 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-06-01T21:22:28.4975641Z 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-06-01T21:22:28.4981163Z 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-06-01T21:22:28.4986617Z 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-06-01T21:22:28.4992092Z 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-06-01T21:22:28.4997877Z 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-06-01T21:22:28.5003530Z 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-06-01T21:22:28.5009212Z 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-06-01T21:22:28.5014329Z 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-06-01T21:22:28.5019736Z 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-06-01T21:22:28.5026373Z 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-06-01T21:22:28.5032448Z 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-06-01T21:22:28.5037890Z 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-06-01T21:22:28.5043087Z 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-06-01T21:22:28.5058154Z 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-06-01T21:22:28.5063706Z 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-06-01T21:22:28.5069100Z 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-06-01T21:22:28.5074862Z 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-06-01T21:22:28.5080101Z 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-06-01T21:22:28.5085902Z 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-06-01T21:22:28.5091352Z 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-06-01T21:22:28.5097032Z 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-06-01T21:22:28.5102531Z 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-06-01T21:22:28.5107980Z 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-06-01T21:22:28.5123172Z 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-06-01T21:22:28.5162211Z 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-06-01T21:22:28.5167606Z 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-06-01T21:22:28.5173193Z 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-06-01T21:22:28.5178443Z 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-06-01T21:22:28.5183970Z 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-06-01T21:22:28.5189242Z 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-06-01T21:22:28.5194881Z 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-06-01T21:22:28.5200586Z 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-06-01T21:22:28.5211453Z 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-06-01T21:22:28.5217232Z 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-06-01T21:22:28.5222966Z 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-06-01T21:22:28.5228599Z 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-06-01T21:22:28.5234092Z 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-06-01T21:22:28.5258201Z 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-06-01T21:22:28.5263443Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:22:28.5269150Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\xpu 2025-06-01T21:22:28.5272524Z 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-06-01T21:22:28.5277754Z 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-06-01T21:22:28.5283017Z 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-06-01T21:22:28.5289807Z copying build\lib.win-amd64-cpython-39\torch\include\torch\custom_class.h -> build\bdist.win-amd64\wheel\.\torch\include\torch 2025-06-01T21:22:28.5296128Z copying build\lib.win-amd64-cpython-39\torch\include\torch\custom_class_detail.h -> build\bdist.win-amd64\wheel\.\torch\include\torch 2025-06-01T21:22:28.5302651Z copying build\lib.win-amd64-cpython-39\torch\include\torch\extension.h -> build\bdist.win-amd64\wheel\.\torch\include\torch 2025-06-01T21:22:28.5317501Z copying build\lib.win-amd64-cpython-39\torch\include\torch\library.h -> build\bdist.win-amd64\wheel\.\torch\include\torch 2025-06-01T21:22:28.5323455Z copying build\lib.win-amd64-cpython-39\torch\include\torch\script.h -> build\bdist.win-amd64\wheel\.\torch\include\torch 2025-06-01T21:22:28.5329309Z copying build\lib.win-amd64-cpython-39\torch\include\xnnpack.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-06-01T21:22:28.5345516Z creating build\bdist.win-amd64\wheel\torch\jit 2025-06-01T21:22:28.5348808Z copying build\lib.win-amd64-cpython-39\torch\jit\annotations.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-06-01T21:22:28.5354695Z copying build\lib.win-amd64-cpython-39\torch\jit\frontend.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-06-01T21:22:28.5360497Z copying build\lib.win-amd64-cpython-39\torch\jit\generate_bytecode.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-06-01T21:22:28.5366269Z creating build\bdist.win-amd64\wheel\torch\jit\mobile 2025-06-01T21:22:28.5369447Z copying build\lib.win-amd64-cpython-39\torch\jit\mobile\__init__.py -> build\bdist.win-amd64\wheel\.\torch\jit\mobile 2025-06-01T21:22:28.5374927Z copying build\lib.win-amd64-cpython-39\torch\jit\quantized.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-06-01T21:22:28.5389815Z copying build\lib.win-amd64-cpython-39\torch\jit\supported_ops.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-06-01T21:22:28.5395237Z copying build\lib.win-amd64-cpython-39\torch\jit\unsupported_tensor_ops.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-06-01T21:22:28.5400759Z copying build\lib.win-amd64-cpython-39\torch\jit\_async.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-06-01T21:22:28.5405938Z copying build\lib.win-amd64-cpython-39\torch\jit\_await.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-06-01T21:22:28.5410913Z copying build\lib.win-amd64-cpython-39\torch\jit\_builtins.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-06-01T21:22:28.5415942Z copying build\lib.win-amd64-cpython-39\torch\jit\_check.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-06-01T21:22:28.5421604Z copying build\lib.win-amd64-cpython-39\torch\jit\_dataclass_impls.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-06-01T21:22:28.5427320Z copying build\lib.win-amd64-cpython-39\torch\jit\_decompositions.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-06-01T21:22:28.5432704Z copying build\lib.win-amd64-cpython-39\torch\jit\_decomposition_utils.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-06-01T21:22:28.5437678Z copying build\lib.win-amd64-cpython-39\torch\jit\_freeze.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-06-01T21:22:28.5442845Z copying build\lib.win-amd64-cpython-39\torch\jit\_fuser.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-06-01T21:22:28.5448034Z copying build\lib.win-amd64-cpython-39\torch\jit\_ir_utils.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-06-01T21:22:28.5453378Z copying build\lib.win-amd64-cpython-39\torch\jit\_logging.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-06-01T21:22:28.5458405Z copying build\lib.win-amd64-cpython-39\torch\jit\_monkeytype_config.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-06-01T21:22:28.5464111Z creating build\bdist.win-amd64\wheel\torch\jit\_passes 2025-06-01T21:22:28.5467303Z copying build\lib.win-amd64-cpython-39\torch\jit\_passes\_property_propagation.py -> build\bdist.win-amd64\wheel\.\torch\jit\_passes 2025-06-01T21:22:28.5472874Z copying build\lib.win-amd64-cpython-39\torch\jit\_passes\__init__.py -> build\bdist.win-amd64\wheel\.\torch\jit\_passes 2025-06-01T21:22:28.5477169Z copying build\lib.win-amd64-cpython-39\torch\jit\_pickle.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-06-01T21:22:28.5482482Z copying build\lib.win-amd64-cpython-39\torch\jit\_recursive.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-06-01T21:22:28.5488312Z copying build\lib.win-amd64-cpython-39\torch\jit\_script.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-06-01T21:22:28.5494646Z copying build\lib.win-amd64-cpython-39\torch\jit\_script.pyi -> build\bdist.win-amd64\wheel\.\torch\jit 2025-06-01T21:22:28.5500110Z copying build\lib.win-amd64-cpython-39\torch\jit\_serialization.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-06-01T21:22:28.5516116Z copying build\lib.win-amd64-cpython-39\torch\jit\_shape_functions.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-06-01T21:22:28.5521998Z copying build\lib.win-amd64-cpython-39\torch\jit\_state.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-06-01T21:22:28.5527405Z copying build\lib.win-amd64-cpython-39\torch\jit\_trace.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-06-01T21:22:28.5533803Z copying build\lib.win-amd64-cpython-39\torch\jit\__init__.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-06-01T21:22:28.5539676Z creating build\bdist.win-amd64\wheel\torch\lib 2025-06-01T21:22:28.5543043Z copying build\lib.win-amd64-cpython-39\torch\lib\aoti_custom_ops.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:22:28.5550573Z copying build\lib.win-amd64-cpython-39\torch\lib\aoti_custom_ops.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:22:28.5556653Z copying build\lib.win-amd64-cpython-39\torch\lib\asmjit.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:22:28.5568986Z copying build\lib.win-amd64-cpython-39\torch\lib\asmjit.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:22:28.5574701Z copying build\lib.win-amd64-cpython-39\torch\lib\backend_with_compiler.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:22:28.5592176Z copying build\lib.win-amd64-cpython-39\torch\lib\backend_with_compiler.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:22:28.5598546Z copying build\lib.win-amd64-cpython-39\torch\lib\c10.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:22:28.5612839Z copying build\lib.win-amd64-cpython-39\torch\lib\c10.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:22:28.5625427Z copying build\lib.win-amd64-cpython-39\torch\lib\cpuinfo.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:22:28.5632301Z copying build\lib.win-amd64-cpython-39\torch\lib\dnnl.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:22:29.1683266Z copying build\lib.win-amd64-cpython-39\torch\lib\fbgemm.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:22:29.1740725Z copying build\lib.win-amd64-cpython-39\torch\lib\fbgemm.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:22:29.1761046Z copying build\lib.win-amd64-cpython-39\torch\lib\fmt.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:22:29.1780070Z copying build\lib.win-amd64-cpython-39\torch\lib\jitbackend_test.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:22:29.1789104Z copying build\lib.win-amd64-cpython-39\torch\lib\jitbackend_test.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:22:29.1796244Z copying build\lib.win-amd64-cpython-39\torch\lib\kineto.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:22:29.2001632Z copying build\lib.win-amd64-cpython-39\torch\lib\libittnotify.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:22:29.2010577Z copying build\lib.win-amd64-cpython-39\torch\lib\libprotobuf-lite.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:22:29.2060438Z copying build\lib.win-amd64-cpython-39\torch\lib\libprotobuf.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:22:29.2412725Z copying build\lib.win-amd64-cpython-39\torch\lib\libprotoc.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:22:29.2778772Z creating build\bdist.win-amd64\wheel\torch\lib\libshm 2025-06-01T21:22:29.2783085Z copying build\lib.win-amd64-cpython-39\torch\lib\libshm\alloc_info.h -> build\bdist.win-amd64\wheel\.\torch\lib\libshm 2025-06-01T21:22:29.2789215Z copying build\lib.win-amd64-cpython-39\torch\lib\libshm\err.h -> build\bdist.win-amd64\wheel\.\torch\lib\libshm 2025-06-01T21:22:29.2795270Z copying build\lib.win-amd64-cpython-39\torch\lib\libshm\libshm.h -> build\bdist.win-amd64\wheel\.\torch\lib\libshm 2025-06-01T21:22:29.2801386Z copying build\lib.win-amd64-cpython-39\torch\lib\libshm\socket.h -> build\bdist.win-amd64\wheel\.\torch\lib\libshm 2025-06-01T21:22:29.2808234Z creating build\bdist.win-amd64\wheel\torch\lib\libshm_windows 2025-06-01T21:22:29.2812146Z copying build\lib.win-amd64-cpython-39\torch\lib\libshm_windows\libshm.h -> build\bdist.win-amd64\wheel\.\torch\lib\libshm_windows 2025-06-01T21:22:29.2818381Z copying build\lib.win-amd64-cpython-39\torch\lib\microkernels-prod.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:22:29.2849976Z copying build\lib.win-amd64-cpython-39\torch\lib\pthreadpool.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:22:29.2862318Z copying build\lib.win-amd64-cpython-39\torch\lib\shm.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:22:29.2867716Z copying build\lib.win-amd64-cpython-39\torch\lib\shm.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:22:29.2872994Z copying build\lib.win-amd64-cpython-39\torch\lib\sleef.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:22:29.2953069Z copying build\lib.win-amd64-cpython-39\torch\lib\torch.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:22:29.2958419Z copying build\lib.win-amd64-cpython-39\torch\lib\torch.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:22:29.2963602Z copying build\lib.win-amd64-cpython-39\torch\lib\torchbind_test.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:22:29.2974372Z copying build\lib.win-amd64-cpython-39\torch\lib\torchbind_test.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:22:29.2980322Z copying build\lib.win-amd64-cpython-39\torch\lib\torch_cpu.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:22:29.4227886Z copying build\lib.win-amd64-cpython-39\torch\lib\torch_cpu.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:22:29.4480699Z copying build\lib.win-amd64-cpython-39\torch\lib\torch_global_deps.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:22:29.4486667Z copying build\lib.win-amd64-cpython-39\torch\lib\torch_python.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:22:29.4625412Z copying build\lib.win-amd64-cpython-39\torch\lib\torch_python.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:22:29.4638962Z copying build\lib.win-amd64-cpython-39\torch\lib\XNNPACK.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:22:29.4667490Z copying build\lib.win-amd64-cpython-39\torch\lib\_C.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:22:29.4672652Z copying build\lib.win-amd64-cpython-39\torch\library.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:22:29.4679238Z creating build\bdist.win-amd64\wheel\torch\linalg 2025-06-01T21:22:29.4682314Z copying build\lib.win-amd64-cpython-39\torch\linalg\__init__.py -> build\bdist.win-amd64\wheel\.\torch\linalg 2025-06-01T21:22:29.4689035Z creating build\bdist.win-amd64\wheel\torch\masked 2025-06-01T21:22:29.4692552Z creating build\bdist.win-amd64\wheel\torch\masked\maskedtensor 2025-06-01T21:22:29.4695737Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\binary.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-06-01T21:22:29.4700787Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\core.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-06-01T21:22:29.4705942Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\creation.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-06-01T21:22:29.4711179Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\passthrough.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-06-01T21:22:29.4716249Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\reductions.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-06-01T21:22:29.4727623Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\unary.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-06-01T21:22:29.4733059Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\_ops_refs.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-06-01T21:22:29.4739076Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-06-01T21:22:29.4745110Z copying build\lib.win-amd64-cpython-39\torch\masked\_docs.py -> build\bdist.win-amd64\wheel\.\torch\masked 2025-06-01T21:22:29.4751166Z copying build\lib.win-amd64-cpython-39\torch\masked\_ops.py -> build\bdist.win-amd64\wheel\.\torch\masked 2025-06-01T21:22:29.4757338Z copying build\lib.win-amd64-cpython-39\torch\masked\__init__.py -> build\bdist.win-amd64\wheel\.\torch\masked 2025-06-01T21:22:29.4763229Z creating build\bdist.win-amd64\wheel\torch\monitor 2025-06-01T21:22:29.4766583Z copying build\lib.win-amd64-cpython-39\torch\monitor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\monitor 2025-06-01T21:22:29.4771973Z creating build\bdist.win-amd64\wheel\torch\mps 2025-06-01T21:22:29.4775348Z copying build\lib.win-amd64-cpython-39\torch\mps\event.py -> build\bdist.win-amd64\wheel\.\torch\mps 2025-06-01T21:22:29.4780768Z copying build\lib.win-amd64-cpython-39\torch\mps\profiler.py -> build\bdist.win-amd64\wheel\.\torch\mps 2025-06-01T21:22:29.4785981Z copying build\lib.win-amd64-cpython-39\torch\mps\__init__.py -> build\bdist.win-amd64\wheel\.\torch\mps 2025-06-01T21:22:29.4791290Z creating build\bdist.win-amd64\wheel\torch\mtia 2025-06-01T21:22:29.4806634Z copying build\lib.win-amd64-cpython-39\torch\mtia\memory.py -> build\bdist.win-amd64\wheel\.\torch\mtia 2025-06-01T21:22:29.4811997Z copying build\lib.win-amd64-cpython-39\torch\mtia\_utils.py -> build\bdist.win-amd64\wheel\.\torch\mtia 2025-06-01T21:22:29.4817282Z copying build\lib.win-amd64-cpython-39\torch\mtia\__init__.py -> build\bdist.win-amd64\wheel\.\torch\mtia 2025-06-01T21:22:29.4823196Z creating build\bdist.win-amd64\wheel\torch\multiprocessing 2025-06-01T21:22:29.4826417Z copying build\lib.win-amd64-cpython-39\torch\multiprocessing\pool.py -> build\bdist.win-amd64\wheel\.\torch\multiprocessing 2025-06-01T21:22:29.4831813Z copying build\lib.win-amd64-cpython-39\torch\multiprocessing\queue.py -> build\bdist.win-amd64\wheel\.\torch\multiprocessing 2025-06-01T21:22:29.4837140Z copying build\lib.win-amd64-cpython-39\torch\multiprocessing\reductions.py -> build\bdist.win-amd64\wheel\.\torch\multiprocessing 2025-06-01T21:22:29.4843080Z copying build\lib.win-amd64-cpython-39\torch\multiprocessing\spawn.py -> build\bdist.win-amd64\wheel\.\torch\multiprocessing 2025-06-01T21:22:29.4849166Z copying build\lib.win-amd64-cpython-39\torch\multiprocessing\_atfork.py -> build\bdist.win-amd64\wheel\.\torch\multiprocessing 2025-06-01T21:22:29.4859993Z copying build\lib.win-amd64-cpython-39\torch\multiprocessing\__init__.py -> build\bdist.win-amd64\wheel\.\torch\multiprocessing 2025-06-01T21:22:29.4866270Z creating build\bdist.win-amd64\wheel\torch\nested 2025-06-01T21:22:29.4869572Z creating build\bdist.win-amd64\wheel\torch\nested\_internal 2025-06-01T21:22:29.4873006Z copying build\lib.win-amd64-cpython-39\torch\nested\_internal\nested_int.py -> build\bdist.win-amd64\wheel\.\torch\nested\_internal 2025-06-01T21:22:29.4878568Z copying build\lib.win-amd64-cpython-39\torch\nested\_internal\nested_tensor.py -> build\bdist.win-amd64\wheel\.\torch\nested\_internal 2025-06-01T21:22:29.4884781Z copying build\lib.win-amd64-cpython-39\torch\nested\_internal\ops.py -> build\bdist.win-amd64\wheel\.\torch\nested\_internal 2025-06-01T21:22:29.4891346Z copying build\lib.win-amd64-cpython-39\torch\nested\_internal\sdpa.py -> build\bdist.win-amd64\wheel\.\torch\nested\_internal 2025-06-01T21:22:29.4902179Z copying build\lib.win-amd64-cpython-39\torch\nested\_internal\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nested\_internal 2025-06-01T21:22:29.4906440Z copying build\lib.win-amd64-cpython-39\torch\nested\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nested 2025-06-01T21:22:29.4912312Z creating build\bdist.win-amd64\wheel\torch\nn 2025-06-01T21:22:29.4915594Z creating build\bdist.win-amd64\wheel\torch\nn\attention 2025-06-01T21:22:29.4918979Z copying build\lib.win-amd64-cpython-39\torch\nn\attention\bias.py -> build\bdist.win-amd64\wheel\.\torch\nn\attention 2025-06-01T21:22:29.4924742Z creating build\bdist.win-amd64\wheel\torch\nn\attention\experimental 2025-06-01T21:22:29.4928098Z copying build\lib.win-amd64-cpython-39\torch\nn\attention\experimental\_paged_attention.py -> build\bdist.win-amd64\wheel\.\torch\nn\attention\experimental 2025-06-01T21:22:29.4933446Z copying build\lib.win-amd64-cpython-39\torch\nn\attention\experimental\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\attention\experimental 2025-06-01T21:22:29.4938482Z copying build\lib.win-amd64-cpython-39\torch\nn\attention\flex_attention.py -> build\bdist.win-amd64\wheel\.\torch\nn\attention 2025-06-01T21:22:29.4945057Z copying build\lib.win-amd64-cpython-39\torch\nn\attention\_utils.py -> build\bdist.win-amd64\wheel\.\torch\nn\attention 2025-06-01T21:22:29.4954831Z copying build\lib.win-amd64-cpython-39\torch\nn\attention\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\attention 2025-06-01T21:22:29.4960231Z creating build\bdist.win-amd64\wheel\torch\nn\backends 2025-06-01T21:22:29.4963332Z copying build\lib.win-amd64-cpython-39\torch\nn\backends\thnn.py -> build\bdist.win-amd64\wheel\.\torch\nn\backends 2025-06-01T21:22:29.4968240Z copying build\lib.win-amd64-cpython-39\torch\nn\backends\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\backends 2025-06-01T21:22:29.4972482Z copying build\lib.win-amd64-cpython-39\torch\nn\common_types.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-06-01T21:22:29.4977678Z copying build\lib.win-amd64-cpython-39\torch\nn\cpp.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-06-01T21:22:29.4982896Z copying build\lib.win-amd64-cpython-39\torch\nn\functional.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-06-01T21:22:29.4994854Z copying build\lib.win-amd64-cpython-39\torch\nn\functional.pyi -> build\bdist.win-amd64\wheel\.\torch\nn 2025-06-01T21:22:29.5001064Z copying build\lib.win-amd64-cpython-39\torch\nn\grad.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-06-01T21:22:29.5006253Z copying build\lib.win-amd64-cpython-39\torch\nn\init.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-06-01T21:22:29.5012495Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic 2025-06-01T21:22:29.5015876Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\modules 2025-06-01T21:22:29.5019105Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\modules\fused.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\modules 2025-06-01T21:22:29.5024415Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\modules 2025-06-01T21:22:29.5029478Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\qat 2025-06-01T21:22:29.5032765Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\qat\modules 2025-06-01T21:22:29.5036083Z 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-06-01T21:22:29.5041439Z 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-06-01T21:22:29.5046402Z 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-06-01T21:22:29.5051357Z 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-06-01T21:22:29.5061119Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\qat 2025-06-01T21:22:29.5066280Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\quantized 2025-06-01T21:22:29.5069570Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\quantized\dynamic 2025-06-01T21:22:29.5073136Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\quantized\dynamic\modules 2025-06-01T21:22:29.5076456Z 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-06-01T21:22:29.5081592Z 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-06-01T21:22:29.5086491Z 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-06-01T21:22:29.5091564Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\quantized\modules 2025-06-01T21:22:29.5094801Z 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-06-01T21:22:29.5099865Z 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-06-01T21:22:29.5105039Z 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-06-01T21:22:29.5110031Z 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-06-01T21:22:29.5114944Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\quantized 2025-06-01T21:22:29.5119836Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic 2025-06-01T21:22:29.5125529Z creating build\bdist.win-amd64\wheel\torch\nn\modules 2025-06-01T21:22:29.5128696Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\activation.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-06-01T21:22:29.5134836Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\adaptive.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-06-01T21:22:29.5139987Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\batchnorm.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-06-01T21:22:29.5146058Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\channelshuffle.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-06-01T21:22:29.5156215Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\container.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-06-01T21:22:29.5162213Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\conv.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-06-01T21:22:29.5168965Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\distance.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-06-01T21:22:29.5174270Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\dropout.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-06-01T21:22:29.5179526Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\flatten.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-06-01T21:22:29.5185419Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\fold.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-06-01T21:22:29.5190930Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\instancenorm.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-06-01T21:22:29.5196730Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\lazy.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-06-01T21:22:29.5202118Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\linear.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-06-01T21:22:29.5207341Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\loss.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-06-01T21:22:29.5213818Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\module.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-06-01T21:22:29.5220603Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\normalization.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-06-01T21:22:29.5226214Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\padding.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-06-01T21:22:29.5232056Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\pixelshuffle.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-06-01T21:22:29.5237648Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\pooling.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-06-01T21:22:29.5243815Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\rnn.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-06-01T21:22:29.5250165Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\sparse.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-06-01T21:22:29.5255974Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\transformer.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-06-01T21:22:29.5262782Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\upsampling.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-06-01T21:22:29.5268201Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\utils.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-06-01T21:22:29.5273515Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\_functions.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-06-01T21:22:29.5279037Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-06-01T21:22:29.5284754Z creating build\bdist.win-amd64\wheel\torch\nn\parallel 2025-06-01T21:22:29.5288023Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\comm.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-06-01T21:22:29.5293463Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\data_parallel.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-06-01T21:22:29.5299163Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\distributed.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-06-01T21:22:29.5305899Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\parallel_apply.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-06-01T21:22:29.5315511Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\replicate.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-06-01T21:22:29.5320980Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\scatter_gather.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-06-01T21:22:29.5326833Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\_functions.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-06-01T21:22:29.5331820Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-06-01T21:22:29.5339185Z copying build\lib.win-amd64-cpython-39\torch\nn\parameter.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-06-01T21:22:29.5344927Z copying build\lib.win-amd64-cpython-39\torch\nn\parameter.pyi -> build\bdist.win-amd64\wheel\.\torch\nn 2025-06-01T21:22:29.5351618Z creating build\bdist.win-amd64\wheel\torch\nn\qat 2025-06-01T21:22:29.5355464Z creating build\bdist.win-amd64\wheel\torch\nn\qat\dynamic 2025-06-01T21:22:29.5359215Z creating build\bdist.win-amd64\wheel\torch\nn\qat\dynamic\modules 2025-06-01T21:22:29.5362951Z 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-06-01T21:22:29.5368414Z 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-06-01T21:22:29.5373548Z copying build\lib.win-amd64-cpython-39\torch\nn\qat\dynamic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\qat\dynamic 2025-06-01T21:22:29.5378864Z creating build\bdist.win-amd64\wheel\torch\nn\qat\modules 2025-06-01T21:22:29.5382342Z copying build\lib.win-amd64-cpython-39\torch\nn\qat\modules\conv.py -> build\bdist.win-amd64\wheel\.\torch\nn\qat\modules 2025-06-01T21:22:29.5387686Z copying build\lib.win-amd64-cpython-39\torch\nn\qat\modules\embedding_ops.py -> build\bdist.win-amd64\wheel\.\torch\nn\qat\modules 2025-06-01T21:22:29.5393139Z copying build\lib.win-amd64-cpython-39\torch\nn\qat\modules\linear.py -> build\bdist.win-amd64\wheel\.\torch\nn\qat\modules 2025-06-01T21:22:29.5398453Z copying build\lib.win-amd64-cpython-39\torch\nn\qat\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\qat\modules 2025-06-01T21:22:29.5402814Z copying build\lib.win-amd64-cpython-39\torch\nn\qat\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\qat 2025-06-01T21:22:29.5407916Z creating build\bdist.win-amd64\wheel\torch\nn\quantizable 2025-06-01T21:22:29.5411415Z creating build\bdist.win-amd64\wheel\torch\nn\quantizable\modules 2025-06-01T21:22:29.5414840Z copying build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules\activation.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantizable\modules 2025-06-01T21:22:29.5419955Z copying build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules\rnn.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantizable\modules 2025-06-01T21:22:29.5425024Z copying build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantizable\modules 2025-06-01T21:22:29.5429922Z copying build\lib.win-amd64-cpython-39\torch\nn\quantizable\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantizable 2025-06-01T21:22:29.5435024Z creating build\bdist.win-amd64\wheel\torch\nn\quantized 2025-06-01T21:22:29.5438451Z creating build\bdist.win-amd64\wheel\torch\nn\quantized\dynamic 2025-06-01T21:22:29.5441644Z creating build\bdist.win-amd64\wheel\torch\nn\quantized\dynamic\modules 2025-06-01T21:22:29.5445016Z 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-06-01T21:22:29.5450056Z 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-06-01T21:22:29.5455022Z 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-06-01T21:22:29.5460216Z 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-06-01T21:22:29.5465670Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\dynamic 2025-06-01T21:22:29.5470544Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\functional.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized 2025-06-01T21:22:29.5485117Z creating build\bdist.win-amd64\wheel\torch\nn\quantized\modules 2025-06-01T21:22:29.5488143Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\activation.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-06-01T21:22:29.5493437Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\batchnorm.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-06-01T21:22:29.5498430Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\conv.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-06-01T21:22:29.5503680Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\dropout.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-06-01T21:22:29.5531010Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\embedding_ops.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-06-01T21:22:29.5554032Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\functional_modules.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-06-01T21:22:29.5559262Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\linear.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-06-01T21:22:29.5564517Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\normalization.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-06-01T21:22:29.5570597Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\rnn.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-06-01T21:22:29.5575785Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\utils.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-06-01T21:22:29.5580943Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-06-01T21:22:29.5586642Z creating build\bdist.win-amd64\wheel\torch\nn\quantized\_reference 2025-06-01T21:22:29.5594329Z creating build\bdist.win-amd64\wheel\torch\nn\quantized\_reference\modules 2025-06-01T21:22:29.5597673Z 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-06-01T21:22:29.5602741Z 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-06-01T21:22:29.5607683Z 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-06-01T21:22:29.5612748Z 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-06-01T21:22:29.5617792Z 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-06-01T21:22:29.5622875Z 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-06-01T21:22:29.5628339Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\_reference 2025-06-01T21:22:29.5633478Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized 2025-06-01T21:22:29.5639100Z creating build\bdist.win-amd64\wheel\torch\nn\utils 2025-06-01T21:22:29.5642342Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\clip_grad.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-06-01T21:22:29.5647914Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\convert_parameters.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-06-01T21:22:29.5652948Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\fusion.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-06-01T21:22:29.5658248Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\init.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-06-01T21:22:29.5663647Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\memory_format.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-06-01T21:22:29.5673823Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\parametrizations.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-06-01T21:22:29.5680298Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\parametrize.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-06-01T21:22:29.5686291Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\prune.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-06-01T21:22:29.5692955Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\rnn.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-06-01T21:22:29.5698282Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\spectral_norm.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-06-01T21:22:29.5703873Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\stateless.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-06-01T21:22:29.5709369Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\weight_norm.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-06-01T21:22:29.5714954Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\_deprecation_utils.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-06-01T21:22:29.5720585Z creating build\bdist.win-amd64\wheel\torch\nn\utils\_expanded_weights 2025-06-01T21:22:29.5724138Z 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-06-01T21:22:29.5729566Z 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-06-01T21:22:29.5735350Z 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-06-01T21:22:29.5745656Z 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-06-01T21:22:29.5751265Z 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-06-01T21:22:29.5756877Z 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-06-01T21:22:29.5762365Z 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-06-01T21:22:29.5767889Z 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-06-01T21:22:29.5773313Z 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-06-01T21:22:29.5778938Z 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-06-01T21:22:29.5784259Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\_named_member_accessor.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-06-01T21:22:29.5789799Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\_per_sample_grad.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-06-01T21:22:29.5795334Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-06-01T21:22:29.5827068Z copying build\lib.win-amd64-cpython-39\torch\nn\_reduction.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-06-01T21:22:29.5832503Z copying build\lib.win-amd64-cpython-39\torch\nn\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-06-01T21:22:29.5838825Z creating build\bdist.win-amd64\wheel\torch\onnx 2025-06-01T21:22:29.5841961Z copying build\lib.win-amd64-cpython-39\torch\onnx\errors.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-06-01T21:22:29.5847836Z copying build\lib.win-amd64-cpython-39\torch\onnx\operators.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-06-01T21:22:29.5854167Z creating build\bdist.win-amd64\wheel\torch\onnx\ops 2025-06-01T21:22:29.5857881Z copying build\lib.win-amd64-cpython-39\torch\onnx\ops\_symbolic_impl.py -> build\bdist.win-amd64\wheel\.\torch\onnx\ops 2025-06-01T21:22:29.5863998Z copying build\lib.win-amd64-cpython-39\torch\onnx\ops\__init__.py -> build\bdist.win-amd64\wheel\.\torch\onnx\ops 2025-06-01T21:22:29.5869407Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_caffe2.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-06-01T21:22:29.5874746Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_helper.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-06-01T21:22:29.5885366Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset10.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-06-01T21:22:29.5891338Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset11.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-06-01T21:22:29.5897722Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset12.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-06-01T21:22:29.5903321Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset13.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-06-01T21:22:29.5909527Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset14.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-06-01T21:22:29.5915196Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset15.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-06-01T21:22:29.5920599Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset16.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-06-01T21:22:29.5926043Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset17.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-06-01T21:22:29.5931514Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset18.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-06-01T21:22:29.5937034Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset19.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-06-01T21:22:29.5942392Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset20.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-06-01T21:22:29.5948465Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset7.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-06-01T21:22:29.5954182Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset8.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-06-01T21:22:29.5959711Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset9.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-06-01T21:22:29.5968126Z copying build\lib.win-amd64-cpython-39\torch\onnx\utils.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-06-01T21:22:29.5979845Z copying build\lib.win-amd64-cpython-39\torch\onnx\verification.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-06-01T21:22:29.5986224Z copying build\lib.win-amd64-cpython-39\torch\onnx\_constants.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-06-01T21:22:29.5991600Z copying build\lib.win-amd64-cpython-39\torch\onnx\_experimental.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-06-01T21:22:29.5997000Z copying build\lib.win-amd64-cpython-39\torch\onnx\_flags.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-06-01T21:22:29.6002140Z copying build\lib.win-amd64-cpython-39\torch\onnx\_globals.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-06-01T21:22:29.6007677Z creating build\bdist.win-amd64\wheel\torch\onnx\_internal 2025-06-01T21:22:29.6011352Z creating build\bdist.win-amd64\wheel\torch\onnx\_internal\exporter 2025-06-01T21:22:29.6014789Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_analysis.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-06-01T21:22:29.6020290Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_building.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-06-01T21:22:29.6026463Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_capture_strategies.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-06-01T21:22:29.6031965Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_compat.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-06-01T21:22:29.6042152Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_constants.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-06-01T21:22:29.6047290Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_core.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-06-01T21:22:29.6053804Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_decomp.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-06-01T21:22:29.6059209Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_dispatching.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-06-01T21:22:29.6064843Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_dynamic_shapes.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-06-01T21:22:29.6070532Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_errors.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-06-01T21:22:29.6075690Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_flags.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-06-01T21:22:29.6080849Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_fx_passes.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-06-01T21:22:29.6087032Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_ir_passes.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-06-01T21:22:29.6092990Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_isolated.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-06-01T21:22:29.6098556Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_onnx_program.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-06-01T21:22:29.6105261Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_registration.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-06-01T21:22:29.6110849Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_reporting.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-06-01T21:22:29.6116362Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_schemas.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-06-01T21:22:29.6129899Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_tensors.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-06-01T21:22:29.6135982Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_testing.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-06-01T21:22:29.6141751Z creating build\bdist.win-amd64\wheel\torch\onnx\_internal\exporter\_torchlib 2025-06-01T21:22:29.6145215Z creating build\bdist.win-amd64\wheel\torch\onnx\_internal\exporter\_torchlib\ops 2025-06-01T21:22:29.6148865Z 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-06-01T21:22:29.6154052Z 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-06-01T21:22:29.6159322Z 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-06-01T21:22:29.6165158Z 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-06-01T21:22:29.6170973Z 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-06-01T21:22:29.6176983Z 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-06-01T21:22:29.6183109Z 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-06-01T21:22:29.6188454Z 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-06-01T21:22:29.6194732Z 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-06-01T21:22:29.6204973Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_type_casting.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-06-01T21:22:29.6210678Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_verification.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-06-01T21:22:29.6220657Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\__init__.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-06-01T21:22:29.6225548Z creating build\bdist.win-amd64\wheel\torch\onnx\_internal\fx 2025-06-01T21:22:29.6228979Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\decomposition_table.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx 2025-06-01T21:22:29.6234432Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\dynamo_graph_extractor.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx 2025-06-01T21:22:29.6239866Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\fx_onnx_interpreter.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx 2025-06-01T21:22:29.6251041Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\onnxfunction_dispatcher.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx 2025-06-01T21:22:29.6257529Z creating build\bdist.win-amd64\wheel\torch\onnx\_internal\fx\passes 2025-06-01T21:22:29.6260843Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes\decomp.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx\passes 2025-06-01T21:22:29.6266219Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes\functionalization.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx\passes 2025-06-01T21:22:29.6272127Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes\modularization.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx\passes 2025-06-01T21:22:29.6277874Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes\readability.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx\passes 2025-06-01T21:22:29.6287485Z 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-06-01T21:22:29.6293623Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes\virtualization.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx\passes 2025-06-01T21:22:29.6298783Z 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-06-01T21:22:29.6304008Z 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-06-01T21:22:29.6309054Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\patcher.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx 2025-06-01T21:22:29.6314146Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\registration.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx 2025-06-01T21:22:29.6319301Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\serialization.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx 2025-06-01T21:22:29.6324666Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\type_utils.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx 2025-06-01T21:22:29.6329848Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\_pass.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx 2025-06-01T21:22:29.6335109Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\__init__.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx 2025-06-01T21:22:29.6340148Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\io_adapter.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal 2025-06-01T21:22:29.6345985Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\jit_utils.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal 2025-06-01T21:22:29.6356692Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\onnxruntime.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal 2025-06-01T21:22:29.6363124Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\onnx_proto_utils.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal 2025-06-01T21:22:29.6368538Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\registration.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal 2025-06-01T21:22:29.6373984Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\_exporter_legacy.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal 2025-06-01T21:22:29.6380239Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\_lazy_import.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal 2025-06-01T21:22:29.6385867Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\__init__.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal 2025-06-01T21:22:29.6390355Z copying build\lib.win-amd64-cpython-39\torch\onnx\_onnx_supported_ops.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-06-01T21:22:29.6395758Z copying build\lib.win-amd64-cpython-39\torch\onnx\_type_utils.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-06-01T21:22:29.6401834Z copying build\lib.win-amd64-cpython-39\torch\onnx\__init__.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-06-01T21:22:29.6407934Z creating build\bdist.win-amd64\wheel\torch\optim 2025-06-01T21:22:29.6411471Z copying build\lib.win-amd64-cpython-39\torch\optim\adadelta.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-06-01T21:22:29.6431523Z copying build\lib.win-amd64-cpython-39\torch\optim\adagrad.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-06-01T21:22:29.6437929Z copying build\lib.win-amd64-cpython-39\torch\optim\adam.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-06-01T21:22:29.6444637Z copying build\lib.win-amd64-cpython-39\torch\optim\adamax.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-06-01T21:22:29.6450319Z copying build\lib.win-amd64-cpython-39\torch\optim\adamw.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-06-01T21:22:29.6455735Z copying build\lib.win-amd64-cpython-39\torch\optim\asgd.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-06-01T21:22:29.6461450Z copying build\lib.win-amd64-cpython-39\torch\optim\lbfgs.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-06-01T21:22:29.6471128Z copying build\lib.win-amd64-cpython-39\torch\optim\lr_scheduler.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-06-01T21:22:29.6477449Z copying build\lib.win-amd64-cpython-39\torch\optim\nadam.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-06-01T21:22:29.6483222Z copying build\lib.win-amd64-cpython-39\torch\optim\optimizer.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-06-01T21:22:29.6489335Z copying build\lib.win-amd64-cpython-39\torch\optim\radam.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-06-01T21:22:29.6495378Z copying build\lib.win-amd64-cpython-39\torch\optim\rmsprop.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-06-01T21:22:29.6501210Z copying build\lib.win-amd64-cpython-39\torch\optim\rprop.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-06-01T21:22:29.6506859Z copying build\lib.win-amd64-cpython-39\torch\optim\sgd.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-06-01T21:22:29.6513075Z copying build\lib.win-amd64-cpython-39\torch\optim\sparse_adam.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-06-01T21:22:29.6518405Z copying build\lib.win-amd64-cpython-39\torch\optim\swa_utils.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-06-01T21:22:29.6524280Z copying build\lib.win-amd64-cpython-39\torch\optim\_adafactor.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-06-01T21:22:29.6530033Z copying build\lib.win-amd64-cpython-39\torch\optim\_functional.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-06-01T21:22:29.6535577Z creating build\bdist.win-amd64\wheel\torch\optim\_multi_tensor 2025-06-01T21:22:29.6538863Z copying build\lib.win-amd64-cpython-39\torch\optim\_multi_tensor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\optim\_multi_tensor 2025-06-01T21:22:29.6544364Z copying build\lib.win-amd64-cpython-39\torch\optim\_multi_tensor\__init__.pyi -> build\bdist.win-amd64\wheel\.\torch\optim\_multi_tensor 2025-06-01T21:22:29.6549540Z copying build\lib.win-amd64-cpython-39\torch\optim\__init__.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-06-01T21:22:29.6554748Z copying build\lib.win-amd64-cpython-39\torch\overrides.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:22:29.6561581Z creating build\bdist.win-amd64\wheel\torch\package 2025-06-01T21:22:29.6564805Z creating build\bdist.win-amd64\wheel\torch\package\analyze 2025-06-01T21:22:29.6568150Z 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-06-01T21:22:29.6573554Z copying build\lib.win-amd64-cpython-39\torch\package\analyze\is_from_package.py -> build\bdist.win-amd64\wheel\.\torch\package\analyze 2025-06-01T21:22:29.6578784Z copying build\lib.win-amd64-cpython-39\torch\package\analyze\trace_dependencies.py -> build\bdist.win-amd64\wheel\.\torch\package\analyze 2025-06-01T21:22:29.6588667Z copying build\lib.win-amd64-cpython-39\torch\package\analyze\__init__.py -> build\bdist.win-amd64\wheel\.\torch\package\analyze 2025-06-01T21:22:29.6593755Z copying build\lib.win-amd64-cpython-39\torch\package\file_structure_representation.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-06-01T21:22:29.6599268Z copying build\lib.win-amd64-cpython-39\torch\package\find_file_dependencies.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-06-01T21:22:29.6604558Z copying build\lib.win-amd64-cpython-39\torch\package\glob_group.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-06-01T21:22:29.6614663Z copying build\lib.win-amd64-cpython-39\torch\package\importer.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-06-01T21:22:29.6620071Z copying build\lib.win-amd64-cpython-39\torch\package\package_exporter.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-06-01T21:22:29.6626372Z copying build\lib.win-amd64-cpython-39\torch\package\package_importer.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-06-01T21:22:29.6632263Z copying build\lib.win-amd64-cpython-39\torch\package\_digraph.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-06-01T21:22:29.6637443Z copying build\lib.win-amd64-cpython-39\torch\package\_directory_reader.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-06-01T21:22:29.6643019Z copying build\lib.win-amd64-cpython-39\torch\package\_importlib.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-06-01T21:22:29.6648585Z copying build\lib.win-amd64-cpython-39\torch\package\_mangling.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-06-01T21:22:29.6654140Z copying build\lib.win-amd64-cpython-39\torch\package\_mock.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-06-01T21:22:29.6659402Z copying build\lib.win-amd64-cpython-39\torch\package\_package_pickler.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-06-01T21:22:29.6664931Z copying build\lib.win-amd64-cpython-39\torch\package\_package_unpickler.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-06-01T21:22:29.6670311Z copying build\lib.win-amd64-cpython-39\torch\package\_stdlib.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-06-01T21:22:29.6675418Z copying build\lib.win-amd64-cpython-39\torch\package\__init__.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-06-01T21:22:29.6680757Z creating build\bdist.win-amd64\wheel\torch\profiler 2025-06-01T21:22:29.6688355Z copying build\lib.win-amd64-cpython-39\torch\profiler\itt.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-06-01T21:22:29.6693970Z copying build\lib.win-amd64-cpython-39\torch\profiler\profiler.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-06-01T21:22:29.6699842Z copying build\lib.win-amd64-cpython-39\torch\profiler\python_tracer.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-06-01T21:22:29.6705392Z copying build\lib.win-amd64-cpython-39\torch\profiler\_memory_profiler.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-06-01T21:22:29.6711671Z copying build\lib.win-amd64-cpython-39\torch\profiler\_pattern_matcher.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-06-01T21:22:29.6721842Z copying build\lib.win-amd64-cpython-39\torch\profiler\_utils.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-06-01T21:22:29.6727416Z copying build\lib.win-amd64-cpython-39\torch\profiler\__init__.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-06-01T21:22:29.6732899Z copying build\lib.win-amd64-cpython-39\torch\py.typed -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:22:29.6737752Z creating build\bdist.win-amd64\wheel\torch\quantization 2025-06-01T21:22:29.6741054Z copying build\lib.win-amd64-cpython-39\torch\quantization\fake_quantize.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-06-01T21:22:29.6746660Z copying build\lib.win-amd64-cpython-39\torch\quantization\fuser_method_mappings.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-06-01T21:22:29.6751935Z copying build\lib.win-amd64-cpython-39\torch\quantization\fuse_modules.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-06-01T21:22:29.6761796Z creating build\bdist.win-amd64\wheel\torch\quantization\fx 2025-06-01T21:22:29.6765344Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\convert.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-06-01T21:22:29.6770350Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\fuse.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-06-01T21:22:29.6775401Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\fusion_patterns.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-06-01T21:22:29.6780554Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\graph_module.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-06-01T21:22:29.6785861Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\match_utils.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-06-01T21:22:29.6795159Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\pattern_utils.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-06-01T21:22:29.6800581Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\prepare.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-06-01T21:22:29.6805743Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\quantization_patterns.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-06-01T21:22:29.6822647Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\quantization_types.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-06-01T21:22:29.6828066Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\utils.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-06-01T21:22:29.6833386Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\_equalize.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-06-01T21:22:29.6838768Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\__init__.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-06-01T21:22:29.6844018Z copying build\lib.win-amd64-cpython-39\torch\quantization\observer.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-06-01T21:22:29.6849632Z copying build\lib.win-amd64-cpython-39\torch\quantization\qconfig.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-06-01T21:22:29.6855146Z copying build\lib.win-amd64-cpython-39\torch\quantization\quantization_mappings.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-06-01T21:22:29.6861471Z copying build\lib.win-amd64-cpython-39\torch\quantization\quantize.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-06-01T21:22:29.6867527Z copying build\lib.win-amd64-cpython-39\torch\quantization\quantize_fx.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-06-01T21:22:29.6873786Z copying build\lib.win-amd64-cpython-39\torch\quantization\quantize_jit.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-06-01T21:22:29.6879773Z copying build\lib.win-amd64-cpython-39\torch\quantization\quant_type.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-06-01T21:22:29.6884960Z copying build\lib.win-amd64-cpython-39\torch\quantization\stubs.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-06-01T21:22:29.6895540Z copying build\lib.win-amd64-cpython-39\torch\quantization\utils.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-06-01T21:22:29.6900935Z copying build\lib.win-amd64-cpython-39\torch\quantization\_numeric_suite.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-06-01T21:22:29.6906618Z copying build\lib.win-amd64-cpython-39\torch\quantization\_numeric_suite_fx.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-06-01T21:22:29.6912023Z copying build\lib.win-amd64-cpython-39\torch\quantization\_quantized_conversions.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-06-01T21:22:29.6917801Z copying build\lib.win-amd64-cpython-39\torch\quantization\__init__.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-06-01T21:22:29.6923142Z copying build\lib.win-amd64-cpython-39\torch\quasirandom.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:22:29.6928503Z copying build\lib.win-amd64-cpython-39\torch\random.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:22:29.6934128Z copying build\lib.win-amd64-cpython-39\torch\return_types.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:22:29.6939464Z copying build\lib.win-amd64-cpython-39\torch\return_types.pyi -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:22:29.6945350Z copying build\lib.win-amd64-cpython-39\torch\serialization.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:22:29.6951963Z creating build\bdist.win-amd64\wheel\torch\share 2025-06-01T21:22:29.6955106Z creating build\bdist.win-amd64\wheel\torch\share\cmake 2025-06-01T21:22:29.6958234Z creating build\bdist.win-amd64\wheel\torch\share\cmake\ATen 2025-06-01T21:22:29.6961732Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\ATen\ATenConfig.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\ATen 2025-06-01T21:22:29.6967098Z creating build\bdist.win-amd64\wheel\torch\share\cmake\Caffe2 2025-06-01T21:22:29.6970351Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Caffe2Config.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2 2025-06-01T21:22:29.6975921Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Caffe2Targets-release.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2 2025-06-01T21:22:29.6981207Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Caffe2Targets.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2 2025-06-01T21:22:29.6991750Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\FindCUDAToolkit.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2 2025-06-01T21:22:29.6997707Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\FindCUDSS.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2 2025-06-01T21:22:29.7003250Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\FindCUSPARSELT.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2 2025-06-01T21:22:29.7008566Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\FindSYCLToolkit.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2 2025-06-01T21:22:29.7014306Z creating build\bdist.win-amd64\wheel\torch\share\cmake\Caffe2\Modules_CUDA_fix 2025-06-01T21:22:29.7017784Z 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-06-01T21:22:29.7023031Z 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-06-01T21:22:29.7037586Z creating build\bdist.win-amd64\wheel\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream 2025-06-01T21:22:29.7045782Z 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-06-01T21:22:29.7051530Z creating build\bdist.win-amd64\wheel\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA 2025-06-01T21:22:29.7055003Z 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-06-01T21:22:29.7060410Z 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-06-01T21:22:29.7065831Z 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-06-01T21:22:29.7075881Z 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-06-01T21:22:29.7081300Z 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-06-01T21:22:29.7087879Z 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-06-01T21:22:29.7098479Z 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-06-01T21:22:29.7104176Z creating build\bdist.win-amd64\wheel\torch\share\cmake\Caffe2\public 2025-06-01T21:22:29.7125601Z 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-06-01T21:22:29.7140718Z 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-06-01T21:22:29.7146180Z 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-06-01T21:22:29.7151620Z 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-06-01T21:22:29.7161613Z 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-06-01T21:22:29.7167180Z 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-06-01T21:22:29.7172620Z 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-06-01T21:22:29.7177967Z 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-06-01T21:22:29.7184018Z 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-06-01T21:22:29.7189792Z creating build\bdist.win-amd64\wheel\torch\share\cmake\Torch 2025-06-01T21:22:29.7193072Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Torch\TorchConfig.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Torch 2025-06-01T21:22:29.7198780Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Torch\TorchConfigVersion.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Torch 2025-06-01T21:22:29.7204178Z creating build\bdist.win-amd64\wheel\torch\signal 2025-06-01T21:22:29.7207463Z creating build\bdist.win-amd64\wheel\torch\signal\windows 2025-06-01T21:22:29.7210770Z copying build\lib.win-amd64-cpython-39\torch\signal\windows\windows.py -> build\bdist.win-amd64\wheel\.\torch\signal\windows 2025-06-01T21:22:29.7216530Z copying build\lib.win-amd64-cpython-39\torch\signal\windows\__init__.py -> build\bdist.win-amd64\wheel\.\torch\signal\windows 2025-06-01T21:22:29.7221631Z copying build\lib.win-amd64-cpython-39\torch\signal\__init__.py -> build\bdist.win-amd64\wheel\.\torch\signal 2025-06-01T21:22:29.7226774Z creating build\bdist.win-amd64\wheel\torch\sparse 2025-06-01T21:22:29.7230755Z copying build\lib.win-amd64-cpython-39\torch\sparse\semi_structured.py -> build\bdist.win-amd64\wheel\.\torch\sparse 2025-06-01T21:22:29.7237216Z copying build\lib.win-amd64-cpython-39\torch\sparse\_semi_structured_conversions.py -> build\bdist.win-amd64\wheel\.\torch\sparse 2025-06-01T21:22:29.7242843Z copying build\lib.win-amd64-cpython-39\torch\sparse\_semi_structured_ops.py -> build\bdist.win-amd64\wheel\.\torch\sparse 2025-06-01T21:22:29.7252608Z copying build\lib.win-amd64-cpython-39\torch\sparse\_triton_ops.py -> build\bdist.win-amd64\wheel\.\torch\sparse 2025-06-01T21:22:29.7259200Z copying build\lib.win-amd64-cpython-39\torch\sparse\_triton_ops_meta.py -> build\bdist.win-amd64\wheel\.\torch\sparse 2025-06-01T21:22:29.7269426Z copying build\lib.win-amd64-cpython-39\torch\sparse\__init__.py -> build\bdist.win-amd64\wheel\.\torch\sparse 2025-06-01T21:22:29.7275430Z creating build\bdist.win-amd64\wheel\torch\special 2025-06-01T21:22:29.7278631Z copying build\lib.win-amd64-cpython-39\torch\special\__init__.py -> build\bdist.win-amd64\wheel\.\torch\special 2025-06-01T21:22:29.7284623Z copying build\lib.win-amd64-cpython-39\torch\storage.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:22:29.7295096Z creating build\bdist.win-amd64\wheel\torch\test 2025-06-01T21:22:29.7304379Z copying build\lib.win-amd64-cpython-39\torch\test\apply_utils_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7313599Z copying build\lib.win-amd64-cpython-39\torch\test\atest.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7322952Z copying build\lib.win-amd64-cpython-39\torch\test\backend_fallback_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7332254Z copying build\lib.win-amd64-cpython-39\torch\test\basic.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7346442Z copying build\lib.win-amd64-cpython-39\torch\test\broadcast_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7355783Z copying build\lib.win-amd64-cpython-39\torch\test\c10_accumulate_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7365296Z copying build\lib.win-amd64-cpython-39\torch\test\c10_ArrayRef_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7373950Z copying build\lib.win-amd64-cpython-39\torch\test\c10_bfloat16_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7383059Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Bitset_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7391800Z copying build\lib.win-amd64-cpython-39\torch\test\c10_bit_cast_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7400248Z copying build\lib.win-amd64-cpython-39\torch\test\c10_CompileTimeFunctionPointer_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7408943Z copying build\lib.win-amd64-cpython-39\torch\test\c10_complex_math_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7418161Z copying build\lib.win-amd64-cpython-39\torch\test\c10_complex_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7427295Z copying build\lib.win-amd64-cpython-39\torch\test\c10_ConstexprCrc_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7436110Z copying build\lib.win-amd64-cpython-39\torch\test\c10_cow_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7445290Z copying build\lib.win-amd64-cpython-39\torch\test\c10_DeadlockDetection_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7453943Z copying build\lib.win-amd64-cpython-39\torch\test\c10_DeviceGuard_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7462723Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Device_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7476538Z copying build\lib.win-amd64-cpython-39\torch\test\c10_DispatchKeySet_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7486089Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Enumerate_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7494785Z copying build\lib.win-amd64-cpython-39\torch\test\c10_error_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7503292Z copying build\lib.win-amd64-cpython-39\torch\test\c10_exception_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7511951Z copying build\lib.win-amd64-cpython-39\torch\test\c10_flags_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7520431Z copying build\lib.win-amd64-cpython-39\torch\test\c10_generic_math_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7528951Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Half_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7537734Z copying build\lib.win-amd64-cpython-39\torch\test\c10_InlineDeviceGuard_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7546588Z copying build\lib.win-amd64-cpython-39\torch\test\c10_InlineStreamGuard_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7559673Z copying build\lib.win-amd64-cpython-39\torch\test\c10_IntrusiveList_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7568391Z copying build\lib.win-amd64-cpython-39\torch\test\c10_intrusive_ptr_benchmark.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7576333Z copying build\lib.win-amd64-cpython-39\torch\test\c10_intrusive_ptr_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7591357Z copying build\lib.win-amd64-cpython-39\torch\test\c10_irange_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7599786Z copying build\lib.win-amd64-cpython-39\torch\test\c10_lazy_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7608523Z copying build\lib.win-amd64-cpython-39\torch\test\c10_LeftRight_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7617548Z copying build\lib.win-amd64-cpython-39\torch\test\c10_logging_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7626600Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Metaprogramming_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7640509Z copying build\lib.win-amd64-cpython-39\torch\test\c10_NetworkFlow_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7672056Z copying build\lib.win-amd64-cpython-39\torch\test\c10_optional_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7682040Z copying build\lib.win-amd64-cpython-39\torch\test\c10_ordered_preserving_dict_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7691284Z copying build\lib.win-amd64-cpython-39\torch\test\c10_registry_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7699583Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Scalar_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7708379Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Semaphore_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7717347Z copying build\lib.win-amd64-cpython-39\torch\test\c10_SizesAndStrides_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7731957Z copying build\lib.win-amd64-cpython-39\torch\test\c10_small_vector_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7746475Z copying build\lib.win-amd64-cpython-39\torch\test\c10_ssize_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7760005Z copying build\lib.win-amd64-cpython-39\torch\test\c10_StreamGuard_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7768418Z copying build\lib.win-amd64-cpython-39\torch\test\c10_string_util_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7777371Z copying build\lib.win-amd64-cpython-39\torch\test\c10_string_view_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7786023Z copying build\lib.win-amd64-cpython-39\torch\test\c10_SymInt_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7794748Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Synchronized_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7803260Z copying build\lib.win-amd64-cpython-39\torch\test\c10_tempfile_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7811822Z copying build\lib.win-amd64-cpython-39\torch\test\c10_ThreadLocal_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7820715Z copying build\lib.win-amd64-cpython-39\torch\test\c10_typeid_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7834218Z copying build\lib.win-amd64-cpython-39\torch\test\c10_TypeIndex_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7842950Z copying build\lib.win-amd64-cpython-39\torch\test\c10_TypeList_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7851650Z copying build\lib.win-amd64-cpython-39\torch\test\c10_TypeTraits_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7860394Z copying build\lib.win-amd64-cpython-39\torch\test\CppSignature_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7870034Z copying build\lib.win-amd64-cpython-39\torch\test\cpu_allocator_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7879436Z copying build\lib.win-amd64-cpython-39\torch\test\cpu_generator_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7889210Z copying build\lib.win-amd64-cpython-39\torch\test\cpu_profiling_allocator_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7898455Z copying build\lib.win-amd64-cpython-39\torch\test\cpu_rng_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7909718Z copying build\lib.win-amd64-cpython-39\torch\test\Dict_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7933020Z copying build\lib.win-amd64-cpython-39\torch\test\Dimname_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7941744Z copying build\lib.win-amd64-cpython-39\torch\test\dlconvertor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7951407Z copying build\lib.win-amd64-cpython-39\torch\test\extension_backend_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7960808Z copying build\lib.win-amd64-cpython-39\torch\test\half_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7970612Z copying build\lib.win-amd64-cpython-39\torch\test\IListRef_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7980271Z copying build\lib.win-amd64-cpython-39\torch\test\inline_container_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.7989820Z copying build\lib.win-amd64-cpython-39\torch\test\ivalue_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.8001156Z copying build\lib.win-amd64-cpython-39\torch\test\KernelFunction_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.8010880Z copying build\lib.win-amd64-cpython-39\torch\test\kernel_function_legacy_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.8029624Z copying build\lib.win-amd64-cpython-39\torch\test\kernel_function_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.8041158Z copying build\lib.win-amd64-cpython-39\torch\test\kernel_lambda_legacy_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.8054110Z copying build\lib.win-amd64-cpython-39\torch\test\kernel_lambda_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.8065546Z copying build\lib.win-amd64-cpython-39\torch\test\kernel_stackbased_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.8074790Z copying build\lib.win-amd64-cpython-39\torch\test\lazy_tensor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.8083649Z copying build\lib.win-amd64-cpython-39\torch\test\legacy_vmap_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.8093989Z copying build\lib.win-amd64-cpython-39\torch\test\List_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.8106034Z copying build\lib.win-amd64-cpython-39\torch\test\make_boxed_from_unboxed_functor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.8117589Z copying build\lib.win-amd64-cpython-39\torch\test\math_kernel_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.8126823Z copying build\lib.win-amd64-cpython-39\torch\test\MaybeOwned_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.8136288Z copying build\lib.win-amd64-cpython-39\torch\test\memory_format_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.8145380Z copying build\lib.win-amd64-cpython-39\torch\test\memory_overlapping_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.8154582Z copying build\lib.win-amd64-cpython-39\torch\test\mobile_memory_cleanup.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.8163836Z copying build\lib.win-amd64-cpython-39\torch\test\NamedTensor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.8173238Z copying build\lib.win-amd64-cpython-39\torch\test\native_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.8182947Z copying build\lib.win-amd64-cpython-39\torch\test\operators_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.8196610Z copying build\lib.win-amd64-cpython-39\torch\test\operator_name_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.8205331Z copying build\lib.win-amd64-cpython-39\torch\test\op_allowlist_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.8213748Z copying build\lib.win-amd64-cpython-39\torch\test\op_registration_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.8237145Z copying build\lib.win-amd64-cpython-39\torch\test\packedtensoraccessor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.8245998Z copying build\lib.win-amd64-cpython-39\torch\test\pow_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.8256335Z copying build\lib.win-amd64-cpython-39\torch\test\quantized_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.8265755Z copying build\lib.win-amd64-cpython-39\torch\test\reduce_ops_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.8275110Z copying build\lib.win-amd64-cpython-39\torch\test\reportMemoryUsage_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.8284412Z copying build\lib.win-amd64-cpython-39\torch\test\scalar_tensor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.8294059Z copying build\lib.win-amd64-cpython-39\torch\test\scalar_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.8304313Z copying build\lib.win-amd64-cpython-39\torch\test\StorageUtils_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.8314131Z copying build\lib.win-amd64-cpython-39\torch\test\stride_properties_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.8323515Z copying build\lib.win-amd64-cpython-39\torch\test\tensor_iterator_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.8334474Z copying build\lib.win-amd64-cpython-39\torch\test\test_parallel.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.8343878Z copying build\lib.win-amd64-cpython-39\torch\test\thread_init_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.8351211Z copying build\lib.win-amd64-cpython-39\torch\test\type_ptr_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.8367689Z copying build\lib.win-amd64-cpython-39\torch\test\type_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.8377422Z copying build\lib.win-amd64-cpython-39\torch\test\undefined_tensor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.8391593Z copying build\lib.win-amd64-cpython-39\torch\test\verify_api_visibility.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.8398221Z copying build\lib.win-amd64-cpython-39\torch\test\weakref_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.8407216Z copying build\lib.win-amd64-cpython-39\torch\test\wrapdim_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.8416407Z copying build\lib.win-amd64-cpython-39\torch\test\xla_tensor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:22:29.8425758Z creating build\bdist.win-amd64\wheel\torch\testing 2025-06-01T21:22:29.8429218Z copying build\lib.win-amd64-cpython-39\torch\testing\_comparison.py -> build\bdist.win-amd64\wheel\.\torch\testing 2025-06-01T21:22:29.8435572Z copying build\lib.win-amd64-cpython-39\torch\testing\_creation.py -> build\bdist.win-amd64\wheel\.\torch\testing 2025-06-01T21:22:29.8442189Z creating build\bdist.win-amd64\wheel\torch\testing\_internal 2025-06-01T21:22:29.8445990Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\autocast_test_lists.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:22:29.8451596Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\autograd_function_db.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:22:29.8457205Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\check_kernel_launches.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:22:29.8467244Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\codegen 2025-06-01T21:22:29.8470486Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\codegen\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\codegen 2025-06-01T21:22:29.8480782Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_cuda.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:22:29.8486311Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_device_type.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:22:29.8493003Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_distributed.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:22:29.8499563Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_dist_composable.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:22:29.8505171Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_dtype.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:22:29.8510760Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_fsdp.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:22:29.8517149Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_jit.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:22:29.8538214Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_methods_invocations.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:22:29.8554338Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_mkldnn.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:22:29.8559841Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_modules.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:22:29.8567965Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_mps.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:22:29.8574224Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_nn.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:22:29.8581987Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_optimizers.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:22:29.8588883Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_pruning.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:22:29.8594593Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_quantization.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:22:29.8606386Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_quantized.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:22:29.8612475Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_subclass.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:22:29.8618266Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:22:29.8626628Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\composite_compliance.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:22:29.8632653Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\custom_op_db.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:22:29.8638746Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\custom_tensor.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:22:29.8644536Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\data 2025-06-01T21:22:29.8647974Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\data\network1.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\data 2025-06-01T21:22:29.8653359Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\data\network2.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\data 2025-06-01T21:22:29.8658557Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\data\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\data 2025-06-01T21:22:29.8664148Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed 2025-06-01T21:22:29.8667635Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\checkpoint_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed 2025-06-01T21:22:29.8673753Z 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-06-01T21:22:29.8679492Z 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-06-01T21:22:29.8694255Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\distributed_test.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed 2025-06-01T21:22:29.8704061Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\distributed_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed 2025-06-01T21:22:29.8709997Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\fake_pg.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed 2025-06-01T21:22:29.8715534Z 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-06-01T21:22:29.8721600Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\nn 2025-06-01T21:22:29.8725040Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\nn\api 2025-06-01T21:22:29.8728544Z 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-06-01T21:22:29.8734790Z 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-06-01T21:22:29.8739464Z 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-06-01T21:22:29.8744577Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\rpc 2025-06-01T21:22:29.8748003Z 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-06-01T21:22:29.8754966Z 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-06-01T21:22:29.8760605Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\rpc\examples 2025-06-01T21:22:29.8764100Z 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-06-01T21:22:29.8769794Z 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-06-01T21:22:29.8775492Z 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-06-01T21:22:29.8779967Z 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-06-01T21:22:29.8789646Z 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-06-01T21:22:29.8821022Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\rpc\jit 2025-06-01T21:22:29.8824651Z 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-06-01T21:22:29.8830868Z 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-06-01T21:22:29.8836268Z 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-06-01T21:22:29.8841792Z 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-06-01T21:22:29.8846415Z 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-06-01T21:22:29.8851904Z 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-06-01T21:22:29.8859892Z 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-06-01T21:22:29.8865576Z 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-06-01T21:22:29.8870326Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed 2025-06-01T21:22:29.8876315Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\_shard 2025-06-01T21:22:29.8880313Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\_shard\sharded_tensor 2025-06-01T21:22:29.8883955Z 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-06-01T21:22:29.8890497Z 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-06-01T21:22:29.8896656Z 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-06-01T21:22:29.8902756Z 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-06-01T21:22:29.8908152Z 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-06-01T21:22:29.8913491Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\_tensor 2025-06-01T21:22:29.8917114Z 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-06-01T21:22:29.8923224Z 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-06-01T21:22:29.8928282Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed 2025-06-01T21:22:29.8932863Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\dist_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:22:29.8938744Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\dynamo_test_failures.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:22:29.8944645Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\fake_config_module.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:22:29.8950308Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\fake_config_module2.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:22:29.8965990Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\fake_config_module3.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:22:29.8972217Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\generated 2025-06-01T21:22:29.9000680Z 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-06-01T21:22:29.9011560Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\generated\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\generated 2025-06-01T21:22:29.9016157Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\hop_db.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:22:29.9021927Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\hypothesis_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:22:29.9027620Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\inductor_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:22:29.9033414Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\jit_metaprogramming_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:22:29.9039218Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\jit_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:22:29.9045155Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\logging_tensor.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:22:29.9050662Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\logging_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:22:29.9060996Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\opinfo 2025-06-01T21:22:29.9064467Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\core.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\opinfo 2025-06-01T21:22:29.9071770Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\opinfo\definitions 2025-06-01T21:22:29.9075205Z 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-06-01T21:22:29.9081087Z 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-06-01T21:22:29.9087487Z 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-06-01T21:22:29.9093766Z 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-06-01T21:22:29.9099039Z 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-06-01T21:22:29.9104952Z 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-06-01T21:22:29.9114729Z 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-06-01T21:22:29.9120598Z 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-06-01T21:22:29.9125586Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\refs.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\opinfo 2025-06-01T21:22:29.9130983Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\opinfo 2025-06-01T21:22:29.9136401Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\opinfo 2025-06-01T21:22:29.9141747Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\optests 2025-06-01T21:22:29.9145072Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\optests\aot_autograd.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\optests 2025-06-01T21:22:29.9150444Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\optests\autograd_registration.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\optests 2025-06-01T21:22:29.9155421Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\optests\fake_tensor.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\optests 2025-06-01T21:22:29.9160544Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\optests\generate_tests.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\optests 2025-06-01T21:22:29.9170280Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\optests\make_fx.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\optests 2025-06-01T21:22:29.9176024Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\optests\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\optests 2025-06-01T21:22:29.9181709Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\quantization_torch_package_models.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:22:29.9187361Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\static_module.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:22:29.9192701Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\subclasses.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:22:29.9198356Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\test_module 2025-06-01T21:22:29.9201677Z 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-06-01T21:22:29.9206750Z 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-06-01T21:22:29.9227176Z 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-06-01T21:22:29.9231662Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\torchbind_impls.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:22:29.9237457Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\triton_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:22:29.9243429Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\two_tensor.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:22:29.9249899Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:22:29.9254678Z copying build\lib.win-amd64-cpython-39\torch\testing\_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing 2025-06-01T21:22:29.9689801Z copying build\lib.win-amd64-cpython-39\torch\testing\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing 2025-06-01T21:22:29.9694957Z copying build\lib.win-amd64-cpython-39\torch\torch_version.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:22:29.9700436Z copying build\lib.win-amd64-cpython-39\torch\types.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:22:29.9706994Z creating build\bdist.win-amd64\wheel\torch\utils 2025-06-01T21:22:29.9710336Z creating build\bdist.win-amd64\wheel\torch\utils\backcompat 2025-06-01T21:22:29.9714003Z copying build\lib.win-amd64-cpython-39\torch\utils\backcompat\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\backcompat 2025-06-01T21:22:29.9718971Z copying build\lib.win-amd64-cpython-39\torch\utils\backend_registration.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:22:29.9724999Z creating build\bdist.win-amd64\wheel\torch\utils\benchmark 2025-06-01T21:22:29.9729004Z creating build\bdist.win-amd64\wheel\torch\utils\benchmark\examples 2025-06-01T21:22:29.9732387Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples\compare.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\examples 2025-06-01T21:22:29.9743576Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples\fuzzer.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\examples 2025-06-01T21:22:29.9744729Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples\op_benchmark.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\examples 2025-06-01T21:22:29.9749509Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples\simple_timeit.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\examples 2025-06-01T21:22:29.9754841Z 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-06-01T21:22:29.9834528Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\examples 2025-06-01T21:22:29.9858502Z creating build\bdist.win-amd64\wheel\torch\utils\benchmark\op_fuzzers 2025-06-01T21:22:29.9913392Z 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-06-01T21:22:29.9929450Z 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-06-01T21:22:29.9934854Z 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-06-01T21:22:29.9940637Z 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-06-01T21:22:30.0004186Z 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-06-01T21:22:30.0009601Z 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-06-01T21:22:30.0014157Z creating build\bdist.win-amd64\wheel\torch\utils\benchmark\utils 2025-06-01T21:22:30.0017413Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\common.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-06-01T21:22:30.0023100Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\compare.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-06-01T21:22:30.0028531Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\compile.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-06-01T21:22:30.0034043Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\cpp_jit.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-06-01T21:22:30.0039343Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\fuzzer.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-06-01T21:22:30.0045170Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\sparse_fuzzer.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-06-01T21:22:30.0119352Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\timeit_template.cpp -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-06-01T21:22:30.0128580Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\timer.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-06-01T21:22:30.0134972Z creating build\bdist.win-amd64\wheel\torch\utils\benchmark\utils\valgrind_wrapper 2025-06-01T21:22:30.0142752Z 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-06-01T21:22:30.0151231Z 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-06-01T21:22:30.0156673Z 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-06-01T21:22:30.0224118Z 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-06-01T21:22:30.0229913Z 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-06-01T21:22:30.0239370Z 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-06-01T21:22:30.0243711Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\_stubs.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-06-01T21:22:30.0249137Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-06-01T21:22:30.0253718Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark 2025-06-01T21:22:30.0258836Z creating build\bdist.win-amd64\wheel\torch\utils\bottleneck 2025-06-01T21:22:30.0266527Z copying build\lib.win-amd64-cpython-39\torch\utils\bottleneck\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\bottleneck 2025-06-01T21:22:30.0270889Z copying build\lib.win-amd64-cpython-39\torch\utils\bottleneck\__main__.py -> build\bdist.win-amd64\wheel\.\torch\utils\bottleneck 2025-06-01T21:22:30.0276190Z copying build\lib.win-amd64-cpython-39\torch\utils\bundled_inputs.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:22:30.0281888Z copying build\lib.win-amd64-cpython-39\torch\utils\checkpoint.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:22:30.0288239Z copying build\lib.win-amd64-cpython-39\torch\utils\collect_env.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:22:30.0294094Z copying build\lib.win-amd64-cpython-39\torch\utils\cpp_backtrace.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:22:30.0299252Z copying build\lib.win-amd64-cpython-39\torch\utils\cpp_extension.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:22:30.0306994Z creating build\bdist.win-amd64\wheel\torch\utils\data 2025-06-01T21:22:30.0310349Z copying build\lib.win-amd64-cpython-39\torch\utils\data\backward_compatibility.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-06-01T21:22:30.0315917Z copying build\lib.win-amd64-cpython-39\torch\utils\data\dataloader.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-06-01T21:22:30.0322613Z creating build\bdist.win-amd64\wheel\torch\utils\data\datapipes 2025-06-01T21:22:30.0325963Z creating build\bdist.win-amd64\wheel\torch\utils\data\datapipes\dataframe 2025-06-01T21:22:30.0329397Z 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-06-01T21:22:30.0335010Z 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-06-01T21:22:30.0340427Z 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-06-01T21:22:30.0350701Z 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-06-01T21:22:30.0356019Z 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-06-01T21:22:30.0361081Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\datapipe.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes 2025-06-01T21:22:30.0367461Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\datapipe.pyi -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes 2025-06-01T21:22:30.0373565Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\gen_pyi.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes 2025-06-01T21:22:30.0379422Z creating build\bdist.win-amd64\wheel\torch\utils\data\datapipes\iter 2025-06-01T21:22:30.0387669Z 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-06-01T21:22:30.0393714Z 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-06-01T21:22:30.0399484Z 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-06-01T21:22:30.0405896Z 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-06-01T21:22:30.0416197Z 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-06-01T21:22:30.0421725Z 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-06-01T21:22:30.0427243Z 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-06-01T21:22:30.0432647Z 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-06-01T21:22:30.0438265Z 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-06-01T21:22:30.0443943Z 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-06-01T21:22:30.0449476Z 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-06-01T21:22:30.0454637Z 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-06-01T21:22:30.0460098Z creating build\bdist.win-amd64\wheel\torch\utils\data\datapipes\map 2025-06-01T21:22:30.0463628Z 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-06-01T21:22:30.0468954Z 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-06-01T21:22:30.0474255Z 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-06-01T21:22:30.0479584Z 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-06-01T21:22:30.0485075Z 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-06-01T21:22:30.0494603Z 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-06-01T21:22:30.0499883Z creating build\bdist.win-amd64\wheel\torch\utils\data\datapipes\utils 2025-06-01T21:22:30.0503240Z 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-06-01T21:22:30.0508650Z 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-06-01T21:22:30.0513902Z 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-06-01T21:22:30.0519141Z 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-06-01T21:22:30.0523444Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\_decorator.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes 2025-06-01T21:22:30.0528905Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\_hook_iterator.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes 2025-06-01T21:22:30.0535143Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\_typing.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes 2025-06-01T21:22:30.0540744Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes 2025-06-01T21:22:30.0546010Z copying build\lib.win-amd64-cpython-39\torch\utils\data\dataset.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-06-01T21:22:30.0555652Z copying build\lib.win-amd64-cpython-39\torch\utils\data\distributed.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-06-01T21:22:30.0560916Z copying build\lib.win-amd64-cpython-39\torch\utils\data\graph.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-06-01T21:22:30.0566267Z copying build\lib.win-amd64-cpython-39\torch\utils\data\graph_settings.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-06-01T21:22:30.0571677Z copying build\lib.win-amd64-cpython-39\torch\utils\data\sampler.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-06-01T21:22:30.0577020Z creating build\bdist.win-amd64\wheel\torch\utils\data\_utils 2025-06-01T21:22:30.0580138Z copying build\lib.win-amd64-cpython-39\torch\utils\data\_utils\collate.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\_utils 2025-06-01T21:22:30.0602387Z copying build\lib.win-amd64-cpython-39\torch\utils\data\_utils\fetch.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\_utils 2025-06-01T21:22:30.0607712Z copying build\lib.win-amd64-cpython-39\torch\utils\data\_utils\pin_memory.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\_utils 2025-06-01T21:22:30.0613075Z copying build\lib.win-amd64-cpython-39\torch\utils\data\_utils\signal_handling.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\_utils 2025-06-01T21:22:30.0618616Z copying build\lib.win-amd64-cpython-39\torch\utils\data\_utils\worker.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\_utils 2025-06-01T21:22:30.0629156Z copying build\lib.win-amd64-cpython-39\torch\utils\data\_utils\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\_utils 2025-06-01T21:22:30.0634357Z copying build\lib.win-amd64-cpython-39\torch\utils\data\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-06-01T21:22:30.0639775Z copying build\lib.win-amd64-cpython-39\torch\utils\deterministic.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:22:30.0645134Z copying build\lib.win-amd64-cpython-39\torch\utils\dlpack.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:22:30.0650534Z copying build\lib.win-amd64-cpython-39\torch\utils\file_baton.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:22:30.0655726Z copying build\lib.win-amd64-cpython-39\torch\utils\flop_counter.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:22:30.0661922Z creating build\bdist.win-amd64\wheel\torch\utils\hipify 2025-06-01T21:22:30.0665114Z copying build\lib.win-amd64-cpython-39\torch\utils\hipify\constants.py -> build\bdist.win-amd64\wheel\.\torch\utils\hipify 2025-06-01T21:22:30.0670515Z copying build\lib.win-amd64-cpython-39\torch\utils\hipify\cuda_to_hip_mappings.py -> build\bdist.win-amd64\wheel\.\torch\utils\hipify 2025-06-01T21:22:30.0679897Z copying build\lib.win-amd64-cpython-39\torch\utils\hipify\hipify_python.py -> build\bdist.win-amd64\wheel\.\torch\utils\hipify 2025-06-01T21:22:30.0685670Z copying build\lib.win-amd64-cpython-39\torch\utils\hipify\version.py -> build\bdist.win-amd64\wheel\.\torch\utils\hipify 2025-06-01T21:22:30.0695200Z copying build\lib.win-amd64-cpython-39\torch\utils\hipify\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\hipify 2025-06-01T21:22:30.0700205Z copying build\lib.win-amd64-cpython-39\torch\utils\hooks.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:22:30.0705967Z creating build\bdist.win-amd64\wheel\torch\utils\jit 2025-06-01T21:22:30.0709277Z copying build\lib.win-amd64-cpython-39\torch\utils\jit\log_extract.py -> build\bdist.win-amd64\wheel\.\torch\utils\jit 2025-06-01T21:22:30.0715236Z copying build\lib.win-amd64-cpython-39\torch\utils\jit\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\jit 2025-06-01T21:22:30.0719659Z copying build\lib.win-amd64-cpython-39\torch\utils\mkldnn.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:22:30.0724837Z copying build\lib.win-amd64-cpython-39\torch\utils\mobile_optimizer.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:22:30.0730457Z creating build\bdist.win-amd64\wheel\torch\utils\model_dump 2025-06-01T21:22:30.0734044Z copying build\lib.win-amd64-cpython-39\torch\utils\model_dump\code.js -> build\bdist.win-amd64\wheel\.\torch\utils\model_dump 2025-06-01T21:22:30.0740001Z copying build\lib.win-amd64-cpython-39\torch\utils\model_dump\htm.mjs -> build\bdist.win-amd64\wheel\.\torch\utils\model_dump 2025-06-01T21:22:30.0745510Z copying build\lib.win-amd64-cpython-39\torch\utils\model_dump\preact.mjs -> build\bdist.win-amd64\wheel\.\torch\utils\model_dump 2025-06-01T21:22:30.0751103Z copying build\lib.win-amd64-cpython-39\torch\utils\model_dump\skeleton.html -> build\bdist.win-amd64\wheel\.\torch\utils\model_dump 2025-06-01T21:22:30.0756316Z copying build\lib.win-amd64-cpython-39\torch\utils\model_dump\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\model_dump 2025-06-01T21:22:30.0767564Z copying build\lib.win-amd64-cpython-39\torch\utils\model_dump\__main__.py -> build\bdist.win-amd64\wheel\.\torch\utils\model_dump 2025-06-01T21:22:30.0772748Z copying build\lib.win-amd64-cpython-39\torch\utils\model_zoo.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:22:30.0778263Z copying build\lib.win-amd64-cpython-39\torch\utils\module_tracker.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:22:30.0787929Z creating build\bdist.win-amd64\wheel\torch\utils\serialization 2025-06-01T21:22:30.0791381Z copying build\lib.win-amd64-cpython-39\torch\utils\serialization\config.py -> build\bdist.win-amd64\wheel\.\torch\utils\serialization 2025-06-01T21:22:30.0796678Z copying build\lib.win-amd64-cpython-39\torch\utils\serialization\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\serialization 2025-06-01T21:22:30.0801994Z copying build\lib.win-amd64-cpython-39\torch\utils\show_pickle.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:22:30.0808131Z creating build\bdist.win-amd64\wheel\torch\utils\tensorboard 2025-06-01T21:22:30.0811485Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\summary.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-06-01T21:22:30.0817565Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\writer.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-06-01T21:22:30.0823678Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\_convert_np.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-06-01T21:22:30.0829217Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\_embedding.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-06-01T21:22:30.0839835Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\_onnx_graph.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-06-01T21:22:30.0845364Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\_proto_graph.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-06-01T21:22:30.0850770Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\_pytorch_graph.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-06-01T21:22:30.0856373Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\_utils.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-06-01T21:22:30.0861854Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-06-01T21:22:30.0867108Z copying build\lib.win-amd64-cpython-39\torch\utils\throughput_benchmark.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:22:30.0872838Z creating build\bdist.win-amd64\wheel\torch\utils\viz 2025-06-01T21:22:30.0876147Z copying build\lib.win-amd64-cpython-39\torch\utils\viz\_cycles.py -> build\bdist.win-amd64\wheel\.\torch\utils\viz 2025-06-01T21:22:30.0882809Z copying build\lib.win-amd64-cpython-39\torch\utils\viz\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\viz 2025-06-01T21:22:30.0888166Z copying build\lib.win-amd64-cpython-39\torch\utils\weak.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:22:30.0894883Z copying build\lib.win-amd64-cpython-39\torch\utils\_appending_byte_serializer.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:22:30.0900536Z copying build\lib.win-amd64-cpython-39\torch\utils\_backport_slots.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:22:30.0906280Z copying build\lib.win-amd64-cpython-39\torch\utils\_config_module.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:22:30.0912405Z copying build\lib.win-amd64-cpython-39\torch\utils\_config_typing.pyi -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:22:30.0925708Z copying build\lib.win-amd64-cpython-39\torch\utils\_content_store.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:22:30.0935620Z copying build\lib.win-amd64-cpython-39\torch\utils\_contextlib.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:22:30.0941063Z copying build\lib.win-amd64-cpython-39\torch\utils\_cpp_embed_headers.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:22:30.0947607Z copying build\lib.win-amd64-cpython-39\torch\utils\_cpp_extension_versioner.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:22:30.0953232Z copying build\lib.win-amd64-cpython-39\torch\utils\_cxx_pytree.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:22:30.0959392Z copying build\lib.win-amd64-cpython-39\torch\utils\_device.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:22:30.0964663Z copying build\lib.win-amd64-cpython-39\torch\utils\_dtype_abbrs.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:22:30.0970574Z copying build\lib.win-amd64-cpython-39\torch\utils\_exposed_in.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:22:30.0980207Z copying build\lib.win-amd64-cpython-39\torch\utils\_filelock.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:22:30.0985765Z copying build\lib.win-amd64-cpython-39\torch\utils\_foreach_utils.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:22:30.0996110Z copying build\lib.win-amd64-cpython-39\torch\utils\_freeze.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:22:30.1001430Z copying build\lib.win-amd64-cpython-39\torch\utils\_functools.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:22:30.1006810Z copying build\lib.win-amd64-cpython-39\torch\utils\_get_clean_triton.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:22:30.1012502Z copying build\lib.win-amd64-cpython-39\torch\utils\_import_utils.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:22:30.1017879Z copying build\lib.win-amd64-cpython-39\torch\utils\_mode_utils.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:22:30.1023098Z copying build\lib.win-amd64-cpython-39\torch\utils\_ordered_set.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:22:30.1028785Z copying build\lib.win-amd64-cpython-39\torch\utils\_python_dispatch.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:22:30.1034908Z copying build\lib.win-amd64-cpython-39\torch\utils\_pytree.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:22:30.1041472Z copying build\lib.win-amd64-cpython-39\torch\utils\_stats.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:22:30.1046883Z creating build\bdist.win-amd64\wheel\torch\utils\_strobelight 2025-06-01T21:22:30.1050216Z copying build\lib.win-amd64-cpython-39\torch\utils\_strobelight\cli_function_profiler.py -> build\bdist.win-amd64\wheel\.\torch\utils\_strobelight 2025-06-01T21:22:30.1055800Z copying build\lib.win-amd64-cpython-39\torch\utils\_strobelight\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\_strobelight 2025-06-01T21:22:30.1060439Z creating build\bdist.win-amd64\wheel\torch\utils\_sympy 2025-06-01T21:22:30.1063733Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\functions.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-06-01T21:22:30.1070196Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\interp.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-06-01T21:22:30.1075396Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\numbers.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-06-01T21:22:30.1080594Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\printers.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-06-01T21:22:30.1086368Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\reference.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-06-01T21:22:30.1097050Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\singleton_int.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-06-01T21:22:30.1102434Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\solve.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-06-01T21:22:30.1107636Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\symbol.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-06-01T21:22:30.1112970Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\value_ranges.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-06-01T21:22:30.1119143Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-06-01T21:22:30.1123443Z copying build\lib.win-amd64-cpython-39\torch\utils\_thunk.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:22:30.1133027Z copying build\lib.win-amd64-cpython-39\torch\utils\_traceback.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:22:30.1138527Z copying build\lib.win-amd64-cpython-39\torch\utils\_triton.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:22:30.1144239Z copying build\lib.win-amd64-cpython-39\torch\utils\_typing_utils.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:22:30.1149420Z copying build\lib.win-amd64-cpython-39\torch\utils\_zip.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:22:30.1154838Z copying build\lib.win-amd64-cpython-39\torch\utils\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:22:30.1160438Z copying build\lib.win-amd64-cpython-39\torch\version.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:22:30.1165602Z creating build\bdist.win-amd64\wheel\torch\xpu 2025-06-01T21:22:30.1168719Z copying build\lib.win-amd64-cpython-39\torch\xpu\memory.py -> build\bdist.win-amd64\wheel\.\torch\xpu 2025-06-01T21:22:30.1174353Z copying build\lib.win-amd64-cpython-39\torch\xpu\random.py -> build\bdist.win-amd64\wheel\.\torch\xpu 2025-06-01T21:22:30.1179918Z copying build\lib.win-amd64-cpython-39\torch\xpu\streams.py -> build\bdist.win-amd64\wheel\.\torch\xpu 2025-06-01T21:22:30.1185289Z copying build\lib.win-amd64-cpython-39\torch\xpu\_gpu_trace.py -> build\bdist.win-amd64\wheel\.\torch\xpu 2025-06-01T21:22:30.1190649Z copying build\lib.win-amd64-cpython-39\torch\xpu\_utils.py -> build\bdist.win-amd64\wheel\.\torch\xpu 2025-06-01T21:22:30.1195911Z copying build\lib.win-amd64-cpython-39\torch\xpu\__init__.py -> build\bdist.win-amd64\wheel\.\torch\xpu 2025-06-01T21:22:30.1206292Z copying build\lib.win-amd64-cpython-39\torch\_appdirs.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:22:30.1219460Z creating build\bdist.win-amd64\wheel\torch\_awaits 2025-06-01T21:22:30.1222761Z copying build\lib.win-amd64-cpython-39\torch\_awaits\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_awaits 2025-06-01T21:22:30.1228577Z creating build\bdist.win-amd64\wheel\torch\_C 2025-06-01T21:22:30.1231834Z copying build\lib.win-amd64-cpython-39\torch\_C\_aoti.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-06-01T21:22:30.1237698Z copying build\lib.win-amd64-cpython-39\torch\_C\_autograd.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-06-01T21:22:30.1243031Z copying build\lib.win-amd64-cpython-39\torch\_C\_cpu.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-06-01T21:22:30.1248345Z copying build\lib.win-amd64-cpython-39\torch\_C\_cudnn.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-06-01T21:22:30.1253500Z copying build\lib.win-amd64-cpython-39\torch\_C\_cusparselt.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-06-01T21:22:30.1263378Z copying build\lib.win-amd64-cpython-39\torch\_C\_distributed_autograd.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-06-01T21:22:30.1269123Z copying build\lib.win-amd64-cpython-39\torch\_C\_distributed_c10d.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-06-01T21:22:30.1275062Z copying build\lib.win-amd64-cpython-39\torch\_C\_distributed_rpc.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-06-01T21:22:30.1280742Z copying build\lib.win-amd64-cpython-39\torch\_C\_distributed_rpc_testing.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-06-01T21:22:30.1286638Z creating build\bdist.win-amd64\wheel\torch\_C\_dynamo 2025-06-01T21:22:30.1290063Z copying build\lib.win-amd64-cpython-39\torch\_C\_dynamo\compiled_autograd.pyi -> build\bdist.win-amd64\wheel\.\torch\_C\_dynamo 2025-06-01T21:22:30.1295336Z copying build\lib.win-amd64-cpython-39\torch\_C\_dynamo\eval_frame.pyi -> build\bdist.win-amd64\wheel\.\torch\_C\_dynamo 2025-06-01T21:22:30.1300922Z copying build\lib.win-amd64-cpython-39\torch\_C\_dynamo\guards.pyi -> build\bdist.win-amd64\wheel\.\torch\_C\_dynamo 2025-06-01T21:22:30.1306471Z copying build\lib.win-amd64-cpython-39\torch\_C\_dynamo\__init__.pyi -> build\bdist.win-amd64\wheel\.\torch\_C\_dynamo 2025-06-01T21:22:30.1311722Z creating build\bdist.win-amd64\wheel\torch\_C\_export 2025-06-01T21:22:30.1315173Z copying build\lib.win-amd64-cpython-39\torch\_C\_export\pt2_archive_constants.pyi -> build\bdist.win-amd64\wheel\.\torch\_C\_export 2025-06-01T21:22:30.1321327Z copying build\lib.win-amd64-cpython-39\torch\_C\_export\__init__.pyi -> build\bdist.win-amd64\wheel\.\torch\_C\_export 2025-06-01T21:22:30.1326595Z copying build\lib.win-amd64-cpython-39\torch\_C\_functions.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-06-01T21:22:30.1331984Z copying build\lib.win-amd64-cpython-39\torch\_C\_functorch.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-06-01T21:22:30.1337931Z copying build\lib.win-amd64-cpython-39\torch\_C\_instruction_counter.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-06-01T21:22:30.1343590Z copying build\lib.win-amd64-cpython-39\torch\_C\_itt.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-06-01T21:22:30.1348679Z copying build\lib.win-amd64-cpython-39\torch\_C\_lazy.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-06-01T21:22:30.1354181Z copying build\lib.win-amd64-cpython-39\torch\_C\_lazy_ts_backend.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-06-01T21:22:30.1359421Z copying build\lib.win-amd64-cpython-39\torch\_C\_monitor.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-06-01T21:22:30.1364717Z copying build\lib.win-amd64-cpython-39\torch\_C\_nn.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-06-01T21:22:30.1370484Z copying build\lib.win-amd64-cpython-39\torch\_C\_nvtx.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-06-01T21:22:30.1375685Z copying build\lib.win-amd64-cpython-39\torch\_C\_onnx.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-06-01T21:22:30.1380970Z copying build\lib.win-amd64-cpython-39\torch\_C\_profiler.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-06-01T21:22:30.1386914Z copying build\lib.win-amd64-cpython-39\torch\_C\_VariableFunctions.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-06-01T21:22:30.1405356Z copying build\lib.win-amd64-cpython-39\torch\_C\_verbose.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-06-01T21:22:30.1415393Z copying build\lib.win-amd64-cpython-39\torch\_C\__init__.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-06-01T21:22:30.1425400Z copying build\lib.win-amd64-cpython-39\torch\_C.cp39-win_amd64.pyd -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:22:30.1431150Z copying build\lib.win-amd64-cpython-39\torch\_classes.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:22:30.1436620Z copying build\lib.win-amd64-cpython-39\torch\_compile.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:22:30.1442333Z creating build\bdist.win-amd64\wheel\torch\_custom_op 2025-06-01T21:22:30.1445577Z copying build\lib.win-amd64-cpython-39\torch\_custom_op\autograd.py -> build\bdist.win-amd64\wheel\.\torch\_custom_op 2025-06-01T21:22:30.1450946Z copying build\lib.win-amd64-cpython-39\torch\_custom_op\impl.py -> build\bdist.win-amd64\wheel\.\torch\_custom_op 2025-06-01T21:22:30.1456784Z copying build\lib.win-amd64-cpython-39\torch\_custom_op\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_custom_op 2025-06-01T21:22:30.1461064Z copying build\lib.win-amd64-cpython-39\torch\_custom_ops.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:22:30.1467221Z creating build\bdist.win-amd64\wheel\torch\_C_flatbuffer 2025-06-01T21:22:30.1474665Z copying build\lib.win-amd64-cpython-39\torch\_C_flatbuffer\__init__.pyi -> build\bdist.win-amd64\wheel\.\torch\_C_flatbuffer 2025-06-01T21:22:30.1480020Z creating build\bdist.win-amd64\wheel\torch\_decomp 2025-06-01T21:22:30.1483328Z copying build\lib.win-amd64-cpython-39\torch\_decomp\decompositions.py -> build\bdist.win-amd64\wheel\.\torch\_decomp 2025-06-01T21:22:30.1490948Z copying build\lib.win-amd64-cpython-39\torch\_decomp\decompositions_for_jvp.py -> build\bdist.win-amd64\wheel\.\torch\_decomp 2025-06-01T21:22:30.1496954Z copying build\lib.win-amd64-cpython-39\torch\_decomp\decompositions_for_rng.py -> build\bdist.win-amd64\wheel\.\torch\_decomp 2025-06-01T21:22:30.1507587Z copying build\lib.win-amd64-cpython-39\torch\_decomp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_decomp 2025-06-01T21:22:30.1513481Z copying build\lib.win-amd64-cpython-39\torch\_deploy.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:22:30.1536073Z creating build\bdist.win-amd64\wheel\torch\_dispatch 2025-06-01T21:22:30.1539531Z copying build\lib.win-amd64-cpython-39\torch\_dispatch\python.py -> build\bdist.win-amd64\wheel\.\torch\_dispatch 2025-06-01T21:22:30.1545549Z copying build\lib.win-amd64-cpython-39\torch\_dispatch\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_dispatch 2025-06-01T21:22:30.1550571Z creating build\bdist.win-amd64\wheel\torch\_dynamo 2025-06-01T21:22:30.1553843Z creating build\bdist.win-amd64\wheel\torch\_dynamo\backends 2025-06-01T21:22:30.1557125Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\common.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-06-01T21:22:30.1562764Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\cudagraphs.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-06-01T21:22:30.1568254Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\debugging.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-06-01T21:22:30.1573685Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\distributed.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-06-01T21:22:30.1594717Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\inductor.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-06-01T21:22:30.1600372Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\onnxrt.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-06-01T21:22:30.1605884Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\registry.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-06-01T21:22:30.1611171Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\tensorrt.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-06-01T21:22:30.1616272Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\torchxla.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-06-01T21:22:30.1621814Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\tvm.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-06-01T21:22:30.1627413Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-06-01T21:22:30.1632412Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\bytecode_analysis.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:22:30.1638055Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\bytecode_transformation.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:22:30.1645014Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\cache_size.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:22:30.1654818Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\callback.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:22:30.1660206Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\codegen.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:22:30.1666190Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\code_context.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:22:30.1671723Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\compiled_autograd.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:22:30.1678588Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\comptime.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:22:30.1684192Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\config.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:22:30.1690081Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\convert_frame.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:22:30.1696545Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\create_parameter_op.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:22:30.1702430Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\current_scope_id.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:22:30.1707925Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\debug_utils.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:22:30.1713941Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\decorators.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:22:30.1720123Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\device_interface.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:22:30.1726184Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\distributed.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:22:30.1731769Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\eval_frame.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:22:30.1738439Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\exc.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:22:30.1744860Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\external_utils.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:22:30.1750399Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\funcname_cache.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:22:30.1756292Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\graph_break_hints.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:22:30.1766324Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\graph_deduplication.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:22:30.1772517Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\graph_region_tracker.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:22:30.1778954Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\graph_utils.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:22:30.1785420Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\guards.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:22:30.1792927Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\hooks.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:22:30.1798468Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\logging.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:22:30.1804046Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\metrics_context.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:22:30.1809658Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\mutation_guard.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:22:30.1815619Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\output_graph.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:22:30.1823194Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\pgo.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:22:30.1829324Z creating build\bdist.win-amd64\wheel\torch\_dynamo\polyfills 2025-06-01T21:22:30.1837554Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\builtins.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-06-01T21:22:30.1843213Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\functools.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-06-01T21:22:30.1848573Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\fx.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-06-01T21:22:30.1854986Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\itertools.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-06-01T21:22:30.1867190Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\loader.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-06-01T21:22:30.1871831Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\operator.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-06-01T21:22:30.1877130Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\os.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-06-01T21:22:30.1903811Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\pytree.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-06-01T21:22:30.1909028Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\sys.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-06-01T21:22:30.1914500Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\tensor.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-06-01T21:22:30.1919782Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-06-01T21:22:30.1925484Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\profiler.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:22:30.1931014Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\replay_record.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:22:30.1936583Z creating build\bdist.win-amd64\wheel\torch\_dynamo\repro 2025-06-01T21:22:30.1939829Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\repro\after_aot.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\repro 2025-06-01T21:22:30.1946342Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\repro\after_dynamo.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\repro 2025-06-01T21:22:30.1952073Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\repro\aoti.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\repro 2025-06-01T21:22:30.1963201Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\repro\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\repro 2025-06-01T21:22:30.1967716Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\resume_execution.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:22:30.1980941Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\side_effects.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:22:30.1981874Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\source.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:22:30.1987243Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\symbolic_convert.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:22:30.1994747Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\tensor_version_op.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:22:30.2000131Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\testing.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:22:30.2005969Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\test_case.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:22:30.2011717Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\test_dont_skip_tracing_functions.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:22:30.2022578Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\test_minifier_common.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:22:30.2028625Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\trace_rules.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:22:30.2035874Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\types.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:22:30.2041387Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\utils.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:22:30.2049715Z creating build\bdist.win-amd64\wheel\torch\_dynamo\variables 2025-06-01T21:22:30.2052956Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\base.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-06-01T21:22:30.2058771Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\builder.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-06-01T21:22:30.2066039Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\builtin.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-06-01T21:22:30.2073086Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\constant.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-06-01T21:22:30.2078637Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\ctx_manager.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-06-01T21:22:30.2090090Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\dicts.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-06-01T21:22:30.2096246Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\distributed.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-06-01T21:22:30.2102376Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\functions.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-06-01T21:22:30.2109194Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\higher_order_ops.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-06-01T21:22:30.2116479Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\iter.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-06-01T21:22:30.2122306Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\lazy.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-06-01T21:22:30.2127705Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\lists.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-06-01T21:22:30.2133631Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\misc.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-06-01T21:22:30.2140008Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\nn_module.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-06-01T21:22:30.2146914Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\optimizer.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-06-01T21:22:30.2152923Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\script_object.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-06-01T21:22:30.2158385Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\sdpa.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-06-01T21:22:30.2163791Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\tensor.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-06-01T21:22:30.2170102Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\torch.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-06-01T21:22:30.2176406Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\torch_function.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-06-01T21:22:30.2182451Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\user_defined.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-06-01T21:22:30.2188772Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-06-01T21:22:30.2194159Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\_trace_wrapped_higher_order_op.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:22:30.2200018Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:22:30.2205531Z copying build\lib.win-amd64-cpython-39\torch\_environment.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:22:30.2211151Z creating build\bdist.win-amd64\wheel\torch\_export 2025-06-01T21:22:30.2214328Z copying build\lib.win-amd64-cpython-39\torch\_export\converter.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-06-01T21:22:30.2221015Z creating build\bdist.win-amd64\wheel\torch\_export\db 2025-06-01T21:22:30.2224457Z copying build\lib.win-amd64-cpython-39\torch\_export\db\case.py -> build\bdist.win-amd64\wheel\.\torch\_export\db 2025-06-01T21:22:30.2230578Z creating build\bdist.win-amd64\wheel\torch\_export\db\examples 2025-06-01T21:22:30.2234012Z 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-06-01T21:22:30.2239226Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\autograd_function.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-06-01T21:22:30.2244632Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\class_method.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-06-01T21:22:30.2254574Z 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-06-01T21:22:30.2260174Z 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-06-01T21:22:30.2266961Z 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-06-01T21:22:30.2272204Z 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-06-01T21:22:30.2277422Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\cond_operands.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-06-01T21:22:30.2283106Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\cond_predicate.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-06-01T21:22:30.2288692Z 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-06-01T21:22:30.2294838Z 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-06-01T21:22:30.2300472Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\decorator.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-06-01T21:22:30.2305950Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\dictionary.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-06-01T21:22:30.2311392Z 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-06-01T21:22:30.2316462Z 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-06-01T21:22:30.2321828Z 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-06-01T21:22:30.2326935Z 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-06-01T21:22:30.2332100Z 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-06-01T21:22:30.2341424Z 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-06-01T21:22:30.2346731Z 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-06-01T21:22:30.2352045Z 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-06-01T21:22:30.2357584Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\list_contains.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-06-01T21:22:30.2382255Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\list_unpack.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-06-01T21:22:30.2387872Z 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-06-01T21:22:30.2393445Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\nested_function.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-06-01T21:22:30.2399138Z 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-06-01T21:22:30.2408721Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\optional_input.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-06-01T21:22:30.2414018Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\pytree_flatten.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-06-01T21:22:30.2419208Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\scalar_output.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-06-01T21:22:30.2424743Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\specialized_attribute.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-06-01T21:22:30.2429840Z 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-06-01T21:22:30.2435184Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\static_if.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-06-01T21:22:30.2444609Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\tensor_setattr.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-06-01T21:22:30.2450134Z 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-06-01T21:22:30.2455632Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\unsupported_operator.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-06-01T21:22:30.2465400Z 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-06-01T21:22:30.2470455Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-06-01T21:22:30.2475728Z copying build\lib.win-amd64-cpython-39\torch\_export\db\gen_example.py -> build\bdist.win-amd64\wheel\.\torch\_export\db 2025-06-01T21:22:30.2480897Z copying build\lib.win-amd64-cpython-39\torch\_export\db\logging.py -> build\bdist.win-amd64\wheel\.\torch\_export\db 2025-06-01T21:22:30.2486039Z copying build\lib.win-amd64-cpython-39\torch\_export\db\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_export\db 2025-06-01T21:22:30.2490971Z copying build\lib.win-amd64-cpython-39\torch\_export\error.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-06-01T21:22:30.2496148Z copying build\lib.win-amd64-cpython-39\torch\_export\non_strict_utils.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-06-01T21:22:30.2502716Z creating build\bdist.win-amd64\wheel\torch\_export\passes 2025-06-01T21:22:30.2510904Z 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-06-01T21:22:30.2516494Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\collect_tracepoints_pass.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-06-01T21:22:30.2521885Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\constant_folding.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-06-01T21:22:30.2531970Z 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-06-01T21:22:30.2537509Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\insert_custom_op_guards.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-06-01T21:22:30.2542968Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\lift_constants_pass.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-06-01T21:22:30.2548943Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\remove_runtime_assertions.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-06-01T21:22:30.2555188Z 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-06-01T21:22:30.2560695Z 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-06-01T21:22:30.2566620Z 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-06-01T21:22:30.2572206Z 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-06-01T21:22:30.2594805Z 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-06-01T21:22:30.2600228Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\_node_metadata_hook.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-06-01T21:22:30.2605756Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-06-01T21:22:30.2610825Z copying build\lib.win-amd64-cpython-39\torch\_export\pass_base.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-06-01T21:22:30.2616794Z creating build\bdist.win-amd64\wheel\torch\_export\pass_infra 2025-06-01T21:22:30.2620120Z copying build\lib.win-amd64-cpython-39\torch\_export\pass_infra\node_metadata.py -> build\bdist.win-amd64\wheel\.\torch\_export\pass_infra 2025-06-01T21:22:30.2625656Z copying build\lib.win-amd64-cpython-39\torch\_export\pass_infra\proxy_value.py -> build\bdist.win-amd64\wheel\.\torch\_export\pass_infra 2025-06-01T21:22:30.2631066Z copying build\lib.win-amd64-cpython-39\torch\_export\pass_infra\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_export\pass_infra 2025-06-01T21:22:30.2635564Z creating build\bdist.win-amd64\wheel\torch\_export\serde 2025-06-01T21:22:30.2638816Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\aoti_schema.py -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-06-01T21:22:30.2644194Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\dynamic_shapes.py -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-06-01T21:22:30.2649804Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\export_schema.thrift -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-06-01T21:22:30.2655096Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\schema.py -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-06-01T21:22:30.2665039Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\schema.yaml -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-06-01T21:22:30.2670443Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\schema_check.py -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-06-01T21:22:30.2676172Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\serialize.py -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-06-01T21:22:30.2683335Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\union.py -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-06-01T21:22:30.2688662Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-06-01T21:22:30.2692963Z copying build\lib.win-amd64-cpython-39\torch\_export\tools.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-06-01T21:22:30.2698106Z copying build\lib.win-amd64-cpython-39\torch\_export\utils.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-06-01T21:22:30.2704457Z copying build\lib.win-amd64-cpython-39\torch\_export\verifier.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-06-01T21:22:30.2710224Z copying build\lib.win-amd64-cpython-39\torch\_export\wrappers.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-06-01T21:22:30.2715814Z copying build\lib.win-amd64-cpython-39\torch\_export\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-06-01T21:22:30.2721512Z creating build\bdist.win-amd64\wheel\torch\_functorch 2025-06-01T21:22:30.2724940Z copying build\lib.win-amd64-cpython-39\torch\_functorch\aot_autograd.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-06-01T21:22:30.2731248Z copying build\lib.win-amd64-cpython-39\torch\_functorch\apis.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-06-01T21:22:30.2737112Z copying build\lib.win-amd64-cpython-39\torch\_functorch\autograd_function.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-06-01T21:22:30.2743255Z copying build\lib.win-amd64-cpython-39\torch\_functorch\batch_norm_replacement.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-06-01T21:22:30.2753442Z copying build\lib.win-amd64-cpython-39\torch\_functorch\benchmark_utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-06-01T21:22:30.2758850Z copying build\lib.win-amd64-cpython-39\torch\_functorch\compilers.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-06-01T21:22:30.2764413Z copying build\lib.win-amd64-cpython-39\torch\_functorch\compile_utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-06-01T21:22:30.2769848Z copying build\lib.win-amd64-cpython-39\torch\_functorch\config.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-06-01T21:22:30.2775431Z copying build\lib.win-amd64-cpython-39\torch\_functorch\deprecated.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-06-01T21:22:30.2780970Z copying build\lib.win-amd64-cpython-39\torch\_functorch\eager_transforms.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-06-01T21:22:30.2787731Z copying build\lib.win-amd64-cpython-39\torch\_functorch\functional_call.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-06-01T21:22:30.2793342Z copying build\lib.win-amd64-cpython-39\torch\_functorch\fx_minifier.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-06-01T21:22:30.2799256Z copying build\lib.win-amd64-cpython-39\torch\_functorch\make_functional.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-06-01T21:22:30.2805253Z copying build\lib.win-amd64-cpython-39\torch\_functorch\partitioners.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-06-01T21:22:30.2812736Z copying build\lib.win-amd64-cpython-39\torch\_functorch\pyfunctorch.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-06-01T21:22:30.2818186Z copying build\lib.win-amd64-cpython-39\torch\_functorch\python_key.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-06-01T21:22:30.2823711Z copying build\lib.win-amd64-cpython-39\torch\_functorch\pytree_hacks.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-06-01T21:22:30.2829333Z copying build\lib.win-amd64-cpython-39\torch\_functorch\top_operators_github_usage.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-06-01T21:22:30.2835179Z copying build\lib.win-amd64-cpython-39\torch\_functorch\utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-06-01T21:22:30.2840433Z copying build\lib.win-amd64-cpython-39\torch\_functorch\vmap.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-06-01T21:22:30.2846937Z creating build\bdist.win-amd64\wheel\torch\_functorch\_activation_checkpointing 2025-06-01T21:22:30.2854745Z 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-06-01T21:22:30.2860635Z 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-06-01T21:22:30.2866059Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing\knapsack.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_activation_checkpointing 2025-06-01T21:22:30.2875361Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing\knapsack_evaluator.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_activation_checkpointing 2025-06-01T21:22:30.2881076Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_activation_checkpointing 2025-06-01T21:22:30.2886314Z creating build\bdist.win-amd64\wheel\torch\_functorch\_aot_autograd 2025-06-01T21:22:30.2889716Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\autograd_cache.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-06-01T21:22:30.2896492Z 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-06-01T21:22:30.2902762Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\dispatch_and_compile_graph.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-06-01T21:22:30.2913324Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\functional_utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-06-01T21:22:30.2919389Z 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-06-01T21:22:30.2925432Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\jit_compile_runtime_wrappers.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-06-01T21:22:30.2932185Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\logging_utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-06-01T21:22:30.2937614Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\runtime_wrappers.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-06-01T21:22:30.2968683Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\schemas.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-06-01T21:22:30.2974691Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\subclass_parametrization.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-06-01T21:22:30.2980065Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\subclass_utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-06-01T21:22:30.2986093Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\traced_function_transforms.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-06-01T21:22:30.2992923Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-06-01T21:22:30.2999116Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-06-01T21:22:30.3004200Z copying build\lib.win-amd64-cpython-39\torch\_functorch\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-06-01T21:22:30.3009339Z copying build\lib.win-amd64-cpython-39\torch\_guards.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:22:30.3015430Z creating build\bdist.win-amd64\wheel\torch\_higher_order_ops 2025-06-01T21:22:30.3018806Z 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-06-01T21:22:30.3024358Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\associative_scan.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-06-01T21:22:30.3030049Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\auto_functionalize.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-06-01T21:22:30.3040193Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\base_hop.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-06-01T21:22:30.3045316Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\cond.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-06-01T21:22:30.3051279Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\effects.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-06-01T21:22:30.3056791Z 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-06-01T21:22:30.3062380Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\flat_apply.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-06-01T21:22:30.3067813Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\flex_attention.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-06-01T21:22:30.3073800Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\foreach_map.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-06-01T21:22:30.3079592Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\hints_wrap.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-06-01T21:22:30.3084952Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\invoke_subgraph.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-06-01T21:22:30.3090696Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\map.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-06-01T21:22:30.3096776Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\out_dtype.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-06-01T21:22:30.3102703Z 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-06-01T21:22:30.3107969Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\scan.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-06-01T21:22:30.3114023Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\schema.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-06-01T21:22:30.3119225Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\strict_mode.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-06-01T21:22:30.3124584Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\torchbind.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-06-01T21:22:30.3129993Z 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-06-01T21:22:30.3136294Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\utils.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-06-01T21:22:30.3142289Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\while_loop.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-06-01T21:22:30.3152500Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\wrap.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-06-01T21:22:30.3157937Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\_invoke_quant.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-06-01T21:22:30.3163456Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-06-01T21:22:30.3183799Z creating build\bdist.win-amd64\wheel\torch\_inductor 2025-06-01T21:22:30.3187172Z copying build\lib.win-amd64-cpython-39\torch\_inductor\analyze_preserves_zero_mask.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:30.3192483Z copying build\lib.win-amd64-cpython-39\torch\_inductor\aoti_eager.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:30.3197889Z copying build\lib.win-amd64-cpython-39\torch\_inductor\async_compile.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:30.3208174Z creating build\bdist.win-amd64\wheel\torch\_inductor\autoheuristic 2025-06-01T21:22:30.3211593Z creating build\bdist.win-amd64\wheel\torch\_inductor\autoheuristic\artifacts 2025-06-01T21:22:30.3214914Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts\_MixedMMA100.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic\artifacts 2025-06-01T21:22:30.3220433Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts\_MixedMMH100.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic\artifacts 2025-06-01T21:22:30.3226122Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts\_MMRankingA100.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic\artifacts 2025-06-01T21:22:30.3236384Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts\_MMRankingH100.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic\artifacts 2025-06-01T21:22:30.3242508Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts\_PadMMA100.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic\artifacts 2025-06-01T21:22:30.3248077Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic\artifacts 2025-06-01T21:22:30.3252545Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\autoheuristic.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic 2025-06-01T21:22:30.3258049Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\autoheuristic_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic 2025-06-01T21:22:30.3268356Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\learnedheuristic_interface.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic 2025-06-01T21:22:30.3273770Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\learned_heuristic_controller.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic 2025-06-01T21:22:30.3279345Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic 2025-06-01T21:22:30.3283810Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autotune_process.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:30.3289693Z copying build\lib.win-amd64-cpython-39\torch\_inductor\bounds.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:30.3295223Z copying build\lib.win-amd64-cpython-39\torch\_inductor\choices.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:30.3300972Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codecache.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:30.3309075Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen 2025-06-01T21:22:30.3312325Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\aoti_hipify_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:22:30.3317852Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen\aoti_runtime 2025-06-01T21:22:30.3321119Z 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-06-01T21:22:30.3326890Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\block_analysis.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:22:30.3332734Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\common.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:22:30.3344556Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:22:30.3352661Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_bmm_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:22:30.3358513Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_flex_attention_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:22:30.3364782Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_gemm_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:22:30.3371269Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_grouped_gemm_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:22:30.3377047Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_micro_gemm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:22:30.3384269Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:22:30.3389697Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_template_kernel.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:22:30.3395966Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:22:30.3405305Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_wrapper_cpu.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:22:30.3430807Z 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-06-01T21:22:30.3431850Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_wrapper_gpu.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:22:30.3432864Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_wrapper_mps.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:22:30.3433984Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpu_device_op_overrides.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:22:30.3439719Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen\cuda 2025-06-01T21:22:30.3443248Z 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-06-01T21:22:30.3449154Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cuda_env.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-06-01T21:22:30.3455629Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cuda_kernel.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-06-01T21:22:30.3462879Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cuda_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-06-01T21:22:30.3649955Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_cache.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-06-01T21:22:30.3656135Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_presets.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-06-01T21:22:30.3662606Z 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-06-01T21:22:30.3668287Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-06-01T21:22:30.3674468Z 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-06-01T21:22:30.3680085Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\gemm_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-06-01T21:22:30.3686917Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\serialization.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-06-01T21:22:30.3693054Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-06-01T21:22:30.3698066Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda_combined_scheduling.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:22:30.8773358Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\debug_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:22:30.8779380Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\halide.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:22:30.8786161Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\memory_planning.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:22:30.8791903Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\mps.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:22:30.8797814Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\mps_device_op_overrides.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:22:30.8803338Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\multi_kernel.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:22:30.8809672Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen\rocm 2025-06-01T21:22:30.8813313Z 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-06-01T21:22:30.8819329Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\ck_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-06-01T21:22:30.8825181Z 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-06-01T21:22:30.8830602Z 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-06-01T21:22:30.9211711Z 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-06-01T21:22:30.9217439Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\compile_command.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-06-01T21:22:30.9223129Z 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-06-01T21:22:30.9228584Z 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-06-01T21:22:30.9234033Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\rocm_kernel.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-06-01T21:22:30.9241018Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\rocm_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-06-01T21:22:30.9246661Z 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-06-01T21:22:30.9252149Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\rocm_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-06-01T21:22:30.9257678Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-06-01T21:22:30.9262142Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\simd.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:22:30.9269036Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\simd_kernel_features.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:22:30.9275099Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\subgraph.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:22:30.9280546Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\triton.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:22:30.9288520Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\triton_combo_kernel.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:22:31.4363676Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\triton_split_scan.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:22:31.4369191Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\triton_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:22:31.4375097Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\wrapper.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:22:31.4382867Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\wrapper_fxir.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:22:31.4389411Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen\xpu 2025-06-01T21:22:31.4392971Z 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-06-01T21:22:31.4398565Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\xpu\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\xpu 2025-06-01T21:22:31.4403333Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:22:31.4408022Z copying build\lib.win-amd64-cpython-39\torch\_inductor\comms.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:31.4414176Z copying build\lib.win-amd64-cpython-39\torch\_inductor\comm_analysis.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:31.4420322Z copying build\lib.win-amd64-cpython-39\torch\_inductor\comm_lowering.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:31.4426029Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compiler_bisector.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:31.4432046Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_fx.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:31.4438971Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_fx_async.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:31.4444585Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_fx_ext.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:31.4450602Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_fx_subproc.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:31.4606402Z creating build\bdist.win-amd64\wheel\torch\_inductor\compile_worker 2025-06-01T21:22:31.4610266Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker\subproc_pool.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\compile_worker 2025-06-01T21:22:31.4616266Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker\utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\compile_worker 2025-06-01T21:22:31.4622317Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\compile_worker 2025-06-01T21:22:31.4626916Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker\__main__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\compile_worker 2025-06-01T21:22:31.4632350Z copying build\lib.win-amd64-cpython-39\torch\_inductor\config.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:31.4638930Z copying build\lib.win-amd64-cpython-39\torch\_inductor\constant_folding.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:31.4644585Z copying build\lib.win-amd64-cpython-39\torch\_inductor\cpp_builder.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:31.9349559Z copying build\lib.win-amd64-cpython-39\torch\_inductor\cpu_vec_isa.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:31.9356775Z copying build\lib.win-amd64-cpython-39\torch\_inductor\cudagraph_trees.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:31.9366261Z copying build\lib.win-amd64-cpython-39\torch\_inductor\cudagraph_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:31.9371946Z copying build\lib.win-amd64-cpython-39\torch\_inductor\custom_graph_pass.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:31.9377506Z copying build\lib.win-amd64-cpython-39\torch\_inductor\debug.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:31.9383842Z copying build\lib.win-amd64-cpython-39\torch\_inductor\decomposition.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:31.9389943Z copying build\lib.win-amd64-cpython-39\torch\_inductor\dependencies.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:31.9396395Z copying build\lib.win-amd64-cpython-39\torch\_inductor\dtype_propagation.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:31.9401908Z copying build\lib.win-amd64-cpython-39\torch\_inductor\exc.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:31.9407263Z copying build\lib.win-amd64-cpython-39\torch\_inductor\extern_node_serializer.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:31.9412754Z copying build\lib.win-amd64-cpython-39\torch\_inductor\freezing.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:32.4878407Z copying build\lib.win-amd64-cpython-39\torch\_inductor\freezing_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:32.4884043Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fuzzer.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:32.4891150Z creating build\bdist.win-amd64\wheel\torch\_inductor\fx_passes 2025-06-01T21:22:32.4894833Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\b2b_gemm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-06-01T21:22:32.4900869Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\binary_folding.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-06-01T21:22:32.4906940Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\ddp_fusion.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-06-01T21:22:32.4912986Z 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-06-01T21:22:32.5276972Z 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-06-01T21:22:32.5281977Z 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-06-01T21:22:32.5287372Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\freezing_patterns.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-06-01T21:22:32.5292766Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\fuse_attention.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-06-01T21:22:32.5299019Z 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-06-01T21:22:32.5305164Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\joint_graph.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-06-01T21:22:32.5311208Z 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-06-01T21:22:32.5318077Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\misc_patterns.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-06-01T21:22:32.5323586Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\mkldnn_fusion.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-06-01T21:22:32.5329821Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\numeric_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-06-01T21:22:32.5335294Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\pad_mm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-06-01T21:22:32.5341147Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\post_grad.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-06-01T21:22:32.5347653Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\pre_grad.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-06-01T21:22:32.5353504Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\quantization.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-06-01T21:22:32.5361123Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\reinplace.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-06-01T21:22:32.5366789Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\replace_random.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-06-01T21:22:32.6177736Z creating build\bdist.win-amd64\wheel\torch\_inductor\fx_passes\serialized_patterns 2025-06-01T21:22:32.6181032Z 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-06-01T21:22:32.6186591Z 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-06-01T21:22:32.6191941Z 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-06-01T21:22:32.6202143Z 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-06-01T21:22:32.6207594Z 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-06-01T21:22:32.6213250Z 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-06-01T21:22:32.6218765Z 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-06-01T21:22:32.6224462Z 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-06-01T21:22:32.6229979Z 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-06-01T21:22:32.6235658Z 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-06-01T21:22:32.6241522Z 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-06-01T21:22:32.6247672Z 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-06-01T21:22:32.6253846Z 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-06-01T21:22:32.6259938Z 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-06-01T21:22:32.6265660Z 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-06-01T21:22:32.6271153Z 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-06-01T21:22:32.6277234Z 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-06-01T21:22:32.6282839Z 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-06-01T21:22:32.6288429Z 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-06-01T21:22:32.6299353Z 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-06-01T21:22:32.6304896Z 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-06-01T21:22:32.6311619Z 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-06-01T21:22:32.6317921Z 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-06-01T21:22:32.6324225Z 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-06-01T21:22:32.6328736Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\split_cat.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-06-01T21:22:32.6336217Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-06-01T21:22:32.6341584Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:32.6347235Z copying build\lib.win-amd64-cpython-39\torch\_inductor\graph.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:32.6354336Z copying build\lib.win-amd64-cpython-39\torch\_inductor\hooks.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:32.6359682Z copying build\lib.win-amd64-cpython-39\torch\_inductor\index_propagation.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:32.6365572Z copying build\lib.win-amd64-cpython-39\torch\_inductor\inductor_prims.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:32.6371251Z copying build\lib.win-amd64-cpython-39\torch\_inductor\ir.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:32.6380419Z copying build\lib.win-amd64-cpython-39\torch\_inductor\jagged_lowerings.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:32.6386487Z creating build\bdist.win-amd64\wheel\torch\_inductor\kernel 2025-06-01T21:22:32.6389667Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\bmm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-06-01T21:22:32.6395049Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\conv.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-06-01T21:22:32.6401389Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\flex_attention.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-06-01T21:22:32.6408169Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\flex_decoding.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-06-01T21:22:32.6413874Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\mm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-06-01T21:22:32.6425365Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\mm_common.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-06-01T21:22:32.6431071Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\mm_plus_mm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-06-01T21:22:32.6436595Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\mm_scaled_grouped.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-06-01T21:22:32.6442017Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-06-01T21:22:32.6447298Z copying build\lib.win-amd64-cpython-39\torch\_inductor\loop_body.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:32.6459848Z copying build\lib.win-amd64-cpython-39\torch\_inductor\lowering.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:32.6467758Z copying build\lib.win-amd64-cpython-39\torch\_inductor\memory.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:32.6473383Z copying build\lib.win-amd64-cpython-39\torch\_inductor\metrics.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:32.6478641Z copying build\lib.win-amd64-cpython-39\torch\_inductor\mkldnn_ir.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:32.6484676Z copying build\lib.win-amd64-cpython-39\torch\_inductor\mkldnn_lowerings.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:32.6491385Z copying build\lib.win-amd64-cpython-39\torch\_inductor\mock_cache.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:32.6496779Z copying build\lib.win-amd64-cpython-39\torch\_inductor\ops_handler.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:32.6502922Z copying build\lib.win-amd64-cpython-39\torch\_inductor\optimize_indexing.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:32.6508543Z copying build\lib.win-amd64-cpython-39\torch\_inductor\output_code.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:32.6514700Z creating build\bdist.win-amd64\wheel\torch\_inductor\package 2025-06-01T21:22:32.6517959Z copying build\lib.win-amd64-cpython-39\torch\_inductor\package\build_package.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\package 2025-06-01T21:22:32.6523227Z copying build\lib.win-amd64-cpython-39\torch\_inductor\package\package.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\package 2025-06-01T21:22:32.6528474Z copying build\lib.win-amd64-cpython-39\torch\_inductor\package\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\package 2025-06-01T21:22:32.6533573Z copying build\lib.win-amd64-cpython-39\torch\_inductor\pattern_matcher.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:32.6541648Z copying build\lib.win-amd64-cpython-39\torch\_inductor\quantized_lowerings.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:32.6554638Z copying build\lib.win-amd64-cpython-39\torch\_inductor\remote_cache.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:32.6560376Z creating build\bdist.win-amd64\wheel\torch\_inductor\runtime 2025-06-01T21:22:32.6563701Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\autotune_cache.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-06-01T21:22:32.6569732Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\benchmarking.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-06-01T21:22:32.6575109Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\cache_dir_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-06-01T21:22:32.6580391Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\compile_tasks.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-06-01T21:22:32.6590836Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\coordinate_descent_tuner.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-06-01T21:22:32.6596505Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\halide_helpers.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-06-01T21:22:32.6601981Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\hints.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-06-01T21:22:32.6607222Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\runtime_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-06-01T21:22:32.6612642Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\static_cuda_launcher.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-06-01T21:22:32.6618016Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\triton_compat.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-06-01T21:22:32.6624112Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\triton_helpers.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-06-01T21:22:32.6630339Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\triton_heuristics.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-06-01T21:22:32.6638202Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-06-01T21:22:32.6643265Z copying build\lib.win-amd64-cpython-39\torch\_inductor\scheduler.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:32.6652135Z copying build\lib.win-amd64-cpython-39\torch\_inductor\script.ld -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:32.6658297Z copying build\lib.win-amd64-cpython-39\torch\_inductor\select_algorithm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:32.6666107Z copying build\lib.win-amd64-cpython-39\torch\_inductor\sizevars.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:32.6672216Z copying build\lib.win-amd64-cpython-39\torch\_inductor\standalone_compile.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:32.6677989Z copying build\lib.win-amd64-cpython-39\torch\_inductor\subgraph_lowering.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:32.6683643Z copying build\lib.win-amd64-cpython-39\torch\_inductor\template_heuristics.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:32.6689678Z copying build\lib.win-amd64-cpython-39\torch\_inductor\test_case.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:32.6701069Z copying build\lib.win-amd64-cpython-39\torch\_inductor\test_operators.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:32.6706539Z copying build\lib.win-amd64-cpython-39\torch\_inductor\triton_bundler.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:32.6712453Z copying build\lib.win-amd64-cpython-39\torch\_inductor\utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:32.6719247Z copying build\lib.win-amd64-cpython-39\torch\_inductor\virtualized.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:32.6725035Z copying build\lib.win-amd64-cpython-39\torch\_inductor\wrapper_benchmark.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:32.6730540Z copying build\lib.win-amd64-cpython-39\torch\_inductor\__autotune_main__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:32.6735924Z copying build\lib.win-amd64-cpython-39\torch\_inductor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:22:32.6741595Z copying build\lib.win-amd64-cpython-39\torch\_jit_internal.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:22:32.6748329Z creating build\bdist.win-amd64\wheel\torch\_lazy 2025-06-01T21:22:32.6751515Z copying build\lib.win-amd64-cpython-39\torch\_lazy\closure.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-06-01T21:22:32.6756844Z copying build\lib.win-amd64-cpython-39\torch\_lazy\computation.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-06-01T21:22:32.6761951Z copying build\lib.win-amd64-cpython-39\torch\_lazy\config.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-06-01T21:22:32.6766984Z copying build\lib.win-amd64-cpython-39\torch\_lazy\debug.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-06-01T21:22:32.6772173Z copying build\lib.win-amd64-cpython-39\torch\_lazy\device_context.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-06-01T21:22:32.6781667Z copying build\lib.win-amd64-cpython-39\torch\_lazy\extract_compiled_graph.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-06-01T21:22:32.6787074Z copying build\lib.win-amd64-cpython-39\torch\_lazy\ir_cache.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-06-01T21:22:32.6792018Z copying build\lib.win-amd64-cpython-39\torch\_lazy\metrics.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-06-01T21:22:32.6797067Z copying build\lib.win-amd64-cpython-39\torch\_lazy\tensor_factory_functions.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-06-01T21:22:32.6802420Z copying build\lib.win-amd64-cpython-39\torch\_lazy\ts_backend.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-06-01T21:22:32.6807481Z copying build\lib.win-amd64-cpython-39\torch\_lazy\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-06-01T21:22:32.6812906Z creating build\bdist.win-amd64\wheel\torch\_library 2025-06-01T21:22:32.6819923Z copying build\lib.win-amd64-cpython-39\torch\_library\autograd.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-06-01T21:22:32.6825514Z copying build\lib.win-amd64-cpython-39\torch\_library\custom_ops.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-06-01T21:22:32.6831576Z copying build\lib.win-amd64-cpython-39\torch\_library\fake_class_registry.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-06-01T21:22:32.6837029Z copying build\lib.win-amd64-cpython-39\torch\_library\fake_impl.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-06-01T21:22:32.6846710Z copying build\lib.win-amd64-cpython-39\torch\_library\fake_profile.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-06-01T21:22:32.6851982Z copying build\lib.win-amd64-cpython-39\torch\_library\infer_schema.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-06-01T21:22:32.6857392Z copying build\lib.win-amd64-cpython-39\torch\_library\simple_registry.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-06-01T21:22:32.6862818Z copying build\lib.win-amd64-cpython-39\torch\_library\triton.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-06-01T21:22:32.6868008Z copying build\lib.win-amd64-cpython-39\torch\_library\utils.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-06-01T21:22:32.6873614Z copying build\lib.win-amd64-cpython-39\torch\_library\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-06-01T21:22:32.6878900Z copying build\lib.win-amd64-cpython-39\torch\_linalg_utils.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:22:32.6884162Z copying build\lib.win-amd64-cpython-39\torch\_lobpcg.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:22:32.6890076Z creating build\bdist.win-amd64\wheel\torch\_logging 2025-06-01T21:22:32.6893190Z copying build\lib.win-amd64-cpython-39\torch\_logging\scribe.py -> build\bdist.win-amd64\wheel\.\torch\_logging 2025-06-01T21:22:32.6915765Z copying build\lib.win-amd64-cpython-39\torch\_logging\structured.py -> build\bdist.win-amd64\wheel\.\torch\_logging 2025-06-01T21:22:32.6921099Z copying build\lib.win-amd64-cpython-39\torch\_logging\_internal.py -> build\bdist.win-amd64\wheel\.\torch\_logging 2025-06-01T21:22:32.6927340Z copying build\lib.win-amd64-cpython-39\torch\_logging\_registrations.py -> build\bdist.win-amd64\wheel\.\torch\_logging 2025-06-01T21:22:32.6937177Z copying build\lib.win-amd64-cpython-39\torch\_logging\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_logging 2025-06-01T21:22:32.6942627Z copying build\lib.win-amd64-cpython-39\torch\_lowrank.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:22:32.6949171Z copying build\lib.win-amd64-cpython-39\torch\_meta_registrations.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:22:32.6958006Z copying build\lib.win-amd64-cpython-39\torch\_namedtensor_internals.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:22:32.6964455Z creating build\bdist.win-amd64\wheel\torch\_numpy 2025-06-01T21:22:32.6968026Z copying build\lib.win-amd64-cpython-39\torch\_numpy\fft.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-06-01T21:22:32.6974131Z copying build\lib.win-amd64-cpython-39\torch\_numpy\linalg.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-06-01T21:22:32.6980073Z copying build\lib.win-amd64-cpython-39\torch\_numpy\random.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-06-01T21:22:32.6986007Z creating build\bdist.win-amd64\wheel\torch\_numpy\testing 2025-06-01T21:22:32.6989346Z copying build\lib.win-amd64-cpython-39\torch\_numpy\testing\utils.py -> build\bdist.win-amd64\wheel\.\torch\_numpy\testing 2025-06-01T21:22:32.6995678Z copying build\lib.win-amd64-cpython-39\torch\_numpy\testing\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_numpy\testing 2025-06-01T21:22:32.7000813Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_binary_ufuncs_impl.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-06-01T21:22:32.7006188Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_casting_dicts.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-06-01T21:22:32.7016551Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_dtypes.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-06-01T21:22:32.7022028Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_dtypes_impl.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-06-01T21:22:32.7027315Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_funcs.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-06-01T21:22:32.7032471Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_funcs_impl.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-06-01T21:22:32.7039380Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_getlimits.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-06-01T21:22:32.7044432Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_ndarray.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-06-01T21:22:32.7050007Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_normalizations.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-06-01T21:22:32.7055353Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_reductions_impl.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-06-01T21:22:32.7060630Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_ufuncs.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-06-01T21:22:32.7066497Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_unary_ufuncs_impl.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-06-01T21:22:32.7071929Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_util.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-06-01T21:22:32.7077064Z copying build\lib.win-amd64-cpython-39\torch\_numpy\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-06-01T21:22:32.7082029Z copying build\lib.win-amd64-cpython-39\torch\_ops.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:22:32.7088460Z creating build\bdist.win-amd64\wheel\torch\_prims 2025-06-01T21:22:32.7091571Z copying build\lib.win-amd64-cpython-39\torch\_prims\context.py -> build\bdist.win-amd64\wheel\.\torch\_prims 2025-06-01T21:22:32.7096787Z copying build\lib.win-amd64-cpython-39\torch\_prims\debug_prims.py -> build\bdist.win-amd64\wheel\.\torch\_prims 2025-06-01T21:22:32.7102147Z copying build\lib.win-amd64-cpython-39\torch\_prims\executor.py -> build\bdist.win-amd64\wheel\.\torch\_prims 2025-06-01T21:22:32.7107694Z copying build\lib.win-amd64-cpython-39\torch\_prims\rng_prims.py -> build\bdist.win-amd64\wheel\.\torch\_prims 2025-06-01T21:22:32.7112939Z copying build\lib.win-amd64-cpython-39\torch\_prims\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_prims 2025-06-01T21:22:32.7125693Z creating build\bdist.win-amd64\wheel\torch\_prims_common 2025-06-01T21:22:32.7129032Z copying build\lib.win-amd64-cpython-39\torch\_prims_common\wrappers.py -> build\bdist.win-amd64\wheel\.\torch\_prims_common 2025-06-01T21:22:32.7136020Z copying build\lib.win-amd64-cpython-39\torch\_prims_common\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_prims_common 2025-06-01T21:22:32.7142486Z copying build\lib.win-amd64-cpython-39\torch\_python_dispatcher.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:22:32.7154556Z creating build\bdist.win-amd64\wheel\torch\_refs 2025-06-01T21:22:32.7155194Z copying build\lib.win-amd64-cpython-39\torch\_refs\fft.py -> build\bdist.win-amd64\wheel\.\torch\_refs 2025-06-01T21:22:32.7157896Z creating build\bdist.win-amd64\wheel\torch\_refs\linalg 2025-06-01T21:22:32.7160956Z copying build\lib.win-amd64-cpython-39\torch\_refs\linalg\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_refs\linalg 2025-06-01T21:22:32.7166541Z creating build\bdist.win-amd64\wheel\torch\_refs\nn 2025-06-01T21:22:32.7169997Z creating build\bdist.win-amd64\wheel\torch\_refs\nn\functional 2025-06-01T21:22:32.7173278Z copying build\lib.win-amd64-cpython-39\torch\_refs\nn\functional\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_refs\nn\functional 2025-06-01T21:22:32.7179419Z copying build\lib.win-amd64-cpython-39\torch\_refs\nn\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_refs\nn 2025-06-01T21:22:32.7185125Z creating build\bdist.win-amd64\wheel\torch\_refs\special 2025-06-01T21:22:32.7188497Z copying build\lib.win-amd64-cpython-39\torch\_refs\special\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_refs\special 2025-06-01T21:22:32.7194374Z copying build\lib.win-amd64-cpython-39\torch\_refs\_conversions.py -> build\bdist.win-amd64\wheel\.\torch\_refs 2025-06-01T21:22:32.7199553Z copying build\lib.win-amd64-cpython-39\torch\_refs\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_refs 2025-06-01T21:22:32.7211790Z copying build\lib.win-amd64-cpython-39\torch\_size_docs.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:22:32.7226566Z copying build\lib.win-amd64-cpython-39\torch\_sources.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:22:32.7231952Z copying build\lib.win-amd64-cpython-39\torch\_storage_docs.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:22:32.7237447Z copying build\lib.win-amd64-cpython-39\torch\_streambase.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:22:32.7242898Z creating build\bdist.win-amd64\wheel\torch\_strobelight 2025-06-01T21:22:32.7246284Z copying build\lib.win-amd64-cpython-39\torch\_strobelight\cli_function_profiler.py -> build\bdist.win-amd64\wheel\.\torch\_strobelight 2025-06-01T21:22:32.7252068Z copying build\lib.win-amd64-cpython-39\torch\_strobelight\compile_time_profiler.py -> build\bdist.win-amd64\wheel\.\torch\_strobelight 2025-06-01T21:22:32.7257809Z copying build\lib.win-amd64-cpython-39\torch\_strobelight\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_strobelight 2025-06-01T21:22:32.7267506Z creating build\bdist.win-amd64\wheel\torch\_subclasses 2025-06-01T21:22:32.7271504Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\fake_impls.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-06-01T21:22:32.7277150Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\fake_tensor.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-06-01T21:22:32.7284253Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\fake_utils.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-06-01T21:22:32.7294386Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\functional_tensor.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-06-01T21:22:32.7300419Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\meta_utils.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-06-01T21:22:32.7307201Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\schema_check_mode.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-06-01T21:22:32.7313100Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\_fake_tensor_utils.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-06-01T21:22:32.7318573Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-06-01T21:22:32.7323669Z copying build\lib.win-amd64-cpython-39\torch\_tensor.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:22:32.7330107Z copying build\lib.win-amd64-cpython-39\torch\_tensor_docs.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:22:32.7337270Z copying build\lib.win-amd64-cpython-39\torch\_tensor_str.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:22:32.7343657Z copying build\lib.win-amd64-cpython-39\torch\_thread_safe_fork.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:22:32.7348148Z copying build\lib.win-amd64-cpython-39\torch\_torch_docs.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:22:32.7357702Z copying build\lib.win-amd64-cpython-39\torch\_utils.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:22:32.7363671Z copying build\lib.win-amd64-cpython-39\torch\_utils_internal.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:22:32.7373871Z creating build\bdist.win-amd64\wheel\torch\_vendor 2025-06-01T21:22:32.7377093Z creating build\bdist.win-amd64\wheel\torch\_vendor\packaging 2025-06-01T21:22:32.7380319Z copying build\lib.win-amd64-cpython-39\torch\_vendor\packaging\version.py -> build\bdist.win-amd64\wheel\.\torch\_vendor\packaging 2025-06-01T21:22:32.7386512Z copying build\lib.win-amd64-cpython-39\torch\_vendor\packaging\_structures.py -> build\bdist.win-amd64\wheel\.\torch\_vendor\packaging 2025-06-01T21:22:32.7391802Z copying build\lib.win-amd64-cpython-39\torch\_vendor\packaging\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_vendor\packaging 2025-06-01T21:22:32.7396833Z copying build\lib.win-amd64-cpython-39\torch\_vendor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_vendor 2025-06-01T21:22:32.7401044Z copying build\lib.win-amd64-cpython-39\torch\_VF.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:22:32.7405978Z copying build\lib.win-amd64-cpython-39\torch\_VF.pyi -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:22:32.7421779Z copying build\lib.win-amd64-cpython-39\torch\_vmap_internals.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:22:32.7427408Z copying build\lib.win-amd64-cpython-39\torch\_weights_only_unpickler.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:22:32.7433411Z copying build\lib.win-amd64-cpython-39\torch\__config__.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:22:32.7438539Z copying build\lib.win-amd64-cpython-39\torch\__future__.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:22:32.7444783Z copying build\lib.win-amd64-cpython-39\torch\__init__.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:22:32.7491992Z creating build\bdist.win-amd64\wheel\torchgen 2025-06-01T21:22:32.7492496Z creating build\bdist.win-amd64\wheel\torchgen\aoti 2025-06-01T21:22:32.7493120Z copying build\lib.win-amd64-cpython-39\torchgen\aoti\fallback_ops.py -> build\bdist.win-amd64\wheel\.\torchgen\aoti 2025-06-01T21:22:32.7495154Z copying build\lib.win-amd64-cpython-39\torchgen\aoti\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\aoti 2025-06-01T21:22:32.7495816Z creating build\bdist.win-amd64\wheel\torchgen\api 2025-06-01T21:22:32.7496394Z copying build\lib.win-amd64-cpython-39\torchgen\api\autograd.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-06-01T21:22:32.7497250Z copying build\lib.win-amd64-cpython-39\torchgen\api\cpp.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-06-01T21:22:32.7499155Z copying build\lib.win-amd64-cpython-39\torchgen\api\dispatcher.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-06-01T21:22:32.7505016Z copying build\lib.win-amd64-cpython-39\torchgen\api\functionalization.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-06-01T21:22:32.7510275Z copying build\lib.win-amd64-cpython-39\torchgen\api\lazy.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-06-01T21:22:32.7520067Z copying build\lib.win-amd64-cpython-39\torchgen\api\meta.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-06-01T21:22:32.7524998Z copying build\lib.win-amd64-cpython-39\torchgen\api\native.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-06-01T21:22:32.7530315Z copying build\lib.win-amd64-cpython-39\torchgen\api\python.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-06-01T21:22:32.7536659Z copying build\lib.win-amd64-cpython-39\torchgen\api\structured.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-06-01T21:22:32.7541907Z copying build\lib.win-amd64-cpython-39\torchgen\api\translate.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-06-01T21:22:32.7548171Z creating build\bdist.win-amd64\wheel\torchgen\api\types 2025-06-01T21:22:32.7551409Z copying build\lib.win-amd64-cpython-39\torchgen\api\types\signatures.py -> build\bdist.win-amd64\wheel\.\torchgen\api\types 2025-06-01T21:22:32.7556689Z copying build\lib.win-amd64-cpython-39\torchgen\api\types\types.py -> build\bdist.win-amd64\wheel\.\torchgen\api\types 2025-06-01T21:22:32.7561868Z copying build\lib.win-amd64-cpython-39\torchgen\api\types\types_base.py -> build\bdist.win-amd64\wheel\.\torchgen\api\types 2025-06-01T21:22:32.7567305Z copying build\lib.win-amd64-cpython-39\torchgen\api\types\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\api\types 2025-06-01T21:22:32.7572179Z copying build\lib.win-amd64-cpython-39\torchgen\api\ufunc.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-06-01T21:22:32.7577471Z copying build\lib.win-amd64-cpython-39\torchgen\api\unboxing.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-06-01T21:22:32.7582872Z copying build\lib.win-amd64-cpython-39\torchgen\api\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-06-01T21:22:32.7587198Z copying build\lib.win-amd64-cpython-39\torchgen\code_template.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-06-01T21:22:32.7592359Z copying build\lib.win-amd64-cpython-39\torchgen\context.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-06-01T21:22:32.7597759Z creating build\bdist.win-amd64\wheel\torchgen\dest 2025-06-01T21:22:32.7600835Z copying build\lib.win-amd64-cpython-39\torchgen\dest\lazy_ir.py -> build\bdist.win-amd64\wheel\.\torchgen\dest 2025-06-01T21:22:32.7606684Z copying build\lib.win-amd64-cpython-39\torchgen\dest\lazy_ts_lowering.py -> build\bdist.win-amd64\wheel\.\torchgen\dest 2025-06-01T21:22:32.7611992Z copying build\lib.win-amd64-cpython-39\torchgen\dest\native_functions.py -> build\bdist.win-amd64\wheel\.\torchgen\dest 2025-06-01T21:22:32.7617492Z copying build\lib.win-amd64-cpython-39\torchgen\dest\register_dispatch_key.py -> build\bdist.win-amd64\wheel\.\torchgen\dest 2025-06-01T21:22:32.7627876Z copying build\lib.win-amd64-cpython-39\torchgen\dest\ufunc.py -> build\bdist.win-amd64\wheel\.\torchgen\dest 2025-06-01T21:22:32.7633392Z copying build\lib.win-amd64-cpython-39\torchgen\dest\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\dest 2025-06-01T21:22:32.7639075Z creating build\bdist.win-amd64\wheel\torchgen\executorch 2025-06-01T21:22:32.7646705Z creating build\bdist.win-amd64\wheel\torchgen\executorch\api 2025-06-01T21:22:32.7649956Z copying build\lib.win-amd64-cpython-39\torchgen\executorch\api\custom_ops.py -> build\bdist.win-amd64\wheel\.\torchgen\executorch\api 2025-06-01T21:22:32.7655407Z copying build\lib.win-amd64-cpython-39\torchgen\executorch\api\et_cpp.py -> build\bdist.win-amd64\wheel\.\torchgen\executorch\api 2025-06-01T21:22:32.7660851Z creating build\bdist.win-amd64\wheel\torchgen\executorch\api\types 2025-06-01T21:22:32.7664234Z copying build\lib.win-amd64-cpython-39\torchgen\executorch\api\types\signatures.py -> build\bdist.win-amd64\wheel\.\torchgen\executorch\api\types 2025-06-01T21:22:32.7669596Z copying build\lib.win-amd64-cpython-39\torchgen\executorch\api\types\types.py -> build\bdist.win-amd64\wheel\.\torchgen\executorch\api\types 2025-06-01T21:22:32.7674889Z copying build\lib.win-amd64-cpython-39\torchgen\executorch\api\types\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\executorch\api\types 2025-06-01T21:22:32.7680330Z copying build\lib.win-amd64-cpython-39\torchgen\executorch\api\unboxing.py -> build\bdist.win-amd64\wheel\.\torchgen\executorch\api 2025-06-01T21:22:32.7685335Z copying build\lib.win-amd64-cpython-39\torchgen\executorch\api\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\executorch\api 2025-06-01T21:22:32.7689560Z copying build\lib.win-amd64-cpython-39\torchgen\executorch\model.py -> build\bdist.win-amd64\wheel\.\torchgen\executorch 2025-06-01T21:22:32.7694673Z copying build\lib.win-amd64-cpython-39\torchgen\executorch\parse.py -> build\bdist.win-amd64\wheel\.\torchgen\executorch 2025-06-01T21:22:32.7699898Z copying build\lib.win-amd64-cpython-39\torchgen\executorch\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\executorch 2025-06-01T21:22:32.7704207Z copying build\lib.win-amd64-cpython-39\torchgen\gen.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-06-01T21:22:32.7711406Z copying build\lib.win-amd64-cpython-39\torchgen\gen_aoti_c_shim.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-06-01T21:22:32.7717154Z copying build\lib.win-amd64-cpython-39\torchgen\gen_backend_stubs.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-06-01T21:22:32.7722856Z copying build\lib.win-amd64-cpython-39\torchgen\gen_executorch.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-06-01T21:22:32.7729064Z copying build\lib.win-amd64-cpython-39\torchgen\gen_functionalization_type.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-06-01T21:22:32.7734920Z copying build\lib.win-amd64-cpython-39\torchgen\gen_lazy_tensor.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-06-01T21:22:32.7740690Z copying build\lib.win-amd64-cpython-39\torchgen\gen_schema_utils.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-06-01T21:22:32.7746194Z copying build\lib.win-amd64-cpython-39\torchgen\gen_vmap_plumbing.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-06-01T21:22:32.7751481Z copying build\lib.win-amd64-cpython-39\torchgen\local.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-06-01T21:22:32.7756539Z copying build\lib.win-amd64-cpython-39\torchgen\model.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-06-01T21:22:32.7763474Z copying build\lib.win-amd64-cpython-39\torchgen\native_function_generation.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-06-01T21:22:32.7769762Z creating build\bdist.win-amd64\wheel\torchgen\operator_versions 2025-06-01T21:22:32.7772961Z copying build\lib.win-amd64-cpython-39\torchgen\operator_versions\gen_mobile_upgraders.py -> build\bdist.win-amd64\wheel\.\torchgen\operator_versions 2025-06-01T21:22:32.7778661Z copying build\lib.win-amd64-cpython-39\torchgen\operator_versions\gen_mobile_upgraders_constant.py -> build\bdist.win-amd64\wheel\.\torchgen\operator_versions 2025-06-01T21:22:32.7784044Z copying build\lib.win-amd64-cpython-39\torchgen\operator_versions\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\operator_versions 2025-06-01T21:22:32.7793103Z creating build\bdist.win-amd64\wheel\torchgen\packaged 2025-06-01T21:22:32.7796417Z creating build\bdist.win-amd64\wheel\torchgen\packaged\ATen 2025-06-01T21:22:32.7799549Z creating build\bdist.win-amd64\wheel\torchgen\packaged\ATen\native 2025-06-01T21:22:32.7802849Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\native\native_functions.yaml -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\native 2025-06-01T21:22:32.7813873Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\native\tags.yaml -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\native 2025-06-01T21:22:32.7820111Z creating build\bdist.win-amd64\wheel\torchgen\packaged\ATen\templates 2025-06-01T21:22:32.7823572Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\ATenOpList.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:22:32.7829118Z 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-06-01T21:22:32.7834381Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\CompositeViewCopyKernels.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:22:32.7844327Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\DispatchKeyFunction.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:22:32.7849657Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\DispatchKeyFunctions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:22:32.7855161Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\DispatchKeyFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:22:32.7860585Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\DispatchKeyNativeFunctions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:22:32.7866376Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\DispatchKeyNativeFunctions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:22:32.7871610Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\enum_tag.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:22:32.7876679Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\Function.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:22:32.7882198Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\FunctionalInverses.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:22:32.7887688Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\Functions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:22:32.7893549Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\Functions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:22:32.7899075Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\LazyIr.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:22:32.7904432Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\LazyNonNativeIr.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:22:32.7909736Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\MethodOperators.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:22:32.7915019Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\NativeFunction.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:22:32.7920486Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\NativeFunctions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:22:32.7926019Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\NativeMetaFunction.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:22:32.7937162Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\NativeMetaFunctions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:22:32.7942886Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\Operator.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:22:32.7948354Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\Operators.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:22:32.7952619Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\Operators.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:22:32.7958364Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RedispatchFunctions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:22:32.7964708Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RedispatchFunctions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:22:32.7969828Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RegisterBackendSelect.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:22:32.7976136Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RegisterCodegenUnboxedKernels.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:22:32.7981967Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RegisterDispatchDefinitions.ini -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:22:32.7986835Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RegisterDispatchKey.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:22:32.7996595Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RegisterFunctionalization.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:22:32.8002110Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RegisterSchema.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:22:32.8007544Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RegistrationDeclarations.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:22:32.8012771Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\TensorBody.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:22:32.8018915Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\TensorMethods.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:22:32.8024537Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\UfuncCPU.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:22:32.8029905Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\UfuncCPUKernel.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:22:32.8035193Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\UfuncCUDA.cu -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:22:32.8040599Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\UnboxingFunctions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:22:32.8065853Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\UnboxingFunctions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:22:32.8066682Z creating build\bdist.win-amd64\wheel\torchgen\packaged\autograd 2025-06-01T21:22:32.8067523Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\BUILD.bazel -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-06-01T21:22:32.8068898Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\build.bzl -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-06-01T21:22:32.8072204Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\context.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-06-01T21:22:32.8077991Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\deprecated.yaml -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-06-01T21:22:32.8084035Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\derivatives.yaml -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-06-01T21:22:32.8094939Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_annotated_fn_args.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-06-01T21:22:32.8101156Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_autograd.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-06-01T21:22:32.8106604Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_autograd_functions.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-06-01T21:22:32.8112634Z 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-06-01T21:22:32.8118665Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_python_functions.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-06-01T21:22:32.8124534Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_trace_type.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-06-01T21:22:32.8130727Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_variable_factories.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-06-01T21:22:32.8136271Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_variable_type.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-06-01T21:22:32.8142964Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_view_funcs.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-06-01T21:22:32.8148653Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\load_derivatives.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-06-01T21:22:32.8155151Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\README.md -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-06-01T21:22:32.8160922Z creating build\bdist.win-amd64\wheel\torchgen\packaged\autograd\templates 2025-06-01T21:22:32.8164465Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\ADInplaceOrViewType.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-06-01T21:22:32.8169857Z 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-06-01T21:22:32.8174862Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\Functions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-06-01T21:22:32.8184747Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\Functions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-06-01T21:22:32.8190198Z 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-06-01T21:22:32.8195724Z 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-06-01T21:22:32.8201180Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\python_functions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-06-01T21:22:32.8206732Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\python_functions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-06-01T21:22:32.8211831Z 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-06-01T21:22:32.8217252Z 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-06-01T21:22:32.8222775Z 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-06-01T21:22:32.8228447Z 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-06-01T21:22:32.8233833Z 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-06-01T21:22:32.8239056Z 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-06-01T21:22:32.8244544Z 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-06-01T21:22:32.8250055Z 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-06-01T21:22:32.8255615Z 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-06-01T21:22:32.8265906Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\TraceType.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-06-01T21:22:32.8271497Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\VariableType.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-06-01T21:22:32.8276814Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\VariableType.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-06-01T21:22:32.8282718Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\variable_factories.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-06-01T21:22:32.8288123Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\ViewFuncs.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-06-01T21:22:32.8293408Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\ViewFuncs.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-06-01T21:22:32.8298526Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-06-01T21:22:32.8303347Z creating build\bdist.win-amd64\wheel\torchgen\selective_build 2025-06-01T21:22:32.8306635Z copying build\lib.win-amd64-cpython-39\torchgen\selective_build\operator.py -> build\bdist.win-amd64\wheel\.\torchgen\selective_build 2025-06-01T21:22:32.8311988Z copying build\lib.win-amd64-cpython-39\torchgen\selective_build\selector.py -> build\bdist.win-amd64\wheel\.\torchgen\selective_build 2025-06-01T21:22:32.8317395Z copying build\lib.win-amd64-cpython-39\torchgen\selective_build\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\selective_build 2025-06-01T21:22:32.8322229Z creating build\bdist.win-amd64\wheel\torchgen\static_runtime 2025-06-01T21:22:32.8325395Z copying build\lib.win-amd64-cpython-39\torchgen\static_runtime\config.py -> build\bdist.win-amd64\wheel\.\torchgen\static_runtime 2025-06-01T21:22:32.8330735Z copying build\lib.win-amd64-cpython-39\torchgen\static_runtime\generator.py -> build\bdist.win-amd64\wheel\.\torchgen\static_runtime 2025-06-01T21:22:32.8336587Z copying build\lib.win-amd64-cpython-39\torchgen\static_runtime\gen_static_runtime_ops.py -> build\bdist.win-amd64\wheel\.\torchgen\static_runtime 2025-06-01T21:22:32.8348001Z copying build\lib.win-amd64-cpython-39\torchgen\static_runtime\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\static_runtime 2025-06-01T21:22:32.8352228Z copying build\lib.win-amd64-cpython-39\torchgen\utils.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-06-01T21:22:32.8357877Z copying build\lib.win-amd64-cpython-39\torchgen\yaml_utils.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-06-01T21:22:32.8367866Z copying build\lib.win-amd64-cpython-39\torchgen\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-06-01T21:22:32.8379545Z running install_egg_info 2025-06-01T21:22:32.8471406Z running egg_info 2025-06-01T21:22:32.8549703Z creating torch.egg-info 2025-06-01T21:22:32.8552411Z writing torch.egg-info\PKG-INFO 2025-06-01T21:22:32.8575759Z writing dependency_links to torch.egg-info\dependency_links.txt 2025-06-01T21:22:32.8580041Z writing entry points to torch.egg-info\entry_points.txt 2025-06-01T21:22:32.8593895Z writing requirements to torch.egg-info\requires.txt 2025-06-01T21:22:32.8597694Z writing top-level names to torch.egg-info\top_level.txt 2025-06-01T21:22:32.8600792Z writing manifest file 'torch.egg-info\SOURCES.txt' 2025-06-01T21:22:34.0165416Z reading manifest file 'torch.egg-info\SOURCES.txt' 2025-06-01T21:22:34.0171179Z reading manifest template 'MANIFEST.in' 2025-06-01T21:22:36.8769080Z warning: no files found matching '*.*' under directory 'ios' 2025-06-01T21:23:20.2388897Z warning: no files found matching '*.*' under directory 'modules' 2025-06-01T21:23:20.4973526Z warning: no previously-included files matching '*.o' found anywhere in distribution 2025-06-01T21:23:20.6976584Z warning: no previously-included files matching '*.so' found anywhere in distribution 2025-06-01T21:23:20.8983263Z warning: no previously-included files matching '*.dylib' found anywhere in distribution 2025-06-01T21:23:21.0997293Z warning: no previously-included files matching '*.a' found anywhere in distribution 2025-06-01T21:23:21.6590698Z warning: no previously-included files matching '*.swp' found anywhere in distribution 2025-06-01T21:23:21.6591524Z adding license file 'LICENSE' 2025-06-01T21:23:21.6591825Z adding license file 'NOTICE' 2025-06-01T21:23:31.8285116Z writing manifest file 'torch.egg-info\SOURCES.txt' 2025-06-01T21:23:31.9089214Z Copying torch.egg-info to build\bdist.win-amd64\wheel\.\torch-2.8.0a0+gitf7c09f8-py3.9.egg-info 2025-06-01T21:23:31.9223859Z running install_scripts 2025-06-01T21:23:31.9242355Z C:\Jenkins\Miniconda3\lib\site-packages\wheel\bdist_wheel.py:108: RuntimeWarning: Config variable 'Py_DEBUG' is unset, Python ABI tag may be incorrect 2025-06-01T21:23:31.9243172Z if get_flag("Py_DEBUG", hasattr(sys, "gettotalrefcount"), warn=(impl == "cp")): 2025-06-01T21:23:32.0097725Z creating build\bdist.win-amd64\wheel\torch-2.8.0a0+gitf7c09f8.dist-info\WHEEL 2025-06-01T21:23:32.0113694Z creating 'dist\torch-2.8.0a0+gitf7c09f8-cp39-cp39-win_amd64.whl' and adding 'build\bdist.win-amd64\wheel' to it 2025-06-01T21:23:32.0345718Z adding 'functorch/_C.cp39-win_amd64.pyd' 2025-06-01T21:23:32.0366487Z adding 'functorch/__init__.py' 2025-06-01T21:23:32.0370460Z adding 'functorch/_src/__init__.py' 2025-06-01T21:23:32.0374165Z adding 'functorch/_src/aot_autograd/__init__.py' 2025-06-01T21:23:32.0378034Z adding 'functorch/_src/eager_transforms/__init__.py' 2025-06-01T21:23:32.0381804Z adding 'functorch/_src/make_functional/__init__.py' 2025-06-01T21:23:32.0385695Z adding 'functorch/_src/vmap/__init__.py' 2025-06-01T21:23:32.0389452Z adding 'functorch/compile/__init__.py' 2025-06-01T21:23:32.0394628Z adding 'functorch/dim/__init__.py' 2025-06-01T21:23:32.0397905Z adding 'functorch/dim/batch_tensor.py' 2025-06-01T21:23:32.0401332Z adding 'functorch/dim/delayed_mul_tensor.py' 2025-06-01T21:23:32.0405268Z adding 'functorch/dim/dim.py' 2025-06-01T21:23:32.0408890Z adding 'functorch/dim/magic_trace.py' 2025-06-01T21:23:32.0413064Z adding 'functorch/dim/op_properties.py' 2025-06-01T21:23:32.0422373Z adding 'functorch/dim/reference.py' 2025-06-01T21:23:32.0425945Z adding 'functorch/dim/tree_map.py' 2025-06-01T21:23:32.0429297Z adding 'functorch/dim/wrap_type.py' 2025-06-01T21:23:32.0432961Z adding 'functorch/einops/__init__.py' 2025-06-01T21:23:32.0438738Z adding 'functorch/einops/_parsing.py' 2025-06-01T21:23:32.0443915Z adding 'functorch/einops/rearrange.py' 2025-06-01T21:23:32.0447830Z adding 'functorch/experimental/__init__.py' 2025-06-01T21:23:32.0450795Z adding 'functorch/experimental/control_flow.py' 2025-06-01T21:23:32.0454012Z adding 'functorch/experimental/ops.py' 2025-06-01T21:23:32.0462060Z adding 'torch/_C.cp39-win_amd64.pyd' 2025-06-01T21:23:32.0465520Z adding 'torch/_VF.py' 2025-06-01T21:23:32.0687931Z adding 'torch/_VF.pyi' 2025-06-01T21:23:32.0717991Z adding 'torch/__config__.py' 2025-06-01T21:23:32.0721544Z adding 'torch/__future__.py' 2025-06-01T21:23:32.0759320Z adding 'torch/__init__.py' 2025-06-01T21:23:32.0769922Z adding 'torch/_appdirs.py' 2025-06-01T21:23:32.0773969Z adding 'torch/_classes.py' 2025-06-01T21:23:32.0777416Z adding 'torch/_compile.py' 2025-06-01T21:23:32.0783296Z adding 'torch/_custom_ops.py' 2025-06-01T21:23:32.0787462Z adding 'torch/_deploy.py' 2025-06-01T21:23:32.0790418Z adding 'torch/_environment.py' 2025-06-01T21:23:32.0805251Z adding 'torch/_guards.py' 2025-06-01T21:23:32.0829094Z adding 'torch/_jit_internal.py' 2025-06-01T21:23:32.0835109Z adding 'torch/_linalg_utils.py' 2025-06-01T21:23:32.0851462Z adding 'torch/_lobpcg.py' 2025-06-01T21:23:32.0857922Z adding 'torch/_lowrank.py' 2025-06-01T21:23:32.0933612Z adding 'torch/_meta_registrations.py' 2025-06-01T21:23:32.0943172Z adding 'torch/_namedtensor_internals.py' 2025-06-01T21:23:32.0964810Z adding 'torch/_ops.py' 2025-06-01T21:23:32.0970782Z adding 'torch/_python_dispatcher.py' 2025-06-01T21:23:32.0974280Z adding 'torch/_size_docs.py' 2025-06-01T21:23:32.0978301Z adding 'torch/_sources.py' 2025-06-01T21:23:32.0981763Z adding 'torch/_storage_docs.py' 2025-06-01T21:23:32.0984793Z adding 'torch/_streambase.py' 2025-06-01T21:23:32.1008936Z adding 'torch/_tensor.py' 2025-06-01T21:23:32.1055120Z adding 'torch/_tensor_docs.py' 2025-06-01T21:23:32.1068407Z adding 'torch/_tensor_str.py' 2025-06-01T21:23:32.1072025Z adding 'torch/_thread_safe_fork.py' 2025-06-01T21:23:32.1207522Z adding 'torch/_torch_docs.py' 2025-06-01T21:23:32.1232675Z adding 'torch/_utils.py' 2025-06-01T21:23:32.1239012Z adding 'torch/_utils_internal.py' 2025-06-01T21:23:32.1244572Z adding 'torch/_vmap_internals.py' 2025-06-01T21:23:32.1252826Z adding 'torch/_weights_only_unpickler.py' 2025-06-01T21:23:32.1284744Z adding 'torch/functional.py' 2025-06-01T21:23:32.1299654Z adding 'torch/hub.py' 2025-06-01T21:23:32.1322347Z adding 'torch/library.py' 2025-06-01T21:23:32.1352715Z adding 'torch/overrides.py' 2025-06-01T21:23:32.1358417Z adding 'torch/py.typed' 2025-06-01T21:23:32.1363224Z adding 'torch/quasirandom.py' 2025-06-01T21:23:32.1368124Z adding 'torch/random.py' 2025-06-01T21:23:32.1371628Z adding 'torch/return_types.py' 2025-06-01T21:23:32.1376144Z adding 'torch/return_types.pyi' 2025-06-01T21:23:32.1405870Z adding 'torch/serialization.py' 2025-06-01T21:23:32.1422888Z adding 'torch/storage.py' 2025-06-01T21:23:32.1427811Z adding 'torch/torch_version.py' 2025-06-01T21:23:32.1431585Z adding 'torch/types.py' 2025-06-01T21:23:32.1434579Z adding 'torch/version.py' 2025-06-01T21:23:32.1657860Z adding 'torch/_C/_VariableFunctions.pyi' 2025-06-01T21:23:32.1775283Z adding 'torch/_C/__init__.pyi' 2025-06-01T21:23:32.1787527Z adding 'torch/_C/_aoti.pyi' 2025-06-01T21:23:32.1791593Z adding 'torch/_C/_autograd.pyi' 2025-06-01T21:23:32.1794664Z adding 'torch/_C/_cpu.pyi' 2025-06-01T21:23:32.1797692Z adding 'torch/_C/_cudnn.pyi' 2025-06-01T21:23:32.1800493Z adding 'torch/_C/_cusparselt.pyi' 2025-06-01T21:23:32.1803631Z adding 'torch/_C/_distributed_autograd.pyi' 2025-06-01T21:23:32.1811189Z adding 'torch/_C/_distributed_c10d.pyi' 2025-06-01T21:23:32.1816020Z adding 'torch/_C/_distributed_rpc.pyi' 2025-06-01T21:23:32.1819463Z adding 'torch/_C/_distributed_rpc_testing.pyi' 2025-06-01T21:23:32.1822703Z adding 'torch/_C/_functions.pyi' 2025-06-01T21:23:32.1826370Z adding 'torch/_C/_functorch.pyi' 2025-06-01T21:23:32.1829222Z adding 'torch/_C/_instruction_counter.pyi' 2025-06-01T21:23:32.1832456Z adding 'torch/_C/_itt.pyi' 2025-06-01T21:23:32.1836006Z adding 'torch/_C/_lazy.pyi' 2025-06-01T21:23:32.1839667Z adding 'torch/_C/_lazy_ts_backend.pyi' 2025-06-01T21:23:32.1842881Z adding 'torch/_C/_monitor.pyi' 2025-06-01T21:23:32.1846498Z adding 'torch/_C/_nn.pyi' 2025-06-01T21:23:32.1849811Z adding 'torch/_C/_nvtx.pyi' 2025-06-01T21:23:32.1852737Z adding 'torch/_C/_onnx.pyi' 2025-06-01T21:23:32.1857054Z adding 'torch/_C/_profiler.pyi' 2025-06-01T21:23:32.1860274Z adding 'torch/_C/_verbose.pyi' 2025-06-01T21:23:32.1864006Z adding 'torch/_C/_dynamo/__init__.pyi' 2025-06-01T21:23:32.1867234Z adding 'torch/_C/_dynamo/compiled_autograd.pyi' 2025-06-01T21:23:32.1870503Z adding 'torch/_C/_dynamo/eval_frame.pyi' 2025-06-01T21:23:32.1874228Z adding 'torch/_C/_dynamo/guards.pyi' 2025-06-01T21:23:32.1878270Z adding 'torch/_C/_export/__init__.pyi' 2025-06-01T21:23:32.1881326Z adding 'torch/_C/_export/pt2_archive_constants.pyi' 2025-06-01T21:23:32.1884951Z adding 'torch/_C_flatbuffer/__init__.pyi' 2025-06-01T21:23:32.1888898Z adding 'torch/_awaits/__init__.py' 2025-06-01T21:23:32.1892742Z adding 'torch/_custom_op/__init__.py' 2025-06-01T21:23:32.1898435Z adding 'torch/_custom_op/autograd.py' 2025-06-01T21:23:32.1908265Z adding 'torch/_custom_op/impl.py' 2025-06-01T21:23:32.1916695Z adding 'torch/_decomp/__init__.py' 2025-06-01T21:23:32.1975049Z adding 'torch/_decomp/decompositions.py' 2025-06-01T21:23:32.1984885Z adding 'torch/_decomp/decompositions_for_jvp.py' 2025-06-01T21:23:32.1990333Z adding 'torch/_decomp/decompositions_for_rng.py' 2025-06-01T21:23:32.1994103Z adding 'torch/_dispatch/__init__.py' 2025-06-01T21:23:32.1998510Z adding 'torch/_dispatch/python.py' 2025-06-01T21:23:32.2004349Z adding 'torch/_dynamo/__init__.py' 2025-06-01T21:23:32.2009845Z adding 'torch/_dynamo/_trace_wrapped_higher_order_op.py' 2025-06-01T21:23:32.2014906Z adding 'torch/_dynamo/bytecode_analysis.py' 2025-06-01T21:23:32.2036456Z adding 'torch/_dynamo/bytecode_transformation.py' 2025-06-01T21:23:32.2042730Z adding 'torch/_dynamo/cache_size.py' 2025-06-01T21:23:32.2046790Z adding 'torch/_dynamo/callback.py' 2025-06-01T21:23:32.2050249Z adding 'torch/_dynamo/code_context.py' 2025-06-01T21:23:32.2059825Z adding 'torch/_dynamo/codegen.py' 2025-06-01T21:23:32.2081029Z adding 'torch/_dynamo/compiled_autograd.py' 2025-06-01T21:23:32.2088798Z adding 'torch/_dynamo/comptime.py' 2025-06-01T21:23:32.2102041Z adding 'torch/_dynamo/config.py' 2025-06-01T21:23:32.2122842Z adding 'torch/_dynamo/convert_frame.py' 2025-06-01T21:23:32.2127901Z adding 'torch/_dynamo/create_parameter_op.py' 2025-06-01T21:23:32.2131182Z adding 'torch/_dynamo/current_scope_id.py' 2025-06-01T21:23:32.2143956Z adding 'torch/_dynamo/debug_utils.py' 2025-06-01T21:23:32.2157585Z adding 'torch/_dynamo/decorators.py' 2025-06-01T21:23:32.2164689Z adding 'torch/_dynamo/device_interface.py' 2025-06-01T21:23:32.2168505Z adding 'torch/_dynamo/distributed.py' 2025-06-01T21:23:32.2197619Z adding 'torch/_dynamo/eval_frame.py' 2025-06-01T21:23:32.2208912Z adding 'torch/_dynamo/exc.py' 2025-06-01T21:23:32.2214195Z adding 'torch/_dynamo/external_utils.py' 2025-06-01T21:23:32.2218058Z adding 'torch/_dynamo/funcname_cache.py' 2025-06-01T21:23:32.2221452Z adding 'torch/_dynamo/graph_break_hints.py' 2025-06-01T21:23:32.2229285Z adding 'torch/_dynamo/graph_deduplication.py' 2025-06-01T21:23:32.2237257Z adding 'torch/_dynamo/graph_region_tracker.py' 2025-06-01T21:23:32.2241267Z adding 'torch/_dynamo/graph_utils.py' 2025-06-01T21:23:32.2290371Z adding 'torch/_dynamo/guards.py' 2025-06-01T21:23:32.2296945Z adding 'torch/_dynamo/hooks.py' 2025-06-01T21:23:32.2300596Z adding 'torch/_dynamo/logging.py' 2025-06-01T21:23:32.2305373Z adding 'torch/_dynamo/metrics_context.py' 2025-06-01T21:23:32.2309810Z adding 'torch/_dynamo/mutation_guard.py' 2025-06-01T21:23:32.2361523Z adding 'torch/_dynamo/output_graph.py' 2025-06-01T21:23:32.2376757Z adding 'torch/_dynamo/pgo.py' 2025-06-01T21:23:32.2381829Z adding 'torch/_dynamo/profiler.py' 2025-06-01T21:23:32.2385873Z adding 'torch/_dynamo/replay_record.py' 2025-06-01T21:23:32.2394447Z adding 'torch/_dynamo/resume_execution.py' 2025-06-01T21:23:32.2410305Z adding 'torch/_dynamo/side_effects.py' 2025-06-01T21:23:32.2419953Z adding 'torch/_dynamo/source.py' 2025-06-01T21:23:32.2476177Z adding 'torch/_dynamo/symbolic_convert.py' 2025-06-01T21:23:32.2483347Z adding 'torch/_dynamo/tensor_version_op.py' 2025-06-01T21:23:32.2487901Z adding 'torch/_dynamo/test_case.py' 2025-06-01T21:23:32.2491219Z adding 'torch/_dynamo/test_dont_skip_tracing_functions.py' 2025-06-01T21:23:32.2497040Z adding 'torch/_dynamo/test_minifier_common.py' 2025-06-01T21:23:32.2504676Z adding 'torch/_dynamo/testing.py' 2025-06-01T21:23:32.2541732Z adding 'torch/_dynamo/trace_rules.py' 2025-06-01T21:23:32.2549180Z adding 'torch/_dynamo/types.py' 2025-06-01T21:23:32.2608444Z adding 'torch/_dynamo/utils.py' 2025-06-01T21:23:32.2615950Z adding 'torch/_dynamo/backends/__init__.py' 2025-06-01T21:23:32.2620172Z adding 'torch/_dynamo/backends/common.py' 2025-06-01T21:23:32.2625678Z adding 'torch/_dynamo/backends/cudagraphs.py' 2025-06-01T21:23:32.2632737Z adding 'torch/_dynamo/backends/debugging.py' 2025-06-01T21:23:32.2643840Z adding 'torch/_dynamo/backends/distributed.py' 2025-06-01T21:23:32.2647902Z adding 'torch/_dynamo/backends/inductor.py' 2025-06-01T21:23:32.2651211Z adding 'torch/_dynamo/backends/onnxrt.py' 2025-06-01T21:23:32.2655645Z adding 'torch/_dynamo/backends/registry.py' 2025-06-01T21:23:32.2658749Z adding 'torch/_dynamo/backends/tensorrt.py' 2025-06-01T21:23:32.2662055Z adding 'torch/_dynamo/backends/torchxla.py' 2025-06-01T21:23:32.2667046Z adding 'torch/_dynamo/backends/tvm.py' 2025-06-01T21:23:32.2673564Z adding 'torch/_dynamo/polyfills/__init__.py' 2025-06-01T21:23:32.2677174Z adding 'torch/_dynamo/polyfills/builtins.py' 2025-06-01T21:23:32.2680651Z adding 'torch/_dynamo/polyfills/functools.py' 2025-06-01T21:23:32.2683917Z adding 'torch/_dynamo/polyfills/fx.py' 2025-06-01T21:23:32.2688193Z adding 'torch/_dynamo/polyfills/itertools.py' 2025-06-01T21:23:32.2691738Z adding 'torch/_dynamo/polyfills/loader.py' 2025-06-01T21:23:32.2695352Z adding 'torch/_dynamo/polyfills/operator.py' 2025-06-01T21:23:32.2698545Z adding 'torch/_dynamo/polyfills/os.py' 2025-06-01T21:23:32.2704883Z adding 'torch/_dynamo/polyfills/pytree.py' 2025-06-01T21:23:32.2708421Z adding 'torch/_dynamo/polyfills/sys.py' 2025-06-01T21:23:32.2711828Z adding 'torch/_dynamo/polyfills/tensor.py' 2025-06-01T21:23:32.2715431Z adding 'torch/_dynamo/repro/__init__.py' 2025-06-01T21:23:32.2728740Z adding 'torch/_dynamo/repro/after_aot.py' 2025-06-01T21:23:32.2737641Z adding 'torch/_dynamo/repro/after_dynamo.py' 2025-06-01T21:23:32.2747011Z adding 'torch/_dynamo/repro/aoti.py' 2025-06-01T21:23:32.2752823Z adding 'torch/_dynamo/variables/__init__.py' 2025-06-01T21:23:32.2762439Z adding 'torch/_dynamo/variables/base.py' 2025-06-01T21:23:32.2813635Z adding 'torch/_dynamo/variables/builder.py' 2025-06-01T21:23:32.2846507Z adding 'torch/_dynamo/variables/builtin.py' 2025-06-01T21:23:32.2854532Z adding 'torch/_dynamo/variables/constant.py' 2025-06-01T21:23:32.2869148Z adding 'torch/_dynamo/variables/ctx_manager.py' 2025-06-01T21:23:32.2883373Z adding 'torch/_dynamo/variables/dicts.py' 2025-06-01T21:23:32.2890821Z adding 'torch/_dynamo/variables/distributed.py' 2025-06-01T21:23:32.2919827Z adding 'torch/_dynamo/variables/functions.py' 2025-06-01T21:23:32.2959708Z adding 'torch/_dynamo/variables/higher_order_ops.py' 2025-06-01T21:23:32.2970329Z adding 'torch/_dynamo/variables/iter.py' 2025-06-01T21:23:32.2975418Z adding 'torch/_dynamo/variables/lazy.py' 2025-06-01T21:23:32.2987680Z adding 'torch/_dynamo/variables/lists.py' 2025-06-01T21:23:32.3011970Z adding 'torch/_dynamo/variables/misc.py' 2025-06-01T21:23:32.3030455Z adding 'torch/_dynamo/variables/nn_module.py' 2025-06-01T21:23:32.3038651Z adding 'torch/_dynamo/variables/optimizer.py' 2025-06-01T21:23:32.3042900Z adding 'torch/_dynamo/variables/script_object.py' 2025-06-01T21:23:32.3046510Z adding 'torch/_dynamo/variables/sdpa.py' 2025-06-01T21:23:32.3067032Z adding 'torch/_dynamo/variables/tensor.py' 2025-06-01T21:23:32.3090517Z adding 'torch/_dynamo/variables/torch.py' 2025-06-01T21:23:32.3102688Z adding 'torch/_dynamo/variables/torch_function.py' 2025-06-01T21:23:32.3126720Z adding 'torch/_dynamo/variables/user_defined.py' 2025-06-01T21:23:32.3133694Z adding 'torch/_export/__init__.py' 2025-06-01T21:23:32.3156636Z adding 'torch/_export/converter.py' 2025-06-01T21:23:32.3161446Z adding 'torch/_export/error.py' 2025-06-01T21:23:32.3175998Z adding 'torch/_export/non_strict_utils.py' 2025-06-01T21:23:32.3183497Z adding 'torch/_export/pass_base.py' 2025-06-01T21:23:32.3188241Z adding 'torch/_export/tools.py' 2025-06-01T21:23:32.3209538Z adding 'torch/_export/utils.py' 2025-06-01T21:23:32.3217930Z adding 'torch/_export/verifier.py' 2025-06-01T21:23:32.3223327Z adding 'torch/_export/wrappers.py' 2025-06-01T21:23:32.3227397Z adding 'torch/_export/db/__init__.py' 2025-06-01T21:23:32.3231545Z adding 'torch/_export/db/case.py' 2025-06-01T21:23:32.3234662Z adding 'torch/_export/db/gen_example.py' 2025-06-01T21:23:32.3237948Z adding 'torch/_export/db/logging.py' 2025-06-01T21:23:32.3242992Z adding 'torch/_export/db/examples/__init__.py' 2025-06-01T21:23:32.3246456Z adding 'torch/_export/db/examples/assume_constant_result.py' 2025-06-01T21:23:32.3249222Z adding 'torch/_export/db/examples/autograd_function.py' 2025-06-01T21:23:32.3252267Z adding 'torch/_export/db/examples/class_method.py' 2025-06-01T21:23:32.3255646Z adding 'torch/_export/db/examples/cond_branch_class_method.py' 2025-06-01T21:23:32.3258889Z adding 'torch/_export/db/examples/cond_branch_nested_function.py' 2025-06-01T21:23:32.3293306Z adding 'torch/_export/db/examples/cond_branch_nonlocal_variables.py' 2025-06-01T21:23:32.3296873Z adding 'torch/_export/db/examples/cond_closed_over_variable.py' 2025-06-01T21:23:32.3300081Z adding 'torch/_export/db/examples/cond_operands.py' 2025-06-01T21:23:32.3303231Z adding 'torch/_export/db/examples/cond_predicate.py' 2025-06-01T21:23:32.3306530Z adding 'torch/_export/db/examples/constrain_as_size_example.py' 2025-06-01T21:23:32.3309603Z adding 'torch/_export/db/examples/constrain_as_value_example.py' 2025-06-01T21:23:32.3312568Z adding 'torch/_export/db/examples/decorator.py' 2025-06-01T21:23:32.3315553Z adding 'torch/_export/db/examples/dictionary.py' 2025-06-01T21:23:32.3318563Z adding 'torch/_export/db/examples/dynamic_shape_assert.py' 2025-06-01T21:23:32.3321550Z adding 'torch/_export/db/examples/dynamic_shape_constructor.py' 2025-06-01T21:23:32.3324509Z adding 'torch/_export/db/examples/dynamic_shape_if_guard.py' 2025-06-01T21:23:32.3327456Z adding 'torch/_export/db/examples/dynamic_shape_map.py' 2025-06-01T21:23:32.3330482Z adding 'torch/_export/db/examples/dynamic_shape_round.py' 2025-06-01T21:23:32.3333460Z adding 'torch/_export/db/examples/dynamic_shape_slicing.py' 2025-06-01T21:23:32.3336457Z adding 'torch/_export/db/examples/dynamic_shape_view.py' 2025-06-01T21:23:32.3339500Z adding 'torch/_export/db/examples/fn_with_kwargs.py' 2025-06-01T21:23:32.3342497Z adding 'torch/_export/db/examples/list_contains.py' 2025-06-01T21:23:32.3346524Z adding 'torch/_export/db/examples/list_unpack.py' 2025-06-01T21:23:32.3348810Z adding 'torch/_export/db/examples/model_attr_mutation.py' 2025-06-01T21:23:32.3351750Z adding 'torch/_export/db/examples/nested_function.py' 2025-06-01T21:23:32.3355055Z adding 'torch/_export/db/examples/null_context_manager.py' 2025-06-01T21:23:32.3358286Z adding 'torch/_export/db/examples/optional_input.py' 2025-06-01T21:23:32.3361281Z adding 'torch/_export/db/examples/pytree_flatten.py' 2025-06-01T21:23:32.3364787Z adding 'torch/_export/db/examples/scalar_output.py' 2025-06-01T21:23:32.3367912Z adding 'torch/_export/db/examples/specialized_attribute.py' 2025-06-01T21:23:32.3371061Z adding 'torch/_export/db/examples/static_for_loop.py' 2025-06-01T21:23:32.3374169Z adding 'torch/_export/db/examples/static_if.py' 2025-06-01T21:23:32.3377284Z adding 'torch/_export/db/examples/tensor_setattr.py' 2025-06-01T21:23:32.3380881Z adding 'torch/_export/db/examples/type_reflection_method.py' 2025-06-01T21:23:32.3384260Z adding 'torch/_export/db/examples/unsupported_operator.py' 2025-06-01T21:23:32.3387796Z adding 'torch/_export/db/examples/user_input_mutation.py' 2025-06-01T21:23:32.3392028Z adding 'torch/_export/pass_infra/__init__.py' 2025-06-01T21:23:32.3395673Z adding 'torch/_export/pass_infra/node_metadata.py' 2025-06-01T21:23:32.3399328Z adding 'torch/_export/pass_infra/proxy_value.py' 2025-06-01T21:23:32.3403645Z adding 'torch/_export/passes/__init__.py' 2025-06-01T21:23:32.3407747Z adding 'torch/_export/passes/_node_metadata_hook.py' 2025-06-01T21:23:32.3413239Z adding 'torch/_export/passes/add_runtime_assertions_for_constraints_pass.py' 2025-06-01T21:23:32.3417920Z adding 'torch/_export/passes/collect_tracepoints_pass.py' 2025-06-01T21:23:32.3423968Z adding 'torch/_export/passes/constant_folding.py' 2025-06-01T21:23:32.3428294Z adding 'torch/_export/passes/functionalize_side_effectful_ops_pass.py' 2025-06-01T21:23:32.3431932Z adding 'torch/_export/passes/insert_custom_op_guards.py' 2025-06-01T21:23:32.3439014Z adding 'torch/_export/passes/lift_constants_pass.py' 2025-06-01T21:23:32.3442864Z adding 'torch/_export/passes/remove_runtime_assertions.py' 2025-06-01T21:23:32.3447620Z adding 'torch/_export/passes/replace_autocast_with_hop_pass.py' 2025-06-01T21:23:32.3456692Z adding 'torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py' 2025-06-01T21:23:32.3461297Z adding 'torch/_export/passes/replace_set_grad_with_hop_pass.py' 2025-06-01T21:23:32.3465073Z adding 'torch/_export/passes/replace_view_ops_with_view_copy_ops_pass.py' 2025-06-01T21:23:32.3469723Z adding 'torch/_export/passes/replace_with_hop_pass_util.py' 2025-06-01T21:23:32.3473556Z adding 'torch/_export/serde/__init__.py' 2025-06-01T21:23:32.3476474Z adding 'torch/_export/serde/aoti_schema.py' 2025-06-01T21:23:32.3481848Z adding 'torch/_export/serde/dynamic_shapes.py' 2025-06-01T21:23:32.3486786Z adding 'torch/_export/serde/export_schema.thrift' 2025-06-01T21:23:32.3493464Z adding 'torch/_export/serde/schema.py' 2025-06-01T21:23:32.3498714Z adding 'torch/_export/serde/schema.yaml' 2025-06-01T21:23:32.3507535Z adding 'torch/_export/serde/schema_check.py' 2025-06-01T21:23:32.3553227Z adding 'torch/_export/serde/serialize.py' 2025-06-01T21:23:32.3559882Z adding 'torch/_export/serde/union.py' 2025-06-01T21:23:32.3563941Z adding 'torch/_functorch/__init__.py' 2025-06-01T21:23:32.3591381Z adding 'torch/_functorch/aot_autograd.py' 2025-06-01T21:23:32.3600391Z adding 'torch/_functorch/apis.py' 2025-06-01T21:23:32.3611692Z adding 'torch/_functorch/autograd_function.py' 2025-06-01T21:23:32.3615586Z adding 'torch/_functorch/batch_norm_replacement.py' 2025-06-01T21:23:32.3619987Z adding 'torch/_functorch/benchmark_utils.py' 2025-06-01T21:23:32.3624886Z adding 'torch/_functorch/compile_utils.py' 2025-06-01T21:23:32.3631372Z adding 'torch/_functorch/compilers.py' 2025-06-01T21:23:32.3639053Z adding 'torch/_functorch/config.py' 2025-06-01T21:23:32.3643360Z adding 'torch/_functorch/deprecated.py' 2025-06-01T21:23:32.3668357Z adding 'torch/_functorch/eager_transforms.py' 2025-06-01T21:23:32.3676435Z adding 'torch/_functorch/functional_call.py' 2025-06-01T21:23:32.3683880Z adding 'torch/_functorch/fx_minifier.py' 2025-06-01T21:23:32.3692735Z adding 'torch/_functorch/make_functional.py' 2025-06-01T21:23:32.3730758Z adding 'torch/_functorch/partitioners.py' 2025-06-01T21:23:32.3738633Z adding 'torch/_functorch/pyfunctorch.py' 2025-06-01T21:23:32.3741934Z adding 'torch/_functorch/python_key.py' 2025-06-01T21:23:32.3745215Z adding 'torch/_functorch/pytree_hacks.py' 2025-06-01T21:23:32.3753522Z adding 'torch/_functorch/top_operators_github_usage.py' 2025-06-01T21:23:32.3757328Z adding 'torch/_functorch/utils.py' 2025-06-01T21:23:32.3765737Z adding 'torch/_functorch/vmap.py' 2025-06-01T21:23:32.3770080Z adding 'torch/_functorch/_activation_checkpointing/__init__.py' 2025-06-01T21:23:32.3774029Z adding 'torch/_functorch/_activation_checkpointing/ac_logging_utils.py' 2025-06-01T21:23:32.3779754Z adding 'torch/_functorch/_activation_checkpointing/graph_info_provider.py' 2025-06-01T21:23:32.3785238Z adding 'torch/_functorch/_activation_checkpointing/knapsack.py' 2025-06-01T21:23:32.3789967Z adding 'torch/_functorch/_activation_checkpointing/knapsack_evaluator.py' 2025-06-01T21:23:32.3794136Z adding 'torch/_functorch/_aot_autograd/__init__.py' 2025-06-01T21:23:32.3813412Z adding 'torch/_functorch/_aot_autograd/autograd_cache.py' 2025-06-01T21:23:32.3831101Z adding 'torch/_functorch/_aot_autograd/collect_metadata_analysis.py' 2025-06-01T21:23:32.3837931Z adding 'torch/_functorch/_aot_autograd/dispatch_and_compile_graph.py' 2025-06-01T21:23:32.3847706Z adding 'torch/_functorch/_aot_autograd/functional_utils.py' 2025-06-01T21:23:32.3855705Z adding 'torch/_functorch/_aot_autograd/input_output_analysis.py' 2025-06-01T21:23:32.3887285Z adding 'torch/_functorch/_aot_autograd/jit_compile_runtime_wrappers.py' 2025-06-01T21:23:32.3893266Z adding 'torch/_functorch/_aot_autograd/logging_utils.py' 2025-06-01T21:23:32.3932205Z adding 'torch/_functorch/_aot_autograd/runtime_wrappers.py' 2025-06-01T21:23:32.3951441Z adding 'torch/_functorch/_aot_autograd/schemas.py' 2025-06-01T21:23:32.3956357Z adding 'torch/_functorch/_aot_autograd/subclass_parametrization.py' 2025-06-01T21:23:32.3964118Z adding 'torch/_functorch/_aot_autograd/subclass_utils.py' 2025-06-01T21:23:32.3981283Z adding 'torch/_functorch/_aot_autograd/traced_function_transforms.py' 2025-06-01T21:23:32.3990523Z adding 'torch/_functorch/_aot_autograd/utils.py' 2025-06-01T21:23:32.3995499Z adding 'torch/_higher_order_ops/__init__.py' 2025-06-01T21:23:32.3999253Z adding 'torch/_higher_order_ops/_invoke_quant.py' 2025-06-01T21:23:32.4003372Z adding 'torch/_higher_order_ops/aoti_call_delegate.py' 2025-06-01T21:23:32.4010953Z adding 'torch/_higher_order_ops/associative_scan.py' 2025-06-01T21:23:32.4024279Z adding 'torch/_higher_order_ops/auto_functionalize.py' 2025-06-01T21:23:32.4030907Z adding 'torch/_higher_order_ops/base_hop.py' 2025-06-01T21:23:32.4042414Z adding 'torch/_higher_order_ops/cond.py' 2025-06-01T21:23:32.4056650Z adding 'torch/_higher_order_ops/effects.py' 2025-06-01T21:23:32.4062885Z adding 'torch/_higher_order_ops/executorch_call_delegate.py' 2025-06-01T21:23:32.4068740Z adding 'torch/_higher_order_ops/flat_apply.py' 2025-06-01T21:23:32.4118720Z adding 'torch/_higher_order_ops/flex_attention.py' 2025-06-01T21:23:32.4124393Z adding 'torch/_higher_order_ops/foreach_map.py' 2025-06-01T21:23:32.4129989Z adding 'torch/_higher_order_ops/hints_wrap.py' 2025-06-01T21:23:32.4140493Z adding 'torch/_higher_order_ops/invoke_subgraph.py' 2025-06-01T21:23:32.4148480Z adding 'torch/_higher_order_ops/map.py' 2025-06-01T21:23:32.4153229Z adding 'torch/_higher_order_ops/out_dtype.py' 2025-06-01T21:23:32.4156919Z adding 'torch/_higher_order_ops/run_const_graph.py' 2025-06-01T21:23:32.4172937Z adding 'torch/_higher_order_ops/scan.py' 2025-06-01T21:23:32.4179008Z adding 'torch/_higher_order_ops/schema.py' 2025-06-01T21:23:32.4184725Z adding 'torch/_higher_order_ops/strict_mode.py' 2025-06-01T21:23:32.4191120Z adding 'torch/_higher_order_ops/torchbind.py' 2025-06-01T21:23:32.4216113Z adding 'torch/_higher_order_ops/triton_kernel_wrap.py' 2025-06-01T21:23:32.4233746Z adding 'torch/_higher_order_ops/utils.py' 2025-06-01T21:23:32.4242205Z adding 'torch/_higher_order_ops/while_loop.py' 2025-06-01T21:23:32.4249766Z adding 'torch/_higher_order_ops/wrap.py' 2025-06-01T21:23:32.4255419Z adding 'torch/_inductor/__autotune_main__.py' 2025-06-01T21:23:32.4261790Z adding 'torch/_inductor/__init__.py' 2025-06-01T21:23:32.4266651Z adding 'torch/_inductor/analyze_preserves_zero_mask.py' 2025-06-01T21:23:32.4272006Z adding 'torch/_inductor/aoti_eager.py' 2025-06-01T21:23:32.4280373Z adding 'torch/_inductor/async_compile.py' 2025-06-01T21:23:32.4291055Z adding 'torch/_inductor/autotune_process.py' 2025-06-01T21:23:32.4297047Z adding 'torch/_inductor/bounds.py' 2025-06-01T21:23:32.4303726Z adding 'torch/_inductor/choices.py' 2025-06-01T21:23:32.4411813Z adding 'torch/_inductor/codecache.py' 2025-06-01T21:23:32.4423765Z adding 'torch/_inductor/comm_analysis.py' 2025-06-01T21:23:32.4432108Z adding 'torch/_inductor/comm_lowering.py' 2025-06-01T21:23:32.4448632Z adding 'torch/_inductor/comms.py' 2025-06-01T21:23:32.4487953Z adding 'torch/_inductor/compile_fx.py' 2025-06-01T21:23:32.4494849Z adding 'torch/_inductor/compile_fx_async.py' 2025-06-01T21:23:32.4504997Z adding 'torch/_inductor/compile_fx_ext.py' 2025-06-01T21:23:32.4509610Z adding 'torch/_inductor/compile_fx_subproc.py' 2025-06-01T21:23:32.4517836Z adding 'torch/_inductor/compiler_bisector.py' 2025-06-01T21:23:32.4547878Z adding 'torch/_inductor/config.py' 2025-06-01T21:23:32.4555977Z adding 'torch/_inductor/constant_folding.py' 2025-06-01T21:23:32.4578451Z adding 'torch/_inductor/cpp_builder.py' 2025-06-01T21:23:32.4586923Z adding 'torch/_inductor/cpu_vec_isa.py' 2025-06-01T21:23:32.4626497Z adding 'torch/_inductor/cudagraph_trees.py' 2025-06-01T21:23:32.4635249Z adding 'torch/_inductor/cudagraph_utils.py' 2025-06-01T21:23:32.4639397Z adding 'torch/_inductor/custom_graph_pass.py' 2025-06-01T21:23:32.4651467Z adding 'torch/_inductor/debug.py' 2025-06-01T21:23:32.4667772Z adding 'torch/_inductor/decomposition.py' 2025-06-01T21:23:32.4683704Z adding 'torch/_inductor/dependencies.py' 2025-06-01T21:23:32.4691128Z adding 'torch/_inductor/dtype_propagation.py' 2025-06-01T21:23:32.4696884Z adding 'torch/_inductor/exc.py' 2025-06-01T21:23:32.4701749Z adding 'torch/_inductor/extern_node_serializer.py' 2025-06-01T21:23:32.4708822Z adding 'torch/_inductor/freezing.py' 2025-06-01T21:23:32.4713906Z adding 'torch/_inductor/freezing_utils.py' 2025-06-01T21:23:32.4730528Z adding 'torch/_inductor/fuzzer.py' 2025-06-01T21:23:32.4738320Z adding 'torch/_inductor/fx_utils.py' 2025-06-01T21:23:32.4783473Z adding 'torch/_inductor/graph.py' 2025-06-01T21:23:32.4790395Z adding 'torch/_inductor/hooks.py' 2025-06-01T21:23:32.4799117Z adding 'torch/_inductor/index_propagation.py' 2025-06-01T21:23:32.4805596Z adding 'torch/_inductor/inductor_prims.py' 2025-06-01T21:23:32.4933403Z adding 'torch/_inductor/ir.py' 2025-06-01T21:23:32.4945225Z adding 'torch/_inductor/jagged_lowerings.py' 2025-06-01T21:23:32.4956122Z adding 'torch/_inductor/loop_body.py' 2025-06-01T21:23:32.5040154Z adding 'torch/_inductor/lowering.py' 2025-06-01T21:23:32.5058527Z adding 'torch/_inductor/memory.py' 2025-06-01T21:23:32.5068172Z adding 'torch/_inductor/metrics.py' 2025-06-01T21:23:32.5081337Z adding 'torch/_inductor/mkldnn_ir.py' 2025-06-01T21:23:32.5098010Z adding 'torch/_inductor/mkldnn_lowerings.py' 2025-06-01T21:23:32.5105355Z adding 'torch/_inductor/mock_cache.py' 2025-06-01T21:23:32.5119050Z adding 'torch/_inductor/ops_handler.py' 2025-06-01T21:23:32.5125422Z adding 'torch/_inductor/optimize_indexing.py' 2025-06-01T21:23:32.5139696Z adding 'torch/_inductor/output_code.py' 2025-06-01T21:23:32.5175736Z adding 'torch/_inductor/pattern_matcher.py' 2025-06-01T21:23:32.5183192Z adding 'torch/_inductor/quantized_lowerings.py' 2025-06-01T21:23:32.5192287Z adding 'torch/_inductor/remote_cache.py' 2025-06-01T21:23:32.5273107Z adding 'torch/_inductor/scheduler.py' 2025-06-01T21:23:32.5282789Z adding 'torch/_inductor/script.ld' 2025-06-01T21:23:32.5328038Z adding 'torch/_inductor/select_algorithm.py' 2025-06-01T21:23:32.5349038Z adding 'torch/_inductor/sizevars.py' 2025-06-01T21:23:32.5360789Z adding 'torch/_inductor/standalone_compile.py' 2025-06-01T21:23:32.5367765Z adding 'torch/_inductor/subgraph_lowering.py' 2025-06-01T21:23:32.5379176Z adding 'torch/_inductor/template_heuristics.py' 2025-06-01T21:23:32.5385132Z adding 'torch/_inductor/test_case.py' 2025-06-01T21:23:32.5388521Z adding 'torch/_inductor/test_operators.py' 2025-06-01T21:23:32.5396772Z adding 'torch/_inductor/triton_bundler.py' 2025-06-01T21:23:32.5437034Z adding 'torch/_inductor/utils.py' 2025-06-01T21:23:32.5448050Z adding 'torch/_inductor/virtualized.py' 2025-06-01T21:23:32.5455613Z adding 'torch/_inductor/wrapper_benchmark.py' 2025-06-01T21:23:32.5459892Z adding 'torch/_inductor/autoheuristic/__init__.py' 2025-06-01T21:23:32.5465712Z adding 'torch/_inductor/autoheuristic/autoheuristic.py' 2025-06-01T21:23:32.5472001Z adding 'torch/_inductor/autoheuristic/autoheuristic_utils.py' 2025-06-01T21:23:32.5476475Z adding 'torch/_inductor/autoheuristic/learned_heuristic_controller.py' 2025-06-01T21:23:32.5480143Z adding 'torch/_inductor/autoheuristic/learnedheuristic_interface.py' 2025-06-01T21:23:32.5488487Z adding 'torch/_inductor/autoheuristic/artifacts/_MMRankingA100.py' 2025-06-01T21:23:32.5498158Z adding 'torch/_inductor/autoheuristic/artifacts/_MMRankingH100.py' 2025-06-01T21:23:32.5503173Z adding 'torch/_inductor/autoheuristic/artifacts/_MixedMMA100.py' 2025-06-01T21:23:32.5508897Z adding 'torch/_inductor/autoheuristic/artifacts/_MixedMMH100.py' 2025-06-01T21:23:32.5513317Z adding 'torch/_inductor/autoheuristic/artifacts/_PadMMA100.py' 2025-06-01T21:23:32.5516622Z adding 'torch/_inductor/autoheuristic/artifacts/__init__.py' 2025-06-01T21:23:32.5521015Z adding 'torch/_inductor/codegen/__init__.py' 2025-06-01T21:23:32.5524482Z adding 'torch/_inductor/codegen/aoti_hipify_utils.py' 2025-06-01T21:23:32.5529583Z adding 'torch/_inductor/codegen/block_analysis.py' 2025-06-01T21:23:32.5560784Z adding 'torch/_inductor/codegen/common.py' 2025-06-01T21:23:32.5632570Z adding 'torch/_inductor/codegen/cpp.py' 2025-06-01T21:23:32.5642939Z adding 'torch/_inductor/codegen/cpp_bmm_template.py' 2025-06-01T21:23:32.5657282Z adding 'torch/_inductor/codegen/cpp_flex_attention_template.py' 2025-06-01T21:23:32.5685267Z adding 'torch/_inductor/codegen/cpp_gemm_template.py' 2025-06-01T21:23:32.5697318Z adding 'torch/_inductor/codegen/cpp_grouped_gemm_template.py' 2025-06-01T21:23:32.5724912Z adding 'torch/_inductor/codegen/cpp_micro_gemm.py' 2025-06-01T21:23:32.5732469Z adding 'torch/_inductor/codegen/cpp_template.py' 2025-06-01T21:23:32.5744412Z adding 'torch/_inductor/codegen/cpp_template_kernel.py' 2025-06-01T21:23:32.5758867Z adding 'torch/_inductor/codegen/cpp_utils.py' 2025-06-01T21:23:32.5801396Z adding 'torch/_inductor/codegen/cpp_wrapper_cpu.py' 2025-06-01T21:23:32.5820114Z adding 'torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py' 2025-06-01T21:23:32.5833761Z adding 'torch/_inductor/codegen/cpp_wrapper_gpu.py' 2025-06-01T21:23:32.5838331Z adding 'torch/_inductor/codegen/cpp_wrapper_mps.py' 2025-06-01T21:23:32.5843030Z adding 'torch/_inductor/codegen/cpu_device_op_overrides.py' 2025-06-01T21:23:32.5848437Z adding 'torch/_inductor/codegen/cuda_combined_scheduling.py' 2025-06-01T21:23:32.5855193Z adding 'torch/_inductor/codegen/debug_utils.py' 2025-06-01T21:23:32.5897488Z adding 'torch/_inductor/codegen/halide.py' 2025-06-01T21:23:32.5910252Z adding 'torch/_inductor/codegen/memory_planning.py' 2025-06-01T21:23:32.5924780Z adding 'torch/_inductor/codegen/mps.py' 2025-06-01T21:23:32.5928887Z adding 'torch/_inductor/codegen/mps_device_op_overrides.py' 2025-06-01T21:23:32.5935732Z adding 'torch/_inductor/codegen/multi_kernel.py' 2025-06-01T21:23:32.5967565Z adding 'torch/_inductor/codegen/simd.py' 2025-06-01T21:23:32.5978326Z adding 'torch/_inductor/codegen/simd_kernel_features.py' 2025-06-01T21:23:32.5983599Z adding 'torch/_inductor/codegen/subgraph.py' 2025-06-01T21:23:32.6043056Z adding 'torch/_inductor/codegen/triton.py' 2025-06-01T21:23:32.6060591Z adding 'torch/_inductor/codegen/triton_combo_kernel.py' 2025-06-01T21:23:32.6066381Z adding 'torch/_inductor/codegen/triton_split_scan.py' 2025-06-01T21:23:32.6071344Z adding 'torch/_inductor/codegen/triton_utils.py' 2025-06-01T21:23:32.6118737Z adding 'torch/_inductor/codegen/wrapper.py' 2025-06-01T21:23:32.6130299Z adding 'torch/_inductor/codegen/wrapper_fxir.py' 2025-06-01T21:23:32.6138043Z adding 'torch/_inductor/codegen/aoti_runtime/interface.cpp' 2025-06-01T21:23:32.6142383Z adding 'torch/_inductor/codegen/cuda/__init__.py' 2025-06-01T21:23:32.6148396Z adding 'torch/_inductor/codegen/cuda/cuda_cpp_scheduling.py' 2025-06-01T21:23:32.6152021Z adding 'torch/_inductor/codegen/cuda/cuda_env.py' 2025-06-01T21:23:32.6160958Z adding 'torch/_inductor/codegen/cuda/cuda_kernel.py' 2025-06-01T21:23:32.6167189Z adding 'torch/_inductor/codegen/cuda/cuda_template.py' 2025-06-01T21:23:32.6171082Z adding 'torch/_inductor/codegen/cuda/cutlass_cache.py' 2025-06-01T21:23:32.6176495Z adding 'torch/_inductor/codegen/cuda/cutlass_presets.py' 2025-06-01T21:23:32.6182794Z adding 'torch/_inductor/codegen/cuda/cutlass_python_evt.py' 2025-06-01T21:23:32.6190483Z adding 'torch/_inductor/codegen/cuda/cutlass_utils.py' 2025-06-01T21:23:32.6195640Z adding 'torch/_inductor/codegen/cuda/device_op_overrides.py' 2025-06-01T21:23:32.6219410Z adding 'torch/_inductor/codegen/cuda/gemm_template.py' 2025-06-01T21:23:32.6227544Z adding 'torch/_inductor/codegen/cuda/serialization.py' 2025-06-01T21:23:32.6232103Z adding 'torch/_inductor/codegen/rocm/__init__.py' 2025-06-01T21:23:32.6240386Z adding 'torch/_inductor/codegen/rocm/ck_conv_template.py' 2025-06-01T21:23:32.6244649Z adding 'torch/_inductor/codegen/rocm/ck_template.py' 2025-06-01T21:23:32.6248063Z adding 'torch/_inductor/codegen/rocm/ck_tile_template.py' 2025-06-01T21:23:32.6258304Z adding 'torch/_inductor/codegen/rocm/ck_tile_universal_gemm_template.py' 2025-06-01T21:23:32.6272309Z adding 'torch/_inductor/codegen/rocm/ck_universal_gemm_template.py' 2025-06-01T21:23:32.6277215Z adding 'torch/_inductor/codegen/rocm/compile_command.py' 2025-06-01T21:23:32.6281531Z adding 'torch/_inductor/codegen/rocm/rocm_benchmark_request.py' 2025-06-01T21:23:32.6285782Z adding 'torch/_inductor/codegen/rocm/rocm_cpp_scheduling.py' 2025-06-01T21:23:32.6291459Z adding 'torch/_inductor/codegen/rocm/rocm_kernel.py' 2025-06-01T21:23:32.6296260Z adding 'torch/_inductor/codegen/rocm/rocm_template.py' 2025-06-01T21:23:32.6299755Z adding 'torch/_inductor/codegen/rocm/rocm_template_buffer.py' 2025-06-01T21:23:32.6302875Z adding 'torch/_inductor/codegen/rocm/rocm_utils.py' 2025-06-01T21:23:32.6306726Z adding 'torch/_inductor/codegen/xpu/__init__.py' 2025-06-01T21:23:32.6310094Z adding 'torch/_inductor/codegen/xpu/device_op_overrides.py' 2025-06-01T21:23:32.6315491Z adding 'torch/_inductor/compile_worker/__init__.py' 2025-06-01T21:23:32.6319175Z adding 'torch/_inductor/compile_worker/__main__.py' 2025-06-01T21:23:32.6325445Z adding 'torch/_inductor/compile_worker/subproc_pool.py' 2025-06-01T21:23:32.6329246Z adding 'torch/_inductor/compile_worker/utils.py' 2025-06-01T21:23:32.6333526Z adding 'torch/_inductor/fx_passes/__init__.py' 2025-06-01T21:23:32.6342456Z adding 'torch/_inductor/fx_passes/b2b_gemm.py' 2025-06-01T21:23:32.6350027Z adding 'torch/_inductor/fx_passes/binary_folding.py' 2025-06-01T21:23:32.6359063Z adding 'torch/_inductor/fx_passes/ddp_fusion.py' 2025-06-01T21:23:32.6363716Z adding 'torch/_inductor/fx_passes/decompose_mem_bound_mm.py' 2025-06-01T21:23:32.6367462Z adding 'torch/_inductor/fx_passes/dedupe_symint_uses.py' 2025-06-01T21:23:32.6373109Z adding 'torch/_inductor/fx_passes/efficient_conv_bn_eval.py' 2025-06-01T21:23:32.6378149Z adding 'torch/_inductor/fx_passes/freezing_patterns.py' 2025-06-01T21:23:32.6387350Z adding 'torch/_inductor/fx_passes/fuse_attention.py' 2025-06-01T21:23:32.6403644Z adding 'torch/_inductor/fx_passes/group_batch_fusion.py' 2025-06-01T21:23:32.6420085Z adding 'torch/_inductor/fx_passes/joint_graph.py' 2025-06-01T21:23:32.6476505Z adding 'torch/_inductor/fx_passes/micro_pipeline_tp.py' 2025-06-01T21:23:32.6484940Z adding 'torch/_inductor/fx_passes/misc_patterns.py' 2025-06-01T21:23:32.6501820Z adding 'torch/_inductor/fx_passes/mkldnn_fusion.py' 2025-06-01T21:23:32.6507837Z adding 'torch/_inductor/fx_passes/numeric_utils.py' 2025-06-01T21:23:32.6519689Z adding 'torch/_inductor/fx_passes/pad_mm.py' 2025-06-01T21:23:32.6542499Z adding 'torch/_inductor/fx_passes/post_grad.py' 2025-06-01T21:23:32.6554357Z adding 'torch/_inductor/fx_passes/pre_grad.py' 2025-06-01T21:23:32.6587117Z adding 'torch/_inductor/fx_passes/quantization.py' 2025-06-01T21:23:32.6602745Z adding 'torch/_inductor/fx_passes/reinplace.py' 2025-06-01T21:23:32.6607504Z adding 'torch/_inductor/fx_passes/replace_random.py' 2025-06-01T21:23:32.6641694Z adding 'torch/_inductor/fx_passes/split_cat.py' 2025-06-01T21:23:32.6649299Z adding 'torch/_inductor/fx_passes/serialized_patterns/__init__.py' 2025-06-01T21:23:32.6653232Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_1.py' 2025-06-01T21:23:32.6657880Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py' 2025-06-01T21:23:32.6662484Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py' 2025-06-01T21:23:32.6667479Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py' 2025-06-01T21:23:32.6671925Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_13.py' 2025-06-01T21:23:32.6676484Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py' 2025-06-01T21:23:32.6681270Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py' 2025-06-01T21:23:32.6687910Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py' 2025-06-01T21:23:32.6693566Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py' 2025-06-01T21:23:32.6701004Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py' 2025-06-01T21:23:32.6707588Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_19.py' 2025-06-01T21:23:32.6713507Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_2.py' 2025-06-01T21:23:32.6719927Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py' 2025-06-01T21:23:32.6726064Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_3.py' 2025-06-01T21:23:32.6732108Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_4.py' 2025-06-01T21:23:32.6737967Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_5.py' 2025-06-01T21:23:32.6744270Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_6.py' 2025-06-01T21:23:32.6750400Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py' 2025-06-01T21:23:32.6756397Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py' 2025-06-01T21:23:32.6762747Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py' 2025-06-01T21:23:32.6767957Z adding 'torch/_inductor/fx_passes/serialized_patterns/addmm_pattern.py' 2025-06-01T21:23:32.6772801Z adding 'torch/_inductor/fx_passes/serialized_patterns/bmm_pattern.py' 2025-06-01T21:23:32.6777535Z adding 'torch/_inductor/fx_passes/serialized_patterns/mm_pattern.py' 2025-06-01T21:23:32.6782553Z adding 'torch/_inductor/kernel/__init__.py' 2025-06-01T21:23:32.6789747Z adding 'torch/_inductor/kernel/bmm.py' 2025-06-01T21:23:32.6800402Z adding 'torch/_inductor/kernel/conv.py' 2025-06-01T21:23:32.6841262Z adding 'torch/_inductor/kernel/flex_attention.py' 2025-06-01T21:23:32.6855539Z adding 'torch/_inductor/kernel/flex_decoding.py' 2025-06-01T21:23:32.6894868Z adding 'torch/_inductor/kernel/mm.py' 2025-06-01T21:23:32.6904175Z adding 'torch/_inductor/kernel/mm_common.py' 2025-06-01T21:23:32.6909043Z adding 'torch/_inductor/kernel/mm_plus_mm.py' 2025-06-01T21:23:32.6917528Z adding 'torch/_inductor/kernel/mm_scaled_grouped.py' 2025-06-01T21:23:32.6921907Z adding 'torch/_inductor/package/__init__.py' 2025-06-01T21:23:32.6925015Z adding 'torch/_inductor/package/build_package.py' 2025-06-01T21:23:32.6931637Z adding 'torch/_inductor/package/package.py' 2025-06-01T21:23:32.6936073Z adding 'torch/_inductor/runtime/__init__.py' 2025-06-01T21:23:32.6945099Z adding 'torch/_inductor/runtime/autotune_cache.py' 2025-06-01T21:23:32.6951217Z adding 'torch/_inductor/runtime/benchmarking.py' 2025-06-01T21:23:32.6955199Z adding 'torch/_inductor/runtime/cache_dir_utils.py' 2025-06-01T21:23:32.6958674Z adding 'torch/_inductor/runtime/compile_tasks.py' 2025-06-01T21:23:32.6965568Z adding 'torch/_inductor/runtime/coordinate_descent_tuner.py' 2025-06-01T21:23:32.6969818Z adding 'torch/_inductor/runtime/halide_helpers.py' 2025-06-01T21:23:32.6974475Z adding 'torch/_inductor/runtime/hints.py' 2025-06-01T21:23:32.6979254Z adding 'torch/_inductor/runtime/runtime_utils.py' 2025-06-01T21:23:32.6984906Z adding 'torch/_inductor/runtime/static_cuda_launcher.py' 2025-06-01T21:23:32.6988920Z adding 'torch/_inductor/runtime/triton_compat.py' 2025-06-01T21:23:32.6998078Z adding 'torch/_inductor/runtime/triton_helpers.py' 2025-06-01T21:23:32.7038032Z adding 'torch/_inductor/runtime/triton_heuristics.py' 2025-06-01T21:23:32.7044892Z adding 'torch/_lazy/__init__.py' 2025-06-01T21:23:32.7049244Z adding 'torch/_lazy/closure.py' 2025-06-01T21:23:32.7052657Z adding 'torch/_lazy/computation.py' 2025-06-01T21:23:32.7055716Z adding 'torch/_lazy/config.py' 2025-06-01T21:23:32.7059139Z adding 'torch/_lazy/debug.py' 2025-06-01T21:23:32.7062322Z adding 'torch/_lazy/device_context.py' 2025-06-01T21:23:32.7067844Z adding 'torch/_lazy/extract_compiled_graph.py' 2025-06-01T21:23:32.7071065Z adding 'torch/_lazy/ir_cache.py' 2025-06-01T21:23:32.7083039Z adding 'torch/_lazy/metrics.py' 2025-06-01T21:23:32.7083436Z adding 'torch/_lazy/tensor_factory_functions.py' 2025-06-01T21:23:32.7083781Z adding 'torch/_lazy/ts_backend.py' 2025-06-01T21:23:32.7085611Z adding 'torch/_library/__init__.py' 2025-06-01T21:23:32.7090496Z adding 'torch/_library/autograd.py' 2025-06-01T21:23:32.7105531Z adding 'torch/_library/custom_ops.py' 2025-06-01T21:23:32.7112739Z adding 'torch/_library/fake_class_registry.py' 2025-06-01T21:23:32.7118113Z adding 'torch/_library/fake_impl.py' 2025-06-01T21:23:32.7126554Z adding 'torch/_library/fake_profile.py' 2025-06-01T21:23:32.7134750Z adding 'torch/_library/infer_schema.py' 2025-06-01T21:23:32.7140291Z adding 'torch/_library/simple_registry.py' 2025-06-01T21:23:32.7147719Z adding 'torch/_library/triton.py' 2025-06-01T21:23:32.7158683Z adding 'torch/_library/utils.py' 2025-06-01T21:23:32.7164865Z adding 'torch/_logging/__init__.py' 2025-06-01T21:23:32.7187517Z adding 'torch/_logging/_internal.py' 2025-06-01T21:23:32.7194750Z adding 'torch/_logging/_registrations.py' 2025-06-01T21:23:32.7200055Z adding 'torch/_logging/scribe.py' 2025-06-01T21:23:32.7205177Z adding 'torch/_logging/structured.py' 2025-06-01T21:23:32.7210835Z adding 'torch/_numpy/__init__.py' 2025-06-01T21:23:32.7215327Z adding 'torch/_numpy/_binary_ufuncs_impl.py' 2025-06-01T21:23:32.7223553Z adding 'torch/_numpy/_casting_dicts.py' 2025-06-01T21:23:32.7231721Z adding 'torch/_numpy/_dtypes.py' 2025-06-01T21:23:32.7238031Z adding 'torch/_numpy/_dtypes_impl.py' 2025-06-01T21:23:32.7243188Z adding 'torch/_numpy/_funcs.py' 2025-06-01T21:23:32.7270394Z adding 'torch/_numpy/_funcs_impl.py' 2025-06-01T21:23:32.7276267Z adding 'torch/_numpy/_getlimits.py' 2025-06-01T21:23:32.7285003Z adding 'torch/_numpy/_ndarray.py' 2025-06-01T21:23:32.7292977Z adding 'torch/_numpy/_normalizations.py' 2025-06-01T21:23:32.7300065Z adding 'torch/_numpy/_reductions_impl.py' 2025-06-01T21:23:32.7306571Z adding 'torch/_numpy/_ufuncs.py' 2025-06-01T21:23:32.7311616Z adding 'torch/_numpy/_unary_ufuncs_impl.py' 2025-06-01T21:23:32.7318279Z adding 'torch/_numpy/_util.py' 2025-06-01T21:23:32.7323239Z adding 'torch/_numpy/fft.py' 2025-06-01T21:23:32.7328871Z adding 'torch/_numpy/linalg.py' 2025-06-01T21:23:32.7334568Z adding 'torch/_numpy/random.py' 2025-06-01T21:23:32.7340065Z adding 'torch/_numpy/testing/__init__.py' 2025-06-01T21:23:32.7390985Z adding 'torch/_numpy/testing/utils.py' 2025-06-01T21:23:32.7435438Z adding 'torch/_prims/__init__.py' 2025-06-01T21:23:32.7447434Z adding 'torch/_prims/context.py' 2025-06-01T21:23:32.7451231Z adding 'torch/_prims/debug_prims.py' 2025-06-01T21:23:32.7459437Z adding 'torch/_prims/executor.py' 2025-06-01T21:23:32.7469291Z adding 'torch/_prims/rng_prims.py' 2025-06-01T21:23:32.7501243Z adding 'torch/_prims_common/__init__.py' 2025-06-01T21:23:32.7512445Z adding 'torch/_prims_common/wrappers.py' 2025-06-01T21:23:32.7590381Z adding 'torch/_refs/__init__.py' 2025-06-01T21:23:32.7599562Z adding 'torch/_refs/_conversions.py' 2025-06-01T21:23:32.7606191Z adding 'torch/_refs/fft.py' 2025-06-01T21:23:32.7613364Z adding 'torch/_refs/linalg/__init__.py' 2025-06-01T21:23:32.7617548Z adding 'torch/_refs/nn/__init__.py' 2025-06-01T21:23:32.7631715Z adding 'torch/_refs/nn/functional/__init__.py' 2025-06-01T21:23:32.7637639Z adding 'torch/_refs/special/__init__.py' 2025-06-01T21:23:32.7641502Z adding 'torch/_strobelight/__init__.py' 2025-06-01T21:23:32.7646892Z adding 'torch/_strobelight/cli_function_profiler.py' 2025-06-01T21:23:32.7652110Z adding 'torch/_strobelight/compile_time_profiler.py' 2025-06-01T21:23:32.7656280Z adding 'torch/_subclasses/__init__.py' 2025-06-01T21:23:32.7661484Z adding 'torch/_subclasses/_fake_tensor_utils.py' 2025-06-01T21:23:32.7674704Z adding 'torch/_subclasses/fake_impls.py' 2025-06-01T21:23:32.7727547Z adding 'torch/_subclasses/fake_tensor.py' 2025-06-01T21:23:32.7738686Z adding 'torch/_subclasses/fake_utils.py' 2025-06-01T21:23:32.7754719Z adding 'torch/_subclasses/functional_tensor.py' 2025-06-01T21:23:32.7790757Z adding 'torch/_subclasses/meta_utils.py' 2025-06-01T21:23:32.7800317Z adding 'torch/_subclasses/schema_check_mode.py' 2025-06-01T21:23:32.7805770Z adding 'torch/_vendor/__init__.py' 2025-06-01T21:23:32.7810653Z adding 'torch/_vendor/packaging/__init__.py' 2025-06-01T21:23:32.7814539Z adding 'torch/_vendor/packaging/_structures.py' 2025-06-01T21:23:32.7824156Z adding 'torch/_vendor/packaging/version.py' 2025-06-01T21:23:32.7831708Z adding 'torch/accelerator/__init__.py' 2025-06-01T21:23:32.7836644Z adding 'torch/accelerator/_utils.py' 2025-06-01T21:23:32.7841965Z adding 'torch/amp/__init__.py' 2025-06-01T21:23:32.7853099Z adding 'torch/amp/autocast_mode.py' 2025-06-01T21:23:32.7873389Z adding 'torch/amp/grad_scaler.py' 2025-06-01T21:23:32.7894325Z adding 'torch/ao/__init__.py' 2025-06-01T21:23:32.7900176Z adding 'torch/ao/nn/__init__.py' 2025-06-01T21:23:32.7906283Z adding 'torch/ao/nn/intrinsic/__init__.py' 2025-06-01T21:23:32.7912138Z adding 'torch/ao/nn/intrinsic/modules/__init__.py' 2025-06-01T21:23:32.7917996Z adding 'torch/ao/nn/intrinsic/modules/fused.py' 2025-06-01T21:23:32.7922097Z adding 'torch/ao/nn/intrinsic/qat/__init__.py' 2025-06-01T21:23:32.7927767Z adding 'torch/ao/nn/intrinsic/qat/modules/__init__.py' 2025-06-01T21:23:32.7936486Z adding 'torch/ao/nn/intrinsic/qat/modules/conv_fused.py' 2025-06-01T21:23:32.7943649Z adding 'torch/ao/nn/intrinsic/qat/modules/linear_fused.py' 2025-06-01T21:23:32.7947541Z adding 'torch/ao/nn/intrinsic/qat/modules/linear_relu.py' 2025-06-01T21:23:32.7951482Z adding 'torch/ao/nn/intrinsic/quantized/__init__.py' 2025-06-01T21:23:32.7955227Z adding 'torch/ao/nn/intrinsic/quantized/dynamic/__init__.py' 2025-06-01T21:23:32.7959070Z adding 'torch/ao/nn/intrinsic/quantized/dynamic/modules/__init__.py' 2025-06-01T21:23:32.7962622Z adding 'torch/ao/nn/intrinsic/quantized/dynamic/modules/linear_relu.py' 2025-06-01T21:23:32.7966623Z adding 'torch/ao/nn/intrinsic/quantized/modules/__init__.py' 2025-06-01T21:23:32.7970226Z adding 'torch/ao/nn/intrinsic/quantized/modules/bn_relu.py' 2025-06-01T21:23:32.7975523Z adding 'torch/ao/nn/intrinsic/quantized/modules/conv_add.py' 2025-06-01T21:23:32.7979847Z adding 'torch/ao/nn/intrinsic/quantized/modules/conv_relu.py' 2025-06-01T21:23:32.7984330Z adding 'torch/ao/nn/intrinsic/quantized/modules/linear_relu.py' 2025-06-01T21:23:32.7988383Z adding 'torch/ao/nn/qat/__init__.py' 2025-06-01T21:23:32.7992101Z adding 'torch/ao/nn/qat/dynamic/__init__.py' 2025-06-01T21:23:32.7995724Z adding 'torch/ao/nn/qat/dynamic/modules/__init__.py' 2025-06-01T21:23:32.7999077Z adding 'torch/ao/nn/qat/dynamic/modules/linear.py' 2025-06-01T21:23:32.8003046Z adding 'torch/ao/nn/qat/modules/__init__.py' 2025-06-01T21:23:32.8007603Z adding 'torch/ao/nn/qat/modules/conv.py' 2025-06-01T21:23:32.8011977Z adding 'torch/ao/nn/qat/modules/embedding_ops.py' 2025-06-01T21:23:32.8016085Z adding 'torch/ao/nn/qat/modules/linear.py' 2025-06-01T21:23:32.8020908Z adding 'torch/ao/nn/quantizable/__init__.py' 2025-06-01T21:23:32.8024828Z adding 'torch/ao/nn/quantizable/modules/__init__.py' 2025-06-01T21:23:32.8032998Z adding 'torch/ao/nn/quantizable/modules/activation.py' 2025-06-01T21:23:32.8041561Z adding 'torch/ao/nn/quantizable/modules/rnn.py' 2025-06-01T21:23:32.8046207Z adding 'torch/ao/nn/quantized/__init__.py' 2025-06-01T21:23:32.8054518Z adding 'torch/ao/nn/quantized/functional.py' 2025-06-01T21:23:32.8059012Z adding 'torch/ao/nn/quantized/dynamic/__init__.py' 2025-06-01T21:23:32.8063055Z adding 'torch/ao/nn/quantized/dynamic/modules/__init__.py' 2025-06-01T21:23:32.8068204Z adding 'torch/ao/nn/quantized/dynamic/modules/conv.py' 2025-06-01T21:23:32.8073213Z adding 'torch/ao/nn/quantized/dynamic/modules/linear.py' 2025-06-01T21:23:32.8087404Z adding 'torch/ao/nn/quantized/dynamic/modules/rnn.py' 2025-06-01T21:23:32.8094106Z adding 'torch/ao/nn/quantized/modules/__init__.py' 2025-06-01T21:23:32.8099407Z adding 'torch/ao/nn/quantized/modules/activation.py' 2025-06-01T21:23:32.8103591Z adding 'torch/ao/nn/quantized/modules/batchnorm.py' 2025-06-01T21:23:32.8113859Z adding 'torch/ao/nn/quantized/modules/conv.py' 2025-06-01T21:23:32.8118293Z adding 'torch/ao/nn/quantized/modules/dropout.py' 2025-06-01T21:23:32.8124449Z adding 'torch/ao/nn/quantized/modules/embedding_ops.py' 2025-06-01T21:23:32.8129291Z adding 'torch/ao/nn/quantized/modules/functional_modules.py' 2025-06-01T21:23:32.8135477Z adding 'torch/ao/nn/quantized/modules/linear.py' 2025-06-01T21:23:32.8139986Z adding 'torch/ao/nn/quantized/modules/normalization.py' 2025-06-01T21:23:32.8143785Z adding 'torch/ao/nn/quantized/modules/rnn.py' 2025-06-01T21:23:32.8147991Z adding 'torch/ao/nn/quantized/modules/utils.py' 2025-06-01T21:23:32.8152111Z adding 'torch/ao/nn/quantized/reference/__init__.py' 2025-06-01T21:23:32.8156163Z adding 'torch/ao/nn/quantized/reference/modules/__init__.py' 2025-06-01T21:23:32.8161198Z adding 'torch/ao/nn/quantized/reference/modules/conv.py' 2025-06-01T21:23:32.8165282Z adding 'torch/ao/nn/quantized/reference/modules/linear.py' 2025-06-01T21:23:32.8173339Z adding 'torch/ao/nn/quantized/reference/modules/rnn.py' 2025-06-01T21:23:32.8179283Z adding 'torch/ao/nn/quantized/reference/modules/sparse.py' 2025-06-01T21:23:32.8185215Z adding 'torch/ao/nn/quantized/reference/modules/utils.py' 2025-06-01T21:23:32.8189276Z adding 'torch/ao/nn/sparse/__init__.py' 2025-06-01T21:23:32.8193042Z adding 'torch/ao/nn/sparse/quantized/__init__.py' 2025-06-01T21:23:32.8197895Z adding 'torch/ao/nn/sparse/quantized/linear.py' 2025-06-01T21:23:32.8201621Z adding 'torch/ao/nn/sparse/quantized/utils.py' 2025-06-01T21:23:32.8205396Z adding 'torch/ao/nn/sparse/quantized/dynamic/__init__.py' 2025-06-01T21:23:32.8209919Z adding 'torch/ao/nn/sparse/quantized/dynamic/linear.py' 2025-06-01T21:23:32.8214166Z adding 'torch/ao/ns/__init__.py' 2025-06-01T21:23:32.8221127Z adding 'torch/ao/ns/_numeric_suite.py' 2025-06-01T21:23:32.8235351Z adding 'torch/ao/ns/_numeric_suite_fx.py' 2025-06-01T21:23:32.8240196Z adding 'torch/ao/ns/fx/__init__.py' 2025-06-01T21:23:32.8248123Z adding 'torch/ao/ns/fx/graph_matcher.py' 2025-06-01T21:23:32.8262774Z adding 'torch/ao/ns/fx/graph_passes.py' 2025-06-01T21:23:32.8270082Z adding 'torch/ao/ns/fx/mappings.py' 2025-06-01T21:23:32.8289474Z adding 'torch/ao/ns/fx/n_shadows_utils.py' 2025-06-01T21:23:32.8294433Z adding 'torch/ao/ns/fx/ns_types.py' 2025-06-01T21:23:32.8299270Z adding 'torch/ao/ns/fx/pattern_utils.py' 2025-06-01T21:23:32.8304920Z adding 'torch/ao/ns/fx/qconfig_multi_mapping.py' 2025-06-01T21:23:32.8312823Z adding 'torch/ao/ns/fx/utils.py' 2025-06-01T21:23:32.8318399Z adding 'torch/ao/ns/fx/weight_utils.py' 2025-06-01T21:23:32.8322673Z adding 'torch/ao/pruning/__init__.py' 2025-06-01T21:23:32.8325804Z adding 'torch/ao/pruning/_mappings.py' 2025-06-01T21:23:32.8329618Z adding 'torch/ao/pruning/_experimental/__init__.py' 2025-06-01T21:23:32.8333432Z adding 'torch/ao/pruning/_experimental/activation_sparsifier/__init__.py' 2025-06-01T21:23:32.8341316Z adding 'torch/ao/pruning/_experimental/activation_sparsifier/activation_sparsifier.py' 2025-06-01T21:23:32.8345535Z adding 'torch/ao/pruning/_experimental/data_scheduler/__init__.py' 2025-06-01T21:23:32.8350435Z adding 'torch/ao/pruning/_experimental/data_scheduler/base_data_scheduler.py' 2025-06-01T21:23:32.8354394Z adding 'torch/ao/pruning/_experimental/data_sparsifier/__init__.py' 2025-06-01T21:23:32.8360925Z adding 'torch/ao/pruning/_experimental/data_sparsifier/base_data_sparsifier.py' 2025-06-01T21:23:32.8366144Z adding 'torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py' 2025-06-01T21:23:32.8370610Z adding 'torch/ao/pruning/_experimental/data_sparsifier/quantization_utils.py' 2025-06-01T21:23:32.8374573Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/__init__.py' 2025-06-01T21:23:32.8380913Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/__init__.py' 2025-06-01T21:23:32.8384750Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/_data_sparstity_utils.py' 2025-06-01T21:23:32.8427873Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/data_sparsity.py' 2025-06-01T21:23:32.8436095Z adding 'torch/ao/pruning/_experimental/pruner/FPGM_pruner.py' 2025-06-01T21:23:32.8439409Z adding 'torch/ao/pruning/_experimental/pruner/__init__.py' 2025-06-01T21:23:32.8446217Z adding 'torch/ao/pruning/_experimental/pruner/base_structured_sparsifier.py' 2025-06-01T21:23:32.8451834Z adding 'torch/ao/pruning/_experimental/pruner/lstm_saliency_pruner.py' 2025-06-01T21:23:32.8455425Z adding 'torch/ao/pruning/_experimental/pruner/match_utils.py' 2025-06-01T21:23:32.8460724Z adding 'torch/ao/pruning/_experimental/pruner/parametrization.py' 2025-06-01T21:23:32.8468005Z adding 'torch/ao/pruning/_experimental/pruner/prune_functions.py' 2025-06-01T21:23:32.8472004Z adding 'torch/ao/pruning/_experimental/pruner/saliency_pruner.py' 2025-06-01T21:23:32.8477206Z adding 'torch/ao/pruning/scheduler/__init__.py' 2025-06-01T21:23:32.8481807Z adding 'torch/ao/pruning/scheduler/base_scheduler.py' 2025-06-01T21:23:32.8485984Z adding 'torch/ao/pruning/scheduler/cubic_scheduler.py' 2025-06-01T21:23:32.8489687Z adding 'torch/ao/pruning/scheduler/lambda_scheduler.py' 2025-06-01T21:23:32.8493508Z adding 'torch/ao/pruning/sparsifier/__init__.py' 2025-06-01T21:23:32.8499794Z adding 'torch/ao/pruning/sparsifier/base_sparsifier.py' 2025-06-01T21:23:32.8503980Z adding 'torch/ao/pruning/sparsifier/nearly_diagonal_sparsifier.py' 2025-06-01T21:23:32.8509765Z adding 'torch/ao/pruning/sparsifier/utils.py' 2025-06-01T21:23:32.8515150Z adding 'torch/ao/pruning/sparsifier/weight_norm_sparsifier.py' 2025-06-01T21:23:32.8521901Z adding 'torch/ao/quantization/__init__.py' 2025-06-01T21:23:32.8526613Z adding 'torch/ao/quantization/_correct_bias.py' 2025-06-01T21:23:32.8532526Z adding 'torch/ao/quantization/_equalize.py' 2025-06-01T21:23:32.8537427Z adding 'torch/ao/quantization/_learnable_fake_quantize.py' 2025-06-01T21:23:32.8545502Z adding 'torch/ao/quantization/fake_quantize.py' 2025-06-01T21:23:32.8550845Z adding 'torch/ao/quantization/fuse_modules.py' 2025-06-01T21:23:32.8555974Z adding 'torch/ao/quantization/fuser_method_mappings.py' 2025-06-01T21:23:32.8581286Z adding 'torch/ao/quantization/observer.py' 2025-06-01T21:23:32.8591567Z adding 'torch/ao/quantization/qconfig.py' 2025-06-01T21:23:32.8598160Z adding 'torch/ao/quantization/qconfig_mapping.py' 2025-06-01T21:23:32.8601789Z adding 'torch/ao/quantization/quant_type.py' 2025-06-01T21:23:32.8607390Z adding 'torch/ao/quantization/quantization_mappings.py' 2025-06-01T21:23:32.8618452Z adding 'torch/ao/quantization/quantize.py' 2025-06-01T21:23:32.8629108Z adding 'torch/ao/quantization/quantize_fx.py' 2025-06-01T21:23:32.8643720Z adding 'torch/ao/quantization/quantize_jit.py' 2025-06-01T21:23:32.8649754Z adding 'torch/ao/quantization/quantize_pt2e.py' 2025-06-01T21:23:32.8653562Z adding 'torch/ao/quantization/stubs.py' 2025-06-01T21:23:32.8664893Z adding 'torch/ao/quantization/utils.py' 2025-06-01T21:23:32.8669847Z adding 'torch/ao/quantization/backend_config/__init__.py' 2025-06-01T21:23:32.8677984Z adding 'torch/ao/quantization/backend_config/_common_operator_config_utils.py' 2025-06-01T21:23:32.8683314Z adding 'torch/ao/quantization/backend_config/_qnnpack_pt2e.py' 2025-06-01T21:23:32.8694399Z adding 'torch/ao/quantization/backend_config/backend_config.py' 2025-06-01T21:23:32.8699965Z adding 'torch/ao/quantization/backend_config/executorch.py' 2025-06-01T21:23:32.8704188Z adding 'torch/ao/quantization/backend_config/fbgemm.py' 2025-06-01T21:23:32.8708525Z adding 'torch/ao/quantization/backend_config/native.py' 2025-06-01T21:23:32.8711838Z adding 'torch/ao/quantization/backend_config/observation_type.py' 2025-06-01T21:23:32.8717746Z adding 'torch/ao/quantization/backend_config/onednn.py' 2025-06-01T21:23:32.8722138Z adding 'torch/ao/quantization/backend_config/qnnpack.py' 2025-06-01T21:23:32.8725926Z adding 'torch/ao/quantization/backend_config/tensorrt.py' 2025-06-01T21:23:32.8731765Z adding 'torch/ao/quantization/backend_config/utils.py' 2025-06-01T21:23:32.8735739Z adding 'torch/ao/quantization/backend_config/x86.py' 2025-06-01T21:23:32.8739852Z adding 'torch/ao/quantization/fx/__init__.py' 2025-06-01T21:23:32.8750404Z adding 'torch/ao/quantization/fx/_decomposed.py' 2025-06-01T21:23:32.8764779Z adding 'torch/ao/quantization/fx/_equalize.py' 2025-06-01T21:23:32.8782634Z adding 'torch/ao/quantization/fx/_lower_to_native_backend.py' 2025-06-01T21:23:32.8806070Z adding 'torch/ao/quantization/fx/convert.py' 2025-06-01T21:23:32.8814545Z adding 'torch/ao/quantization/fx/custom_config.py' 2025-06-01T21:23:32.8820461Z adding 'torch/ao/quantization/fx/fuse.py' 2025-06-01T21:23:32.8825628Z adding 'torch/ao/quantization/fx/fuse_handler.py' 2025-06-01T21:23:32.8830627Z adding 'torch/ao/quantization/fx/graph_module.py' 2025-06-01T21:23:32.8834491Z adding 'torch/ao/quantization/fx/lower_to_fbgemm.py' 2025-06-01T21:23:32.8837949Z adding 'torch/ao/quantization/fx/lower_to_qnnpack.py' 2025-06-01T21:23:32.8843698Z adding 'torch/ao/quantization/fx/lstm_utils.py' 2025-06-01T21:23:32.8849698Z adding 'torch/ao/quantization/fx/match_utils.py' 2025-06-01T21:23:32.8854495Z adding 'torch/ao/quantization/fx/pattern_utils.py' 2025-06-01T21:23:32.8891652Z adding 'torch/ao/quantization/fx/prepare.py' 2025-06-01T21:23:32.8902388Z adding 'torch/ao/quantization/fx/qconfig_mapping_utils.py' 2025-06-01T21:23:32.8908113Z adding 'torch/ao/quantization/fx/quantize_handler.py' 2025-06-01T21:23:32.8913778Z adding 'torch/ao/quantization/fx/tracer.py' 2025-06-01T21:23:32.8929777Z adding 'torch/ao/quantization/fx/utils.py' 2025-06-01T21:23:32.8935499Z adding 'torch/ao/quantization/fx/_model_report/__init__.py' 2025-06-01T21:23:32.8959743Z adding 'torch/ao/quantization/fx/_model_report/detector.py' 2025-06-01T21:23:32.8972963Z adding 'torch/ao/quantization/fx/_model_report/model_report.py' 2025-06-01T21:23:32.8979562Z adding 'torch/ao/quantization/fx/_model_report/model_report_observer.py' 2025-06-01T21:23:32.8991557Z adding 'torch/ao/quantization/fx/_model_report/model_report_visualizer.py' 2025-06-01T21:23:32.8996538Z adding 'torch/ao/quantization/pt2e/__init__.py' 2025-06-01T21:23:32.9007762Z adding 'torch/ao/quantization/pt2e/_affine_quantization.py' 2025-06-01T21:23:32.9014716Z adding 'torch/ao/quantization/pt2e/_numeric_debugger.py' 2025-06-01T21:23:32.9018797Z adding 'torch/ao/quantization/pt2e/duplicate_dq_pass.py' 2025-06-01T21:23:32.9024042Z adding 'torch/ao/quantization/pt2e/export_utils.py' 2025-06-01T21:23:32.9028933Z adding 'torch/ao/quantization/pt2e/graph_utils.py' 2025-06-01T21:23:32.9032717Z adding 'torch/ao/quantization/pt2e/lowering.py' 2025-06-01T21:23:32.9037896Z adding 'torch/ao/quantization/pt2e/port_metadata_pass.py' 2025-06-01T21:23:32.9047154Z adding 'torch/ao/quantization/pt2e/prepare.py' 2025-06-01T21:23:32.9060068Z adding 'torch/ao/quantization/pt2e/qat_utils.py' 2025-06-01T21:23:32.9069949Z adding 'torch/ao/quantization/pt2e/utils.py' 2025-06-01T21:23:32.9074481Z adding 'torch/ao/quantization/pt2e/representation/__init__.py' 2025-06-01T21:23:32.9082546Z adding 'torch/ao/quantization/pt2e/representation/rewrite.py' 2025-06-01T21:23:32.9087719Z adding 'torch/ao/quantization/quantizer/__init__.py' 2025-06-01T21:23:32.9091489Z adding 'torch/ao/quantization/quantizer/composable_quantizer.py' 2025-06-01T21:23:32.9095423Z adding 'torch/ao/quantization/quantizer/embedding_quantizer.py' 2025-06-01T21:23:32.9100241Z adding 'torch/ao/quantization/quantizer/quantizer.py' 2025-06-01T21:23:32.9104420Z adding 'torch/ao/quantization/quantizer/utils.py' 2025-06-01T21:23:32.9121373Z adding 'torch/ao/quantization/quantizer/x86_inductor_quantizer.py' 2025-06-01T21:23:32.9129388Z adding 'torch/ao/quantization/quantizer/xnnpack_quantizer.py' 2025-06-01T21:23:32.9140937Z adding 'torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py' 2025-06-01T21:23:32.9146035Z adding 'torch/ao/quantization/quantizer/xpu_inductor_quantizer.py' 2025-06-01T21:23:32.9156835Z adding 'torch/autograd/__init__.py' 2025-06-01T21:23:32.9161549Z adding 'torch/autograd/anomaly_mode.py' 2025-06-01T21:23:32.9166511Z adding 'torch/autograd/forward_ad.py' 2025-06-01T21:23:32.9178801Z adding 'torch/autograd/function.py' 2025-06-01T21:23:32.9196657Z adding 'torch/autograd/functional.py' 2025-06-01T21:23:32.9204215Z adding 'torch/autograd/grad_mode.py' 2025-06-01T21:23:32.9239320Z adding 'torch/autograd/gradcheck.py' 2025-06-01T21:23:32.9254693Z adding 'torch/autograd/graph.py' 2025-06-01T21:23:32.9273724Z adding 'torch/autograd/profiler.py' 2025-06-01T21:23:32.9281144Z adding 'torch/autograd/profiler_legacy.py' 2025-06-01T21:23:32.9297386Z adding 'torch/autograd/profiler_util.py' 2025-06-01T21:23:32.9302168Z adding 'torch/autograd/variable.py' 2025-06-01T21:23:32.9306251Z adding 'torch/autograd/_functions/__init__.py' 2025-06-01T21:23:32.9310429Z adding 'torch/autograd/_functions/tensor.py' 2025-06-01T21:23:32.9314617Z adding 'torch/autograd/_functions/utils.py' 2025-06-01T21:23:32.9319519Z adding 'torch/backends/__init__.py' 2025-06-01T21:23:32.9323642Z adding 'torch/backends/_coreml/__init__.py' 2025-06-01T21:23:32.9328350Z adding 'torch/backends/_coreml/preprocess.py' 2025-06-01T21:23:32.9332853Z adding 'torch/backends/_nnapi/__init__.py' 2025-06-01T21:23:32.9337802Z adding 'torch/backends/_nnapi/prepare.py' 2025-06-01T21:23:32.9363765Z adding 'torch/backends/_nnapi/serializer.py' 2025-06-01T21:23:32.9370314Z adding 'torch/backends/cpu/__init__.py' 2025-06-01T21:23:32.9379710Z adding 'torch/backends/cuda/__init__.py' 2025-06-01T21:23:32.9388696Z adding 'torch/backends/cudnn/__init__.py' 2025-06-01T21:23:32.9394368Z adding 'torch/backends/cudnn/rnn.py' 2025-06-01T21:23:32.9400904Z adding 'torch/backends/cusparselt/__init__.py' 2025-06-01T21:23:32.9406760Z adding 'torch/backends/kleidiai/__init__.py' 2025-06-01T21:23:32.9412690Z adding 'torch/backends/mha/__init__.py' 2025-06-01T21:23:32.9417304Z adding 'torch/backends/mkl/__init__.py' 2025-06-01T21:23:32.9422842Z adding 'torch/backends/mkldnn/__init__.py' 2025-06-01T21:23:32.9428049Z adding 'torch/backends/mps/__init__.py' 2025-06-01T21:23:32.9432773Z adding 'torch/backends/nnpack/__init__.py' 2025-06-01T21:23:32.9436761Z adding 'torch/backends/openmp/__init__.py' 2025-06-01T21:23:32.9441427Z adding 'torch/backends/opt_einsum/__init__.py' 2025-06-01T21:23:32.9446572Z adding 'torch/backends/quantized/__init__.py' 2025-06-01T21:23:32.9450362Z adding 'torch/backends/xeon/__init__.py' 2025-06-01T21:23:32.9463013Z adding 'torch/backends/xeon/run_cpu.py' 2025-06-01T21:23:32.9468182Z adding 'torch/backends/xnnpack/__init__.py' 2025-06-01T21:23:32.9677396Z adding 'torch/bin/FileStoreTest.exe' 2025-06-01T21:23:32.9923344Z adding 'torch/bin/TCPStoreTest.exe' 2025-06-01T21:23:33.0162454Z adding 'torch/bin/asmjit.dll' 2025-06-01T21:23:33.1859349Z adding 'torch/bin/fbgemm.dll' 2025-06-01T21:23:33.3475316Z adding 'torch/bin/protoc.exe' 2025-06-01T21:23:33.7884435Z adding 'torch/bin/test_api.exe' 2025-06-01T21:23:33.8280068Z adding 'torch/bin/test_edge_op_registration.exe' 2025-06-01T21:23:34.0780190Z adding 'torch/bin/test_jit.exe' 2025-06-01T21:23:34.1898575Z adding 'torch/bin/test_lazy.exe' 2025-06-01T21:23:34.2248182Z adding 'torch/bin/test_nativert.exe' 2025-06-01T21:23:34.5306815Z adding 'torch/bin/test_tensorexpr.exe' 2025-06-01T21:23:34.5512128Z adding 'torch/bin/tutorial_tensorexpr.exe' 2025-06-01T21:23:34.5524251Z adding 'torch/compiler/__init__.py' 2025-06-01T21:23:34.5530348Z adding 'torch/compiler/_cache.py' 2025-06-01T21:23:34.5534788Z adding 'torch/compiler/config.py' 2025-06-01T21:23:34.5538618Z adding 'torch/contrib/__init__.py' 2025-06-01T21:23:34.5542957Z adding 'torch/contrib/_tensorboard_vis.py' 2025-06-01T21:23:34.5548140Z adding 'torch/cpu/__init__.py' 2025-06-01T21:23:34.5551911Z adding 'torch/cpu/amp/__init__.py' 2025-06-01T21:23:34.5555177Z adding 'torch/cpu/amp/autocast_mode.py' 2025-06-01T21:23:34.5558342Z adding 'torch/cpu/amp/grad_scaler.py' 2025-06-01T21:23:34.5580989Z adding 'torch/cuda/__init__.py' 2025-06-01T21:23:34.5585929Z adding 'torch/cuda/_gpu_trace.py' 2025-06-01T21:23:34.5596250Z adding 'torch/cuda/_memory_viz.py' 2025-06-01T21:23:34.5605272Z adding 'torch/cuda/_sanitizer.py' 2025-06-01T21:23:34.5612492Z adding 'torch/cuda/_utils.py' 2025-06-01T21:23:34.5615897Z adding 'torch/cuda/comm.py' 2025-06-01T21:23:34.5618808Z adding 'torch/cuda/error.py' 2025-06-01T21:23:34.5622847Z adding 'torch/cuda/gds.py' 2025-06-01T21:23:34.5631836Z adding 'torch/cuda/graphs.py' 2025-06-01T21:23:34.5636790Z adding 'torch/cuda/jiterator.py' 2025-06-01T21:23:34.5652629Z adding 'torch/cuda/memory.py' 2025-06-01T21:23:34.5657644Z adding 'torch/cuda/nccl.py' 2025-06-01T21:23:34.5661496Z adding 'torch/cuda/nvtx.py' 2025-06-01T21:23:34.5665276Z adding 'torch/cuda/profiler.py' 2025-06-01T21:23:34.5669296Z adding 'torch/cuda/random.py' 2025-06-01T21:23:34.5672300Z adding 'torch/cuda/sparse.py' 2025-06-01T21:23:34.5677119Z adding 'torch/cuda/streams.py' 2025-06-01T21:23:34.5688812Z adding 'torch/cuda/tunable.py' 2025-06-01T21:23:34.5693336Z adding 'torch/cuda/amp/__init__.py' 2025-06-01T21:23:34.5696842Z adding 'torch/cuda/amp/autocast_mode.py' 2025-06-01T21:23:34.5699845Z adding 'torch/cuda/amp/common.py' 2025-06-01T21:23:34.5702946Z adding 'torch/cuda/amp/grad_scaler.py' 2025-06-01T21:23:34.5708625Z adding 'torch/distributed/__init__.py' 2025-06-01T21:23:34.5712078Z adding 'torch/distributed/_checkpointable.py' 2025-06-01T21:23:34.5715417Z adding 'torch/distributed/_composable_state.py' 2025-06-01T21:23:34.5730555Z adding 'torch/distributed/_functional_collectives.py' 2025-06-01T21:23:34.5736715Z adding 'torch/distributed/_functional_collectives_impl.py' 2025-06-01T21:23:34.5740478Z adding 'torch/distributed/_serialization.py' 2025-06-01T21:23:34.5751010Z adding 'torch/distributed/_state_dict_utils.py' 2025-06-01T21:23:34.5755441Z adding 'torch/distributed/argparse_util.py' 2025-06-01T21:23:34.5759200Z adding 'torch/distributed/c10d_logger.py' 2025-06-01T21:23:34.5764145Z adding 'torch/distributed/collective_utils.py' 2025-06-01T21:23:34.5767678Z adding 'torch/distributed/constants.py' 2025-06-01T21:23:34.5784974Z adding 'torch/distributed/device_mesh.py' 2025-06-01T21:23:34.5857039Z adding 'torch/distributed/distributed_c10d.py' 2025-06-01T21:23:34.5867006Z adding 'torch/distributed/launch.py' 2025-06-01T21:23:34.5870337Z adding 'torch/distributed/logging_handlers.py' 2025-06-01T21:23:34.5874243Z adding 'torch/distributed/remote_device.py' 2025-06-01T21:23:34.5879679Z adding 'torch/distributed/rendezvous.py' 2025-06-01T21:23:34.5892889Z adding 'torch/distributed/run.py' 2025-06-01T21:23:34.5899866Z adding 'torch/distributed/utils.py' 2025-06-01T21:23:34.5904104Z adding 'torch/distributed/_composable/__init__.py' 2025-06-01T21:23:34.5908312Z adding 'torch/distributed/_composable/checkpoint_activation.py' 2025-06-01T21:23:34.5913726Z adding 'torch/distributed/_composable/contract.py' 2025-06-01T21:23:34.5919417Z adding 'torch/distributed/_composable/replicate.py' 2025-06-01T21:23:34.5923574Z adding 'torch/distributed/_composable/fsdp/__init__.py' 2025-06-01T21:23:34.5926716Z adding 'torch/distributed/_composable/fsdp/fully_shard.py' 2025-06-01T21:23:34.5930587Z adding 'torch/distributed/_shard/__init__.py' 2025-06-01T21:23:34.5933818Z adding 'torch/distributed/_shard/_utils.py' 2025-06-01T21:23:34.5939777Z adding 'torch/distributed/_shard/api.py' 2025-06-01T21:23:34.5943967Z adding 'torch/distributed/_shard/common_op_utils.py' 2025-06-01T21:23:34.5947502Z adding 'torch/distributed/_shard/metadata.py' 2025-06-01T21:23:34.5950911Z adding 'torch/distributed/_shard/op_registry_utils.py' 2025-06-01T21:23:34.5954431Z adding 'torch/distributed/_shard/sharder.py' 2025-06-01T21:23:34.5958229Z adding 'torch/distributed/_shard/checkpoint/__init__.py' 2025-06-01T21:23:34.5962512Z adding 'torch/distributed/_shard/sharded_optim/__init__.py' 2025-06-01T21:23:34.5966627Z adding 'torch/distributed/_shard/sharded_optim/api.py' 2025-06-01T21:23:34.5994706Z adding 'torch/distributed/_shard/sharded_tensor/__init__.py' 2025-06-01T21:23:34.5995169Z adding 'torch/distributed/_shard/sharded_tensor/api.py' 2025-06-01T21:23:34.6004222Z adding 'torch/distributed/_shard/sharded_tensor/logger.py' 2025-06-01T21:23:34.6004690Z adding 'torch/distributed/_shard/sharded_tensor/logging_handlers.py' 2025-06-01T21:23:34.6006433Z adding 'torch/distributed/_shard/sharded_tensor/metadata.py' 2025-06-01T21:23:34.6011758Z adding 'torch/distributed/_shard/sharded_tensor/reshard.py' 2025-06-01T21:23:34.6016402Z adding 'torch/distributed/_shard/sharded_tensor/shard.py' 2025-06-01T21:23:34.6022447Z adding 'torch/distributed/_shard/sharded_tensor/utils.py' 2025-06-01T21:23:34.6025881Z adding 'torch/distributed/_shard/sharded_tensor/_ops/__init__.py' 2025-06-01T21:23:34.6030042Z adding 'torch/distributed/_shard/sharded_tensor/_ops/_common.py' 2025-06-01T21:23:34.6033701Z adding 'torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py' 2025-06-01T21:23:34.6037867Z adding 'torch/distributed/_shard/sharded_tensor/_ops/init.py' 2025-06-01T21:23:34.6041337Z adding 'torch/distributed/_shard/sharded_tensor/_ops/misc_ops.py' 2025-06-01T21:23:34.6045856Z adding 'torch/distributed/_shard/sharded_tensor/_ops/tensor_ops.py' 2025-06-01T21:23:34.6049850Z adding 'torch/distributed/_shard/sharding_plan/__init__.py' 2025-06-01T21:23:34.6053617Z adding 'torch/distributed/_shard/sharding_plan/api.py' 2025-06-01T21:23:34.6057821Z adding 'torch/distributed/_shard/sharding_spec/__init__.py' 2025-06-01T21:23:34.6062963Z adding 'torch/distributed/_shard/sharding_spec/_internals.py' 2025-06-01T21:23:34.6068690Z adding 'torch/distributed/_shard/sharding_spec/api.py' 2025-06-01T21:23:34.6074145Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec.py' 2025-06-01T21:23:34.6078217Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/__init__.py' 2025-06-01T21:23:34.6084345Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py' 2025-06-01T21:23:34.6090454Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding.py' 2025-06-01T21:23:34.6098286Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py' 2025-06-01T21:23:34.6102349Z adding 'torch/distributed/_sharded_tensor/__init__.py' 2025-06-01T21:23:34.6106309Z adding 'torch/distributed/_sharding_spec/__init__.py' 2025-06-01T21:23:34.6126666Z adding 'torch/distributed/_symmetric_memory/__init__.py' 2025-06-01T21:23:34.6132105Z adding 'torch/distributed/_tensor/__init__.py' 2025-06-01T21:23:34.6135147Z adding 'torch/distributed/_tensor/api.py' 2025-06-01T21:23:34.6138129Z adding 'torch/distributed/_tensor/placement_types.py' 2025-06-01T21:23:34.6141983Z adding 'torch/distributed/_tools/__init__.py' 2025-06-01T21:23:34.6145291Z adding 'torch/distributed/_tools/common_utils.py' 2025-06-01T21:23:34.6150099Z adding 'torch/distributed/_tools/fake_collectives.py' 2025-06-01T21:23:34.6158628Z adding 'torch/distributed/_tools/fsdp2_mem_tracker.py' 2025-06-01T21:23:34.6164554Z adding 'torch/distributed/_tools/ilp_utils.py' 2025-06-01T21:23:34.6179619Z adding 'torch/distributed/_tools/mem_tracker.py' 2025-06-01T21:23:34.6186324Z adding 'torch/distributed/_tools/memory_tracker.py' 2025-06-01T21:23:34.6191666Z adding 'torch/distributed/_tools/mod_tracker.py' 2025-06-01T21:23:34.6199819Z adding 'torch/distributed/_tools/runtime_estimator.py' 2025-06-01T21:23:34.6214814Z adding 'torch/distributed/_tools/sac_estimator.py' 2025-06-01T21:23:34.6221436Z adding 'torch/distributed/_tools/sac_ilp.py' 2025-06-01T21:23:34.6225615Z adding 'torch/distributed/algorithms/__init__.py' 2025-06-01T21:23:34.6231952Z adding 'torch/distributed/algorithms/join.py' 2025-06-01T21:23:34.6236089Z adding 'torch/distributed/algorithms/_checkpoint/__init__.py' 2025-06-01T21:23:34.6242035Z adding 'torch/distributed/algorithms/_checkpoint/checkpoint_wrapper.py' 2025-06-01T21:23:34.6246016Z adding 'torch/distributed/algorithms/_comm_hooks/__init__.py' 2025-06-01T21:23:34.6250452Z adding 'torch/distributed/algorithms/_comm_hooks/default_hooks.py' 2025-06-01T21:23:34.6254321Z adding 'torch/distributed/algorithms/_optimizer_overlap/__init__.py' 2025-06-01T21:23:34.6258076Z adding 'torch/distributed/algorithms/_optimizer_overlap/optimizer_overlap.py' 2025-06-01T21:23:34.6261752Z adding 'torch/distributed/algorithms/_quantization/__init__.py' 2025-06-01T21:23:34.6265921Z adding 'torch/distributed/algorithms/_quantization/quantization.py' 2025-06-01T21:23:34.6270711Z adding 'torch/distributed/algorithms/ddp_comm_hooks/__init__.py' 2025-06-01T21:23:34.6278004Z adding 'torch/distributed/algorithms/ddp_comm_hooks/ddp_zero_hook.py' 2025-06-01T21:23:34.6282068Z adding 'torch/distributed/algorithms/ddp_comm_hooks/debugging_hooks.py' 2025-06-01T21:23:34.6286354Z adding 'torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py' 2025-06-01T21:23:34.6290392Z adding 'torch/distributed/algorithms/ddp_comm_hooks/mixed_precision_hooks.py' 2025-06-01T21:23:34.6294864Z adding 'torch/distributed/algorithms/ddp_comm_hooks/optimizer_overlap_hooks.py' 2025-06-01T21:23:34.6299220Z adding 'torch/distributed/algorithms/ddp_comm_hooks/post_localSGD_hook.py' 2025-06-01T21:23:34.6313161Z adding 'torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py' 2025-06-01T21:23:34.6318744Z adding 'torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py' 2025-06-01T21:23:34.6322705Z adding 'torch/distributed/algorithms/model_averaging/__init__.py' 2025-06-01T21:23:34.6326917Z adding 'torch/distributed/algorithms/model_averaging/averagers.py' 2025-06-01T21:23:34.6332306Z adding 'torch/distributed/algorithms/model_averaging/hierarchical_model_averager.py' 2025-06-01T21:23:34.6336246Z adding 'torch/distributed/algorithms/model_averaging/utils.py' 2025-06-01T21:23:34.6340400Z adding 'torch/distributed/autograd/__init__.py' 2025-06-01T21:23:34.6344933Z adding 'torch/distributed/checkpoint/__init__.py' 2025-06-01T21:23:34.6348182Z adding 'torch/distributed/checkpoint/_async_executor.py' 2025-06-01T21:23:34.6353718Z adding 'torch/distributed/checkpoint/_async_process_executor.py' 2025-06-01T21:23:34.6357395Z adding 'torch/distributed/checkpoint/_async_thread_executor.py' 2025-06-01T21:23:34.6360982Z adding 'torch/distributed/checkpoint/_checkpointer.py' 2025-06-01T21:23:34.6364894Z adding 'torch/distributed/checkpoint/_dedup_save_plans.py' 2025-06-01T21:23:34.6368435Z adding 'torch/distributed/checkpoint/_dedup_tensors.py' 2025-06-01T21:23:34.6373214Z adding 'torch/distributed/checkpoint/_extension.py' 2025-06-01T21:23:34.6377648Z adding 'torch/distributed/checkpoint/_fsspec_filesystem.py' 2025-06-01T21:23:34.6381077Z adding 'torch/distributed/checkpoint/_hf_planner.py' 2025-06-01T21:23:34.6386631Z adding 'torch/distributed/checkpoint/_hf_storage.py' 2025-06-01T21:23:34.6390578Z adding 'torch/distributed/checkpoint/_nested_dict.py' 2025-06-01T21:23:34.6394601Z adding 'torch/distributed/checkpoint/_sharded_tensor_utils.py' 2025-06-01T21:23:34.6398175Z adding 'torch/distributed/checkpoint/_storage_utils.py' 2025-06-01T21:23:34.6402657Z adding 'torch/distributed/checkpoint/_traverse.py' 2025-06-01T21:23:34.6405842Z adding 'torch/distributed/checkpoint/_version.py' 2025-06-01T21:23:34.6409341Z adding 'torch/distributed/checkpoint/api.py' 2025-06-01T21:23:34.6419002Z adding 'torch/distributed/checkpoint/default_planner.py' 2025-06-01T21:23:34.6431601Z adding 'torch/distributed/checkpoint/filesystem.py' 2025-06-01T21:23:34.6437808Z adding 'torch/distributed/checkpoint/format_utils.py' 2025-06-01T21:23:34.6442017Z adding 'torch/distributed/checkpoint/logger.py' 2025-06-01T21:23:34.6445092Z adding 'torch/distributed/checkpoint/logging_handlers.py' 2025-06-01T21:23:34.6449439Z adding 'torch/distributed/checkpoint/metadata.py' 2025-06-01T21:23:34.6455726Z adding 'torch/distributed/checkpoint/optimizer.py' 2025-06-01T21:23:34.6463084Z adding 'torch/distributed/checkpoint/planner.py' 2025-06-01T21:23:34.6470566Z adding 'torch/distributed/checkpoint/planner_helpers.py' 2025-06-01T21:23:34.6474438Z adding 'torch/distributed/checkpoint/resharding.py' 2025-06-01T21:23:34.6482012Z adding 'torch/distributed/checkpoint/staging.py' 2025-06-01T21:23:34.6498565Z adding 'torch/distributed/checkpoint/state_dict.py' 2025-06-01T21:23:34.6506123Z adding 'torch/distributed/checkpoint/state_dict_loader.py' 2025-06-01T21:23:34.6513430Z adding 'torch/distributed/checkpoint/state_dict_saver.py' 2025-06-01T21:23:34.6516572Z adding 'torch/distributed/checkpoint/stateful.py' 2025-06-01T21:23:34.6521572Z adding 'torch/distributed/checkpoint/storage.py' 2025-06-01T21:23:34.6529601Z adding 'torch/distributed/checkpoint/utils.py' 2025-06-01T21:23:34.6535486Z adding 'torch/distributed/elastic/__init__.py' 2025-06-01T21:23:34.6537785Z adding 'torch/distributed/elastic/control_plane.py' 2025-06-01T21:23:34.6541634Z adding 'torch/distributed/elastic/agent/__init__.py' 2025-06-01T21:23:34.6545863Z adding 'torch/distributed/elastic/agent/server/__init__.py' 2025-06-01T21:23:34.6560421Z adding 'torch/distributed/elastic/agent/server/api.py' 2025-06-01T21:23:34.6564970Z adding 'torch/distributed/elastic/agent/server/health_check_server.py' 2025-06-01T21:23:34.6571795Z adding 'torch/distributed/elastic/agent/server/local_elastic_agent.py' 2025-06-01T21:23:34.6577245Z adding 'torch/distributed/elastic/events/__init__.py' 2025-06-01T21:23:34.6581343Z adding 'torch/distributed/elastic/events/api.py' 2025-06-01T21:23:34.6584688Z adding 'torch/distributed/elastic/events/handlers.py' 2025-06-01T21:23:34.6589697Z adding 'torch/distributed/elastic/metrics/__init__.py' 2025-06-01T21:23:34.6594202Z adding 'torch/distributed/elastic/metrics/api.py' 2025-06-01T21:23:34.6600065Z adding 'torch/distributed/elastic/multiprocessing/__init__.py' 2025-06-01T21:23:34.6612687Z adding 'torch/distributed/elastic/multiprocessing/api.py' 2025-06-01T21:23:34.6617254Z adding 'torch/distributed/elastic/multiprocessing/redirects.py' 2025-06-01T21:23:34.6621497Z adding 'torch/distributed/elastic/multiprocessing/tail_log.py' 2025-06-01T21:23:34.6629493Z adding 'torch/distributed/elastic/multiprocessing/errors/__init__.py' 2025-06-01T21:23:34.6635033Z adding 'torch/distributed/elastic/multiprocessing/errors/error_handler.py' 2025-06-01T21:23:34.6637759Z adding 'torch/distributed/elastic/multiprocessing/errors/handlers.py' 2025-06-01T21:23:34.6641627Z adding 'torch/distributed/elastic/multiprocessing/subprocess_handler/__init__.py' 2025-06-01T21:23:34.6644715Z adding 'torch/distributed/elastic/multiprocessing/subprocess_handler/handlers.py' 2025-06-01T21:23:34.6648285Z adding 'torch/distributed/elastic/multiprocessing/subprocess_handler/subprocess_handler.py' 2025-06-01T21:23:34.6653681Z adding 'torch/distributed/elastic/rendezvous/__init__.py' 2025-06-01T21:23:34.6657226Z adding 'torch/distributed/elastic/rendezvous/_etcd_stub.py' 2025-06-01T21:23:34.6663214Z adding 'torch/distributed/elastic/rendezvous/api.py' 2025-06-01T21:23:34.6669570Z adding 'torch/distributed/elastic/rendezvous/c10d_rendezvous_backend.py' 2025-06-01T21:23:34.6685086Z adding 'torch/distributed/elastic/rendezvous/dynamic_rendezvous.py' 2025-06-01T21:23:34.6701011Z adding 'torch/distributed/elastic/rendezvous/etcd_rendezvous.py' 2025-06-01T21:23:34.6706819Z adding 'torch/distributed/elastic/rendezvous/etcd_rendezvous_backend.py' 2025-06-01T21:23:34.6719623Z adding 'torch/distributed/elastic/rendezvous/etcd_server.py' 2025-06-01T21:23:34.6720095Z adding 'torch/distributed/elastic/rendezvous/etcd_store.py' 2025-06-01T21:23:34.6722959Z adding 'torch/distributed/elastic/rendezvous/registry.py' 2025-06-01T21:23:34.6726849Z adding 'torch/distributed/elastic/rendezvous/static_tcp_rendezvous.py' 2025-06-01T21:23:34.6731920Z adding 'torch/distributed/elastic/rendezvous/utils.py' 2025-06-01T21:23:34.6736435Z adding 'torch/distributed/elastic/timer/__init__.py' 2025-06-01T21:23:34.6741830Z adding 'torch/distributed/elastic/timer/api.py' 2025-06-01T21:23:34.6745375Z adding 'torch/distributed/elastic/timer/debug_info_logging.py' 2025-06-01T21:23:34.6752319Z adding 'torch/distributed/elastic/timer/file_based_local_timer.py' 2025-06-01T21:23:34.6756676Z adding 'torch/distributed/elastic/timer/local_timer.py' 2025-06-01T21:23:34.6760640Z adding 'torch/distributed/elastic/utils/__init__.py' 2025-06-01T21:23:34.6764097Z adding 'torch/distributed/elastic/utils/api.py' 2025-06-01T21:23:34.6768596Z adding 'torch/distributed/elastic/utils/distributed.py' 2025-06-01T21:23:34.6771845Z adding 'torch/distributed/elastic/utils/log_level.py' 2025-06-01T21:23:34.6775399Z adding 'torch/distributed/elastic/utils/logging.py' 2025-06-01T21:23:34.6780187Z adding 'torch/distributed/elastic/utils/store.py' 2025-06-01T21:23:34.6784348Z adding 'torch/distributed/elastic/utils/data/__init__.py' 2025-06-01T21:23:34.6787788Z adding 'torch/distributed/elastic/utils/data/cycling_iterator.py' 2025-06-01T21:23:34.6791878Z adding 'torch/distributed/elastic/utils/data/elastic_distributed_sampler.py' 2025-06-01T21:23:34.6796159Z adding 'torch/distributed/fsdp/__init__.py' 2025-06-01T21:23:34.6805631Z adding 'torch/distributed/fsdp/_common_utils.py' 2025-06-01T21:23:34.6810506Z adding 'torch/distributed/fsdp/_debug_utils.py' 2025-06-01T21:23:34.6814276Z adding 'torch/distributed/fsdp/_dynamo_utils.py' 2025-06-01T21:23:34.6820711Z adding 'torch/distributed/fsdp/_exec_order_utils.py' 2025-06-01T21:23:34.6862924Z adding 'torch/distributed/fsdp/_flat_param.py' 2025-06-01T21:23:34.6869674Z adding 'torch/distributed/fsdp/_fsdp_extensions.py' 2025-06-01T21:23:34.6886569Z adding 'torch/distributed/fsdp/_init_utils.py' 2025-06-01T21:23:34.6890979Z adding 'torch/distributed/fsdp/_limiter_utils.py' 2025-06-01T21:23:34.6923000Z adding 'torch/distributed/fsdp/_optim_utils.py' 2025-06-01T21:23:34.6949151Z adding 'torch/distributed/fsdp/_runtime_utils.py' 2025-06-01T21:23:34.6955045Z adding 'torch/distributed/fsdp/_shard_utils.py' 2025-06-01T21:23:34.6966527Z adding 'torch/distributed/fsdp/_state_dict_utils.py' 2025-06-01T21:23:34.6972889Z adding 'torch/distributed/fsdp/_trace_utils.py' 2025-06-01T21:23:34.6977438Z adding 'torch/distributed/fsdp/_traversal_utils.py' 2025-06-01T21:23:34.6983342Z adding 'torch/distributed/fsdp/_unshard_param_utils.py' 2025-06-01T21:23:34.6989329Z adding 'torch/distributed/fsdp/_wrap_utils.py' 2025-06-01T21:23:34.6997913Z adding 'torch/distributed/fsdp/api.py' 2025-06-01T21:23:34.7033995Z adding 'torch/distributed/fsdp/fully_sharded_data_parallel.py' 2025-06-01T21:23:34.7043442Z adding 'torch/distributed/fsdp/sharded_grad_scaler.py' 2025-06-01T21:23:34.7053122Z adding 'torch/distributed/fsdp/wrap.py' 2025-06-01T21:23:34.7057878Z adding 'torch/distributed/fsdp/_fully_shard/__init__.py' 2025-06-01T21:23:34.7061576Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_api.py' 2025-06-01T21:23:34.7071039Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py' 2025-06-01T21:23:34.7075911Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_common.py' 2025-06-01T21:23:34.7081265Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_init.py' 2025-06-01T21:23:34.7096117Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_param.py' 2025-06-01T21:23:34.7109327Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py' 2025-06-01T21:23:34.7117143Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_state.py' 2025-06-01T21:23:34.7127890Z adding 'torch/distributed/fsdp/_fully_shard/_fully_shard.py' 2025-06-01T21:23:34.7132301Z adding 'torch/distributed/launcher/__init__.py' 2025-06-01T21:23:34.7138078Z adding 'torch/distributed/launcher/api.py' 2025-06-01T21:23:34.7142061Z adding 'torch/distributed/nn/__init__.py' 2025-06-01T21:23:34.7148195Z adding 'torch/distributed/nn/functional.py' 2025-06-01T21:23:34.7152216Z adding 'torch/distributed/nn/api/__init__.py' 2025-06-01T21:23:34.7162099Z adding 'torch/distributed/nn/api/remote_module.py' 2025-06-01T21:23:34.7166537Z adding 'torch/distributed/nn/jit/__init__.py' 2025-06-01T21:23:34.7170650Z adding 'torch/distributed/nn/jit/instantiator.py' 2025-06-01T21:23:34.7174420Z adding 'torch/distributed/nn/jit/templates/__init__.py' 2025-06-01T21:23:34.7178156Z adding 'torch/distributed/nn/jit/templates/remote_module_template.py' 2025-06-01T21:23:34.7182295Z adding 'torch/distributed/optim/__init__.py' 2025-06-01T21:23:34.7185559Z adding 'torch/distributed/optim/_deprecation_warning.py' 2025-06-01T21:23:34.7190100Z adding 'torch/distributed/optim/apply_optimizer_in_backward.py' 2025-06-01T21:23:34.7194070Z adding 'torch/distributed/optim/functional_adadelta.py' 2025-06-01T21:23:34.7198079Z adding 'torch/distributed/optim/functional_adagrad.py' 2025-06-01T21:23:34.7202508Z adding 'torch/distributed/optim/functional_adam.py' 2025-06-01T21:23:34.7206651Z adding 'torch/distributed/optim/functional_adamax.py' 2025-06-01T21:23:34.7211114Z adding 'torch/distributed/optim/functional_adamw.py' 2025-06-01T21:23:34.7215295Z adding 'torch/distributed/optim/functional_rmsprop.py' 2025-06-01T21:23:34.7219216Z adding 'torch/distributed/optim/functional_rprop.py' 2025-06-01T21:23:34.7223440Z adding 'torch/distributed/optim/functional_sgd.py' 2025-06-01T21:23:34.7229920Z adding 'torch/distributed/optim/named_optimizer.py' 2025-06-01T21:23:34.7235656Z adding 'torch/distributed/optim/optimizer.py' 2025-06-01T21:23:34.7239906Z adding 'torch/distributed/optim/post_localSGD_optimizer.py' 2025-06-01T21:23:34.7243371Z adding 'torch/distributed/optim/utils.py' 2025-06-01T21:23:34.7268360Z adding 'torch/distributed/optim/zero_redundancy_optimizer.py' 2025-06-01T21:23:34.7273558Z adding 'torch/distributed/optim/zero_redundancy_optimizer.pyi' 2025-06-01T21:23:34.7293999Z adding 'torch/distributed/pipelining/_IR.py' 2025-06-01T21:23:34.7298194Z adding 'torch/distributed/pipelining/__init__.py' 2025-06-01T21:23:34.7305520Z adding 'torch/distributed/pipelining/_backward.py' 2025-06-01T21:23:34.7309178Z adding 'torch/distributed/pipelining/_debug.py' 2025-06-01T21:23:34.7314098Z adding 'torch/distributed/pipelining/_schedule_visualizer.py' 2025-06-01T21:23:34.7317212Z adding 'torch/distributed/pipelining/_unflatten.py' 2025-06-01T21:23:34.7321125Z adding 'torch/distributed/pipelining/_utils.py' 2025-06-01T21:23:34.7328916Z adding 'torch/distributed/pipelining/microbatch.py' 2025-06-01T21:23:34.7360587Z adding 'torch/distributed/pipelining/schedules.py' 2025-06-01T21:23:34.7385969Z adding 'torch/distributed/pipelining/stage.py' 2025-06-01T21:23:34.7393802Z adding 'torch/distributed/rpc/__init__.py' 2025-06-01T21:23:34.7397561Z adding 'torch/distributed/rpc/_utils.py' 2025-06-01T21:23:34.7410827Z adding 'torch/distributed/rpc/api.py' 2025-06-01T21:23:34.7419048Z adding 'torch/distributed/rpc/backend_registry.py' 2025-06-01T21:23:34.7423113Z adding 'torch/distributed/rpc/constants.py' 2025-06-01T21:23:34.7432416Z adding 'torch/distributed/rpc/functions.py' 2025-06-01T21:23:34.7434478Z adding 'torch/distributed/rpc/internal.py' 2025-06-01T21:23:34.7439416Z adding 'torch/distributed/rpc/options.py' 2025-06-01T21:23:34.7443187Z adding 'torch/distributed/rpc/rref_proxy.py' 2025-06-01T21:23:34.7448238Z adding 'torch/distributed/rpc/server_process_global_profiler.py' 2025-06-01T21:23:34.7452525Z adding 'torch/distributed/rpc/_testing/__init__.py' 2025-06-01T21:23:34.7456758Z adding 'torch/distributed/rpc/_testing/faulty_agent_backend_registry.py' 2025-06-01T21:23:34.7460499Z adding 'torch/distributed/tensor/__init__.py' 2025-06-01T21:23:34.7479316Z adding 'torch/distributed/tensor/_api.py' 2025-06-01T21:23:34.7487318Z adding 'torch/distributed/tensor/_collective_utils.py' 2025-06-01T21:23:34.7495424Z adding 'torch/distributed/tensor/_dispatch.py' 2025-06-01T21:23:34.7501256Z adding 'torch/distributed/tensor/_dtensor_spec.py' 2025-06-01T21:23:34.7509745Z adding 'torch/distributed/tensor/_op_schema.py' 2025-06-01T21:23:34.7517340Z adding 'torch/distributed/tensor/_random.py' 2025-06-01T21:23:34.7524331Z adding 'torch/distributed/tensor/_redistribute.py' 2025-06-01T21:23:34.7532936Z adding 'torch/distributed/tensor/_sharding_prop.py' 2025-06-01T21:23:34.7539128Z adding 'torch/distributed/tensor/_shards_wrapper.py' 2025-06-01T21:23:34.7544203Z adding 'torch/distributed/tensor/_tp_conv.py' 2025-06-01T21:23:34.7551685Z adding 'torch/distributed/tensor/_utils.py' 2025-06-01T21:23:34.7555233Z adding 'torch/distributed/tensor/device_mesh.py' 2025-06-01T21:23:34.7565668Z adding 'torch/distributed/tensor/placement_types.py' 2025-06-01T21:23:34.7570458Z adding 'torch/distributed/tensor/_ops/__init__.py' 2025-06-01T21:23:34.7614135Z adding 'torch/distributed/tensor/_ops/_common_rules.py' 2025-06-01T21:23:34.7614552Z adding 'torch/distributed/tensor/_ops/_conv_ops.py' 2025-06-01T21:23:34.7614936Z adding 'torch/distributed/tensor/_ops/_einsum_strategy.py' 2025-06-01T21:23:34.7615346Z adding 'torch/distributed/tensor/_ops/_embedding_ops.py' 2025-06-01T21:23:34.7615705Z adding 'torch/distributed/tensor/_ops/_math_ops.py' 2025-06-01T21:23:34.7616650Z adding 'torch/distributed/tensor/_ops/_matrix_ops.py' 2025-06-01T21:23:34.7626146Z adding 'torch/distributed/tensor/_ops/_pointwise_ops.py' 2025-06-01T21:23:34.7629009Z adding 'torch/distributed/tensor/_ops/_random_ops.py' 2025-06-01T21:23:34.7641542Z adding 'torch/distributed/tensor/_ops/_tensor_ops.py' 2025-06-01T21:23:34.7653123Z adding 'torch/distributed/tensor/_ops/_view_ops.py' 2025-06-01T21:23:34.7659391Z adding 'torch/distributed/tensor/_ops/utils.py' 2025-06-01T21:23:34.7663965Z adding 'torch/distributed/tensor/debug/__init__.py' 2025-06-01T21:23:34.7673453Z adding 'torch/distributed/tensor/debug/_comm_mode.py' 2025-06-01T21:23:34.7677900Z adding 'torch/distributed/tensor/debug/_op_coverage.py' 2025-06-01T21:23:34.7682801Z adding 'torch/distributed/tensor/debug/_visualize_sharding.py' 2025-06-01T21:23:34.7687132Z adding 'torch/distributed/tensor/experimental/__init__.py' 2025-06-01T21:23:34.7703674Z adding 'torch/distributed/tensor/experimental/_attention.py' 2025-06-01T21:23:34.7710391Z adding 'torch/distributed/tensor/experimental/_func_map.py' 2025-06-01T21:23:34.7714997Z adding 'torch/distributed/tensor/experimental/_register_sharding.py' 2025-06-01T21:23:34.7722888Z adding 'torch/distributed/tensor/experimental/_tp_transform.py' 2025-06-01T21:23:34.7727412Z adding 'torch/distributed/tensor/parallel/__init__.py' 2025-06-01T21:23:34.7730628Z adding 'torch/distributed/tensor/parallel/_data_parallel_utils.py' 2025-06-01T21:23:34.7734127Z adding 'torch/distributed/tensor/parallel/_utils.py' 2025-06-01T21:23:34.7738520Z adding 'torch/distributed/tensor/parallel/api.py' 2025-06-01T21:23:34.7742529Z adding 'torch/distributed/tensor/parallel/ddp.py' 2025-06-01T21:23:34.7748971Z adding 'torch/distributed/tensor/parallel/fsdp.py' 2025-06-01T21:23:34.7753574Z adding 'torch/distributed/tensor/parallel/input_reshard.py' 2025-06-01T21:23:34.7760657Z adding 'torch/distributed/tensor/parallel/loss.py' 2025-06-01T21:23:34.7770994Z adding 'torch/distributed/tensor/parallel/style.py' 2025-06-01T21:23:34.7777728Z adding 'torch/distributions/__init__.py' 2025-06-01T21:23:34.7781913Z adding 'torch/distributions/bernoulli.py' 2025-06-01T21:23:34.7785827Z adding 'torch/distributions/beta.py' 2025-06-01T21:23:34.7790215Z adding 'torch/distributions/binomial.py' 2025-06-01T21:23:34.7794682Z adding 'torch/distributions/categorical.py' 2025-06-01T21:23:34.7798494Z adding 'torch/distributions/cauchy.py' 2025-06-01T21:23:34.7801643Z adding 'torch/distributions/chi2.py' 2025-06-01T21:23:34.7806646Z adding 'torch/distributions/constraint_registry.py' 2025-06-01T21:23:34.7814267Z adding 'torch/distributions/constraints.py' 2025-06-01T21:23:34.7819794Z adding 'torch/distributions/continuous_bernoulli.py' 2025-06-01T21:23:34.7823966Z adding 'torch/distributions/dirichlet.py' 2025-06-01T21:23:34.7829743Z adding 'torch/distributions/distribution.py' 2025-06-01T21:23:34.7833561Z adding 'torch/distributions/exp_family.py' 2025-06-01T21:23:34.7837032Z adding 'torch/distributions/exponential.py' 2025-06-01T21:23:34.7840915Z adding 'torch/distributions/fishersnedecor.py' 2025-06-01T21:23:34.7844703Z adding 'torch/distributions/gamma.py' 2025-06-01T21:23:34.7848932Z adding 'torch/distributions/generalized_pareto.py' 2025-06-01T21:23:34.7853306Z adding 'torch/distributions/geometric.py' 2025-06-01T21:23:34.7857021Z adding 'torch/distributions/gumbel.py' 2025-06-01T21:23:34.7860607Z adding 'torch/distributions/half_cauchy.py' 2025-06-01T21:23:34.7864115Z adding 'torch/distributions/half_normal.py' 2025-06-01T21:23:34.7868009Z adding 'torch/distributions/independent.py' 2025-06-01T21:23:34.7871687Z adding 'torch/distributions/inverse_gamma.py' 2025-06-01T21:23:34.7881895Z adding 'torch/distributions/kl.py' 2025-06-01T21:23:34.7886373Z adding 'torch/distributions/kumaraswamy.py' 2025-06-01T21:23:34.7890128Z adding 'torch/distributions/laplace.py' 2025-06-01T21:23:34.7894806Z adding 'torch/distributions/lkj_cholesky.py' 2025-06-01T21:23:34.7898380Z adding 'torch/distributions/log_normal.py' 2025-06-01T21:23:34.7901863Z adding 'torch/distributions/logistic_normal.py' 2025-06-01T21:23:34.7907141Z adding 'torch/distributions/lowrank_multivariate_normal.py' 2025-06-01T21:23:34.7912132Z adding 'torch/distributions/mixture_same_family.py' 2025-06-01T21:23:34.7916592Z adding 'torch/distributions/multinomial.py' 2025-06-01T21:23:34.7922076Z adding 'torch/distributions/multivariate_normal.py' 2025-06-01T21:23:34.7926397Z adding 'torch/distributions/negative_binomial.py' 2025-06-01T21:23:34.7930262Z adding 'torch/distributions/normal.py' 2025-06-01T21:23:34.7934390Z adding 'torch/distributions/one_hot_categorical.py' 2025-06-01T21:23:34.7937969Z adding 'torch/distributions/pareto.py' 2025-06-01T21:23:34.7941497Z adding 'torch/distributions/poisson.py' 2025-06-01T21:23:34.7945894Z adding 'torch/distributions/relaxed_bernoulli.py' 2025-06-01T21:23:34.7950086Z adding 'torch/distributions/relaxed_categorical.py' 2025-06-01T21:23:34.7954179Z adding 'torch/distributions/studentT.py' 2025-06-01T21:23:34.7959511Z adding 'torch/distributions/transformed_distribution.py' 2025-06-01T21:23:34.7972711Z adding 'torch/distributions/transforms.py' 2025-06-01T21:23:34.7978629Z adding 'torch/distributions/uniform.py' 2025-06-01T21:23:34.7983970Z adding 'torch/distributions/utils.py' 2025-06-01T21:23:34.8023039Z adding 'torch/distributions/von_mises.py' 2025-06-01T21:23:34.8023387Z adding 'torch/distributions/weibull.py' 2025-06-01T21:23:34.8023731Z adding 'torch/distributions/wishart.py' 2025-06-01T21:23:34.8024086Z adding 'torch/export/__init__.py' 2025-06-01T21:23:34.8024403Z adding 'torch/export/_draft_export.py' 2025-06-01T21:23:34.8026754Z adding 'torch/export/_remove_auto_functionalized_pass.py' 2025-06-01T21:23:34.8029627Z adding 'torch/export/_remove_effect_tokens_pass.py' 2025-06-01T21:23:34.8033179Z adding 'torch/export/_safeguard.py' 2025-06-01T21:23:34.8041108Z adding 'torch/export/_swap.py' 2025-06-01T21:23:34.8073634Z adding 'torch/export/_trace.py' 2025-06-01T21:23:34.8079208Z adding 'torch/export/_tree_utils.py' 2025-06-01T21:23:34.8086295Z adding 'torch/export/_unlift.py' 2025-06-01T21:23:34.8089681Z adding 'torch/export/_wrapper_utils.py' 2025-06-01T21:23:34.8092556Z adding 'torch/export/custom_obj.py' 2025-06-01T21:23:34.8095614Z adding 'torch/export/custom_ops.py' 2025-06-01T21:23:34.8099667Z adding 'torch/export/decomp_utils.py' 2025-06-01T21:23:34.8118730Z adding 'torch/export/dynamic_shapes.py' 2025-06-01T21:23:34.8141520Z adding 'torch/export/exported_program.py' 2025-06-01T21:23:34.8150987Z adding 'torch/export/graph_signature.py' 2025-06-01T21:23:34.8176536Z adding 'torch/export/unflatten.py' 2025-06-01T21:23:34.8185216Z adding 'torch/export/experimental/__init__.py' 2025-06-01T21:23:34.8189710Z adding 'torch/export/passes/__init__.py' 2025-06-01T21:23:34.8193434Z adding 'torch/export/pt2_archive/__init__.py' 2025-06-01T21:23:34.8197552Z adding 'torch/export/pt2_archive/_package.py' 2025-06-01T21:23:34.8200815Z adding 'torch/export/pt2_archive/constants.py' 2025-06-01T21:23:34.8213725Z adding 'torch/fft/__init__.py' 2025-06-01T21:23:34.8218778Z adding 'torch/func/__init__.py' 2025-06-01T21:23:34.8225985Z adding 'torch/futures/__init__.py' 2025-06-01T21:23:34.8231319Z adding 'torch/fx/__init__.py' 2025-06-01T21:23:34.8234584Z adding 'torch/fx/_compatibility.py' 2025-06-01T21:23:34.8242748Z adding 'torch/fx/_graph_pickler.py' 2025-06-01T21:23:34.8247800Z adding 'torch/fx/_lazy_graph_module.py' 2025-06-01T21:23:34.8251642Z adding 'torch/fx/_pytree.py' 2025-06-01T21:23:34.8270853Z adding 'torch/fx/_symbolic_trace.py' 2025-06-01T21:23:34.8275394Z adding 'torch/fx/_utils.py' 2025-06-01T21:23:34.8278632Z adding 'torch/fx/annotate.py' 2025-06-01T21:23:34.8281593Z adding 'torch/fx/config.py' 2025-06-01T21:23:34.8310084Z adding 'torch/fx/graph.py' 2025-06-01T21:23:34.8327846Z adding 'torch/fx/graph_module.py' 2025-06-01T21:23:34.8332578Z adding 'torch/fx/immutable_collections.py' 2025-06-01T21:23:34.8340712Z adding 'torch/fx/interpreter.py' 2025-06-01T21:23:34.8355010Z adding 'torch/fx/node.py' 2025-06-01T21:23:34.8364771Z adding 'torch/fx/operator_schemas.py' 2025-06-01T21:23:34.8376848Z adding 'torch/fx/proxy.py' 2025-06-01T21:23:34.8385060Z adding 'torch/fx/subgraph_rewriter.py' 2025-06-01T21:23:34.8389112Z adding 'torch/fx/tensor_type.py' 2025-06-01T21:23:34.8393821Z adding 'torch/fx/traceback.py' 2025-06-01T21:23:34.8398130Z adding 'torch/fx/experimental/__init__.py' 2025-06-01T21:23:34.8401438Z adding 'torch/fx/experimental/_backward_state.py' 2025-06-01T21:23:34.8405614Z adding 'torch/fx/experimental/_config.py' 2025-06-01T21:23:34.8409058Z adding 'torch/fx/experimental/_constant_symnode.py' 2025-06-01T21:23:34.8413092Z adding 'torch/fx/experimental/_dynamism.py' 2025-06-01T21:23:34.8429536Z adding 'torch/fx/experimental/accelerator_partitioner.py' 2025-06-01T21:23:34.8437011Z adding 'torch/fx/experimental/const_fold.py' 2025-06-01T21:23:34.8440602Z adding 'torch/fx/experimental/debug.py' 2025-06-01T21:23:34.8452382Z adding 'torch/fx/experimental/graph_gradual_typechecker.py' 2025-06-01T21:23:34.8457913Z adding 'torch/fx/experimental/merge_matmul.py' 2025-06-01T21:23:34.8463763Z adding 'torch/fx/experimental/meta_tracer.py' 2025-06-01T21:23:34.8468420Z adding 'torch/fx/experimental/normalize.py' 2025-06-01T21:23:34.8476492Z adding 'torch/fx/experimental/optimization.py' 2025-06-01T21:23:34.8482765Z adding 'torch/fx/experimental/partitioner_utils.py' 2025-06-01T21:23:34.8519182Z adding 'torch/fx/experimental/proxy_tensor.py' 2025-06-01T21:23:34.8530256Z adding 'torch/fx/experimental/recording.py' 2025-06-01T21:23:34.8533876Z adding 'torch/fx/experimental/refinement_types.py' 2025-06-01T21:23:34.8538364Z adding 'torch/fx/experimental/rewriter.py' 2025-06-01T21:23:34.8542732Z adding 'torch/fx/experimental/schema_type_annotation.py' 2025-06-01T21:23:34.8564273Z adding 'torch/fx/experimental/sym_node.py' 2025-06-01T21:23:34.8693378Z adding 'torch/fx/experimental/symbolic_shapes.py' 2025-06-01T21:23:34.8704632Z adding 'torch/fx/experimental/unify_refinements.py' 2025-06-01T21:23:34.8717298Z adding 'torch/fx/experimental/validator.py' 2025-06-01T21:23:34.8721946Z adding 'torch/fx/experimental/migrate_gradual_types/__init__.py' 2025-06-01T21:23:34.8727889Z adding 'torch/fx/experimental/migrate_gradual_types/constraint.py' 2025-06-01T21:23:34.8743151Z adding 'torch/fx/experimental/migrate_gradual_types/constraint_generator.py' 2025-06-01T21:23:34.8758389Z adding 'torch/fx/experimental/migrate_gradual_types/constraint_transformation.py' 2025-06-01T21:23:34.8762379Z adding 'torch/fx/experimental/migrate_gradual_types/operation.py' 2025-06-01T21:23:34.8768620Z adding 'torch/fx/experimental/migrate_gradual_types/transform_to_z3.py' 2025-06-01T21:23:34.8772359Z adding 'torch/fx/experimental/migrate_gradual_types/util.py' 2025-06-01T21:23:34.8775525Z adding 'torch/fx/experimental/migrate_gradual_types/z3_types.py' 2025-06-01T21:23:34.8779416Z adding 'torch/fx/experimental/unification/__init__.py' 2025-06-01T21:23:34.8783148Z adding 'torch/fx/experimental/unification/core.py' 2025-06-01T21:23:34.8786320Z adding 'torch/fx/experimental/unification/dispatch.py' 2025-06-01T21:23:34.8790231Z adding 'torch/fx/experimental/unification/match.py' 2025-06-01T21:23:34.8794005Z adding 'torch/fx/experimental/unification/more.py' 2025-06-01T21:23:34.8799713Z adding 'torch/fx/experimental/unification/unification_tools.py' 2025-06-01T21:23:34.8803887Z adding 'torch/fx/experimental/unification/utils.py' 2025-06-01T21:23:34.8807565Z adding 'torch/fx/experimental/unification/variable.py' 2025-06-01T21:23:34.8811445Z adding 'torch/fx/experimental/unification/multipledispatch/__init__.py' 2025-06-01T21:23:34.8815480Z adding 'torch/fx/experimental/unification/multipledispatch/conflict.py' 2025-06-01T21:23:34.8819297Z adding 'torch/fx/experimental/unification/multipledispatch/core.py' 2025-06-01T21:23:34.8826605Z adding 'torch/fx/experimental/unification/multipledispatch/dispatcher.py' 2025-06-01T21:23:34.8830885Z adding 'torch/fx/experimental/unification/multipledispatch/utils.py' 2025-06-01T21:23:34.8834629Z adding 'torch/fx/experimental/unification/multipledispatch/variadic.py' 2025-06-01T21:23:34.8838722Z adding 'torch/fx/passes/__init__.py' 2025-06-01T21:23:34.8845788Z adding 'torch/fx/passes/_tensorify_python_scalars.py' 2025-06-01T21:23:34.8849805Z adding 'torch/fx/passes/annotate_getitem_nodes.py' 2025-06-01T21:23:34.8853915Z adding 'torch/fx/passes/fake_tensor_prop.py' 2025-06-01T21:23:34.8861126Z adding 'torch/fx/passes/graph_drawer.py' 2025-06-01T21:23:34.8865746Z adding 'torch/fx/passes/graph_manipulation.py' 2025-06-01T21:23:34.8870494Z adding 'torch/fx/passes/graph_transform_observer.py' 2025-06-01T21:23:34.8882839Z adding 'torch/fx/passes/net_min_base.py' 2025-06-01T21:23:34.8888492Z adding 'torch/fx/passes/operator_support.py' 2025-06-01T21:23:34.8892455Z adding 'torch/fx/passes/param_fetch.py' 2025-06-01T21:23:34.8897351Z adding 'torch/fx/passes/pass_manager.py' 2025-06-01T21:23:34.8911600Z adding 'torch/fx/passes/reinplace.py' 2025-06-01T21:23:34.8922757Z adding 'torch/fx/passes/runtime_assert.py' 2025-06-01T21:23:34.8928487Z adding 'torch/fx/passes/shape_prop.py' 2025-06-01T21:23:34.8938555Z adding 'torch/fx/passes/split_module.py' 2025-06-01T21:23:34.8945307Z adding 'torch/fx/passes/split_utils.py' 2025-06-01T21:23:34.8958238Z adding 'torch/fx/passes/splitter_base.py' 2025-06-01T21:23:34.8964932Z adding 'torch/fx/passes/tools_common.py' 2025-06-01T21:23:34.8969158Z adding 'torch/fx/passes/backends/__init__.py' 2025-06-01T21:23:34.8973100Z adding 'torch/fx/passes/backends/cudagraphs.py' 2025-06-01T21:23:34.8976878Z adding 'torch/fx/passes/dialect/__init__.py' 2025-06-01T21:23:34.8980421Z adding 'torch/fx/passes/dialect/common/__init__.py' 2025-06-01T21:23:34.8984816Z adding 'torch/fx/passes/dialect/common/cse_pass.py' 2025-06-01T21:23:34.8989009Z adding 'torch/fx/passes/infra/__init__.py' 2025-06-01T21:23:34.8996753Z adding 'torch/fx/passes/infra/partitioner.py' 2025-06-01T21:23:34.9001167Z adding 'torch/fx/passes/infra/pass_base.py' 2025-06-01T21:23:34.9007106Z adding 'torch/fx/passes/infra/pass_manager.py' 2025-06-01T21:23:34.9011163Z adding 'torch/fx/passes/tests/__init__.py' 2025-06-01T21:23:34.9014502Z adding 'torch/fx/passes/tests/test_pass_manager.py' 2025-06-01T21:23:34.9018313Z adding 'torch/fx/passes/utils/__init__.py' 2025-06-01T21:23:34.9022131Z adding 'torch/fx/passes/utils/common.py' 2025-06-01T21:23:34.9028155Z adding 'torch/fx/passes/utils/fuser_utils.py' 2025-06-01T21:23:34.9035801Z adding 'torch/fx/passes/utils/matcher_utils.py' 2025-06-01T21:23:34.9040369Z adding 'torch/fx/passes/utils/matcher_with_name_node_map_utils.py' 2025-06-01T21:23:34.9044821Z adding 'torch/fx/passes/utils/source_matcher_utils.py' 2025-06-01T21:23:34.9054672Z adding 'torch/include/advisor-annotate.h' 2025-06-01T21:23:34.9068233Z adding 'torch/include/cpuinfo.h' 2025-06-01T21:23:34.9072670Z adding 'torch/include/dnnl.h' 2025-06-01T21:23:34.9075773Z adding 'torch/include/dnnl.hpp' 2025-06-01T21:23:34.9078829Z adding 'torch/include/dnnl_config.h' 2025-06-01T21:23:34.9081877Z adding 'torch/include/dnnl_debug.h' 2025-06-01T21:23:34.9084920Z adding 'torch/include/dnnl_ocl.h' 2025-06-01T21:23:34.9088494Z adding 'torch/include/dnnl_ocl.hpp' 2025-06-01T21:23:34.9091586Z adding 'torch/include/dnnl_sycl.h' 2025-06-01T21:23:34.9094675Z adding 'torch/include/dnnl_sycl.hpp' 2025-06-01T21:23:34.9097808Z adding 'torch/include/dnnl_sycl_types.h' 2025-06-01T21:23:34.9100862Z adding 'torch/include/dnnl_threadpool.h' 2025-06-01T21:23:34.9103955Z adding 'torch/include/dnnl_threadpool.hpp' 2025-06-01T21:23:34.9107063Z adding 'torch/include/dnnl_threadpool_iface.hpp' 2025-06-01T21:23:34.9110107Z adding 'torch/include/dnnl_types.h' 2025-06-01T21:23:34.9113186Z adding 'torch/include/dnnl_version.h' 2025-06-01T21:23:34.9116135Z adding 'torch/include/experiments-config.h' 2025-06-01T21:23:34.9118911Z adding 'torch/include/fp16.h' 2025-06-01T21:23:34.9124079Z adding 'torch/include/fxdiv.h' 2025-06-01T21:23:34.9128096Z adding 'torch/include/ittnotify-zca.h' 2025-06-01T21:23:34.9173615Z adding 'torch/include/ittnotify.h' 2025-06-01T21:23:34.9187593Z adding 'torch/include/jitprofiling.h' 2025-06-01T21:23:34.9191419Z adding 'torch/include/libittnotify.h' 2025-06-01T21:23:34.9194454Z adding 'torch/include/libshm.h' 2025-06-01T21:23:34.9204337Z adding 'torch/include/psimd.h' 2025-06-01T21:23:34.9226614Z adding 'torch/include/pthreadpool.h' 2025-06-01T21:23:34.9265609Z adding 'torch/include/sleef.h' 2025-06-01T21:23:34.9307145Z adding 'torch/include/xnnpack.h' 2025-06-01T21:23:34.9318039Z adding 'torch/include/ATen/ATen.h' 2025-06-01T21:23:34.9322266Z adding 'torch/include/ATen/AccumulateType.h' 2025-06-01T21:23:34.9325309Z adding 'torch/include/ATen/ArrayRef.h' 2025-06-01T21:23:34.9328066Z adding 'torch/include/ATen/Backend.h' 2025-06-01T21:23:34.9330790Z adding 'torch/include/ATen/Backtrace.h' 2025-06-01T21:23:34.9333764Z adding 'torch/include/ATen/BlasBackend.h' 2025-06-01T21:23:34.9339076Z adding 'torch/include/ATen/CPUApplyUtils.h' 2025-06-01T21:23:34.9342574Z adding 'torch/include/ATen/CPUFixedAllocator.h' 2025-06-01T21:23:34.9346048Z adding 'torch/include/ATen/CPUFunctions.h' 2025-06-01T21:23:34.9352431Z adding 'torch/include/ATen/CPUFunctions_inl.h' 2025-06-01T21:23:34.9356551Z adding 'torch/include/ATen/CPUGeneratorImpl.h' 2025-06-01T21:23:34.9360118Z adding 'torch/include/ATen/CUDAFunctions.h' 2025-06-01T21:23:34.9367023Z adding 'torch/include/ATen/CUDAFunctions_inl.h' 2025-06-01T21:23:34.9371125Z adding 'torch/include/ATen/CachedTensorUtils.h' 2025-06-01T21:23:34.9374816Z adding 'torch/include/ATen/CollapseDims.h' 2025-06-01T21:23:34.9378453Z adding 'torch/include/ATen/CompositeExplicitAutogradFunctions.h' 2025-06-01T21:23:34.9385975Z adding 'torch/include/ATen/CompositeExplicitAutogradFunctions_inl.h' 2025-06-01T21:23:34.9390462Z adding 'torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions.h' 2025-06-01T21:23:34.9395876Z adding 'torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions_inl.h' 2025-06-01T21:23:34.9399990Z adding 'torch/include/ATen/CompositeImplicitAutogradFunctions.h' 2025-06-01T21:23:34.9406640Z adding 'torch/include/ATen/CompositeImplicitAutogradFunctions_inl.h' 2025-06-01T21:23:34.9411119Z adding 'torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions.h' 2025-06-01T21:23:34.9414496Z adding 'torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions_inl.h' 2025-06-01T21:23:34.9417413Z adding 'torch/include/ATen/Config.h' 2025-06-01T21:23:34.9425722Z adding 'torch/include/ATen/Context.h' 2025-06-01T21:23:34.9429608Z adding 'torch/include/ATen/DLConvertor.h' 2025-06-01T21:23:34.9432451Z adding 'torch/include/ATen/Device.h' 2025-06-01T21:23:34.9436174Z adding 'torch/include/ATen/DeviceAccelerator.h' 2025-06-01T21:23:34.9439509Z adding 'torch/include/ATen/DeviceGuard.h' 2025-06-01T21:23:34.9442314Z adding 'torch/include/ATen/DimVector.h' 2025-06-01T21:23:34.9445102Z adding 'torch/include/ATen/Dimname.h' 2025-06-01T21:23:34.9453914Z adding 'torch/include/ATen/Dispatch.h' 2025-06-01T21:23:34.9463096Z adding 'torch/include/ATen/Dispatch_v2.h' 2025-06-01T21:23:34.9467676Z adding 'torch/include/ATen/DynamicLibrary.h' 2025-06-01T21:23:34.9471347Z adding 'torch/include/ATen/EmptyTensor.h' 2025-06-01T21:23:34.9474625Z adding 'torch/include/ATen/ExpandBase.h' 2025-06-01T21:23:34.9480526Z adding 'torch/include/ATen/ExpandUtils.h' 2025-06-01T21:23:34.9483901Z adding 'torch/include/ATen/Formatting.h' 2025-06-01T21:23:34.9487362Z adding 'torch/include/ATen/FuncTorchTLS.h' 2025-06-01T21:23:34.9492531Z adding 'torch/include/ATen/FunctionalStorageImpl.h' 2025-06-01T21:23:34.9500922Z adding 'torch/include/ATen/FunctionalTensorWrapper.h' 2025-06-01T21:23:34.9513819Z adding 'torch/include/ATen/Functions.h' 2025-06-01T21:23:34.9518269Z adding 'torch/include/ATen/Generator.h' 2025-06-01T21:23:34.9522244Z adding 'torch/include/ATen/InferSize.h' 2025-06-01T21:23:34.9525842Z adding 'torch/include/ATen/InitialTensorOptions.h' 2025-06-01T21:23:34.9528878Z adding 'torch/include/ATen/Layout.h' 2025-06-01T21:23:34.9532333Z adding 'torch/include/ATen/LegacyBatchedFallback.h' 2025-06-01T21:23:34.9536902Z adding 'torch/include/ATen/LegacyBatchedTensorImpl.h' 2025-06-01T21:23:34.9540305Z adding 'torch/include/ATen/LegacyVmapMode.h' 2025-06-01T21:23:34.9545626Z adding 'torch/include/ATen/LegacyVmapTransforms.h' 2025-06-01T21:23:34.9548972Z adding 'torch/include/ATen/LinalgBackend.h' 2025-06-01T21:23:34.9552843Z adding 'torch/include/ATen/MapAllocator.h' 2025-06-01T21:23:34.9556580Z adding 'torch/include/ATen/MatrixRef.h' 2025-06-01T21:23:34.9559818Z adding 'torch/include/ATen/MemoryOverlap.h' 2025-06-01T21:23:34.9563439Z adding 'torch/include/ATen/MetaFunctions.h' 2025-06-01T21:23:34.9568187Z adding 'torch/include/ATen/MetaFunctions_inl.h' 2025-06-01T21:23:34.9573461Z adding 'torch/include/ATen/MethodOperators.h' 2025-06-01T21:23:34.9576759Z adding 'torch/include/ATen/NamedTensor.h' 2025-06-01T21:23:34.9581300Z adding 'torch/include/ATen/NamedTensorUtils.h' 2025-06-01T21:23:34.9592359Z adding 'torch/include/ATen/NativeFunctions.h' 2025-06-01T21:23:34.9604199Z adding 'torch/include/ATen/NativeMetaFunctions.h' 2025-06-01T21:23:34.9611154Z adding 'torch/include/ATen/NestedTensorImpl.h' 2025-06-01T21:23:34.9615050Z adding 'torch/include/ATen/NumericUtils.h' 2025-06-01T21:23:34.9618528Z adding 'torch/include/ATen/OpMathType.h' 2025-06-01T21:23:34.9622732Z adding 'torch/include/ATen/OpaqueTensorImpl.h' 2025-06-01T21:23:34.9634060Z adding 'torch/include/ATen/Operators.h' 2025-06-01T21:23:34.9638509Z adding 'torch/include/ATen/PTThreadPool.h' 2025-06-01T21:23:34.9641390Z adding 'torch/include/ATen/PadNd.h' 2025-06-01T21:23:34.9644739Z adding 'torch/include/ATen/Parallel-inl.h' 2025-06-01T21:23:34.9648771Z adding 'torch/include/ATen/Parallel.h' 2025-06-01T21:23:34.9652015Z adding 'torch/include/ATen/ParallelFuture.h' 2025-06-01T21:23:34.9654928Z adding 'torch/include/ATen/ParallelNative.h' 2025-06-01T21:23:34.9658115Z adding 'torch/include/ATen/ParallelOpenMP.h' 2025-06-01T21:23:34.9661375Z adding 'torch/include/ATen/PythonTorchFunctionTLS.h' 2025-06-01T21:23:34.9664549Z adding 'torch/include/ATen/ROCmFABackend.h' 2025-06-01T21:23:34.9930763Z adding 'torch/include/ATen/RedispatchFunctions.h' 2025-06-01T21:23:35.0121105Z adding 'torch/include/ATen/RegistrationDeclarations.h' 2025-06-01T21:23:35.0144216Z adding 'torch/include/ATen/SDPBackend.h' 2025-06-01T21:23:35.0147974Z adding 'torch/include/ATen/SavedTensorHooks.h' 2025-06-01T21:23:35.0150868Z adding 'torch/include/ATen/Scalar.h' 2025-06-01T21:23:35.0154162Z adding 'torch/include/ATen/ScalarOps.h' 2025-06-01T21:23:35.0157051Z adding 'torch/include/ATen/ScalarType.h' 2025-06-01T21:23:35.0159948Z adding 'torch/include/ATen/SequenceNumber.h' 2025-06-01T21:23:35.0162689Z adding 'torch/include/ATen/SmallVector.h' 2025-06-01T21:23:35.0167147Z adding 'torch/include/ATen/SparseCsrTensorImpl.h' 2025-06-01T21:23:35.0173268Z adding 'torch/include/ATen/SparseCsrTensorUtils.h' 2025-06-01T21:23:35.0180052Z adding 'torch/include/ATen/SparseTensorImpl.h' 2025-06-01T21:23:35.0183287Z adding 'torch/include/ATen/Storage.h' 2025-06-01T21:23:35.0186664Z adding 'torch/include/ATen/StorageUtils.h' 2025-06-01T21:23:35.0189480Z adding 'torch/include/ATen/Tensor.h' 2025-06-01T21:23:35.0192278Z adding 'torch/include/ATen/TensorAccessor.h' 2025-06-01T21:23:35.0196010Z adding 'torch/include/ATen/TensorGeometry.h' 2025-06-01T21:23:35.0205522Z adding 'torch/include/ATen/TensorIndexing.h' 2025-06-01T21:23:35.0220794Z adding 'torch/include/ATen/TensorIterator.h' 2025-06-01T21:23:35.0225386Z adding 'torch/include/ATen/TensorIteratorInternal.h' 2025-06-01T21:23:35.0229477Z adding 'torch/include/ATen/TensorMeta.h' 2025-06-01T21:23:35.0233290Z adding 'torch/include/ATen/TensorNames.h' 2025-06-01T21:23:35.0236756Z adding 'torch/include/ATen/TensorOperators.h' 2025-06-01T21:23:35.0239628Z adding 'torch/include/ATen/TensorOptions.h' 2025-06-01T21:23:35.0243344Z adding 'torch/include/ATen/TensorSubclassLikeUtils.h' 2025-06-01T21:23:35.0247420Z adding 'torch/include/ATen/TensorUtils.h' 2025-06-01T21:23:35.0250690Z adding 'torch/include/ATen/ThreadLocalPythonObjects.h' 2025-06-01T21:23:35.0254632Z adding 'torch/include/ATen/ThreadLocalState.h' 2025-06-01T21:23:35.0259124Z adding 'torch/include/ATen/TracerMode.h' 2025-06-01T21:23:35.0262733Z adding 'torch/include/ATen/TypeDefault.h' 2025-06-01T21:23:35.0266515Z adding 'torch/include/ATen/Utils.h' 2025-06-01T21:23:35.0269536Z adding 'torch/include/ATen/Version.h' 2025-06-01T21:23:35.0444946Z adding 'torch/include/ATen/VmapGeneratedPlumbing.h' 2025-06-01T21:23:35.0488875Z adding 'torch/include/ATen/WrapDimUtils.h' 2025-06-01T21:23:35.0492415Z adding 'torch/include/ATen/WrapDimUtilsMulti.h' 2025-06-01T21:23:35.0504650Z adding 'torch/include/ATen/autocast_mode.h' 2025-06-01T21:23:35.0508917Z adding 'torch/include/ATen/ceil_div.h' 2025-06-01T21:23:35.0513694Z adding 'torch/include/ATen/code_template.h' 2025-06-01T21:23:35.0517857Z adding 'torch/include/ATen/cpp_custom_type_hack.h' 2025-06-01T21:23:35.0520878Z adding 'torch/include/ATen/div_rtn.h' 2025-06-01T21:23:35.0525900Z adding 'torch/include/ATen/dlpack.h' 2025-06-01T21:23:35.0529229Z adding 'torch/include/ATen/jit_macros.h' 2025-06-01T21:23:35.0532554Z adding 'torch/include/ATen/jiterator_macros.h' 2025-06-01T21:23:35.0541956Z adding 'torch/include/ATen/record_function.h' 2025-06-01T21:23:35.0547767Z adding 'torch/include/ATen/core/ATenGeneral.h' 2025-06-01T21:23:35.0550747Z adding 'torch/include/ATen/core/ATenOpList.h' 2025-06-01T21:23:35.0553823Z adding 'torch/include/ATen/core/ATen_fwd.h' 2025-06-01T21:23:35.0557689Z adding 'torch/include/ATen/core/ATen_pch.h' 2025-06-01T21:23:35.0561063Z adding 'torch/include/ATen/core/Array.h' 2025-06-01T21:23:35.0564036Z adding 'torch/include/ATen/core/Backtrace.h' 2025-06-01T21:23:35.0574858Z adding 'torch/include/ATen/core/CachingHostAllocator.h' 2025-06-01T21:23:35.0578678Z adding 'torch/include/ATen/core/CheckMemoryFormat.h' 2025-06-01T21:23:35.0582514Z adding 'torch/include/ATen/core/DeprecatedTypeProperties.h' 2025-06-01T21:23:35.0585963Z adding 'torch/include/ATen/core/DeprecatedTypePropertiesRegistry.h' 2025-06-01T21:23:35.0592448Z adding 'torch/include/ATen/core/Dict.h' 2025-06-01T21:23:35.0597210Z adding 'torch/include/ATen/core/Dict_inl.h' 2025-06-01T21:23:35.0600371Z adding 'torch/include/ATen/core/DimVector.h' 2025-06-01T21:23:35.0603590Z adding 'torch/include/ATen/core/Dimname.h' 2025-06-01T21:23:35.0608633Z adding 'torch/include/ATen/core/DistributionsHelper.h' 2025-06-01T21:23:35.0612045Z adding 'torch/include/ATen/core/Formatting.h' 2025-06-01T21:23:35.0616690Z adding 'torch/include/ATen/core/Generator.h' 2025-06-01T21:23:35.0620201Z adding 'torch/include/ATen/core/GeneratorForPrivateuseone.h' 2025-06-01T21:23:35.0628459Z adding 'torch/include/ATen/core/IListRef.h' 2025-06-01T21:23:35.0633004Z adding 'torch/include/ATen/core/IListRef_inl.h' 2025-06-01T21:23:35.0637385Z adding 'torch/include/ATen/core/LegacyTypeDispatch.h' 2025-06-01T21:23:35.0644149Z adding 'torch/include/ATen/core/List.h' 2025-06-01T21:23:35.0649764Z adding 'torch/include/ATen/core/List_inl.h' 2025-06-01T21:23:35.0654814Z adding 'torch/include/ATen/core/MT19937RNGEngine.h' 2025-06-01T21:23:35.0659289Z adding 'torch/include/ATen/core/NamedTensor.h' 2025-06-01T21:23:35.0664221Z adding 'torch/include/ATen/core/NestedIntSymNodeImpl.h' 2025-06-01T21:23:35.0669051Z adding 'torch/include/ATen/core/PhiloxRNGEngine.h' 2025-06-01T21:23:35.0672433Z adding 'torch/include/ATen/core/PythonFallbackKernel.h' 2025-06-01T21:23:35.0675584Z adding 'torch/include/ATen/core/PythonOpRegistrationTrampoline.h' 2025-06-01T21:23:35.0679069Z adding 'torch/include/ATen/core/QuantizerBase.h' 2025-06-01T21:23:35.0682117Z adding 'torch/include/ATen/core/Range.h' 2025-06-01T21:23:35.0685100Z adding 'torch/include/ATen/core/Reduction.h' 2025-06-01T21:23:35.0687839Z adding 'torch/include/ATen/core/Scalar.h' 2025-06-01T21:23:35.0690582Z adding 'torch/include/ATen/core/ScalarType.h' 2025-06-01T21:23:35.0694135Z adding 'torch/include/ATen/core/Tensor.h' 2025-06-01T21:23:35.0698677Z adding 'torch/include/ATen/core/TensorAccessor.h' 2025-06-01T21:23:35.0713708Z adding 'torch/include/ATen/core/TensorBase.h' 2025-06-01T21:23:35.0768784Z adding 'torch/include/ATen/core/TensorBody.h' 2025-06-01T21:23:35.0778515Z adding 'torch/include/ATen/core/TorchDispatchUtils.h' 2025-06-01T21:23:35.0782792Z adding 'torch/include/ATen/core/TransformationHelper.h' 2025-06-01T21:23:35.0785974Z adding 'torch/include/ATen/core/UndefinedTensorImpl.h' 2025-06-01T21:23:35.0789028Z adding 'torch/include/ATen/core/UnsafeFromTH.h' 2025-06-01T21:23:35.0792807Z adding 'torch/include/ATen/core/VariableHooksInterface.h' 2025-06-01T21:23:35.0796399Z adding 'torch/include/ATen/core/Variadic.h' 2025-06-01T21:23:35.0799929Z adding 'torch/include/ATen/core/Vitals.h' 2025-06-01T21:23:35.0804023Z adding 'torch/include/ATen/core/alias_info.h' 2025-06-01T21:23:35.0819514Z adding 'torch/include/ATen/core/aten_interned_strings.h' 2025-06-01T21:23:35.0825378Z adding 'torch/include/ATen/core/blob.h' 2025-06-01T21:23:35.0829484Z adding 'torch/include/ATen/core/builtin_function.h' 2025-06-01T21:23:35.0835968Z adding 'torch/include/ATen/core/class_type.h' 2025-06-01T21:23:35.0839553Z adding 'torch/include/ATen/core/custom_class.h' 2025-06-01T21:23:35.0845348Z adding 'torch/include/ATen/core/dynamic_type.h' 2025-06-01T21:23:35.0848822Z adding 'torch/include/ATen/core/enum_tag.h' 2025-06-01T21:23:35.0852478Z adding 'torch/include/ATen/core/enum_type.h' 2025-06-01T21:23:35.0856470Z adding 'torch/include/ATen/core/function.h' 2025-06-01T21:23:35.0866803Z adding 'torch/include/ATen/core/function_schema.h' 2025-06-01T21:23:35.0871060Z adding 'torch/include/ATen/core/function_schema_inl.h' 2025-06-01T21:23:35.0874403Z adding 'torch/include/ATen/core/functional.h' 2025-06-01T21:23:35.0877486Z adding 'torch/include/ATen/core/grad_mode.h' 2025-06-01T21:23:35.0883276Z adding 'torch/include/ATen/core/interned_strings.h' 2025-06-01T21:23:35.0886827Z adding 'torch/include/ATen/core/interned_strings_class.h' 2025-06-01T21:23:35.0906314Z adding 'torch/include/ATen/core/ivalue.h' 2025-06-01T21:23:35.0936948Z adding 'torch/include/ATen/core/ivalue_inl.h' 2025-06-01T21:23:35.0942279Z adding 'torch/include/ATen/core/ivalue_to.h' 2025-06-01T21:23:35.0965077Z adding 'torch/include/ATen/core/jit_type.h' 2025-06-01T21:23:35.0975488Z adding 'torch/include/ATen/core/jit_type_base.h' 2025-06-01T21:23:35.0980984Z adding 'torch/include/ATen/core/operator_name.h' 2025-06-01T21:23:35.0985479Z adding 'torch/include/ATen/core/qualified_name.h' 2025-06-01T21:23:35.0989002Z adding 'torch/include/ATen/core/rref_interface.h' 2025-06-01T21:23:35.0993625Z adding 'torch/include/ATen/core/stack.h' 2025-06-01T21:23:35.0998162Z adding 'torch/include/ATen/core/symbol.h' 2025-06-01T21:23:35.1002034Z adding 'torch/include/ATen/core/type_factory.h' 2025-06-01T21:23:35.1005552Z adding 'torch/include/ATen/core/type_ptr.h' 2025-06-01T21:23:35.1008746Z adding 'torch/include/ATen/core/typeid.h' 2025-06-01T21:23:35.1015290Z adding 'torch/include/ATen/core/boxing/BoxedKernel.h' 2025-06-01T21:23:35.1019699Z adding 'torch/include/ATen/core/boxing/BoxedKernel_impl.h' 2025-06-01T21:23:35.1024755Z adding 'torch/include/ATen/core/boxing/KernelFunction.h' 2025-06-01T21:23:35.1030374Z adding 'torch/include/ATen/core/boxing/KernelFunction_impl.h' 2025-06-01T21:23:35.1034022Z adding 'torch/include/ATen/core/boxing/OperatorKernel.h' 2025-06-01T21:23:35.1038303Z adding 'torch/include/ATen/core/boxing/impl/WrapFunctionIntoFunctor.h' 2025-06-01T21:23:35.1042337Z adding 'torch/include/ATen/core/boxing/impl/WrapFunctionIntoRuntimeFunctor.h' 2025-06-01T21:23:35.1048383Z adding 'torch/include/ATen/core/boxing/impl/boxing.h' 2025-06-01T21:23:35.1058667Z adding 'torch/include/ATen/core/boxing/impl/make_boxed_from_unboxed_functor.h' 2025-06-01T21:23:35.1063531Z adding 'torch/include/ATen/core/boxing/impl/test_helpers.h' 2025-06-01T21:23:35.1068251Z adding 'torch/include/ATen/core/dispatch/CppSignature.h' 2025-06-01T21:23:35.1074397Z adding 'torch/include/ATen/core/dispatch/DispatchKeyExtractor.h' 2025-06-01T21:23:35.1087314Z adding 'torch/include/ATen/core/dispatch/Dispatcher.h' 2025-06-01T21:23:35.1091218Z adding 'torch/include/ATen/core/dispatch/ObservedOperators.h' 2025-06-01T21:23:35.1097697Z adding 'torch/include/ATen/core/dispatch/OperatorEntry.h' 2025-06-01T21:23:35.1101137Z adding 'torch/include/ATen/core/dispatch/OperatorOptions.h' 2025-06-01T21:23:35.1104466Z adding 'torch/include/ATen/core/dispatch/RegistrationHandleRAII.h' 2025-06-01T21:23:35.1108917Z adding 'torch/include/ATen/core/op_registration/adaption.h' 2025-06-01T21:23:35.1113300Z adding 'torch/include/ATen/core/op_registration/infer_schema.h' 2025-06-01T21:23:35.1117969Z adding 'torch/include/ATen/core/op_registration/op_allowlist.h' 2025-06-01T21:23:35.1126442Z adding 'torch/include/ATen/core/op_registration/op_registration.h' 2025-06-01T21:23:35.1131044Z adding 'torch/include/ATen/cpu/FlushDenormal.h' 2025-06-01T21:23:35.1134126Z adding 'torch/include/ATen/cpu/Utils.h' 2025-06-01T21:23:35.1138384Z adding 'torch/include/ATen/cpu/vml.h' 2025-06-01T21:23:35.1142401Z adding 'torch/include/ATen/cpu/vec/functional.h' 2025-06-01T21:23:35.1147655Z adding 'torch/include/ATen/cpu/vec/functional_base.h' 2025-06-01T21:23:35.1154285Z adding 'torch/include/ATen/cpu/vec/functional_bfloat16.h' 2025-06-01T21:23:35.1158204Z adding 'torch/include/ATen/cpu/vec/intrinsics.h' 2025-06-01T21:23:35.1161642Z adding 'torch/include/ATen/cpu/vec/vec.h' 2025-06-01T21:23:35.1174845Z adding 'torch/include/ATen/cpu/vec/vec_base.h' 2025-06-01T21:23:35.1179465Z adding 'torch/include/ATen/cpu/vec/vec_convert.h' 2025-06-01T21:23:35.1183423Z adding 'torch/include/ATen/cpu/vec/vec_half.h' 2025-06-01T21:23:35.1188577Z adding 'torch/include/ATen/cpu/vec/vec_mask.h' 2025-06-01T21:23:35.1193989Z adding 'torch/include/ATen/cpu/vec/vec_n.h' 2025-06-01T21:23:35.1198682Z adding 'torch/include/ATen/cpu/vec/sve/sve_helper.h' 2025-06-01T21:23:35.1205075Z adding 'torch/include/ATen/cpu/vec/sve/vec_bfloat16.h' 2025-06-01T21:23:35.1209972Z adding 'torch/include/ATen/cpu/vec/sve/vec_common_sve.h' 2025-06-01T21:23:35.1216530Z adding 'torch/include/ATen/cpu/vec/sve/vec_double.h' 2025-06-01T21:23:35.1224950Z adding 'torch/include/ATen/cpu/vec/sve/vec_float.h' 2025-06-01T21:23:35.1232008Z adding 'torch/include/ATen/cpu/vec/sve/vec_int.h' 2025-06-01T21:23:35.1238690Z adding 'torch/include/ATen/cpu/vec/sve/vec_qint.h' 2025-06-01T21:23:35.1243093Z adding 'torch/include/ATen/cpu/vec/vec128/vec128.h' 2025-06-01T21:23:35.1249923Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_bfloat16_neon.h' 2025-06-01T21:23:35.1253798Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_convert.h' 2025-06-01T21:23:35.1260417Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_float_neon.h' 2025-06-01T21:23:35.1267634Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_half_neon.h' 2025-06-01T21:23:35.1272700Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_reduced_precision_common_neon.h' 2025-06-01T21:23:35.1278014Z adding 'torch/include/ATen/cpu/vec/vec256/missing_vld1_neon.h' 2025-06-01T21:23:35.1281525Z adding 'torch/include/ATen/cpu/vec/vec256/missing_vst1_neon.h' 2025-06-01T21:23:35.1286928Z adding 'torch/include/ATen/cpu/vec/vec256/vec256.h' 2025-06-01T21:23:35.1295585Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_16bit_float.h' 2025-06-01T21:23:35.1300765Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_bfloat16.h' 2025-06-01T21:23:35.1308374Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_complex_double.h' 2025-06-01T21:23:35.1316488Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_complex_float.h' 2025-06-01T21:23:35.1321968Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_convert.h' 2025-06-01T21:23:35.1327749Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_double.h' 2025-06-01T21:23:35.1335815Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_float.h' 2025-06-01T21:23:35.1340955Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_half.h' 2025-06-01T21:23:35.1355779Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_int.h' 2025-06-01T21:23:35.1362094Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_mask.h' 2025-06-01T21:23:35.1373548Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_qint.h' 2025-06-01T21:23:35.1379284Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_bfloat16_vsx.h' 2025-06-01T21:23:35.1384030Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_common_vsx.h' 2025-06-01T21:23:35.1392156Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_complex_double_vsx.h' 2025-06-01T21:23:35.1401148Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_complex_float_vsx.h' 2025-06-01T21:23:35.1407406Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_double_vsx.h' 2025-06-01T21:23:35.1413677Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_float_vsx.h' 2025-06-01T21:23:35.1419444Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_int16_vsx.h' 2025-06-01T21:23:35.1424856Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_int32_vsx.h' 2025-06-01T21:23:35.1430037Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_int64_vsx.h' 2025-06-01T21:23:35.1435334Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_qint32_vsx.h' 2025-06-01T21:23:35.1441806Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_qint8_vsx.h' 2025-06-01T21:23:35.1448694Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_quint8_vsx.h' 2025-06-01T21:23:35.1456062Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vsx_helpers.h' 2025-06-01T21:23:35.1481721Z adding 'torch/include/ATen/cpu/vec/vec256/zarch/vec256_zarch.h' 2025-06-01T21:23:35.1490169Z adding 'torch/include/ATen/cpu/vec/vec512/vec512.h' 2025-06-01T21:23:35.1506903Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_bfloat16.h' 2025-06-01T21:23:35.1517125Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_complex_double.h' 2025-06-01T21:23:35.1527805Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_complex_float.h' 2025-06-01T21:23:35.1533501Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_convert.h' 2025-06-01T21:23:35.1539408Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_double.h' 2025-06-01T21:23:35.1548105Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_float.h' 2025-06-01T21:23:35.1556203Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_float8.h' 2025-06-01T21:23:35.1569271Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_int.h' 2025-06-01T21:23:35.1575848Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_mask.h' 2025-06-01T21:23:35.1587010Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_qint.h' 2025-06-01T21:23:35.1592802Z adding 'torch/include/ATen/cuda/ATenCUDAGeneral.h' 2025-06-01T21:23:35.1596102Z adding 'torch/include/ATen/cuda/ApplyGridUtils.cuh' 2025-06-01T21:23:35.1599857Z adding 'torch/include/ATen/cuda/AsmUtils.cuh' 2025-06-01T21:23:35.1606830Z adding 'torch/include/ATen/cuda/Atomic.cuh' 2025-06-01T21:23:35.1615243Z adding 'torch/include/ATen/cuda/CUDAApplyUtils.cuh' 2025-06-01T21:23:35.1621219Z adding 'torch/include/ATen/cuda/CUDABlas.h' 2025-06-01T21:23:35.1624765Z adding 'torch/include/ATen/cuda/CUDAContext.h' 2025-06-01T21:23:35.1628449Z adding 'torch/include/ATen/cuda/CUDAContextLight.h' 2025-06-01T21:23:35.1631932Z adding 'torch/include/ATen/cuda/CUDADataType.h' 2025-06-01T21:23:35.1635077Z adding 'torch/include/ATen/cuda/CUDADevice.h' 2025-06-01T21:23:35.1639606Z adding 'torch/include/ATen/cuda/CUDAEvent.h' 2025-06-01T21:23:35.1644350Z adding 'torch/include/ATen/cuda/CUDAGeneratorImpl.h' 2025-06-01T21:23:35.1648286Z adding 'torch/include/ATen/cuda/CUDAGraph.h' 2025-06-01T21:23:35.1651759Z adding 'torch/include/ATen/cuda/CUDAGraphsUtils.cuh' 2025-06-01T21:23:35.1655308Z adding 'torch/include/ATen/cuda/CUDASparse.h' 2025-06-01T21:23:35.1660254Z adding 'torch/include/ATen/cuda/CUDASparseBlas.h' 2025-06-01T21:23:35.1665154Z adding 'torch/include/ATen/cuda/CUDASparseDescriptors.h' 2025-06-01T21:23:35.1668407Z adding 'torch/include/ATen/cuda/CUDATensorMethods.cuh' 2025-06-01T21:23:35.1671401Z adding 'torch/include/ATen/cuda/CUDAUtils.h' 2025-06-01T21:23:35.1674865Z adding 'torch/include/ATen/cuda/CachingHostAllocator.h' 2025-06-01T21:23:35.1678358Z adding 'torch/include/ATen/cuda/DeviceUtils.cuh' 2025-06-01T21:23:35.1681519Z adding 'torch/include/ATen/cuda/EmptyTensor.h' 2025-06-01T21:23:35.1686295Z adding 'torch/include/ATen/cuda/Exceptions.h' 2025-06-01T21:23:35.1690336Z adding 'torch/include/ATen/cuda/NumericLimits.cuh' 2025-06-01T21:23:35.1693504Z adding 'torch/include/ATen/cuda/PeerToPeerAccess.h' 2025-06-01T21:23:35.1696305Z adding 'torch/include/ATen/cuda/PhiloxCudaState.h' 2025-06-01T21:23:35.1699102Z adding 'torch/include/ATen/cuda/PhiloxUtils.cuh' 2025-06-01T21:23:35.1702007Z adding 'torch/include/ATen/cuda/PinnedMemoryAllocator.h' 2025-06-01T21:23:35.1705423Z adding 'torch/include/ATen/cuda/ScanUtils.cuh' 2025-06-01T21:23:35.1708428Z adding 'torch/include/ATen/cuda/Sleep.h' 2025-06-01T21:23:35.1711484Z adding 'torch/include/ATen/cuda/ThrustAllocator.h' 2025-06-01T21:23:35.1714954Z adding 'torch/include/ATen/cuda/cub-RadixSortPairs.cuh' 2025-06-01T21:23:35.1722565Z adding 'torch/include/ATen/cuda/cub.cuh' 2025-06-01T21:23:35.1726791Z adding 'torch/include/ATen/cuda/cub.h' 2025-06-01T21:23:35.1730153Z adding 'torch/include/ATen/cuda/cub_definitions.cuh' 2025-06-01T21:23:35.1733240Z adding 'torch/include/ATen/cuda/jiterator.h' 2025-06-01T21:23:35.1737682Z adding 'torch/include/ATen/cuda/jiterator_impl.h' 2025-06-01T21:23:35.1740802Z adding 'torch/include/ATen/cuda/llvm_jit_strings.h' 2025-06-01T21:23:35.1745319Z adding 'torch/include/ATen/cuda/detail/CUDAHooks.h' 2025-06-01T21:23:35.1750445Z adding 'torch/include/ATen/cuda/detail/DeviceThreadHandles.h' 2025-06-01T21:23:35.1753812Z adding 'torch/include/ATen/cuda/detail/IndexUtils.cuh' 2025-06-01T21:23:35.1757817Z adding 'torch/include/ATen/cuda/detail/IntegerDivider.cuh' 2025-06-01T21:23:35.1761279Z adding 'torch/include/ATen/cuda/detail/KernelUtils.h' 2025-06-01T21:23:35.1764299Z adding 'torch/include/ATen/cuda/detail/LazyNVRTC.h' 2025-06-01T21:23:35.1768153Z adding 'torch/include/ATen/cuda/detail/OffsetCalculator.cuh' 2025-06-01T21:23:35.1771563Z adding 'torch/include/ATen/cuda/detail/PhiloxCudaStateRaw.cuh' 2025-06-01T21:23:35.1775203Z adding 'torch/include/ATen/cuda/detail/TensorInfo.cuh' 2025-06-01T21:23:35.1778674Z adding 'torch/include/ATen/cuda/detail/UnpackRaw.cuh' 2025-06-01T21:23:35.1785983Z adding 'torch/include/ATen/cuda/tunable/GemmCommon.h' 2025-06-01T21:23:35.1793574Z adding 'torch/include/ATen/cuda/tunable/GemmHipblaslt.h' 2025-06-01T21:23:35.1798530Z adding 'torch/include/ATen/cuda/tunable/GemmRocblas.h' 2025-06-01T21:23:35.1802030Z adding 'torch/include/ATen/cuda/tunable/StreamTimer.h' 2025-06-01T21:23:35.1806632Z adding 'torch/include/ATen/cuda/tunable/Tunable.h' 2025-06-01T21:23:35.1811133Z adding 'torch/include/ATen/cuda/tunable/TunableGemm.h' 2025-06-01T21:23:35.1817623Z adding 'torch/include/ATen/cuda/tunable/TunableOp.h' 2025-06-01T21:23:35.1825554Z adding 'torch/include/ATen/cudnn/Descriptors.h' 2025-06-01T21:23:35.1829068Z adding 'torch/include/ATen/cudnn/Handle.h' 2025-06-01T21:23:35.1831872Z adding 'torch/include/ATen/cudnn/Handles.h' 2025-06-01T21:23:35.1834884Z adding 'torch/include/ATen/cudnn/Types.h' 2025-06-01T21:23:35.1837898Z adding 'torch/include/ATen/cudnn/Utils.h' 2025-06-01T21:23:35.1841164Z adding 'torch/include/ATen/cudnn/cudnn-wrapper.h' 2025-06-01T21:23:35.1845824Z adding 'torch/include/ATen/detail/AcceleratorHooksInterface.h' 2025-06-01T21:23:35.1850341Z adding 'torch/include/ATen/detail/CUDAHooksInterface.h' 2025-06-01T21:23:35.1854203Z adding 'torch/include/ATen/detail/FunctionTraits.h' 2025-06-01T21:23:35.1865432Z adding 'torch/include/ATen/detail/HIPHooksInterface.h' 2025-06-01T21:23:35.1868917Z adding 'torch/include/ATen/detail/HPUHooksInterface.h' 2025-06-01T21:23:35.1872272Z adding 'torch/include/ATen/detail/IPUHooksInterface.h' 2025-06-01T21:23:35.1875719Z adding 'torch/include/ATen/detail/MAIAHooksInterface.h' 2025-06-01T21:23:35.1879397Z adding 'torch/include/ATen/detail/MPSHooksInterface.h' 2025-06-01T21:23:35.1883465Z adding 'torch/include/ATen/detail/MTIAHooksInterface.h' 2025-06-01T21:23:35.1887241Z adding 'torch/include/ATen/detail/PrivateUse1HooksInterface.h' 2025-06-01T21:23:35.1890772Z adding 'torch/include/ATen/detail/XPUHooksInterface.h' 2025-06-01T21:23:35.1895182Z adding 'torch/include/ATen/functorch/ADInterpreters.h' 2025-06-01T21:23:35.1901987Z adding 'torch/include/ATen/functorch/BatchRulesHelper.h' 2025-06-01T21:23:35.1906515Z adding 'torch/include/ATen/functorch/BatchedFallback.h' 2025-06-01T21:23:35.1911326Z adding 'torch/include/ATen/functorch/BatchedTensorImpl.h' 2025-06-01T21:23:35.1915580Z adding 'torch/include/ATen/functorch/BatchingMetaprogramming.h' 2025-06-01T21:23:35.1920056Z adding 'torch/include/ATen/functorch/DynamicLayer.h' 2025-06-01T21:23:35.1924323Z adding 'torch/include/ATen/functorch/FunctionalizeInterpreter.h' 2025-06-01T21:23:35.1930325Z adding 'torch/include/ATen/functorch/Interpreter.h' 2025-06-01T21:23:35.1936110Z adding 'torch/include/ATen/functorch/LegacyVmapTransforms.h' 2025-06-01T21:23:35.1939411Z adding 'torch/include/ATen/functorch/Macros.h' 2025-06-01T21:23:35.1943870Z adding 'torch/include/ATen/functorch/PlumbingHelper.h' 2025-06-01T21:23:35.1947588Z adding 'torch/include/ATen/functorch/TensorWrapper.h' 2025-06-01T21:23:35.1951170Z adding 'torch/include/ATen/functorch/VmapInterpreter.h' 2025-06-01T21:23:35.1956015Z adding 'torch/include/ATen/hip/impl/HIPAllocatorMasqueradingAsCUDA.h' 2025-06-01T21:23:35.1959131Z adding 'torch/include/ATen/hip/impl/HIPCachingAllocatorMasqueradingAsCUDA.h' 2025-06-01T21:23:35.1965346Z adding 'torch/include/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h' 2025-06-01T21:23:35.1969863Z adding 'torch/include/ATen/hip/impl/HIPStreamMasqueradingAsCUDA.h' 2025-06-01T21:23:35.1973896Z adding 'torch/include/ATen/metal/Context.h' 2025-06-01T21:23:35.1979437Z adding 'torch/include/ATen/miopen/Descriptors.h' 2025-06-01T21:23:35.1982743Z adding 'torch/include/ATen/miopen/Exceptions.h' 2025-06-01T21:23:35.1985967Z adding 'torch/include/ATen/miopen/Handle.h' 2025-06-01T21:23:35.1988926Z adding 'torch/include/ATen/miopen/Types.h' 2025-06-01T21:23:35.1992044Z adding 'torch/include/ATen/miopen/Utils.h' 2025-06-01T21:23:35.1995127Z adding 'torch/include/ATen/miopen/miopen-wrapper.h' 2025-06-01T21:23:35.1999279Z adding 'torch/include/ATen/mps/EmptyTensor.h' 2025-06-01T21:23:35.2003512Z adding 'torch/include/ATen/mps/IndexKernels.h' 2025-06-01T21:23:35.2012222Z adding 'torch/include/ATen/mps/MPSAllocator.h' 2025-06-01T21:23:35.2016684Z adding 'torch/include/ATen/mps/MPSAllocatorInterface.h' 2025-06-01T21:23:35.2020467Z adding 'torch/include/ATen/mps/MPSDevice.h' 2025-06-01T21:23:35.2024894Z adding 'torch/include/ATen/mps/MPSEvent.h' 2025-06-01T21:23:35.2028836Z adding 'torch/include/ATen/mps/MPSGeneratorImpl.h' 2025-06-01T21:23:35.2033403Z adding 'torch/include/ATen/mps/MPSGuardImpl.h' 2025-06-01T21:23:35.2037118Z adding 'torch/include/ATen/mps/MPSHooks.h' 2025-06-01T21:23:35.2044612Z adding 'torch/include/ATen/mps/MPSProfiler.h' 2025-06-01T21:23:35.2049196Z adding 'torch/include/ATen/mps/MPSStream.h' 2025-06-01T21:23:35.2055530Z adding 'torch/include/ATen/native/Activation.h' 2025-06-01T21:23:35.2059110Z adding 'torch/include/ATen/native/AdaptivePooling.h' 2025-06-01T21:23:35.2062239Z adding 'torch/include/ATen/native/AmpKernels.h' 2025-06-01T21:23:35.2067050Z adding 'torch/include/ATen/native/BatchLinearAlgebra.h' 2025-06-01T21:23:35.2071060Z adding 'torch/include/ATen/native/BinaryOps.h' 2025-06-01T21:23:35.2075977Z adding 'torch/include/ATen/native/BucketizationUtils.h' 2025-06-01T21:23:35.2080600Z adding 'torch/include/ATen/native/CPUBlas.h' 2025-06-01T21:23:35.2084312Z adding 'torch/include/ATen/native/CPUFallback.h' 2025-06-01T21:23:35.2087425Z adding 'torch/include/ATen/native/CanUse32BitIndexMath.h' 2025-06-01T21:23:35.2091209Z adding 'torch/include/ATen/native/ComplexHelper.h' 2025-06-01T21:23:35.2094495Z adding 'torch/include/ATen/native/CompositeRandomAccessor.h' 2025-06-01T21:23:35.2098729Z adding 'torch/include/ATen/native/CompositeRandomAccessorCommon.h' 2025-06-01T21:23:35.2105610Z adding 'torch/include/ATen/native/ConvUtils.h' 2025-06-01T21:23:35.2109257Z adding 'torch/include/ATen/native/ConvolutionMM3d.h' 2025-06-01T21:23:35.2112424Z adding 'torch/include/ATen/native/Copy.h' 2025-06-01T21:23:35.2115363Z adding 'torch/include/ATen/native/Cross.h' 2025-06-01T21:23:35.2119616Z adding 'torch/include/ATen/native/DilatedConvolutionUtils.h' 2025-06-01T21:23:35.2125682Z adding 'torch/include/ATen/native/DispatchStub.h' 2025-06-01T21:23:35.2129246Z adding 'torch/include/ATen/native/Distance.h' 2025-06-01T21:23:35.2135851Z adding 'torch/include/ATen/native/DistributionTemplates.h' 2025-06-01T21:23:35.2145176Z adding 'torch/include/ATen/native/Distributions.h' 2025-06-01T21:23:35.2149753Z adding 'torch/include/ATen/native/EmbeddingBag.h' 2025-06-01T21:23:35.2152918Z adding 'torch/include/ATen/native/Fill.h' 2025-06-01T21:23:35.2159409Z adding 'torch/include/ATen/native/ForeachUtils.h' 2025-06-01T21:23:35.2163286Z adding 'torch/include/ATen/native/FractionalMaxPooling.h' 2025-06-01T21:23:35.2166692Z adding 'torch/include/ATen/native/FunctionOfAMatrixUtils.h' 2025-06-01T21:23:35.2169564Z adding 'torch/include/ATen/native/FusedAdagrad.h' 2025-06-01T21:23:35.2172648Z adding 'torch/include/ATen/native/FusedAdam.h' 2025-06-01T21:23:35.2175775Z adding 'torch/include/ATen/native/FusedSGD.h' 2025-06-01T21:23:35.2178771Z adding 'torch/include/ATen/native/Gelu.h' 2025-06-01T21:23:35.2183624Z adding 'torch/include/ATen/native/GridSampler.h' 2025-06-01T21:23:35.2187639Z adding 'torch/include/ATen/native/GridSamplerUtils.h' 2025-06-01T21:23:35.2190803Z adding 'torch/include/ATen/native/Histogram.h' 2025-06-01T21:23:35.2194031Z adding 'torch/include/ATen/native/IndexKernel.h' 2025-06-01T21:23:35.2198777Z adding 'torch/include/ATen/native/IndexingUtils.h' 2025-06-01T21:23:35.2202227Z adding 'torch/include/ATen/native/Lerp.h' 2025-06-01T21:23:35.2205242Z adding 'torch/include/ATen/native/LinearAlgebra.h' 2025-06-01T21:23:35.2216013Z adding 'torch/include/ATen/native/LinearAlgebraUtils.h' 2025-06-01T21:23:35.2219967Z adding 'torch/include/ATen/native/LossMulti.h' 2025-06-01T21:23:35.2265776Z adding 'torch/include/ATen/native/Math.h' 2025-06-01T21:23:35.2272631Z adding 'torch/include/ATen/native/MathBitFallThroughLists.h' 2025-06-01T21:23:35.2277443Z adding 'torch/include/ATen/native/MathBitsFallback.h' 2025-06-01T21:23:35.2281369Z adding 'torch/include/ATen/native/MaxPooling.h' 2025-06-01T21:23:35.2284533Z adding 'torch/include/ATen/native/NonEmptyUtils.h' 2025-06-01T21:23:35.2287908Z adding 'torch/include/ATen/native/NonSymbolicBC.h' 2025-06-01T21:23:35.2291027Z adding 'torch/include/ATen/native/Normalization.h' 2025-06-01T21:23:35.2294337Z adding 'torch/include/ATen/native/Padding.h' 2025-06-01T21:23:35.2297638Z adding 'torch/include/ATen/native/PixelShuffle.h' 2025-06-01T21:23:35.2300712Z adding 'torch/include/ATen/native/PointwiseOps.h' 2025-06-01T21:23:35.2306299Z adding 'torch/include/ATen/native/Pool.h' 2025-06-01T21:23:35.2309973Z adding 'torch/include/ATen/native/Pow.h' 2025-06-01T21:23:35.2313409Z adding 'torch/include/ATen/native/RNN.h' 2025-06-01T21:23:35.2316487Z adding 'torch/include/ATen/native/RangeFactories.h' 2025-06-01T21:23:35.2319866Z adding 'torch/include/ATen/native/RangeUtils.h' 2025-06-01T21:23:35.2322884Z adding 'torch/include/ATen/native/ReduceAllOps.h' 2025-06-01T21:23:35.2326134Z adding 'torch/include/ATen/native/ReduceOps.h' 2025-06-01T21:23:35.2332435Z adding 'torch/include/ATen/native/ReduceOpsUtils.h' 2025-06-01T21:23:35.2336083Z adding 'torch/include/ATen/native/ReductionType.h' 2025-06-01T21:23:35.2339433Z adding 'torch/include/ATen/native/Repeat.h' 2025-06-01T21:23:35.2344562Z adding 'torch/include/ATen/native/Resize.h' 2025-06-01T21:23:35.2348446Z adding 'torch/include/ATen/native/ResizeCommon.h' 2025-06-01T21:23:35.2352191Z adding 'torch/include/ATen/native/ScatterGatherChecks.h' 2025-06-01T21:23:35.2355375Z adding 'torch/include/ATen/native/SegmentReduce.h' 2025-06-01T21:23:35.2361742Z adding 'torch/include/ATen/native/SharedReduceOps.h' 2025-06-01T21:23:35.2365665Z adding 'torch/include/ATen/native/SobolEngineOpsUtils.h' 2025-06-01T21:23:35.2368929Z adding 'torch/include/ATen/native/Sorting.h' 2025-06-01T21:23:35.2372367Z adding 'torch/include/ATen/native/SortingUtils.h' 2025-06-01T21:23:35.2377085Z adding 'torch/include/ATen/native/SparseTensorUtils.h' 2025-06-01T21:23:35.2381262Z adding 'torch/include/ATen/native/SpectralOpsUtils.h' 2025-06-01T21:23:35.2385582Z adding 'torch/include/ATen/native/StridedRandomAccessor.h' 2025-06-01T21:23:35.2389364Z adding 'torch/include/ATen/native/TensorAdvancedIndexing.h' 2025-06-01T21:23:35.2393430Z adding 'torch/include/ATen/native/TensorAdvancedIndexingUtils.h' 2025-06-01T21:23:35.2396714Z adding 'torch/include/ATen/native/TensorCompare.h' 2025-06-01T21:23:35.2400022Z adding 'torch/include/ATen/native/TensorConversions.h' 2025-06-01T21:23:35.2403376Z adding 'torch/include/ATen/native/TensorDimApply.h' 2025-06-01T21:23:35.2407852Z adding 'torch/include/ATen/native/TensorFactories.h' 2025-06-01T21:23:35.2411035Z adding 'torch/include/ATen/native/TensorIterator.h' 2025-06-01T21:23:35.2414403Z adding 'torch/include/ATen/native/TensorIteratorDynamicCasting.h' 2025-06-01T21:23:35.2417998Z adding 'torch/include/ATen/native/TensorProperties.h' 2025-06-01T21:23:35.2421584Z adding 'torch/include/ATen/native/TensorShape.h' 2025-06-01T21:23:35.2425231Z adding 'torch/include/ATen/native/TensorTransformations.h' 2025-06-01T21:23:35.2428710Z adding 'torch/include/ATen/native/TopKImpl.h' 2025-06-01T21:23:35.2432069Z adding 'torch/include/ATen/native/TransposeType.h' 2025-06-01T21:23:35.2435595Z adding 'torch/include/ATen/native/TriangularOpsUtils.h' 2025-06-01T21:23:35.2438753Z adding 'torch/include/ATen/native/TypeProperties.h' 2025-06-01T21:23:35.2442460Z adding 'torch/include/ATen/native/UnaryOps.h' 2025-06-01T21:23:35.2445719Z adding 'torch/include/ATen/native/Unfold2d.h' 2025-06-01T21:23:35.2448939Z adding 'torch/include/ATen/native/Unfold3d.h' 2025-06-01T21:23:35.2452675Z adding 'torch/include/ATen/native/UnfoldBackward.h' 2025-06-01T21:23:35.2460077Z adding 'torch/include/ATen/native/UpSample.h' 2025-06-01T21:23:35.2463924Z adding 'torch/include/ATen/native/batch_norm.h' 2025-06-01T21:23:35.2467227Z adding 'torch/include/ATen/native/group_norm.h' 2025-06-01T21:23:35.2471162Z adding 'torch/include/ATen/native/im2col.h' 2025-06-01T21:23:35.2475440Z adding 'torch/include/ATen/native/im2col_shape_check.h' 2025-06-01T21:23:35.2479450Z adding 'torch/include/ATen/native/layer_norm.h' 2025-06-01T21:23:35.2482574Z adding 'torch/include/ATen/native/verbose_wrapper.h' 2025-06-01T21:23:35.2486135Z adding 'torch/include/ATen/native/vol2col.h' 2025-06-01T21:23:35.2492386Z adding 'torch/include/ATen/native/ao_sparse/quantized/cpu/fbgemm_utils.h' 2025-06-01T21:23:35.2496222Z adding 'torch/include/ATen/native/ao_sparse/quantized/cpu/packed_params.h' 2025-06-01T21:23:35.2499977Z adding 'torch/include/ATen/native/ao_sparse/quantized/cpu/qnnpack_utils.h' 2025-06-01T21:23:35.2504726Z adding 'torch/include/ATen/native/cpu/AtomicAddFloat.h' 2025-06-01T21:23:35.2507880Z adding 'torch/include/ATen/native/cpu/CatKernel.h' 2025-06-01T21:23:35.2510907Z adding 'torch/include/ATen/native/cpu/ChannelShuffleKernel.h' 2025-06-01T21:23:35.2513944Z adding 'torch/include/ATen/native/cpu/CopyKernel.h' 2025-06-01T21:23:35.2517405Z adding 'torch/include/ATen/native/cpu/DepthwiseConvKernel.h' 2025-06-01T21:23:35.2523659Z adding 'torch/include/ATen/native/cpu/DistributionTemplates.h' 2025-06-01T21:23:35.2527935Z adding 'torch/include/ATen/native/cpu/Elu.h' 2025-06-01T21:23:35.2531898Z adding 'torch/include/ATen/native/cpu/Gelu.h' 2025-06-01T21:23:35.2535541Z adding 'torch/include/ATen/native/cpu/GridSamplerKernel.h' 2025-06-01T21:23:35.2539626Z adding 'torch/include/ATen/native/cpu/IndexKernelUtils.h' 2025-06-01T21:23:35.2543334Z adding 'torch/include/ATen/native/cpu/Intrinsics.h' 2025-06-01T21:23:35.2546912Z adding 'torch/include/ATen/native/cpu/IsContiguous.h' 2025-06-01T21:23:35.2550802Z adding 'torch/include/ATen/native/cpu/LogAddExp.h' 2025-06-01T21:23:35.2557296Z adding 'torch/include/ATen/native/cpu/Loops.h' 2025-06-01T21:23:35.2560796Z adding 'torch/include/ATen/native/cpu/MaxUnpoolKernel.h' 2025-06-01T21:23:35.2564026Z adding 'torch/include/ATen/native/cpu/PixelShuffleKernel.h' 2025-06-01T21:23:35.2570027Z adding 'torch/include/ATen/native/cpu/Reduce.h' 2025-06-01T21:23:35.2574936Z adding 'torch/include/ATen/native/cpu/ReduceUtils.h' 2025-06-01T21:23:35.2578618Z adding 'torch/include/ATen/native/cpu/ReducedPrecisionFloatGemvFastPathKernel.h' 2025-06-01T21:23:35.2581515Z adding 'torch/include/ATen/native/cpu/SampledAddmmKernel.h' 2025-06-01T21:23:35.2585945Z adding 'torch/include/ATen/native/cpu/SerialStackImpl.h' 2025-06-01T21:23:35.2589376Z adding 'torch/include/ATen/native/cpu/SoftmaxKernel.h' 2025-06-01T21:23:35.2592550Z adding 'torch/include/ATen/native/cpu/SpmmReduceKernel.h' 2025-06-01T21:23:35.2595508Z adding 'torch/include/ATen/native/cpu/StackKernel.h' 2025-06-01T21:23:35.2611178Z adding 'torch/include/ATen/native/cpu/UpSampleKernelAVXAntialias.h' 2025-06-01T21:23:35.2615614Z adding 'torch/include/ATen/native/cpu/WeightNormKernel.h' 2025-06-01T21:23:35.2622015Z adding 'torch/include/ATen/native/cpu/avx_mathfun.h' 2025-06-01T21:23:35.2625866Z adding 'torch/include/ATen/native/cpu/int_mm_kernel.h' 2025-06-01T21:23:35.2629074Z adding 'torch/include/ATen/native/cpu/mixed_data_type.h' 2025-06-01T21:23:35.2633426Z adding 'torch/include/ATen/native/cpu/moments_utils.h' 2025-06-01T21:23:35.2638320Z adding 'torch/include/ATen/native/cpu/utils.h' 2025-06-01T21:23:35.2642413Z adding 'torch/include/ATen/native/cpu/zmath.h' 2025-06-01T21:23:35.2647592Z adding 'torch/include/ATen/native/cuda/Activation.h' 2025-06-01T21:23:35.2650855Z adding 'torch/include/ATen/native/cuda/BinaryInternal.h' 2025-06-01T21:23:35.2656554Z adding 'torch/include/ATen/native/cuda/CUDAJitLoops.cuh' 2025-06-01T21:23:35.2667234Z adding 'torch/include/ATen/native/cuda/CUDALoops.cuh' 2025-06-01T21:23:35.2671429Z adding 'torch/include/ATen/native/cuda/CompositeRandomAccessor.h' 2025-06-01T21:23:35.2674302Z adding 'torch/include/ATen/native/cuda/Copy.h' 2025-06-01T21:23:35.2682134Z adding 'torch/include/ATen/native/cuda/CuFFTPlanCache.h' 2025-06-01T21:23:35.2685988Z adding 'torch/include/ATen/native/cuda/CuFFTUtils.h' 2025-06-01T21:23:35.2689187Z adding 'torch/include/ATen/native/cuda/DeviceSqrt.cuh' 2025-06-01T21:23:35.2697992Z adding 'torch/include/ATen/native/cuda/DistributionTemplates.h' 2025-06-01T21:23:35.2702824Z adding 'torch/include/ATen/native/cuda/Distributions.h' 2025-06-01T21:23:35.2706225Z adding 'torch/include/ATen/native/cuda/EmbeddingBackwardKernel.cuh' 2025-06-01T21:23:35.2711650Z adding 'torch/include/ATen/native/cuda/ForeachFunctors.cuh' 2025-06-01T21:23:35.2715327Z adding 'torch/include/ATen/native/cuda/ForeachMinMaxFunctors.cuh' 2025-06-01T21:23:35.2720222Z adding 'torch/include/ATen/native/cuda/GridSampler.cuh' 2025-06-01T21:23:35.2723619Z adding 'torch/include/ATen/native/cuda/GridSampler.h' 2025-06-01T21:23:35.2726660Z adding 'torch/include/ATen/native/cuda/GroupMM.h' 2025-06-01T21:23:35.2730596Z adding 'torch/include/ATen/native/cuda/GroupMMCommon.cuh' 2025-06-01T21:23:35.2733732Z adding 'torch/include/ATen/native/cuda/IndexKernel.h' 2025-06-01T21:23:35.2737076Z adding 'torch/include/ATen/native/cuda/IndexKernelUtils.h' 2025-06-01T21:23:35.2741717Z adding 'torch/include/ATen/native/cuda/JitLoops.cuh' 2025-06-01T21:23:35.2747546Z adding 'torch/include/ATen/native/cuda/KernelUtils.cuh' 2025-06-01T21:23:35.2750954Z adding 'torch/include/ATen/native/cuda/LaunchUtils.h' 2025-06-01T21:23:35.2756209Z adding 'torch/include/ATen/native/cuda/Loops.cuh' 2025-06-01T21:23:35.2790366Z adding 'torch/include/ATen/native/cuda/Math.cuh' 2025-06-01T21:23:35.2801208Z adding 'torch/include/ATen/native/cuda/MemoryAccess.cuh' 2025-06-01T21:23:35.2805012Z adding 'torch/include/ATen/native/cuda/MiscUtils.h' 2025-06-01T21:23:35.2810527Z adding 'torch/include/ATen/native/cuda/MultiTensorApply.cuh' 2025-06-01T21:23:35.2829523Z adding 'torch/include/ATen/native/cuda/Normalization.cuh' 2025-06-01T21:23:35.2837480Z adding 'torch/include/ATen/native/cuda/PersistentSoftmax.cuh' 2025-06-01T21:23:35.2841464Z adding 'torch/include/ATen/native/cuda/Pow.cuh' 2025-06-01T21:23:35.2845068Z adding 'torch/include/ATen/native/cuda/Randperm.cuh' 2025-06-01T21:23:35.2862236Z adding 'torch/include/ATen/native/cuda/Reduce.cuh' 2025-06-01T21:23:35.2866769Z adding 'torch/include/ATen/native/cuda/ReduceOps.h' 2025-06-01T21:23:35.2870218Z adding 'torch/include/ATen/native/cuda/Resize.h' 2025-06-01T21:23:35.2873336Z adding 'torch/include/ATen/native/cuda/RowwiseScaledMM.h' 2025-06-01T21:23:35.2876471Z adding 'torch/include/ATen/native/cuda/ScaledGroupMM.h' 2025-06-01T21:23:35.2879464Z adding 'torch/include/ATen/native/cuda/ScanKernels.h' 2025-06-01T21:23:35.2886749Z adding 'torch/include/ATen/native/cuda/ScanUtils.cuh' 2025-06-01T21:23:35.2890475Z adding 'torch/include/ATen/native/cuda/Sort.h' 2025-06-01T21:23:35.2893554Z adding 'torch/include/ATen/native/cuda/SortStable.h' 2025-06-01T21:23:35.2899185Z adding 'torch/include/ATen/native/cuda/SortUtils.cuh' 2025-06-01T21:23:35.2902713Z adding 'torch/include/ATen/native/cuda/Sorting.h' 2025-06-01T21:23:35.2907177Z adding 'torch/include/ATen/native/cuda/SortingCommon.cuh' 2025-06-01T21:23:35.2913327Z adding 'torch/include/ATen/native/cuda/SortingRadixSelect.cuh' 2025-06-01T21:23:35.2920926Z adding 'torch/include/ATen/native/cuda/TensorModeKernel.cuh' 2025-06-01T21:23:35.2924433Z adding 'torch/include/ATen/native/cuda/TensorModeKernel.h' 2025-06-01T21:23:35.2927404Z adding 'torch/include/ATen/native/cuda/TensorTopK.h' 2025-06-01T21:23:35.2930460Z adding 'torch/include/ATen/native/cuda/UniqueCub.cuh' 2025-06-01T21:23:35.2935820Z adding 'torch/include/ATen/native/cuda/UpSample.cuh' 2025-06-01T21:23:35.2939967Z adding 'torch/include/ATen/native/cuda/block_reduce.cuh' 2025-06-01T21:23:35.2943346Z adding 'torch/include/ATen/native/cuda/cutlass_common.cuh' 2025-06-01T21:23:35.2946595Z adding 'torch/include/ATen/native/cuda/fused_adam_amsgrad_impl.cuh' 2025-06-01T21:23:35.2949760Z adding 'torch/include/ATen/native/cuda/fused_adam_impl.cuh' 2025-06-01T21:23:35.2954384Z adding 'torch/include/ATen/native/cuda/fused_adam_utils.cuh' 2025-06-01T21:23:35.2958301Z adding 'torch/include/ATen/native/cuda/fused_adamw_amsgrad_impl.cuh' 2025-06-01T21:23:35.2960951Z adding 'torch/include/ATen/native/cuda/fused_adamw_impl.cuh' 2025-06-01T21:23:35.2965641Z adding 'torch/include/ATen/native/cuda/im2col.cuh' 2025-06-01T21:23:35.2970608Z adding 'torch/include/ATen/native/cuda/jit_utils.h' 2025-06-01T21:23:35.2978966Z adding 'torch/include/ATen/native/cuda/reduction_template.cuh' 2025-06-01T21:23:35.2982666Z adding 'torch/include/ATen/native/cuda/thread_constants.h' 2025-06-01T21:23:35.2987722Z adding 'torch/include/ATen/native/cuda/vol2col.cuh' 2025-06-01T21:23:35.2992073Z adding 'torch/include/ATen/native/hip/ck_bgemm.h' 2025-06-01T21:23:35.2995182Z adding 'torch/include/ATen/native/hip/ck_gemm.h' 2025-06-01T21:23:35.3000531Z adding 'torch/include/ATen/native/hip/ck_gemm_template.h' 2025-06-01T21:23:35.3004416Z adding 'torch/include/ATen/native/hip/ck_types.h' 2025-06-01T21:23:35.3008924Z adding 'torch/include/ATen/native/hip/bgemm_kernels/bgemm_kernel_collection.h' 2025-06-01T21:23:35.3013262Z adding 'torch/include/ATen/native/hip/bgemm_kernels/bgemm_kernel_template.h' 2025-06-01T21:23:35.3017578Z adding 'torch/include/ATen/native/kleidiai/kai_kernels.h' 2025-06-01T21:23:35.3021125Z adding 'torch/include/ATen/native/kleidiai/kai_pack.h' 2025-06-01T21:23:35.3025347Z adding 'torch/include/ATen/native/kleidiai/kai_ukernel_interface.h' 2025-06-01T21:23:35.3030660Z adding 'torch/include/ATen/native/mkldnn/xpu/FusionUtils.h' 2025-06-01T21:23:35.3039245Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/Attr.h' 2025-06-01T21:23:35.3046840Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/DnnlExt.h' 2025-06-01T21:23:35.3051077Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/LRUCache.h' 2025-06-01T21:23:35.3055011Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/Utils.h' 2025-06-01T21:23:35.3059144Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/oneDNN.h' 2025-06-01T21:23:35.3063026Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/oneDNNContext.h' 2025-06-01T21:23:35.3067126Z adding 'torch/include/ATen/native/mps/Copy.h' 2025-06-01T21:23:35.3070477Z adding 'torch/include/ATen/native/mps/MPSGraphSequoiaOps.h' 2025-06-01T21:23:35.3073938Z adding 'torch/include/ATen/native/mps/MPSGraphSonomaOps.h' 2025-06-01T21:23:35.3078315Z adding 'torch/include/ATen/native/mps/MPSGraphVenturaOps.h' 2025-06-01T21:23:35.3082741Z adding 'torch/include/ATen/native/mps/MetalShaderLibrary.h' 2025-06-01T21:23:35.3091551Z adding 'torch/include/ATen/native/mps/OperationUtils.h' 2025-06-01T21:23:35.3095323Z adding 'torch/include/ATen/native/mps/TensorFactory.h' 2025-06-01T21:23:35.3099249Z adding 'torch/include/ATen/native/mps/operations/BinaryKernel.h' 2025-06-01T21:23:35.3102433Z adding 'torch/include/ATen/native/mps/operations/FusedAdamAmsgradKernelImpl.h' 2025-06-01T21:23:35.3105556Z adding 'torch/include/ATen/native/mps/operations/FusedAdamKernelImpl.h' 2025-06-01T21:23:35.3108770Z adding 'torch/include/ATen/native/mps/operations/FusedAdamWAmsgradKernelImpl.h' 2025-06-01T21:23:35.3111681Z adding 'torch/include/ATen/native/mps/operations/FusedAdamWKernelImpl.h' 2025-06-01T21:23:35.3114557Z adding 'torch/include/ATen/native/mps/operations/Indexing.h' 2025-06-01T21:23:35.3120778Z adding 'torch/include/ATen/native/mps/operations/MultiTensorApply.h' 2025-06-01T21:23:35.3125410Z adding 'torch/include/ATen/native/nested/NestedTensorBinaryOps.h' 2025-06-01T21:23:35.3128988Z adding 'torch/include/ATen/native/nested/NestedTensorMath.h' 2025-06-01T21:23:35.3132673Z adding 'torch/include/ATen/native/nested/NestedTensorTransformerFunctions.h' 2025-06-01T21:23:35.3135919Z adding 'torch/include/ATen/native/nested/NestedTensorTransformerUtils.h' 2025-06-01T21:23:35.3142586Z adding 'torch/include/ATen/native/nested/NestedTensorUtils.h' 2025-06-01T21:23:35.3147463Z adding 'torch/include/ATen/native/quantized/AffineQuantizer.h' 2025-06-01T21:23:35.3150857Z adding 'torch/include/ATen/native/quantized/AffineQuantizerBase.h' 2025-06-01T21:23:35.3154197Z adding 'torch/include/ATen/native/quantized/ConvUtils.h' 2025-06-01T21:23:35.3157247Z adding 'torch/include/ATen/native/quantized/Copy.h' 2025-06-01T21:23:35.3160443Z adding 'torch/include/ATen/native/quantized/FakeQuantAffine.h' 2025-06-01T21:23:35.3163471Z adding 'torch/include/ATen/native/quantized/IndexKernel.h' 2025-06-01T21:23:35.3167080Z adding 'torch/include/ATen/native/quantized/PackedParams.h' 2025-06-01T21:23:35.3170097Z adding 'torch/include/ATen/native/quantized/library.h' 2025-06-01T21:23:35.3175879Z adding 'torch/include/ATen/native/quantized/cpu/ACLUtils.h' 2025-06-01T21:23:35.3179148Z adding 'torch/include/ATen/native/quantized/cpu/BinaryOps.h' 2025-06-01T21:23:35.3182261Z adding 'torch/include/ATen/native/quantized/cpu/EmbeddingPackedParams.h' 2025-06-01T21:23:35.3188056Z adding 'torch/include/ATen/native/quantized/cpu/OnednnUtils.h' 2025-06-01T21:23:35.3195248Z adding 'torch/include/ATen/native/quantized/cpu/QnnpackUtils.h' 2025-06-01T21:23:35.3200872Z adding 'torch/include/ATen/native/quantized/cpu/QuantUtils.h' 2025-06-01T21:23:35.3205473Z adding 'torch/include/ATen/native/quantized/cpu/QuantizedOps.h' 2025-06-01T21:23:35.3208736Z adding 'torch/include/ATen/native/quantized/cpu/RuyUtils.h' 2025-06-01T21:23:35.3214056Z adding 'torch/include/ATen/native/quantized/cpu/XnnpackUtils.h' 2025-06-01T21:23:35.3219975Z adding 'torch/include/ATen/native/quantized/cpu/conv_serialization.h' 2025-06-01T21:23:35.3225489Z adding 'torch/include/ATen/native/quantized/cpu/fbgemm_utils.h' 2025-06-01T21:23:35.3228795Z adding 'torch/include/ATen/native/quantized/cpu/init_qnnpack.h' 2025-06-01T21:23:35.3232056Z adding 'torch/include/ATen/native/quantized/cpu/qconv.h' 2025-06-01T21:23:35.3235251Z adding 'torch/include/ATen/native/quantized/cpu/qembeddingbag.h' 2025-06-01T21:23:35.3238262Z adding 'torch/include/ATen/native/quantized/cpu/qembeddingbag_prepack.h' 2025-06-01T21:23:35.3241381Z adding 'torch/include/ATen/native/quantized/cpu/qlinear.h' 2025-06-01T21:23:35.3247238Z adding 'torch/include/ATen/native/quantized/cudnn/utils.h' 2025-06-01T21:23:35.3251731Z adding 'torch/include/ATen/native/transformers/attention.h' 2025-06-01T21:23:35.3258335Z adding 'torch/include/ATen/native/transformers/sdp_utils_cpp.h' 2025-06-01T21:23:35.3262689Z adding 'torch/include/ATen/native/transformers/cuda/sdp_utils.h' 2025-06-01T21:23:35.3267358Z adding 'torch/include/ATen/native/transformers/cuda/flash_attn/flash_api.h' 2025-06-01T21:23:35.3271078Z adding 'torch/include/ATen/native/transformers/cuda/flash_attn/static_switch.h' 2025-06-01T21:23:35.3276813Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/debug_utils.h' 2025-06-01T21:23:35.3281719Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm_kernel_utils.h' 2025-06-01T21:23:35.3310724Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernel_backward.h' 2025-06-01T21:23:35.3331174Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernel_forward.h' 2025-06-01T21:23:35.3335610Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/pytorch_utils.h' 2025-06-01T21:23:35.3344423Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_pipelined.h' 2025-06-01T21:23:35.3349817Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_rescale_output.h' 2025-06-01T21:23:35.3354582Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_thread_apply_logsumexp.h' 2025-06-01T21:23:35.3359062Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma.h' 2025-06-01T21:23:35.3363834Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_base.h' 2025-06-01T21:23:35.3372990Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_multistage.h' 2025-06-01T21:23:35.3380012Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_pipelined.h' 2025-06-01T21:23:35.3384740Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/find_default_mma.h' 2025-06-01T21:23:35.3390235Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/mma_accum_lambda_iterator.h' 2025-06-01T21:23:35.3410760Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/mma_from_smem.h' 2025-06-01T21:23:35.3417585Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/default_warp_iterator_from_smem.h' 2025-06-01T21:23:35.3425342Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/epilogue_predicated_tile_iterator.h' 2025-06-01T21:23:35.3429248Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/make_residual_last.h' 2025-06-01T21:23:35.3440872Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/predicated_tile_access_iterator_residual_last.h' 2025-06-01T21:23:35.3452724Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/predicated_tile_iterator_residual_last.h' 2025-06-01T21:23:35.3457609Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/transpose_warp_iterator.h' 2025-06-01T21:23:35.3463250Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/warp_iterator_from_smem.h' 2025-06-01T21:23:35.3477246Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels/cutlassB.h' 2025-06-01T21:23:35.3484817Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels/cutlassF.h' 2025-06-01T21:23:35.3490039Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/transform/tile_smem_loader.h' 2025-06-01T21:23:35.3494466Z adding 'torch/include/ATen/native/transformers/hip/aotriton_adapter.h' 2025-06-01T21:23:35.3501071Z adding 'torch/include/ATen/native/transformers/hip/flash_attn/flash_api.h' 2025-06-01T21:23:35.3506549Z adding 'torch/include/ATen/native/transformers/hip/flash_attn/ck/me_ck_api.h' 2025-06-01T21:23:35.3510595Z adding 'torch/include/ATen/native/utils/Factory.h' 2025-06-01T21:23:35.3513855Z adding 'torch/include/ATen/native/utils/ParamUtils.h' 2025-06-01T21:23:35.3517569Z adding 'torch/include/ATen/native/utils/ParamsHash.h' 2025-06-01T21:23:35.3700946Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d.h' 2025-06-01T21:23:35.3704395Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward.h' 2025-06-01T21:23:35.3707766Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.3710873Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_cpu_dispatch.h' 2025-06-01T21:23:35.3713993Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_cuda_dispatch.h' 2025-06-01T21:23:35.3717025Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_native.h' 2025-06-01T21:23:35.3720241Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_ops.h' 2025-06-01T21:23:35.3723666Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.3726652Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_cpu_dispatch.h' 2025-06-01T21:23:35.3729778Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_cuda_dispatch.h' 2025-06-01T21:23:35.3732740Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_native.h' 2025-06-01T21:23:35.3736025Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_ops.h' 2025-06-01T21:23:35.3739315Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d.h' 2025-06-01T21:23:35.3742586Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward.h' 2025-06-01T21:23:35.3745946Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.3748966Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_cpu_dispatch.h' 2025-06-01T21:23:35.3752031Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_cuda_dispatch.h' 2025-06-01T21:23:35.3755030Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_native.h' 2025-06-01T21:23:35.3758234Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_ops.h' 2025-06-01T21:23:35.3761453Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.3764463Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_cpu_dispatch.h' 2025-06-01T21:23:35.3767532Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_cuda_dispatch.h' 2025-06-01T21:23:35.3770586Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_native.h' 2025-06-01T21:23:35.3773801Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_ops.h' 2025-06-01T21:23:35.3776786Z adding 'torch/include/ATen/ops/_add_batch_dim.h' 2025-06-01T21:23:35.3780040Z adding 'torch/include/ATen/ops/_add_batch_dim_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.3782872Z adding 'torch/include/ATen/ops/_add_batch_dim_native.h' 2025-06-01T21:23:35.3786201Z adding 'torch/include/ATen/ops/_add_batch_dim_ops.h' 2025-06-01T21:23:35.3789408Z adding 'torch/include/ATen/ops/_add_relu.h' 2025-06-01T21:23:35.3792728Z adding 'torch/include/ATen/ops/_add_relu_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.3795832Z adding 'torch/include/ATen/ops/_add_relu_cpu_dispatch.h' 2025-06-01T21:23:35.3798920Z adding 'torch/include/ATen/ops/_add_relu_meta_dispatch.h' 2025-06-01T21:23:35.3801943Z adding 'torch/include/ATen/ops/_add_relu_native.h' 2025-06-01T21:23:35.3805363Z adding 'torch/include/ATen/ops/_add_relu_ops.h' 2025-06-01T21:23:35.3808691Z adding 'torch/include/ATen/ops/_addmm_activation.h' 2025-06-01T21:23:35.3812066Z adding 'torch/include/ATen/ops/_addmm_activation_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:35.3815008Z adding 'torch/include/ATen/ops/_addmm_activation_cpu_dispatch.h' 2025-06-01T21:23:35.3818231Z adding 'torch/include/ATen/ops/_addmm_activation_cuda_dispatch.h' 2025-06-01T21:23:35.3821298Z adding 'torch/include/ATen/ops/_addmm_activation_meta.h' 2025-06-01T21:23:35.3824560Z adding 'torch/include/ATen/ops/_addmm_activation_meta_dispatch.h' 2025-06-01T21:23:35.3827614Z adding 'torch/include/ATen/ops/_addmm_activation_native.h' 2025-06-01T21:23:35.3830836Z adding 'torch/include/ATen/ops/_addmm_activation_ops.h' 2025-06-01T21:23:35.3834043Z adding 'torch/include/ATen/ops/_aminmax.h' 2025-06-01T21:23:35.3837735Z adding 'torch/include/ATen/ops/_aminmax_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.3840997Z adding 'torch/include/ATen/ops/_aminmax_cpu_dispatch.h' 2025-06-01T21:23:35.3844239Z adding 'torch/include/ATen/ops/_aminmax_cuda_dispatch.h' 2025-06-01T21:23:35.3847209Z adding 'torch/include/ATen/ops/_aminmax_native.h' 2025-06-01T21:23:35.3850625Z adding 'torch/include/ATen/ops/_aminmax_ops.h' 2025-06-01T21:23:35.3854142Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale.h' 2025-06-01T21:23:35.3857587Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.3860570Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_cpu_dispatch.h' 2025-06-01T21:23:35.3863735Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_cuda_dispatch.h' 2025-06-01T21:23:35.3866758Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_native.h' 2025-06-01T21:23:35.3870070Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_ops.h' 2025-06-01T21:23:35.3873272Z adding 'torch/include/ATen/ops/_amp_update_scale.h' 2025-06-01T21:23:35.3876574Z adding 'torch/include/ATen/ops/_amp_update_scale_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.3879592Z adding 'torch/include/ATen/ops/_amp_update_scale_cpu_dispatch.h' 2025-06-01T21:23:35.3882655Z adding 'torch/include/ATen/ops/_amp_update_scale_cuda_dispatch.h' 2025-06-01T21:23:35.3885709Z adding 'torch/include/ATen/ops/_amp_update_scale_meta_dispatch.h' 2025-06-01T21:23:35.3889171Z adding 'torch/include/ATen/ops/_amp_update_scale_native.h' 2025-06-01T21:23:35.3892585Z adding 'torch/include/ATen/ops/_amp_update_scale_ops.h' 2025-06-01T21:23:35.3895718Z adding 'torch/include/ATen/ops/_assert_async.h' 2025-06-01T21:23:35.3898764Z adding 'torch/include/ATen/ops/_assert_async_cpu_dispatch.h' 2025-06-01T21:23:35.3901800Z adding 'torch/include/ATen/ops/_assert_async_cuda_dispatch.h' 2025-06-01T21:23:35.3904882Z adding 'torch/include/ATen/ops/_assert_async_native.h' 2025-06-01T21:23:35.3908031Z adding 'torch/include/ATen/ops/_assert_async_ops.h' 2025-06-01T21:23:35.3911133Z adding 'torch/include/ATen/ops/_assert_scalar.h' 2025-06-01T21:23:35.3914353Z adding 'torch/include/ATen/ops/_assert_scalar_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.3917225Z adding 'torch/include/ATen/ops/_assert_scalar_native.h' 2025-06-01T21:23:35.3920375Z adding 'torch/include/ATen/ops/_assert_scalar_ops.h' 2025-06-01T21:23:35.3923643Z adding 'torch/include/ATen/ops/_assert_tensor_metadata.h' 2025-06-01T21:23:35.3926984Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.3929981Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_meta_dispatch.h' 2025-06-01T21:23:35.3932997Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_native.h' 2025-06-01T21:23:35.3936401Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_ops.h' 2025-06-01T21:23:35.3939547Z adding 'torch/include/ATen/ops/_autocast_to_full_precision.h' 2025-06-01T21:23:35.3942934Z adding 'torch/include/ATen/ops/_autocast_to_full_precision_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.3945964Z adding 'torch/include/ATen/ops/_autocast_to_full_precision_native.h' 2025-06-01T21:23:35.3949192Z adding 'torch/include/ATen/ops/_autocast_to_full_precision_ops.h' 2025-06-01T21:23:35.3952170Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision.h' 2025-06-01T21:23:35.3955572Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.3958530Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision_native.h' 2025-06-01T21:23:35.3961803Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision_ops.h' 2025-06-01T21:23:35.3964741Z adding 'torch/include/ATen/ops/_backward.h' 2025-06-01T21:23:35.3968138Z adding 'torch/include/ATen/ops/_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.3971093Z adding 'torch/include/ATen/ops/_backward_native.h' 2025-06-01T21:23:35.3974420Z adding 'torch/include/ATen/ops/_backward_ops.h' 2025-06-01T21:23:35.3977633Z adding 'torch/include/ATen/ops/_batch_norm_impl_index.h' 2025-06-01T21:23:35.3980978Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward.h' 2025-06-01T21:23:35.3984539Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.3987579Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward_native.h' 2025-06-01T21:23:35.3991237Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward_ops.h' 2025-06-01T21:23:35.3994335Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.3997404Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_native.h' 2025-06-01T21:23:35.4000614Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_ops.h' 2025-06-01T21:23:35.4004011Z adding 'torch/include/ATen/ops/_batch_norm_no_update.h' 2025-06-01T21:23:35.4007456Z adding 'torch/include/ATen/ops/_batch_norm_no_update_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.4010593Z adding 'torch/include/ATen/ops/_batch_norm_no_update_native.h' 2025-06-01T21:23:35.4014011Z adding 'torch/include/ATen/ops/_batch_norm_no_update_ops.h' 2025-06-01T21:23:35.4017531Z adding 'torch/include/ATen/ops/_batch_norm_with_update.h' 2025-06-01T21:23:35.4062341Z adding 'torch/include/ATen/ops/_batch_norm_with_update_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.4065783Z adding 'torch/include/ATen/ops/_batch_norm_with_update_cpu_dispatch.h' 2025-06-01T21:23:35.4069170Z adding 'torch/include/ATen/ops/_batch_norm_with_update_cuda_dispatch.h' 2025-06-01T21:23:35.4072406Z adding 'torch/include/ATen/ops/_batch_norm_with_update_native.h' 2025-06-01T21:23:35.4076146Z adding 'torch/include/ATen/ops/_batch_norm_with_update_ops.h' 2025-06-01T21:23:35.4079331Z adding 'torch/include/ATen/ops/_cast_Byte.h' 2025-06-01T21:23:35.4082736Z adding 'torch/include/ATen/ops/_cast_Byte_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.4085647Z adding 'torch/include/ATen/ops/_cast_Byte_native.h' 2025-06-01T21:23:35.4088809Z adding 'torch/include/ATen/ops/_cast_Byte_ops.h' 2025-06-01T21:23:35.4091853Z adding 'torch/include/ATen/ops/_cast_Char.h' 2025-06-01T21:23:35.4095277Z adding 'torch/include/ATen/ops/_cast_Char_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.4098211Z adding 'torch/include/ATen/ops/_cast_Char_native.h' 2025-06-01T21:23:35.4101348Z adding 'torch/include/ATen/ops/_cast_Char_ops.h' 2025-06-01T21:23:35.4104525Z adding 'torch/include/ATen/ops/_cast_Double.h' 2025-06-01T21:23:35.4107759Z adding 'torch/include/ATen/ops/_cast_Double_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.4110800Z adding 'torch/include/ATen/ops/_cast_Double_native.h' 2025-06-01T21:23:35.4113934Z adding 'torch/include/ATen/ops/_cast_Double_ops.h' 2025-06-01T21:23:35.4116983Z adding 'torch/include/ATen/ops/_cast_Float.h' 2025-06-01T21:23:35.4120174Z adding 'torch/include/ATen/ops/_cast_Float_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.4123058Z adding 'torch/include/ATen/ops/_cast_Float_native.h' 2025-06-01T21:23:35.4126162Z adding 'torch/include/ATen/ops/_cast_Float_ops.h' 2025-06-01T21:23:35.4129175Z adding 'torch/include/ATen/ops/_cast_Half.h' 2025-06-01T21:23:35.4132818Z adding 'torch/include/ATen/ops/_cast_Half_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.4135686Z adding 'torch/include/ATen/ops/_cast_Half_native.h' 2025-06-01T21:23:35.4138807Z adding 'torch/include/ATen/ops/_cast_Half_ops.h' 2025-06-01T21:23:35.4142063Z adding 'torch/include/ATen/ops/_cast_Int.h' 2025-06-01T21:23:35.4145436Z adding 'torch/include/ATen/ops/_cast_Int_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.4148307Z adding 'torch/include/ATen/ops/_cast_Int_native.h' 2025-06-01T21:23:35.4151453Z adding 'torch/include/ATen/ops/_cast_Int_ops.h' 2025-06-01T21:23:35.4154534Z adding 'torch/include/ATen/ops/_cast_Long.h' 2025-06-01T21:23:35.4157711Z adding 'torch/include/ATen/ops/_cast_Long_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.4160576Z adding 'torch/include/ATen/ops/_cast_Long_native.h' 2025-06-01T21:23:35.4163665Z adding 'torch/include/ATen/ops/_cast_Long_ops.h' 2025-06-01T21:23:35.4166693Z adding 'torch/include/ATen/ops/_cast_Short.h' 2025-06-01T21:23:35.4169893Z adding 'torch/include/ATen/ops/_cast_Short_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.4172746Z adding 'torch/include/ATen/ops/_cast_Short_native.h' 2025-06-01T21:23:35.4175913Z adding 'torch/include/ATen/ops/_cast_Short_ops.h' 2025-06-01T21:23:35.4178972Z adding 'torch/include/ATen/ops/_cdist_backward.h' 2025-06-01T21:23:35.4182280Z adding 'torch/include/ATen/ops/_cdist_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.4185518Z adding 'torch/include/ATen/ops/_cdist_backward_cpu_dispatch.h' 2025-06-01T21:23:35.4188576Z adding 'torch/include/ATen/ops/_cdist_backward_cuda_dispatch.h' 2025-06-01T21:23:35.4191550Z adding 'torch/include/ATen/ops/_cdist_backward_native.h' 2025-06-01T21:23:35.4194907Z adding 'torch/include/ATen/ops/_cdist_backward_ops.h' 2025-06-01T21:23:35.4198096Z adding 'torch/include/ATen/ops/_cdist_forward.h' 2025-06-01T21:23:35.4201348Z adding 'torch/include/ATen/ops/_cdist_forward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.4204336Z adding 'torch/include/ATen/ops/_cdist_forward_cpu_dispatch.h' 2025-06-01T21:23:35.4207400Z adding 'torch/include/ATen/ops/_cdist_forward_cuda_dispatch.h' 2025-06-01T21:23:35.4210402Z adding 'torch/include/ATen/ops/_cdist_forward_native.h' 2025-06-01T21:23:35.4213677Z adding 'torch/include/ATen/ops/_cdist_forward_ops.h' 2025-06-01T21:23:35.4216856Z adding 'torch/include/ATen/ops/_cholesky_solve_helper.h' 2025-06-01T21:23:35.4220048Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.4223014Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_cpu_dispatch.h' 2025-06-01T21:23:35.4226178Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_cuda_dispatch.h' 2025-06-01T21:23:35.4229175Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_native.h' 2025-06-01T21:23:35.4232328Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_ops.h' 2025-06-01T21:23:35.4235369Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor.h' 2025-06-01T21:23:35.4238606Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.4241484Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor_native.h' 2025-06-01T21:23:35.4244593Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor_ops.h' 2025-06-01T21:23:35.4247641Z adding 'torch/include/ATen/ops/_chunk_cat.h' 2025-06-01T21:23:35.4250930Z adding 'torch/include/ATen/ops/_chunk_cat_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.4253965Z adding 'torch/include/ATen/ops/_chunk_cat_cuda_dispatch.h' 2025-06-01T21:23:35.4256986Z adding 'torch/include/ATen/ops/_chunk_cat_native.h' 2025-06-01T21:23:35.4260161Z adding 'torch/include/ATen/ops/_chunk_cat_ops.h' 2025-06-01T21:23:35.4263247Z adding 'torch/include/ATen/ops/_coalesce.h' 2025-06-01T21:23:35.4266552Z adding 'torch/include/ATen/ops/_coalesce_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.4269443Z adding 'torch/include/ATen/ops/_coalesce_native.h' 2025-06-01T21:23:35.4272600Z adding 'torch/include/ATen/ops/_coalesce_ops.h' 2025-06-01T21:23:35.4275636Z adding 'torch/include/ATen/ops/_coalesced.h' 2025-06-01T21:23:35.4278912Z adding 'torch/include/ATen/ops/_coalesced_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.4281884Z adding 'torch/include/ATen/ops/_coalesced_meta_dispatch.h' 2025-06-01T21:23:35.4284847Z adding 'torch/include/ATen/ops/_coalesced_native.h' 2025-06-01T21:23:35.4288066Z adding 'torch/include/ATen/ops/_coalesced_ops.h' 2025-06-01T21:23:35.4291244Z adding 'torch/include/ATen/ops/_compute_linear_combination.h' 2025-06-01T21:23:35.4294420Z adding 'torch/include/ATen/ops/_compute_linear_combination_cpu_dispatch.h' 2025-06-01T21:23:35.4297649Z adding 'torch/include/ATen/ops/_compute_linear_combination_cuda_dispatch.h' 2025-06-01T21:23:35.4307723Z adding 'torch/include/ATen/ops/_compute_linear_combination_native.h' 2025-06-01T21:23:35.4308229Z adding 'torch/include/ATen/ops/_compute_linear_combination_ops.h' 2025-06-01T21:23:35.4308606Z adding 'torch/include/ATen/ops/_conj.h' 2025-06-01T21:23:35.4310739Z adding 'torch/include/ATen/ops/_conj_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.4313909Z adding 'torch/include/ATen/ops/_conj_copy.h' 2025-06-01T21:23:35.4317555Z adding 'torch/include/ATen/ops/_conj_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.4320836Z adding 'torch/include/ATen/ops/_conj_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:35.4323715Z adding 'torch/include/ATen/ops/_conj_copy_native.h' 2025-06-01T21:23:35.4326987Z adding 'torch/include/ATen/ops/_conj_copy_ops.h' 2025-06-01T21:23:35.4330409Z adding 'torch/include/ATen/ops/_conj_native.h' 2025-06-01T21:23:35.4333631Z adding 'torch/include/ATen/ops/_conj_ops.h' 2025-06-01T21:23:35.4336816Z adding 'torch/include/ATen/ops/_conj_physical.h' 2025-06-01T21:23:35.4340050Z adding 'torch/include/ATen/ops/_conj_physical_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.4343121Z adding 'torch/include/ATen/ops/_conj_physical_native.h' 2025-06-01T21:23:35.4346410Z adding 'torch/include/ATen/ops/_conj_physical_ops.h' 2025-06-01T21:23:35.4350200Z adding 'torch/include/ATen/ops/_conv_depthwise2d.h' 2025-06-01T21:23:35.4353757Z adding 'torch/include/ATen/ops/_conv_depthwise2d_cuda_dispatch.h' 2025-06-01T21:23:35.4356983Z adding 'torch/include/ATen/ops/_conv_depthwise2d_native.h' 2025-06-01T21:23:35.4360307Z adding 'torch/include/ATen/ops/_conv_depthwise2d_ops.h' 2025-06-01T21:23:35.4363534Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr.h' 2025-06-01T21:23:35.4367076Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:35.4370062Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_cpu_dispatch.h' 2025-06-01T21:23:35.4373352Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_cuda_dispatch.h' 2025-06-01T21:23:35.4376378Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_meta.h' 2025-06-01T21:23:35.4379689Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_meta_dispatch.h' 2025-06-01T21:23:35.4382907Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_native.h' 2025-06-01T21:23:35.4386221Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_ops.h' 2025-06-01T21:23:35.4389531Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo.h' 2025-06-01T21:23:35.4392933Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:35.4396072Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_cpu_dispatch.h' 2025-06-01T21:23:35.4399256Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_cuda_dispatch.h' 2025-06-01T21:23:35.4402416Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_meta.h' 2025-06-01T21:23:35.4405655Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_meta_dispatch.h' 2025-06-01T21:23:35.4408739Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_native.h' 2025-06-01T21:23:35.4412098Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_ops.h' 2025-06-01T21:23:35.4415161Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack.h' 2025-06-01T21:23:35.4418431Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_cuda_dispatch.h' 2025-06-01T21:23:35.4421441Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu.h' 2025-06-01T21:23:35.4424810Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_cpu_dispatch.h' 2025-06-01T21:23:35.4427843Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_native.h' 2025-06-01T21:23:35.4431110Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_ops.h' 2025-06-01T21:23:35.4434214Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_native.h' 2025-06-01T21:23:35.4437416Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_ops.h' 2025-06-01T21:23:35.4441336Z adding 'torch/include/ATen/ops/_convolution.h' 2025-06-01T21:23:35.4445108Z adding 'torch/include/ATen/ops/_convolution_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.4448586Z adding 'torch/include/ATen/ops/_convolution_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.4451971Z adding 'torch/include/ATen/ops/_convolution_double_backward.h' 2025-06-01T21:23:35.4455475Z adding 'torch/include/ATen/ops/_convolution_double_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.4458621Z adding 'torch/include/ATen/ops/_convolution_double_backward_native.h' 2025-06-01T21:23:35.4461943Z adding 'torch/include/ATen/ops/_convolution_double_backward_ops.h' 2025-06-01T21:23:35.4465395Z adding 'torch/include/ATen/ops/_convolution_mode.h' 2025-06-01T21:23:35.4468852Z adding 'torch/include/ATen/ops/_convolution_mode_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.4471806Z adding 'torch/include/ATen/ops/_convolution_mode_native.h' 2025-06-01T21:23:35.4475108Z adding 'torch/include/ATen/ops/_convolution_mode_ops.h' 2025-06-01T21:23:35.4478247Z adding 'torch/include/ATen/ops/_convolution_native.h' 2025-06-01T21:23:35.4481868Z adding 'torch/include/ATen/ops/_convolution_ops.h' 2025-06-01T21:23:35.4485204Z adding 'torch/include/ATen/ops/_copy_from.h' 2025-06-01T21:23:35.4488466Z adding 'torch/include/ATen/ops/_copy_from_and_resize.h' 2025-06-01T21:23:35.4491847Z adding 'torch/include/ATen/ops/_copy_from_and_resize_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.4494748Z adding 'torch/include/ATen/ops/_copy_from_and_resize_native.h' 2025-06-01T21:23:35.4498090Z adding 'torch/include/ATen/ops/_copy_from_and_resize_ops.h' 2025-06-01T21:23:35.4501332Z adding 'torch/include/ATen/ops/_copy_from_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.4504502Z adding 'torch/include/ATen/ops/_copy_from_native.h' 2025-06-01T21:23:35.4515006Z adding 'torch/include/ATen/ops/_copy_from_ops.h' 2025-06-01T21:23:35.4515657Z adding 'torch/include/ATen/ops/_cslt_compress.h' 2025-06-01T21:23:35.4517048Z adding 'torch/include/ATen/ops/_cslt_compress_cuda_dispatch.h' 2025-06-01T21:23:35.4520159Z adding 'torch/include/ATen/ops/_cslt_compress_native.h' 2025-06-01T21:23:35.4523222Z adding 'torch/include/ATen/ops/_cslt_compress_ops.h' 2025-06-01T21:23:35.4526502Z adding 'torch/include/ATen/ops/_cslt_sparse_mm.h' 2025-06-01T21:23:35.4529733Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_cuda_dispatch.h' 2025-06-01T21:23:35.4533004Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_native.h' 2025-06-01T21:23:35.4537124Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_ops.h' 2025-06-01T21:23:35.4540762Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search.h' 2025-06-01T21:23:35.4544526Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search_cuda_dispatch.h' 2025-06-01T21:23:35.4547940Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search_native.h' 2025-06-01T21:23:35.4551191Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search_ops.h' 2025-06-01T21:23:35.4554720Z adding 'torch/include/ATen/ops/_ctc_loss.h' 2025-06-01T21:23:35.4558105Z adding 'torch/include/ATen/ops/_ctc_loss_backward.h' 2025-06-01T21:23:35.4561695Z adding 'torch/include/ATen/ops/_ctc_loss_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.4564880Z adding 'torch/include/ATen/ops/_ctc_loss_backward_cpu_dispatch.h' 2025-06-01T21:23:35.4568110Z adding 'torch/include/ATen/ops/_ctc_loss_backward_cuda_dispatch.h' 2025-06-01T21:23:35.4571349Z adding 'torch/include/ATen/ops/_ctc_loss_backward_native.h' 2025-06-01T21:23:35.4574878Z adding 'torch/include/ATen/ops/_ctc_loss_backward_ops.h' 2025-06-01T21:23:35.4578248Z adding 'torch/include/ATen/ops/_ctc_loss_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.4581359Z adding 'torch/include/ATen/ops/_ctc_loss_cpu_dispatch.h' 2025-06-01T21:23:35.4584922Z adding 'torch/include/ATen/ops/_ctc_loss_cuda_dispatch.h' 2025-06-01T21:23:35.4587997Z adding 'torch/include/ATen/ops/_ctc_loss_meta_dispatch.h' 2025-06-01T21:23:35.4591111Z adding 'torch/include/ATen/ops/_ctc_loss_native.h' 2025-06-01T21:23:35.4594641Z adding 'torch/include/ATen/ops/_ctc_loss_ops.h' 2025-06-01T21:23:35.4598346Z adding 'torch/include/ATen/ops/_cudnn_attention_forward.h' 2025-06-01T21:23:35.4601837Z adding 'torch/include/ATen/ops/_cudnn_attention_forward_cuda_dispatch.h' 2025-06-01T21:23:35.4604803Z adding 'torch/include/ATen/ops/_cudnn_attention_forward_native.h' 2025-06-01T21:23:35.4608081Z adding 'torch/include/ATen/ops/_cudnn_attention_forward_ops.h' 2025-06-01T21:23:35.4611345Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss.h' 2025-06-01T21:23:35.4614694Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.4617775Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_cuda_dispatch.h' 2025-06-01T21:23:35.4620775Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_native.h' 2025-06-01T21:23:35.4624233Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_ops.h' 2025-06-01T21:23:35.4627591Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state.h' 2025-06-01T21:23:35.4631840Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.4634846Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_cuda_dispatch.h' 2025-06-01T21:23:35.4728779Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_native.h' 2025-06-01T21:23:35.4732408Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_ops.h' 2025-06-01T21:23:35.4736566Z adding 'torch/include/ATen/ops/_cudnn_rnn.h' 2025-06-01T21:23:35.4741096Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward.h' 2025-06-01T21:23:35.4745234Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.4748538Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_cuda_dispatch.h' 2025-06-01T21:23:35.4751769Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_native.h' 2025-06-01T21:23:35.4755416Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_ops.h' 2025-06-01T21:23:35.4759256Z adding 'torch/include/ATen/ops/_cudnn_rnn_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.4762473Z adding 'torch/include/ATen/ops/_cudnn_rnn_cuda_dispatch.h' 2025-06-01T21:23:35.4765972Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight.h' 2025-06-01T21:23:35.4769390Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.4772495Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_cuda_dispatch.h' 2025-06-01T21:23:35.4775541Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_native.h' 2025-06-01T21:23:35.4778860Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_ops.h' 2025-06-01T21:23:35.4782038Z adding 'torch/include/ATen/ops/_cudnn_rnn_native.h' 2025-06-01T21:23:35.4785859Z adding 'torch/include/ATen/ops/_cudnn_rnn_ops.h' 2025-06-01T21:23:35.4789121Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache.h' 2025-06-01T21:23:35.4792390Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.4795258Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache_native.h' 2025-06-01T21:23:35.4798383Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache_ops.h' 2025-06-01T21:23:35.4801447Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size.h' 2025-06-01T21:23:35.4804718Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.4807599Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size_native.h' 2025-06-01T21:23:35.4810733Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size_ops.h' 2025-06-01T21:23:35.4813804Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size.h' 2025-06-01T21:23:35.4817033Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.4819971Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size_native.h' 2025-06-01T21:23:35.4822971Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size_ops.h' 2025-06-01T21:23:35.4826155Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size.h' 2025-06-01T21:23:35.4829368Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.4832333Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size_native.h' 2025-06-01T21:23:35.4835337Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size_ops.h' 2025-06-01T21:23:35.4838341Z adding 'torch/include/ATen/ops/_cummax_helper.h' 2025-06-01T21:23:35.4841456Z adding 'torch/include/ATen/ops/_cummax_helper_cpu_dispatch.h' 2025-06-01T21:23:35.4844517Z adding 'torch/include/ATen/ops/_cummax_helper_cuda_dispatch.h' 2025-06-01T21:23:35.4847493Z adding 'torch/include/ATen/ops/_cummax_helper_native.h' 2025-06-01T21:23:35.4850630Z adding 'torch/include/ATen/ops/_cummax_helper_ops.h' 2025-06-01T21:23:35.4853700Z adding 'torch/include/ATen/ops/_cummin_helper.h' 2025-06-01T21:23:35.4856789Z adding 'torch/include/ATen/ops/_cummin_helper_cpu_dispatch.h' 2025-06-01T21:23:35.4859844Z adding 'torch/include/ATen/ops/_cummin_helper_cuda_dispatch.h' 2025-06-01T21:23:35.4862830Z adding 'torch/include/ATen/ops/_cummin_helper_native.h' 2025-06-01T21:23:35.4866136Z adding 'torch/include/ATen/ops/_cummin_helper_ops.h' 2025-06-01T21:23:35.4869309Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap.h' 2025-06-01T21:23:35.4872487Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.4875353Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap_native.h' 2025-06-01T21:23:35.4878504Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap_ops.h' 2025-06-01T21:23:35.4881341Z adding 'torch/include/ATen/ops/_dimI.h' 2025-06-01T21:23:35.4884323Z adding 'torch/include/ATen/ops/_dimI_native.h' 2025-06-01T21:23:35.4887482Z adding 'torch/include/ATen/ops/_dimI_ops.h' 2025-06-01T21:23:35.4890441Z adding 'torch/include/ATen/ops/_dimV.h' 2025-06-01T21:23:35.4893600Z adding 'torch/include/ATen/ops/_dimV_native.h' 2025-06-01T21:23:35.4897332Z adding 'torch/include/ATen/ops/_dimV_ops.h' 2025-06-01T21:23:35.4900646Z adding 'torch/include/ATen/ops/_dim_arange.h' 2025-06-01T21:23:35.4904151Z adding 'torch/include/ATen/ops/_dim_arange_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.4907118Z adding 'torch/include/ATen/ops/_dim_arange_native.h' 2025-06-01T21:23:35.4910361Z adding 'torch/include/ATen/ops/_dim_arange_ops.h' 2025-06-01T21:23:35.4913579Z adding 'torch/include/ATen/ops/_dirichlet_grad.h' 2025-06-01T21:23:35.4917003Z adding 'torch/include/ATen/ops/_dirichlet_grad_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.4920042Z adding 'torch/include/ATen/ops/_dirichlet_grad_cpu_dispatch.h' 2025-06-01T21:23:35.4923337Z adding 'torch/include/ATen/ops/_dirichlet_grad_cuda_dispatch.h' 2025-06-01T21:23:35.4926481Z adding 'torch/include/ATen/ops/_dirichlet_grad_native.h' 2025-06-01T21:23:35.4929710Z adding 'torch/include/ATen/ops/_dirichlet_grad_ops.h' 2025-06-01T21:23:35.4932968Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit.h' 2025-06-01T21:23:35.4936159Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit_cpu_dispatch.h' 2025-06-01T21:23:35.4939306Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit_native.h' 2025-06-01T21:23:35.4942426Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit_ops.h' 2025-06-01T21:23:35.4945805Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight.h' 2025-06-01T21:23:35.4949098Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_cpu_dispatch.h' 2025-06-01T21:23:35.4952180Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_native.h' 2025-06-01T21:23:35.4955505Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_ops.h' 2025-06-01T21:23:35.4959011Z adding 'torch/include/ATen/ops/_efficient_attention_backward.h' 2025-06-01T21:23:35.4962616Z adding 'torch/include/ATen/ops/_efficient_attention_backward_cuda_dispatch.h' 2025-06-01T21:23:35.4965797Z adding 'torch/include/ATen/ops/_efficient_attention_backward_native.h' 2025-06-01T21:23:35.4969367Z adding 'torch/include/ATen/ops/_efficient_attention_backward_ops.h' 2025-06-01T21:23:35.4973033Z adding 'torch/include/ATen/ops/_efficient_attention_forward.h' 2025-06-01T21:23:35.4976544Z adding 'torch/include/ATen/ops/_efficient_attention_forward_cuda_dispatch.h' 2025-06-01T21:23:35.4979748Z adding 'torch/include/ATen/ops/_efficient_attention_forward_native.h' 2025-06-01T21:23:35.4983198Z adding 'torch/include/ATen/ops/_efficient_attention_forward_ops.h' 2025-06-01T21:23:35.4986951Z adding 'torch/include/ATen/ops/_efficientzerotensor.h' 2025-06-01T21:23:35.4990546Z adding 'torch/include/ATen/ops/_efficientzerotensor_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.4993634Z adding 'torch/include/ATen/ops/_efficientzerotensor_cpu_dispatch.h' 2025-06-01T21:23:35.4996951Z adding 'torch/include/ATen/ops/_efficientzerotensor_cuda_dispatch.h' 2025-06-01T21:23:35.5000122Z adding 'torch/include/ATen/ops/_efficientzerotensor_meta_dispatch.h' 2025-06-01T21:23:35.5003268Z adding 'torch/include/ATen/ops/_efficientzerotensor_native.h' 2025-06-01T21:23:35.5006633Z adding 'torch/include/ATen/ops/_efficientzerotensor_ops.h' 2025-06-01T21:23:35.5010016Z adding 'torch/include/ATen/ops/_embedding_bag.h' 2025-06-01T21:23:35.5013656Z adding 'torch/include/ATen/ops/_embedding_bag_backward.h' 2025-06-01T21:23:35.5016968Z adding 'torch/include/ATen/ops/_embedding_bag_backward_cpu_dispatch.h' 2025-06-01T21:23:35.5020253Z adding 'torch/include/ATen/ops/_embedding_bag_backward_cuda_dispatch.h' 2025-06-01T21:23:35.5023425Z adding 'torch/include/ATen/ops/_embedding_bag_backward_native.h' 2025-06-01T21:23:35.5026819Z adding 'torch/include/ATen/ops/_embedding_bag_backward_ops.h' 2025-06-01T21:23:35.5030357Z adding 'torch/include/ATen/ops/_embedding_bag_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.5033447Z adding 'torch/include/ATen/ops/_embedding_bag_cpu_dispatch.h' 2025-06-01T21:23:35.5037067Z adding 'torch/include/ATen/ops/_embedding_bag_cuda_dispatch.h' 2025-06-01T21:23:35.5041292Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward.h' 2025-06-01T21:23:35.5045587Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.5049041Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_cpu_dispatch.h' 2025-06-01T21:23:35.5052678Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_cuda_dispatch.h' 2025-06-01T21:23:35.5056217Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_native.h' 2025-06-01T21:23:35.5060099Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_ops.h' 2025-06-01T21:23:35.5063893Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only.h' 2025-06-01T21:23:35.5067359Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.5070627Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_cpu_dispatch.h' 2025-06-01T21:23:35.5073821Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_cuda_dispatch.h' 2025-06-01T21:23:35.5077156Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_native.h' 2025-06-01T21:23:35.5080588Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_ops.h' 2025-06-01T21:23:35.5083945Z adding 'torch/include/ATen/ops/_embedding_bag_native.h' 2025-06-01T21:23:35.5087518Z adding 'torch/include/ATen/ops/_embedding_bag_ops.h' 2025-06-01T21:23:35.5090918Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward.h' 2025-06-01T21:23:35.5094315Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.5097476Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_cpu_dispatch.h' 2025-06-01T21:23:35.5100714Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_cuda_dispatch.h' 2025-06-01T21:23:35.5103850Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_native.h' 2025-06-01T21:23:35.5107150Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_ops.h' 2025-06-01T21:23:35.5110428Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward.h' 2025-06-01T21:23:35.5114000Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.5116997Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward_native.h' 2025-06-01T21:23:35.5120255Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward_ops.h' 2025-06-01T21:23:35.5123989Z adding 'torch/include/ATen/ops/_empty_affine_quantized.h' 2025-06-01T21:23:35.5127556Z adding 'torch/include/ATen/ops/_empty_affine_quantized_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.5130704Z adding 'torch/include/ATen/ops/_empty_affine_quantized_cpu_dispatch.h' 2025-06-01T21:23:35.5133777Z adding 'torch/include/ATen/ops/_empty_affine_quantized_native.h' 2025-06-01T21:23:35.5137136Z adding 'torch/include/ATen/ops/_empty_affine_quantized_ops.h' 2025-06-01T21:23:35.5141080Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized.h' 2025-06-01T21:23:35.5144836Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.5148283Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_cpu_dispatch.h' 2025-06-01T21:23:35.5151373Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_native.h' 2025-06-01T21:23:35.5154774Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_ops.h' 2025-06-01T21:23:35.5157906Z adding 'torch/include/ATen/ops/_euclidean_dist.h' 2025-06-01T21:23:35.5161233Z adding 'torch/include/ATen/ops/_euclidean_dist_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.5164118Z adding 'torch/include/ATen/ops/_euclidean_dist_native.h' 2025-06-01T21:23:35.5167233Z adding 'torch/include/ATen/ops/_euclidean_dist_ops.h' 2025-06-01T21:23:35.5170499Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine.h' 2025-06-01T21:23:35.5173720Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward.h' 2025-06-01T21:23:35.5176977Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_cpu_dispatch.h' 2025-06-01T21:23:35.5180104Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_cuda_dispatch.h' 2025-06-01T21:23:35.5183183Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_native.h' 2025-06-01T21:23:35.5186636Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_ops.h' 2025-06-01T21:23:35.5189928Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.5192966Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_cpu_dispatch.h' 2025-06-01T21:23:35.5196112Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_cuda_dispatch.h' 2025-06-01T21:23:35.5199076Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_native.h' 2025-06-01T21:23:35.5202512Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_ops.h' 2025-06-01T21:23:35.5205734Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine.h' 2025-06-01T21:23:35.5209081Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward.h' 2025-06-01T21:23:35.5212305Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_cpu_dispatch.h' 2025-06-01T21:23:35.5215569Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_cuda_dispatch.h' 2025-06-01T21:23:35.5218740Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_native.h' 2025-06-01T21:23:35.5222012Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_ops.h' 2025-06-01T21:23:35.5225557Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.5228606Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_cpu_dispatch.h' 2025-06-01T21:23:35.5231929Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_cuda_dispatch.h' 2025-06-01T21:23:35.5234941Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_native.h' 2025-06-01T21:23:35.5238342Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_ops.h' 2025-06-01T21:23:35.5241779Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams.h' 2025-06-01T21:23:35.5245198Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.5248419Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cpu_dispatch.h' 2025-06-01T21:23:35.5251545Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cuda_dispatch.h' 2025-06-01T21:23:35.5254723Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_native.h' 2025-06-01T21:23:35.5258061Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_ops.h' 2025-06-01T21:23:35.5261495Z adding 'torch/include/ATen/ops/_fft_c2c.h' 2025-06-01T21:23:35.5265022Z adding 'torch/include/ATen/ops/_fft_c2c_cpu_dispatch.h' 2025-06-01T21:23:35.5268225Z adding 'torch/include/ATen/ops/_fft_c2c_cuda_dispatch.h' 2025-06-01T21:23:35.5271319Z adding 'torch/include/ATen/ops/_fft_c2c_native.h' 2025-06-01T21:23:35.5274531Z adding 'torch/include/ATen/ops/_fft_c2c_ops.h' 2025-06-01T21:23:35.5278011Z adding 'torch/include/ATen/ops/_fft_c2r.h' 2025-06-01T21:23:35.5281313Z adding 'torch/include/ATen/ops/_fft_c2r_cpu_dispatch.h' 2025-06-01T21:23:35.5284622Z adding 'torch/include/ATen/ops/_fft_c2r_cuda_dispatch.h' 2025-06-01T21:23:35.5287742Z adding 'torch/include/ATen/ops/_fft_c2r_native.h' 2025-06-01T21:23:35.5291150Z adding 'torch/include/ATen/ops/_fft_c2r_ops.h' 2025-06-01T21:23:35.5294458Z adding 'torch/include/ATen/ops/_fft_r2c.h' 2025-06-01T21:23:35.5297651Z adding 'torch/include/ATen/ops/_fft_r2c_cpu_dispatch.h' 2025-06-01T21:23:35.5300897Z adding 'torch/include/ATen/ops/_fft_r2c_cuda_dispatch.h' 2025-06-01T21:23:35.5304073Z adding 'torch/include/ATen/ops/_fft_r2c_native.h' 2025-06-01T21:23:35.5307452Z adding 'torch/include/ATen/ops/_fft_r2c_ops.h' 2025-06-01T21:23:35.5310723Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask.h' 2025-06-01T21:23:35.5313911Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_cuda_dispatch.h' 2025-06-01T21:23:35.5317111Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_meta_dispatch.h' 2025-06-01T21:23:35.5320098Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_native.h' 2025-06-01T21:23:35.5323344Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_ops.h' 2025-06-01T21:23:35.5326781Z adding 'torch/include/ATen/ops/_flash_attention_backward.h' 2025-06-01T21:23:35.5330329Z adding 'torch/include/ATen/ops/_flash_attention_backward_cuda_dispatch.h' 2025-06-01T21:23:35.5333526Z adding 'torch/include/ATen/ops/_flash_attention_backward_native.h' 2025-06-01T21:23:35.5336893Z adding 'torch/include/ATen/ops/_flash_attention_backward_ops.h' 2025-06-01T21:23:35.5340531Z adding 'torch/include/ATen/ops/_flash_attention_forward.h' 2025-06-01T21:23:35.5344061Z adding 'torch/include/ATen/ops/_flash_attention_forward_cuda_dispatch.h' 2025-06-01T21:23:35.5347348Z adding 'torch/include/ATen/ops/_flash_attention_forward_native.h' 2025-06-01T21:23:35.5350765Z adding 'torch/include/ATen/ops/_flash_attention_forward_ops.h' 2025-06-01T21:23:35.5354151Z adding 'torch/include/ATen/ops/_foobar.h' 2025-06-01T21:23:35.5357585Z adding 'torch/include/ATen/ops/_foobar_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.5360670Z adding 'torch/include/ATen/ops/_foobar_cpu_dispatch.h' 2025-06-01T21:23:35.5363785Z adding 'torch/include/ATen/ops/_foobar_native.h' 2025-06-01T21:23:35.5367000Z adding 'torch/include/ATen/ops/_foobar_ops.h' 2025-06-01T21:23:35.5370293Z adding 'torch/include/ATen/ops/_foreach_abs.h' 2025-06-01T21:23:35.5374136Z adding 'torch/include/ATen/ops/_foreach_abs_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.5376697Z adding 'torch/include/ATen/ops/_foreach_abs_cuda_dispatch.h' 2025-06-01T21:23:35.5379865Z adding 'torch/include/ATen/ops/_foreach_abs_native.h' 2025-06-01T21:23:35.5383191Z adding 'torch/include/ATen/ops/_foreach_abs_ops.h' 2025-06-01T21:23:35.5386572Z adding 'torch/include/ATen/ops/_foreach_acos.h' 2025-06-01T21:23:35.5389868Z adding 'torch/include/ATen/ops/_foreach_acos_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.5392992Z adding 'torch/include/ATen/ops/_foreach_acos_cuda_dispatch.h' 2025-06-01T21:23:35.5396156Z adding 'torch/include/ATen/ops/_foreach_acos_native.h' 2025-06-01T21:23:35.5399349Z adding 'torch/include/ATen/ops/_foreach_acos_ops.h' 2025-06-01T21:23:35.5402964Z adding 'torch/include/ATen/ops/_foreach_add.h' 2025-06-01T21:23:35.5406530Z adding 'torch/include/ATen/ops/_foreach_add_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.5409797Z adding 'torch/include/ATen/ops/_foreach_add_cuda_dispatch.h' 2025-06-01T21:23:35.5413252Z adding 'torch/include/ATen/ops/_foreach_add_native.h' 2025-06-01T21:23:35.5417092Z adding 'torch/include/ATen/ops/_foreach_add_ops.h' 2025-06-01T21:23:35.5420938Z adding 'torch/include/ATen/ops/_foreach_addcdiv.h' 2025-06-01T21:23:35.5424708Z adding 'torch/include/ATen/ops/_foreach_addcdiv_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.5427906Z adding 'torch/include/ATen/ops/_foreach_addcdiv_cuda_dispatch.h' 2025-06-01T21:23:35.5431266Z adding 'torch/include/ATen/ops/_foreach_addcdiv_native.h' 2025-06-01T21:23:35.5435079Z adding 'torch/include/ATen/ops/_foreach_addcdiv_ops.h' 2025-06-01T21:23:35.5438863Z adding 'torch/include/ATen/ops/_foreach_addcmul.h' 2025-06-01T21:23:35.5442508Z adding 'torch/include/ATen/ops/_foreach_addcmul_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.5445641Z adding 'torch/include/ATen/ops/_foreach_addcmul_cuda_dispatch.h' 2025-06-01T21:23:35.5449024Z adding 'torch/include/ATen/ops/_foreach_addcmul_native.h' 2025-06-01T21:23:35.5452809Z adding 'torch/include/ATen/ops/_foreach_addcmul_ops.h' 2025-06-01T21:23:35.5456233Z adding 'torch/include/ATen/ops/_foreach_asin.h' 2025-06-01T21:23:35.5459636Z adding 'torch/include/ATen/ops/_foreach_asin_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.5462630Z adding 'torch/include/ATen/ops/_foreach_asin_cuda_dispatch.h' 2025-06-01T21:23:35.5465871Z adding 'torch/include/ATen/ops/_foreach_asin_native.h' 2025-06-01T21:23:35.5469095Z adding 'torch/include/ATen/ops/_foreach_asin_ops.h' 2025-06-01T21:23:35.5472427Z adding 'torch/include/ATen/ops/_foreach_atan.h' 2025-06-01T21:23:35.5475783Z adding 'torch/include/ATen/ops/_foreach_atan_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.5478891Z adding 'torch/include/ATen/ops/_foreach_atan_cuda_dispatch.h' 2025-06-01T21:23:35.5482030Z adding 'torch/include/ATen/ops/_foreach_atan_native.h' 2025-06-01T21:23:35.5485257Z adding 'torch/include/ATen/ops/_foreach_atan_ops.h' 2025-06-01T21:23:35.5488550Z adding 'torch/include/ATen/ops/_foreach_ceil.h' 2025-06-01T21:23:35.5491851Z adding 'torch/include/ATen/ops/_foreach_ceil_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.5494988Z adding 'torch/include/ATen/ops/_foreach_ceil_cuda_dispatch.h' 2025-06-01T21:23:35.5498017Z adding 'torch/include/ATen/ops/_foreach_ceil_native.h' 2025-06-01T21:23:35.5501422Z adding 'torch/include/ATen/ops/_foreach_ceil_ops.h' 2025-06-01T21:23:35.5505077Z adding 'torch/include/ATen/ops/_foreach_clamp_max.h' 2025-06-01T21:23:35.5508547Z adding 'torch/include/ATen/ops/_foreach_clamp_max_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.5511759Z adding 'torch/include/ATen/ops/_foreach_clamp_max_cuda_dispatch.h' 2025-06-01T21:23:35.5514905Z adding 'torch/include/ATen/ops/_foreach_clamp_max_native.h' 2025-06-01T21:23:35.5518644Z adding 'torch/include/ATen/ops/_foreach_clamp_max_ops.h' 2025-06-01T21:23:35.5522283Z adding 'torch/include/ATen/ops/_foreach_clamp_min.h' 2025-06-01T21:23:35.5525811Z adding 'torch/include/ATen/ops/_foreach_clamp_min_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.5528932Z adding 'torch/include/ATen/ops/_foreach_clamp_min_cuda_dispatch.h' 2025-06-01T21:23:35.5532076Z adding 'torch/include/ATen/ops/_foreach_clamp_min_native.h' 2025-06-01T21:23:35.5536077Z adding 'torch/include/ATen/ops/_foreach_clamp_min_ops.h' 2025-06-01T21:23:35.5539683Z adding 'torch/include/ATen/ops/_foreach_copy.h' 2025-06-01T21:23:35.5543041Z adding 'torch/include/ATen/ops/_foreach_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.5546342Z adding 'torch/include/ATen/ops/_foreach_copy_cuda_dispatch.h' 2025-06-01T21:23:35.5549393Z adding 'torch/include/ATen/ops/_foreach_copy_native.h' 2025-06-01T21:23:35.5552874Z adding 'torch/include/ATen/ops/_foreach_copy_ops.h' 2025-06-01T21:23:35.5556079Z adding 'torch/include/ATen/ops/_foreach_cos.h' 2025-06-01T21:23:35.5559498Z adding 'torch/include/ATen/ops/_foreach_cos_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.5562632Z adding 'torch/include/ATen/ops/_foreach_cos_cuda_dispatch.h' 2025-06-01T21:23:35.5565981Z adding 'torch/include/ATen/ops/_foreach_cos_native.h' 2025-06-01T21:23:35.5569196Z adding 'torch/include/ATen/ops/_foreach_cos_ops.h' 2025-06-01T21:23:35.5572398Z adding 'torch/include/ATen/ops/_foreach_cosh.h' 2025-06-01T21:23:35.5575858Z adding 'torch/include/ATen/ops/_foreach_cosh_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.5578850Z adding 'torch/include/ATen/ops/_foreach_cosh_cuda_dispatch.h' 2025-06-01T21:23:35.5581820Z adding 'torch/include/ATen/ops/_foreach_cosh_native.h' 2025-06-01T21:23:35.5585147Z adding 'torch/include/ATen/ops/_foreach_cosh_ops.h' 2025-06-01T21:23:35.5588625Z adding 'torch/include/ATen/ops/_foreach_div.h' 2025-06-01T21:23:35.5592300Z adding 'torch/include/ATen/ops/_foreach_div_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.5595399Z adding 'torch/include/ATen/ops/_foreach_div_cuda_dispatch.h' 2025-06-01T21:23:35.5598607Z adding 'torch/include/ATen/ops/_foreach_div_native.h' 2025-06-01T21:23:35.5602437Z adding 'torch/include/ATen/ops/_foreach_div_ops.h' 2025-06-01T21:23:35.5605704Z adding 'torch/include/ATen/ops/_foreach_erf.h' 2025-06-01T21:23:35.5608938Z adding 'torch/include/ATen/ops/_foreach_erf_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.5611902Z adding 'torch/include/ATen/ops/_foreach_erf_cuda_dispatch.h' 2025-06-01T21:23:35.5614881Z adding 'torch/include/ATen/ops/_foreach_erf_native.h' 2025-06-01T21:23:35.5618193Z adding 'torch/include/ATen/ops/_foreach_erf_ops.h' 2025-06-01T21:23:35.5621446Z adding 'torch/include/ATen/ops/_foreach_erfc.h' 2025-06-01T21:23:35.5624831Z adding 'torch/include/ATen/ops/_foreach_erfc_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.5627822Z adding 'torch/include/ATen/ops/_foreach_erfc_cuda_dispatch.h' 2025-06-01T21:23:35.5630805Z adding 'torch/include/ATen/ops/_foreach_erfc_native.h' 2025-06-01T21:23:35.5634000Z adding 'torch/include/ATen/ops/_foreach_erfc_ops.h' 2025-06-01T21:23:35.5637111Z adding 'torch/include/ATen/ops/_foreach_exp.h' 2025-06-01T21:23:35.5640377Z adding 'torch/include/ATen/ops/_foreach_exp_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.5643338Z adding 'torch/include/ATen/ops/_foreach_exp_cuda_dispatch.h' 2025-06-01T21:23:35.5646337Z adding 'torch/include/ATen/ops/_foreach_exp_native.h' 2025-06-01T21:23:35.5649561Z adding 'torch/include/ATen/ops/_foreach_exp_ops.h' 2025-06-01T21:23:35.5652686Z adding 'torch/include/ATen/ops/_foreach_expm1.h' 2025-06-01T21:23:35.5655924Z adding 'torch/include/ATen/ops/_foreach_expm1_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.5659531Z adding 'torch/include/ATen/ops/_foreach_expm1_cuda_dispatch.h' 2025-06-01T21:23:35.5662592Z adding 'torch/include/ATen/ops/_foreach_expm1_native.h' 2025-06-01T21:23:35.5666063Z adding 'torch/include/ATen/ops/_foreach_expm1_ops.h' 2025-06-01T21:23:35.5669232Z adding 'torch/include/ATen/ops/_foreach_floor.h' 2025-06-01T21:23:35.5672529Z adding 'torch/include/ATen/ops/_foreach_floor_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.5675435Z adding 'torch/include/ATen/ops/_foreach_floor_cuda_dispatch.h' 2025-06-01T21:23:35.5678580Z adding 'torch/include/ATen/ops/_foreach_floor_native.h' 2025-06-01T21:23:35.5681839Z adding 'torch/include/ATen/ops/_foreach_floor_ops.h' 2025-06-01T21:23:35.5684929Z adding 'torch/include/ATen/ops/_foreach_frac.h' 2025-06-01T21:23:35.5689441Z adding 'torch/include/ATen/ops/_foreach_frac_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.5692561Z adding 'torch/include/ATen/ops/_foreach_frac_cuda_dispatch.h' 2025-06-01T21:23:35.5695637Z adding 'torch/include/ATen/ops/_foreach_frac_native.h' 2025-06-01T21:23:35.5698892Z adding 'torch/include/ATen/ops/_foreach_frac_ops.h' 2025-06-01T21:23:35.5702284Z adding 'torch/include/ATen/ops/_foreach_lerp.h' 2025-06-01T21:23:35.5705826Z adding 'torch/include/ATen/ops/_foreach_lerp_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.5708911Z adding 'torch/include/ATen/ops/_foreach_lerp_cuda_dispatch.h' 2025-06-01T21:23:35.5712597Z adding 'torch/include/ATen/ops/_foreach_lerp_native.h' 2025-06-01T21:23:35.5715779Z adding 'torch/include/ATen/ops/_foreach_lerp_ops.h' 2025-06-01T21:23:35.5719025Z adding 'torch/include/ATen/ops/_foreach_lgamma.h' 2025-06-01T21:23:35.5722376Z adding 'torch/include/ATen/ops/_foreach_lgamma_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.5725285Z adding 'torch/include/ATen/ops/_foreach_lgamma_cuda_dispatch.h' 2025-06-01T21:23:35.5728303Z adding 'torch/include/ATen/ops/_foreach_lgamma_native.h' 2025-06-01T21:23:35.5731515Z adding 'torch/include/ATen/ops/_foreach_lgamma_ops.h' 2025-06-01T21:23:35.5734629Z adding 'torch/include/ATen/ops/_foreach_log.h' 2025-06-01T21:23:35.5737769Z adding 'torch/include/ATen/ops/_foreach_log10.h' 2025-06-01T21:23:35.5741070Z adding 'torch/include/ATen/ops/_foreach_log10_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.5744187Z adding 'torch/include/ATen/ops/_foreach_log10_cuda_dispatch.h' 2025-06-01T21:23:35.5747217Z adding 'torch/include/ATen/ops/_foreach_log10_native.h' 2025-06-01T21:23:35.5750473Z adding 'torch/include/ATen/ops/_foreach_log10_ops.h' 2025-06-01T21:23:35.5753684Z adding 'torch/include/ATen/ops/_foreach_log1p.h' 2025-06-01T21:23:35.5756932Z adding 'torch/include/ATen/ops/_foreach_log1p_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.5759849Z adding 'torch/include/ATen/ops/_foreach_log1p_cuda_dispatch.h' 2025-06-01T21:23:35.5762891Z adding 'torch/include/ATen/ops/_foreach_log1p_native.h' 2025-06-01T21:23:35.5766153Z adding 'torch/include/ATen/ops/_foreach_log1p_ops.h' 2025-06-01T21:23:35.5769559Z adding 'torch/include/ATen/ops/_foreach_log2.h' 2025-06-01T21:23:35.5772851Z adding 'torch/include/ATen/ops/_foreach_log2_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.5775812Z adding 'torch/include/ATen/ops/_foreach_log2_cuda_dispatch.h' 2025-06-01T21:23:35.5778879Z adding 'torch/include/ATen/ops/_foreach_log2_native.h' 2025-06-01T21:23:35.5782105Z adding 'torch/include/ATen/ops/_foreach_log2_ops.h' 2025-06-01T21:23:35.5785650Z adding 'torch/include/ATen/ops/_foreach_log_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.5788728Z adding 'torch/include/ATen/ops/_foreach_log_cuda_dispatch.h' 2025-06-01T21:23:35.5791874Z adding 'torch/include/ATen/ops/_foreach_log_native.h' 2025-06-01T21:23:35.5795214Z adding 'torch/include/ATen/ops/_foreach_log_ops.h' 2025-06-01T21:23:35.5798419Z adding 'torch/include/ATen/ops/_foreach_max.h' 2025-06-01T21:23:35.5801846Z adding 'torch/include/ATen/ops/_foreach_max_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.5804850Z adding 'torch/include/ATen/ops/_foreach_max_cuda_dispatch.h' 2025-06-01T21:23:35.5807998Z adding 'torch/include/ATen/ops/_foreach_max_native.h' 2025-06-01T21:23:35.5811170Z adding 'torch/include/ATen/ops/_foreach_max_ops.h' 2025-06-01T21:23:35.5814699Z adding 'torch/include/ATen/ops/_foreach_maximum.h' 2025-06-01T21:23:35.5818347Z adding 'torch/include/ATen/ops/_foreach_maximum_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.5821422Z adding 'torch/include/ATen/ops/_foreach_maximum_cuda_dispatch.h' 2025-06-01T21:23:35.5824767Z adding 'torch/include/ATen/ops/_foreach_maximum_native.h' 2025-06-01T21:23:35.5828392Z adding 'torch/include/ATen/ops/_foreach_maximum_ops.h' 2025-06-01T21:23:35.5832024Z adding 'torch/include/ATen/ops/_foreach_minimum.h' 2025-06-01T21:23:35.5835563Z adding 'torch/include/ATen/ops/_foreach_minimum_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.5838693Z adding 'torch/include/ATen/ops/_foreach_minimum_cuda_dispatch.h' 2025-06-01T21:23:35.5841931Z adding 'torch/include/ATen/ops/_foreach_minimum_native.h' 2025-06-01T21:23:35.5845599Z adding 'torch/include/ATen/ops/_foreach_minimum_ops.h' 2025-06-01T21:23:35.5849258Z adding 'torch/include/ATen/ops/_foreach_mul.h' 2025-06-01T21:23:35.5852956Z adding 'torch/include/ATen/ops/_foreach_mul_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.5856143Z adding 'torch/include/ATen/ops/_foreach_mul_cuda_dispatch.h' 2025-06-01T21:23:35.5859584Z adding 'torch/include/ATen/ops/_foreach_mul_native.h' 2025-06-01T21:23:35.5863365Z adding 'torch/include/ATen/ops/_foreach_mul_ops.h' 2025-06-01T21:23:35.5866932Z adding 'torch/include/ATen/ops/_foreach_neg.h' 2025-06-01T21:23:35.5870372Z adding 'torch/include/ATen/ops/_foreach_neg_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.5873430Z adding 'torch/include/ATen/ops/_foreach_neg_cuda_dispatch.h' 2025-06-01T21:23:35.5876551Z adding 'torch/include/ATen/ops/_foreach_neg_native.h' 2025-06-01T21:23:35.5880052Z adding 'torch/include/ATen/ops/_foreach_neg_ops.h' 2025-06-01T21:23:35.5883440Z adding 'torch/include/ATen/ops/_foreach_norm.h' 2025-06-01T21:23:35.5886842Z adding 'torch/include/ATen/ops/_foreach_norm_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.5889893Z adding 'torch/include/ATen/ops/_foreach_norm_cuda_dispatch.h' 2025-06-01T21:23:35.5893020Z adding 'torch/include/ATen/ops/_foreach_norm_native.h' 2025-06-01T21:23:35.5896271Z adding 'torch/include/ATen/ops/_foreach_norm_ops.h' 2025-06-01T21:23:35.5899744Z adding 'torch/include/ATen/ops/_foreach_pow.h' 2025-06-01T21:23:35.5903248Z adding 'torch/include/ATen/ops/_foreach_pow_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.5906625Z adding 'torch/include/ATen/ops/_foreach_pow_cuda_dispatch.h' 2025-06-01T21:23:35.5910014Z adding 'torch/include/ATen/ops/_foreach_pow_native.h' 2025-06-01T21:23:35.5913672Z adding 'torch/include/ATen/ops/_foreach_pow_ops.h' 2025-06-01T21:23:35.5917128Z adding 'torch/include/ATen/ops/_foreach_reciprocal.h' 2025-06-01T21:23:35.5920403Z adding 'torch/include/ATen/ops/_foreach_reciprocal_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.5923515Z adding 'torch/include/ATen/ops/_foreach_reciprocal_cuda_dispatch.h' 2025-06-01T21:23:35.5926610Z adding 'torch/include/ATen/ops/_foreach_reciprocal_native.h' 2025-06-01T21:23:35.5929855Z adding 'torch/include/ATen/ops/_foreach_reciprocal_ops.h' 2025-06-01T21:23:35.5933119Z adding 'torch/include/ATen/ops/_foreach_round.h' 2025-06-01T21:23:35.5936367Z adding 'torch/include/ATen/ops/_foreach_round_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.5939585Z adding 'torch/include/ATen/ops/_foreach_round_cuda_dispatch.h' 2025-06-01T21:23:35.5942953Z adding 'torch/include/ATen/ops/_foreach_round_native.h' 2025-06-01T21:23:35.5947403Z adding 'torch/include/ATen/ops/_foreach_round_ops.h' 2025-06-01T21:23:35.5950717Z adding 'torch/include/ATen/ops/_foreach_rsqrt.h' 2025-06-01T21:23:35.5954014Z adding 'torch/include/ATen/ops/_foreach_rsqrt_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.5957167Z adding 'torch/include/ATen/ops/_foreach_rsqrt_cuda_dispatch.h' 2025-06-01T21:23:35.5960168Z adding 'torch/include/ATen/ops/_foreach_rsqrt_native.h' 2025-06-01T21:23:35.5963520Z adding 'torch/include/ATen/ops/_foreach_rsqrt_ops.h' 2025-06-01T21:23:35.5966812Z adding 'torch/include/ATen/ops/_foreach_sigmoid.h' 2025-06-01T21:23:35.5970170Z adding 'torch/include/ATen/ops/_foreach_sigmoid_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.5973216Z adding 'torch/include/ATen/ops/_foreach_sigmoid_cuda_dispatch.h' 2025-06-01T21:23:35.5976189Z adding 'torch/include/ATen/ops/_foreach_sigmoid_native.h' 2025-06-01T21:23:35.5979886Z adding 'torch/include/ATen/ops/_foreach_sigmoid_ops.h' 2025-06-01T21:23:35.5983070Z adding 'torch/include/ATen/ops/_foreach_sign.h' 2025-06-01T21:23:35.5986523Z adding 'torch/include/ATen/ops/_foreach_sign_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.5989570Z adding 'torch/include/ATen/ops/_foreach_sign_cuda_dispatch.h' 2025-06-01T21:23:35.5992663Z adding 'torch/include/ATen/ops/_foreach_sign_native.h' 2025-06-01T21:23:35.5995963Z adding 'torch/include/ATen/ops/_foreach_sign_ops.h' 2025-06-01T21:23:35.5999115Z adding 'torch/include/ATen/ops/_foreach_sin.h' 2025-06-01T21:23:35.6002462Z adding 'torch/include/ATen/ops/_foreach_sin_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.6005452Z adding 'torch/include/ATen/ops/_foreach_sin_cuda_dispatch.h' 2025-06-01T21:23:35.6008648Z adding 'torch/include/ATen/ops/_foreach_sin_native.h' 2025-06-01T21:23:35.6011804Z adding 'torch/include/ATen/ops/_foreach_sin_ops.h' 2025-06-01T21:23:35.6015115Z adding 'torch/include/ATen/ops/_foreach_sinh.h' 2025-06-01T21:23:35.6018450Z adding 'torch/include/ATen/ops/_foreach_sinh_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.6021423Z adding 'torch/include/ATen/ops/_foreach_sinh_cuda_dispatch.h' 2025-06-01T21:23:35.6024601Z adding 'torch/include/ATen/ops/_foreach_sinh_native.h' 2025-06-01T21:23:35.6027850Z adding 'torch/include/ATen/ops/_foreach_sinh_ops.h' 2025-06-01T21:23:35.6031128Z adding 'torch/include/ATen/ops/_foreach_sqrt.h' 2025-06-01T21:23:35.6034360Z adding 'torch/include/ATen/ops/_foreach_sqrt_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.6037708Z adding 'torch/include/ATen/ops/_foreach_sqrt_cuda_dispatch.h' 2025-06-01T21:23:35.6041107Z adding 'torch/include/ATen/ops/_foreach_sqrt_native.h' 2025-06-01T21:23:35.6044642Z adding 'torch/include/ATen/ops/_foreach_sqrt_ops.h' 2025-06-01T21:23:35.6048064Z adding 'torch/include/ATen/ops/_foreach_sub.h' 2025-06-01T21:23:35.6051906Z adding 'torch/include/ATen/ops/_foreach_sub_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.6055419Z adding 'torch/include/ATen/ops/_foreach_sub_cuda_dispatch.h' 2025-06-01T21:23:35.6059058Z adding 'torch/include/ATen/ops/_foreach_sub_native.h' 2025-06-01T21:23:35.6063215Z adding 'torch/include/ATen/ops/_foreach_sub_ops.h' 2025-06-01T21:23:35.6067043Z adding 'torch/include/ATen/ops/_foreach_tan.h' 2025-06-01T21:23:35.6070790Z adding 'torch/include/ATen/ops/_foreach_tan_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.6074172Z adding 'torch/include/ATen/ops/_foreach_tan_cuda_dispatch.h' 2025-06-01T21:23:35.6077615Z adding 'torch/include/ATen/ops/_foreach_tan_native.h' 2025-06-01T21:23:35.6081311Z adding 'torch/include/ATen/ops/_foreach_tan_ops.h' 2025-06-01T21:23:35.6084957Z adding 'torch/include/ATen/ops/_foreach_tanh.h' 2025-06-01T21:23:35.6088394Z adding 'torch/include/ATen/ops/_foreach_tanh_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.6091379Z adding 'torch/include/ATen/ops/_foreach_tanh_cuda_dispatch.h' 2025-06-01T21:23:35.6094514Z adding 'torch/include/ATen/ops/_foreach_tanh_native.h' 2025-06-01T21:23:35.6097802Z adding 'torch/include/ATen/ops/_foreach_tanh_ops.h' 2025-06-01T21:23:35.6100976Z adding 'torch/include/ATen/ops/_foreach_trunc.h' 2025-06-01T21:23:35.6104456Z adding 'torch/include/ATen/ops/_foreach_trunc_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.6107514Z adding 'torch/include/ATen/ops/_foreach_trunc_cuda_dispatch.h' 2025-06-01T21:23:35.6110694Z adding 'torch/include/ATen/ops/_foreach_trunc_native.h' 2025-06-01T21:23:35.6113909Z adding 'torch/include/ATen/ops/_foreach_trunc_ops.h' 2025-06-01T21:23:35.6117064Z adding 'torch/include/ATen/ops/_foreach_zero.h' 2025-06-01T21:23:35.6120347Z adding 'torch/include/ATen/ops/_foreach_zero_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.6123519Z adding 'torch/include/ATen/ops/_foreach_zero_cuda_dispatch.h' 2025-06-01T21:23:35.6126440Z adding 'torch/include/ATen/ops/_foreach_zero_native.h' 2025-06-01T21:23:35.6129618Z adding 'torch/include/ATen/ops/_foreach_zero_ops.h' 2025-06-01T21:23:35.6132728Z adding 'torch/include/ATen/ops/_functional_assert_async.h' 2025-06-01T21:23:35.6135858Z adding 'torch/include/ATen/ops/_functional_assert_async_cpu_dispatch.h' 2025-06-01T21:23:35.6139020Z adding 'torch/include/ATen/ops/_functional_assert_async_native.h' 2025-06-01T21:23:35.6142164Z adding 'torch/include/ATen/ops/_functional_assert_async_ops.h' 2025-06-01T21:23:35.6145279Z adding 'torch/include/ATen/ops/_functional_assert_scalar.h' 2025-06-01T21:23:35.6148553Z adding 'torch/include/ATen/ops/_functional_assert_scalar_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.6151426Z adding 'torch/include/ATen/ops/_functional_assert_scalar_native.h' 2025-06-01T21:23:35.6154521Z adding 'torch/include/ATen/ops/_functional_assert_scalar_ops.h' 2025-06-01T21:23:35.6157668Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range.h' 2025-06-01T21:23:35.6160926Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.6163913Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size.h' 2025-06-01T21:23:35.6167241Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.6170258Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size_native.h' 2025-06-01T21:23:35.6173426Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size_ops.h' 2025-06-01T21:23:35.6176409Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_native.h' 2025-06-01T21:23:35.6179500Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_ops.h' 2025-06-01T21:23:35.6183001Z adding 'torch/include/ATen/ops/_fused_adagrad.h' 2025-06-01T21:23:35.6186977Z adding 'torch/include/ATen/ops/_fused_adagrad_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.6190172Z adding 'torch/include/ATen/ops/_fused_adagrad_cpu_dispatch.h' 2025-06-01T21:23:35.6193316Z adding 'torch/include/ATen/ops/_fused_adagrad_native.h' 2025-06-01T21:23:35.6197094Z adding 'torch/include/ATen/ops/_fused_adagrad_ops.h' 2025-06-01T21:23:35.6200910Z adding 'torch/include/ATen/ops/_fused_adam.h' 2025-06-01T21:23:35.6204500Z adding 'torch/include/ATen/ops/_fused_adam_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.6207616Z adding 'torch/include/ATen/ops/_fused_adam_cpu_dispatch.h' 2025-06-01T21:23:35.6210726Z adding 'torch/include/ATen/ops/_fused_adam_cuda_dispatch.h' 2025-06-01T21:23:35.6213966Z adding 'torch/include/ATen/ops/_fused_adam_native.h' 2025-06-01T21:23:35.6217929Z adding 'torch/include/ATen/ops/_fused_adam_ops.h' 2025-06-01T21:23:35.6221845Z adding 'torch/include/ATen/ops/_fused_adamw.h' 2025-06-01T21:23:35.6225610Z adding 'torch/include/ATen/ops/_fused_adamw_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.6228716Z adding 'torch/include/ATen/ops/_fused_adamw_cpu_dispatch.h' 2025-06-01T21:23:35.6231862Z adding 'torch/include/ATen/ops/_fused_adamw_cuda_dispatch.h' 2025-06-01T21:23:35.6235075Z adding 'torch/include/ATen/ops/_fused_adamw_native.h' 2025-06-01T21:23:35.6239010Z adding 'torch/include/ATen/ops/_fused_adamw_ops.h' 2025-06-01T21:23:35.6242473Z adding 'torch/include/ATen/ops/_fused_dropout.h' 2025-06-01T21:23:35.6245724Z adding 'torch/include/ATen/ops/_fused_dropout_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.6248711Z adding 'torch/include/ATen/ops/_fused_dropout_cuda_dispatch.h' 2025-06-01T21:23:35.6251705Z adding 'torch/include/ATen/ops/_fused_dropout_native.h' 2025-06-01T21:23:35.6254912Z adding 'torch/include/ATen/ops/_fused_dropout_ops.h' 2025-06-01T21:23:35.6258411Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper.h' 2025-06-01T21:23:35.6261982Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.6265120Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_cpu_dispatch.h' 2025-06-01T21:23:35.6268261Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_cuda_dispatch.h' 2025-06-01T21:23:35.6271399Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_native.h' 2025-06-01T21:23:35.6274953Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_ops.h' 2025-06-01T21:23:35.6278108Z adding 'torch/include/ATen/ops/_fused_rms_norm.h' 2025-06-01T21:23:35.6281093Z adding 'torch/include/ATen/ops/_fused_rms_norm_native.h' 2025-06-01T21:23:35.6284275Z adding 'torch/include/ATen/ops/_fused_rms_norm_ops.h' 2025-06-01T21:23:35.6287419Z adding 'torch/include/ATen/ops/_fused_sdp_choice.h' 2025-06-01T21:23:35.6290573Z adding 'torch/include/ATen/ops/_fused_sdp_choice_cpu_dispatch.h' 2025-06-01T21:23:35.6293657Z adding 'torch/include/ATen/ops/_fused_sdp_choice_cuda_dispatch.h' 2025-06-01T21:23:35.6296701Z adding 'torch/include/ATen/ops/_fused_sdp_choice_meta_dispatch.h' 2025-06-01T21:23:35.6299775Z adding 'torch/include/ATen/ops/_fused_sdp_choice_native.h' 2025-06-01T21:23:35.6302873Z adding 'torch/include/ATen/ops/_fused_sdp_choice_ops.h' 2025-06-01T21:23:35.6306553Z adding 'torch/include/ATen/ops/_fused_sgd.h' 2025-06-01T21:23:35.6310152Z adding 'torch/include/ATen/ops/_fused_sgd_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.6313242Z adding 'torch/include/ATen/ops/_fused_sgd_cpu_dispatch.h' 2025-06-01T21:23:35.6316342Z adding 'torch/include/ATen/ops/_fused_sgd_cuda_dispatch.h' 2025-06-01T21:23:35.6319519Z adding 'torch/include/ATen/ops/_fused_sgd_native.h' 2025-06-01T21:23:35.6323352Z adding 'torch/include/ATen/ops/_fused_sgd_ops.h' 2025-06-01T21:23:35.6326570Z adding 'torch/include/ATen/ops/_fw_primal.h' 2025-06-01T21:23:35.6329743Z adding 'torch/include/ATen/ops/_fw_primal_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.6332724Z adding 'torch/include/ATen/ops/_fw_primal_copy.h' 2025-06-01T21:23:35.6335931Z adding 'torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.6339014Z adding 'torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:35.6341812Z adding 'torch/include/ATen/ops/_fw_primal_copy_native.h' 2025-06-01T21:23:35.6345197Z adding 'torch/include/ATen/ops/_fw_primal_copy_ops.h' 2025-06-01T21:23:35.6348229Z adding 'torch/include/ATen/ops/_fw_primal_native.h' 2025-06-01T21:23:35.6351459Z adding 'torch/include/ATen/ops/_fw_primal_ops.h' 2025-06-01T21:23:35.6354592Z adding 'torch/include/ATen/ops/_gather_sparse_backward.h' 2025-06-01T21:23:35.6357996Z adding 'torch/include/ATen/ops/_gather_sparse_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.6360864Z adding 'torch/include/ATen/ops/_gather_sparse_backward_native.h' 2025-06-01T21:23:35.6364132Z adding 'torch/include/ATen/ops/_gather_sparse_backward_ops.h' 2025-06-01T21:23:35.6367308Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback.h' 2025-06-01T21:23:35.6370589Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward.h' 2025-06-01T21:23:35.6374045Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.6377006Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_native.h' 2025-06-01T21:23:35.6380300Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_ops.h' 2025-06-01T21:23:35.6383601Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.6386765Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_native.h' 2025-06-01T21:23:35.6390085Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_ops.h' 2025-06-01T21:23:35.6393558Z adding 'torch/include/ATen/ops/_grouped_mm.h' 2025-06-01T21:23:35.6396849Z adding 'torch/include/ATen/ops/_grouped_mm_cuda_dispatch.h' 2025-06-01T21:23:35.6399966Z adding 'torch/include/ATen/ops/_grouped_mm_native.h' 2025-06-01T21:23:35.6403223Z adding 'torch/include/ATen/ops/_grouped_mm_ops.h' 2025-06-01T21:23:35.6406361Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type.h' 2025-06-01T21:23:35.6409800Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.6413392Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type_native.h' 2025-06-01T21:23:35.6416600Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type_ops.h' 2025-06-01T21:23:35.6419726Z adding 'torch/include/ATen/ops/_has_same_storage_numel.h' 2025-06-01T21:23:35.6422976Z adding 'torch/include/ATen/ops/_has_same_storage_numel_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.6426169Z adding 'torch/include/ATen/ops/_has_same_storage_numel_native.h' 2025-06-01T21:23:35.6429294Z adding 'torch/include/ATen/ops/_has_same_storage_numel_ops.h' 2025-06-01T21:23:35.6432650Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges.h' 2025-06-01T21:23:35.6436119Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.6439118Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_cpu_dispatch.h' 2025-06-01T21:23:35.6442220Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_native.h' 2025-06-01T21:23:35.6445462Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_ops.h' 2025-06-01T21:23:35.6448868Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts.h' 2025-06-01T21:23:35.6452208Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.6455418Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_cpu_dispatch.h' 2025-06-01T21:23:35.6458433Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_native.h' 2025-06-01T21:23:35.6461792Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_ops.h' 2025-06-01T21:23:35.6465223Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors.h' 2025-06-01T21:23:35.6468582Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.6471758Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_cpu_dispatch.h' 2025-06-01T21:23:35.6474796Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_native.h' 2025-06-01T21:23:35.6478165Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_ops.h' 2025-06-01T21:23:35.6481373Z adding 'torch/include/ATen/ops/_index_put_impl.h' 2025-06-01T21:23:35.6484768Z adding 'torch/include/ATen/ops/_index_put_impl_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.6487920Z adding 'torch/include/ATen/ops/_index_put_impl_cpu_dispatch.h' 2025-06-01T21:23:35.6490996Z adding 'torch/include/ATen/ops/_index_put_impl_cuda_dispatch.h' 2025-06-01T21:23:35.6494190Z adding 'torch/include/ATen/ops/_index_put_impl_meta_dispatch.h' 2025-06-01T21:23:35.6497218Z adding 'torch/include/ATen/ops/_index_put_impl_native.h' 2025-06-01T21:23:35.6500659Z adding 'torch/include/ATen/ops/_index_put_impl_ops.h' 2025-06-01T21:23:35.6503837Z adding 'torch/include/ATen/ops/_indices.h' 2025-06-01T21:23:35.6507010Z adding 'torch/include/ATen/ops/_indices_copy.h' 2025-06-01T21:23:35.6510314Z adding 'torch/include/ATen/ops/_indices_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.6513489Z adding 'torch/include/ATen/ops/_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:35.6516403Z adding 'torch/include/ATen/ops/_indices_copy_native.h' 2025-06-01T21:23:35.6519624Z adding 'torch/include/ATen/ops/_indices_copy_ops.h' 2025-06-01T21:23:35.6522822Z adding 'torch/include/ATen/ops/_indices_native.h' 2025-06-01T21:23:35.6525951Z adding 'torch/include/ATen/ops/_indices_ops.h' 2025-06-01T21:23:35.6529188Z adding 'torch/include/ATen/ops/_int_mm.h' 2025-06-01T21:23:35.6532322Z adding 'torch/include/ATen/ops/_int_mm_cpu_dispatch.h' 2025-06-01T21:23:35.6535677Z adding 'torch/include/ATen/ops/_int_mm_cuda_dispatch.h' 2025-06-01T21:23:35.6538705Z adding 'torch/include/ATen/ops/_int_mm_native.h' 2025-06-01T21:23:35.6542391Z adding 'torch/include/ATen/ops/_int_mm_ops.h' 2025-06-01T21:23:35.6546017Z adding 'torch/include/ATen/ops/_is_all_true.h' 2025-06-01T21:23:35.6549712Z adding 'torch/include/ATen/ops/_is_all_true_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.6553003Z adding 'torch/include/ATen/ops/_is_all_true_native.h' 2025-06-01T21:23:35.6556571Z adding 'torch/include/ATen/ops/_is_all_true_ops.h' 2025-06-01T21:23:35.6559608Z adding 'torch/include/ATen/ops/_is_any_true.h' 2025-06-01T21:23:35.6562944Z adding 'torch/include/ATen/ops/_is_any_true_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.6565798Z adding 'torch/include/ATen/ops/_is_any_true_native.h' 2025-06-01T21:23:35.6569037Z adding 'torch/include/ATen/ops/_is_any_true_ops.h' 2025-06-01T21:23:35.6572072Z adding 'torch/include/ATen/ops/_is_zerotensor.h' 2025-06-01T21:23:35.6575401Z adding 'torch/include/ATen/ops/_is_zerotensor_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.6578334Z adding 'torch/include/ATen/ops/_is_zerotensor_native.h' 2025-06-01T21:23:35.6581600Z adding 'torch/include/ATen/ops/_is_zerotensor_ops.h' 2025-06-01T21:23:35.6585006Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward.h' 2025-06-01T21:23:35.6588240Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_cpu_dispatch.h' 2025-06-01T21:23:35.6591387Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_cuda_dispatch.h' 2025-06-01T21:23:35.6594548Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_native.h' 2025-06-01T21:23:35.6598194Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_ops.h' 2025-06-01T21:23:35.6601233Z adding 'torch/include/ATen/ops/_lazy_clone.h' 2025-06-01T21:23:35.6604437Z adding 'torch/include/ATen/ops/_lazy_clone_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.6607400Z adding 'torch/include/ATen/ops/_lazy_clone_native.h' 2025-06-01T21:23:35.6610681Z adding 'torch/include/ATen/ops/_lazy_clone_ops.h' 2025-06-01T21:23:35.6613740Z adding 'torch/include/ATen/ops/_linalg_check_errors.h' 2025-06-01T21:23:35.6616955Z adding 'torch/include/ATen/ops/_linalg_check_errors_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.6619847Z adding 'torch/include/ATen/ops/_linalg_check_errors_native.h' 2025-06-01T21:23:35.6622924Z adding 'torch/include/ATen/ops/_linalg_check_errors_ops.h' 2025-06-01T21:23:35.6626202Z adding 'torch/include/ATen/ops/_linalg_det.h' 2025-06-01T21:23:35.6629488Z adding 'torch/include/ATen/ops/_linalg_det_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:35.6632415Z adding 'torch/include/ATen/ops/_linalg_det_cpu_dispatch.h' 2025-06-01T21:23:35.6635486Z adding 'torch/include/ATen/ops/_linalg_det_cuda_dispatch.h' 2025-06-01T21:23:35.6638595Z adding 'torch/include/ATen/ops/_linalg_det_meta.h' 2025-06-01T21:23:35.6641827Z adding 'torch/include/ATen/ops/_linalg_det_meta_dispatch.h' 2025-06-01T21:23:35.6644868Z adding 'torch/include/ATen/ops/_linalg_det_native.h' 2025-06-01T21:23:35.6648071Z adding 'torch/include/ATen/ops/_linalg_det_ops.h' 2025-06-01T21:23:35.6651250Z adding 'torch/include/ATen/ops/_linalg_eigh.h' 2025-06-01T21:23:35.6654631Z adding 'torch/include/ATen/ops/_linalg_eigh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:35.6657577Z adding 'torch/include/ATen/ops/_linalg_eigh_cpu_dispatch.h' 2025-06-01T21:23:35.6660670Z adding 'torch/include/ATen/ops/_linalg_eigh_cuda_dispatch.h' 2025-06-01T21:23:35.6663818Z adding 'torch/include/ATen/ops/_linalg_eigh_meta.h' 2025-06-01T21:23:35.6666939Z adding 'torch/include/ATen/ops/_linalg_eigh_meta_dispatch.h' 2025-06-01T21:23:35.6669929Z adding 'torch/include/ATen/ops/_linalg_eigh_native.h' 2025-06-01T21:23:35.6673124Z adding 'torch/include/ATen/ops/_linalg_eigh_ops.h' 2025-06-01T21:23:35.6676196Z adding 'torch/include/ATen/ops/_linalg_eigvals.h' 2025-06-01T21:23:35.6679277Z adding 'torch/include/ATen/ops/_linalg_eigvals_cpu_dispatch.h' 2025-06-01T21:23:35.6682384Z adding 'torch/include/ATen/ops/_linalg_eigvals_cuda_dispatch.h' 2025-06-01T21:23:35.6685269Z adding 'torch/include/ATen/ops/_linalg_eigvals_native.h' 2025-06-01T21:23:35.6688347Z adding 'torch/include/ATen/ops/_linalg_eigvals_ops.h' 2025-06-01T21:23:35.6691608Z adding 'torch/include/ATen/ops/_linalg_slogdet.h' 2025-06-01T21:23:35.6694984Z adding 'torch/include/ATen/ops/_linalg_slogdet_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:35.6697936Z adding 'torch/include/ATen/ops/_linalg_slogdet_cpu_dispatch.h' 2025-06-01T21:23:35.6701024Z adding 'torch/include/ATen/ops/_linalg_slogdet_cuda_dispatch.h' 2025-06-01T21:23:35.6704090Z adding 'torch/include/ATen/ops/_linalg_slogdet_meta.h' 2025-06-01T21:23:35.6707239Z adding 'torch/include/ATen/ops/_linalg_slogdet_meta_dispatch.h' 2025-06-01T21:23:35.6710247Z adding 'torch/include/ATen/ops/_linalg_slogdet_native.h' 2025-06-01T21:23:35.6713433Z adding 'torch/include/ATen/ops/_linalg_slogdet_ops.h' 2025-06-01T21:23:35.6716651Z adding 'torch/include/ATen/ops/_linalg_solve_ex.h' 2025-06-01T21:23:35.6720059Z adding 'torch/include/ATen/ops/_linalg_solve_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:35.6722968Z adding 'torch/include/ATen/ops/_linalg_solve_ex_cpu_dispatch.h' 2025-06-01T21:23:35.6726146Z adding 'torch/include/ATen/ops/_linalg_solve_ex_cuda_dispatch.h' 2025-06-01T21:23:35.6729174Z adding 'torch/include/ATen/ops/_linalg_solve_ex_meta.h' 2025-06-01T21:23:35.6732269Z adding 'torch/include/ATen/ops/_linalg_solve_ex_meta_dispatch.h' 2025-06-01T21:23:35.6735265Z adding 'torch/include/ATen/ops/_linalg_solve_ex_native.h' 2025-06-01T21:23:35.6738447Z adding 'torch/include/ATen/ops/_linalg_solve_ex_ops.h' 2025-06-01T21:23:35.6741623Z adding 'torch/include/ATen/ops/_linalg_svd.h' 2025-06-01T21:23:35.6745092Z adding 'torch/include/ATen/ops/_linalg_svd_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:35.6748109Z adding 'torch/include/ATen/ops/_linalg_svd_cpu_dispatch.h' 2025-06-01T21:23:35.6751286Z adding 'torch/include/ATen/ops/_linalg_svd_cuda_dispatch.h' 2025-06-01T21:23:35.6754333Z adding 'torch/include/ATen/ops/_linalg_svd_meta.h' 2025-06-01T21:23:35.6757477Z adding 'torch/include/ATen/ops/_linalg_svd_meta_dispatch.h' 2025-06-01T21:23:35.6760460Z adding 'torch/include/ATen/ops/_linalg_svd_native.h' 2025-06-01T21:23:35.6763693Z adding 'torch/include/ATen/ops/_linalg_svd_ops.h' 2025-06-01T21:23:35.6766769Z adding 'torch/include/ATen/ops/_local_scalar_dense.h' 2025-06-01T21:23:35.6769823Z adding 'torch/include/ATen/ops/_local_scalar_dense_cpu_dispatch.h' 2025-06-01T21:23:35.6772839Z adding 'torch/include/ATen/ops/_local_scalar_dense_cuda_dispatch.h' 2025-06-01T21:23:35.6775790Z adding 'torch/include/ATen/ops/_local_scalar_dense_native.h' 2025-06-01T21:23:35.6778874Z adding 'torch/include/ATen/ops/_local_scalar_dense_ops.h' 2025-06-01T21:23:35.6781932Z adding 'torch/include/ATen/ops/_log_softmax.h' 2025-06-01T21:23:35.6785233Z adding 'torch/include/ATen/ops/_log_softmax_backward_data.h' 2025-06-01T21:23:35.6788604Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:35.6791557Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_cpu_dispatch.h' 2025-06-01T21:23:35.6794990Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_cuda_dispatch.h' 2025-06-01T21:23:35.6797986Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_meta.h' 2025-06-01T21:23:35.6801118Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_meta_dispatch.h' 2025-06-01T21:23:35.6804114Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_native.h' 2025-06-01T21:23:35.6807313Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_ops.h' 2025-06-01T21:23:35.6810572Z adding 'torch/include/ATen/ops/_log_softmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:35.6813501Z adding 'torch/include/ATen/ops/_log_softmax_cpu_dispatch.h' 2025-06-01T21:23:35.6816591Z adding 'torch/include/ATen/ops/_log_softmax_cuda_dispatch.h' 2025-06-01T21:23:35.6819522Z adding 'torch/include/ATen/ops/_log_softmax_meta.h' 2025-06-01T21:23:35.6822672Z adding 'torch/include/ATen/ops/_log_softmax_meta_dispatch.h' 2025-06-01T21:23:35.6825816Z adding 'torch/include/ATen/ops/_log_softmax_native.h' 2025-06-01T21:23:35.6828983Z adding 'torch/include/ATen/ops/_log_softmax_ops.h' 2025-06-01T21:23:35.6832059Z adding 'torch/include/ATen/ops/_logcumsumexp.h' 2025-06-01T21:23:35.6835153Z adding 'torch/include/ATen/ops/_logcumsumexp_cpu_dispatch.h' 2025-06-01T21:23:35.6838219Z adding 'torch/include/ATen/ops/_logcumsumexp_cuda_dispatch.h' 2025-06-01T21:23:35.6841172Z adding 'torch/include/ATen/ops/_logcumsumexp_native.h' 2025-06-01T21:23:35.6844309Z adding 'torch/include/ATen/ops/_logcumsumexp_ops.h' 2025-06-01T21:23:35.6847734Z adding 'torch/include/ATen/ops/_lstm_mps.h' 2025-06-01T21:23:35.6851166Z adding 'torch/include/ATen/ops/_lstm_mps_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.6854255Z adding 'torch/include/ATen/ops/_lstm_mps_native.h' 2025-06-01T21:23:35.6857752Z adding 'torch/include/ATen/ops/_lstm_mps_ops.h' 2025-06-01T21:23:35.6860929Z adding 'torch/include/ATen/ops/_lu_with_info.h' 2025-06-01T21:23:35.6864361Z adding 'torch/include/ATen/ops/_lu_with_info_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.6867339Z adding 'torch/include/ATen/ops/_lu_with_info_native.h' 2025-06-01T21:23:35.6870655Z adding 'torch/include/ATen/ops/_lu_with_info_ops.h' 2025-06-01T21:23:35.6873879Z adding 'torch/include/ATen/ops/_make_dep_token.h' 2025-06-01T21:23:35.6877233Z adding 'torch/include/ATen/ops/_make_dep_token_cpu_dispatch.h' 2025-06-01T21:23:35.6880335Z adding 'torch/include/ATen/ops/_make_dep_token_native.h' 2025-06-01T21:23:35.6883558Z adding 'torch/include/ATen/ops/_make_dep_token_ops.h' 2025-06-01T21:23:35.6886729Z adding 'torch/include/ATen/ops/_make_dual.h' 2025-06-01T21:23:35.6889963Z adding 'torch/include/ATen/ops/_make_dual_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.6893126Z adding 'torch/include/ATen/ops/_make_dual_copy.h' 2025-06-01T21:23:35.6896410Z adding 'torch/include/ATen/ops/_make_dual_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.6899741Z adding 'torch/include/ATen/ops/_make_dual_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:35.6902613Z adding 'torch/include/ATen/ops/_make_dual_copy_native.h' 2025-06-01T21:23:35.6906087Z adding 'torch/include/ATen/ops/_make_dual_copy_ops.h' 2025-06-01T21:23:35.6909240Z adding 'torch/include/ATen/ops/_make_dual_native.h' 2025-06-01T21:23:35.6912398Z adding 'torch/include/ATen/ops/_make_dual_ops.h' 2025-06-01T21:23:35.6915791Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor.h' 2025-06-01T21:23:35.6919054Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.6922232Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_cpu_dispatch.h' 2025-06-01T21:23:35.6925386Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_cuda_dispatch.h' 2025-06-01T21:23:35.6928546Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_native.h' 2025-06-01T21:23:35.6936430Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_ops.h' 2025-06-01T21:23:35.6938325Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor.h' 2025-06-01T21:23:35.6941682Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.6944817Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_cpu_dispatch.h' 2025-06-01T21:23:35.6947938Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_cuda_dispatch.h' 2025-06-01T21:23:35.6951089Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_native.h' 2025-06-01T21:23:35.6954293Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_ops.h' 2025-06-01T21:23:35.6957678Z adding 'torch/include/ATen/ops/_masked_scale.h' 2025-06-01T21:23:35.6960835Z adding 'torch/include/ATen/ops/_masked_scale_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.6963952Z adding 'torch/include/ATen/ops/_masked_scale_cuda_dispatch.h' 2025-06-01T21:23:35.6967041Z adding 'torch/include/ATen/ops/_masked_scale_native.h' 2025-06-01T21:23:35.6970265Z adding 'torch/include/ATen/ops/_masked_scale_ops.h' 2025-06-01T21:23:35.6973695Z adding 'torch/include/ATen/ops/_masked_softmax.h' 2025-06-01T21:23:35.6976919Z adding 'torch/include/ATen/ops/_masked_softmax_backward.h' 2025-06-01T21:23:35.6980348Z adding 'torch/include/ATen/ops/_masked_softmax_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.6983398Z adding 'torch/include/ATen/ops/_masked_softmax_backward_cpu_dispatch.h' 2025-06-01T21:23:35.6986675Z adding 'torch/include/ATen/ops/_masked_softmax_backward_cuda_dispatch.h' 2025-06-01T21:23:35.6989842Z adding 'torch/include/ATen/ops/_masked_softmax_backward_native.h' 2025-06-01T21:23:35.6993102Z adding 'torch/include/ATen/ops/_masked_softmax_backward_ops.h' 2025-06-01T21:23:35.6996558Z adding 'torch/include/ATen/ops/_masked_softmax_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.6999861Z adding 'torch/include/ATen/ops/_masked_softmax_cpu_dispatch.h' 2025-06-01T21:23:35.7003180Z adding 'torch/include/ATen/ops/_masked_softmax_cuda_dispatch.h' 2025-06-01T21:23:35.7006249Z adding 'torch/include/ATen/ops/_masked_softmax_native.h' 2025-06-01T21:23:35.7009585Z adding 'torch/include/ATen/ops/_masked_softmax_ops.h' 2025-06-01T21:23:35.7012839Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear.h' 2025-06-01T21:23:35.7016014Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear_cuda_dispatch.h' 2025-06-01T21:23:35.7019163Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear_native.h' 2025-06-01T21:23:35.7022331Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear_ops.h' 2025-06-01T21:23:35.7025694Z adding 'torch/include/ATen/ops/_mkldnn_reshape.h' 2025-06-01T21:23:35.7029043Z adding 'torch/include/ATen/ops/_mkldnn_reshape_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.7032081Z adding 'torch/include/ATen/ops/_mkldnn_reshape_native.h' 2025-06-01T21:23:35.7035340Z adding 'torch/include/ATen/ops/_mkldnn_reshape_ops.h' 2025-06-01T21:23:35.7038957Z adding 'torch/include/ATen/ops/_mkldnn_transpose.h' 2025-06-01T21:23:35.7042753Z adding 'torch/include/ATen/ops/_mkldnn_transpose_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.7046024Z adding 'torch/include/ATen/ops/_mkldnn_transpose_meta_dispatch.h' 2025-06-01T21:23:35.7049051Z adding 'torch/include/ATen/ops/_mkldnn_transpose_native.h' 2025-06-01T21:23:35.7052676Z adding 'torch/include/ATen/ops/_mkldnn_transpose_ops.h' 2025-06-01T21:23:35.7056496Z adding 'torch/include/ATen/ops/_mps_convolution.h' 2025-06-01T21:23:35.7060100Z adding 'torch/include/ATen/ops/_mps_convolution_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.7063100Z adding 'torch/include/ATen/ops/_mps_convolution_native.h' 2025-06-01T21:23:35.7066661Z adding 'torch/include/ATen/ops/_mps_convolution_ops.h' 2025-06-01T21:23:35.7070301Z adding 'torch/include/ATen/ops/_mps_convolution_transpose.h' 2025-06-01T21:23:35.7074031Z adding 'torch/include/ATen/ops/_mps_convolution_transpose_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.7077018Z adding 'torch/include/ATen/ops/_mps_convolution_transpose_native.h' 2025-06-01T21:23:35.7080460Z adding 'torch/include/ATen/ops/_mps_convolution_transpose_ops.h' 2025-06-01T21:23:35.7083940Z adding 'torch/include/ATen/ops/_native_batch_norm_legit.h' 2025-06-01T21:23:35.7087360Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.7090686Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_cpu_dispatch.h' 2025-06-01T21:23:35.7094009Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_cuda_dispatch.h' 2025-06-01T21:23:35.7097280Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_native.h' 2025-06-01T21:23:35.7100651Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training.h' 2025-06-01T21:23:35.7104097Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.7107257Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training_native.h' 2025-06-01T21:23:35.7110623Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training_ops.h' 2025-06-01T21:23:35.7114331Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_ops.h' 2025-06-01T21:23:35.7117811Z adding 'torch/include/ATen/ops/_native_multi_head_attention.h' 2025-06-01T21:23:35.7121212Z adding 'torch/include/ATen/ops/_native_multi_head_attention_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.7124249Z adding 'torch/include/ATen/ops/_native_multi_head_attention_cpu_dispatch.h' 2025-06-01T21:23:35.7127374Z adding 'torch/include/ATen/ops/_native_multi_head_attention_cuda_dispatch.h' 2025-06-01T21:23:35.7130460Z adding 'torch/include/ATen/ops/_native_multi_head_attention_native.h' 2025-06-01T21:23:35.7133924Z adding 'torch/include/ATen/ops/_native_multi_head_attention_ops.h' 2025-06-01T21:23:35.7137212Z adding 'torch/include/ATen/ops/_neg_view.h' 2025-06-01T21:23:35.7140416Z adding 'torch/include/ATen/ops/_neg_view_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.7143349Z adding 'torch/include/ATen/ops/_neg_view_copy.h' 2025-06-01T21:23:35.7146716Z adding 'torch/include/ATen/ops/_neg_view_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.7149830Z adding 'torch/include/ATen/ops/_neg_view_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:35.7153275Z adding 'torch/include/ATen/ops/_neg_view_copy_native.h' 2025-06-01T21:23:35.7156520Z adding 'torch/include/ATen/ops/_neg_view_copy_ops.h' 2025-06-01T21:23:35.7159578Z adding 'torch/include/ATen/ops/_neg_view_native.h' 2025-06-01T21:23:35.7162698Z adding 'torch/include/ATen/ops/_neg_view_ops.h' 2025-06-01T21:23:35.7165850Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets.h' 2025-06-01T21:23:35.7168968Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_cpu_dispatch.h' 2025-06-01T21:23:35.7172012Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_cuda_dispatch.h' 2025-06-01T21:23:35.7174954Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_native.h' 2025-06-01T21:23:35.7178041Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_ops.h' 2025-06-01T21:23:35.7181084Z adding 'torch/include/ATen/ops/_nested_from_padded.h' 2025-06-01T21:23:35.7184403Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example.h' 2025-06-01T21:23:35.7187759Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.7190641Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example_native.h' 2025-06-01T21:23:35.7193995Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example_ops.h' 2025-06-01T21:23:35.7197203Z adding 'torch/include/ATen/ops/_nested_from_padded_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.7200165Z adding 'torch/include/ATen/ops/_nested_from_padded_cpu_dispatch.h' 2025-06-01T21:23:35.7203223Z adding 'torch/include/ATen/ops/_nested_from_padded_cuda_dispatch.h' 2025-06-01T21:23:35.7206474Z adding 'torch/include/ATen/ops/_nested_from_padded_native.h' 2025-06-01T21:23:35.7209680Z adding 'torch/include/ATen/ops/_nested_from_padded_ops.h' 2025-06-01T21:23:35.7212995Z adding 'torch/include/ATen/ops/_nested_from_padded_tensor.h' 2025-06-01T21:23:35.7216037Z adding 'torch/include/ATen/ops/_nested_from_padded_tensor_native.h' 2025-06-01T21:23:35.7219178Z adding 'torch/include/ATen/ops/_nested_from_padded_tensor_ops.h' 2025-06-01T21:23:35.7222207Z adding 'torch/include/ATen/ops/_nested_get_jagged_dummy.h' 2025-06-01T21:23:35.7225250Z adding 'torch/include/ATen/ops/_nested_get_jagged_dummy_native.h' 2025-06-01T21:23:35.7228357Z adding 'torch/include/ATen/ops/_nested_get_jagged_dummy_ops.h' 2025-06-01T21:23:35.7231290Z adding 'torch/include/ATen/ops/_nested_get_lengths.h' 2025-06-01T21:23:35.7234244Z adding 'torch/include/ATen/ops/_nested_get_lengths_native.h' 2025-06-01T21:23:35.7237324Z adding 'torch/include/ATen/ops/_nested_get_lengths_ops.h' 2025-06-01T21:23:35.7240338Z adding 'torch/include/ATen/ops/_nested_get_max_seqlen.h' 2025-06-01T21:23:35.7243272Z adding 'torch/include/ATen/ops/_nested_get_max_seqlen_native.h' 2025-06-01T21:23:35.7246314Z adding 'torch/include/ATen/ops/_nested_get_max_seqlen_ops.h' 2025-06-01T21:23:35.7249293Z adding 'torch/include/ATen/ops/_nested_get_min_seqlen.h' 2025-06-01T21:23:35.7252213Z adding 'torch/include/ATen/ops/_nested_get_min_seqlen_native.h' 2025-06-01T21:23:35.7255253Z adding 'torch/include/ATen/ops/_nested_get_min_seqlen_ops.h' 2025-06-01T21:23:35.7258227Z adding 'torch/include/ATen/ops/_nested_get_offsets.h' 2025-06-01T21:23:35.7261150Z adding 'torch/include/ATen/ops/_nested_get_offsets_native.h' 2025-06-01T21:23:35.7264338Z adding 'torch/include/ATen/ops/_nested_get_offsets_ops.h' 2025-06-01T21:23:35.7267429Z adding 'torch/include/ATen/ops/_nested_get_ragged_idx.h' 2025-06-01T21:23:35.7270326Z adding 'torch/include/ATen/ops/_nested_get_ragged_idx_native.h' 2025-06-01T21:23:35.7273369Z adding 'torch/include/ATen/ops/_nested_get_ragged_idx_ops.h' 2025-06-01T21:23:35.7276415Z adding 'torch/include/ATen/ops/_nested_get_values.h' 2025-06-01T21:23:35.7279428Z adding 'torch/include/ATen/ops/_nested_get_values_copy.h' 2025-06-01T21:23:35.7282658Z adding 'torch/include/ATen/ops/_nested_get_values_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.7285781Z adding 'torch/include/ATen/ops/_nested_get_values_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:35.7288552Z adding 'torch/include/ATen/ops/_nested_get_values_copy_native.h' 2025-06-01T21:23:35.7291726Z adding 'torch/include/ATen/ops/_nested_get_values_copy_ops.h' 2025-06-01T21:23:35.7294863Z adding 'torch/include/ATen/ops/_nested_get_values_native.h' 2025-06-01T21:23:35.7297935Z adding 'torch/include/ATen/ops/_nested_get_values_ops.h' 2025-06-01T21:23:35.7301039Z adding 'torch/include/ATen/ops/_nested_select_backward.h' 2025-06-01T21:23:35.7304147Z adding 'torch/include/ATen/ops/_nested_select_backward_native.h' 2025-06-01T21:23:35.7307269Z adding 'torch/include/ATen/ops/_nested_select_backward_ops.h' 2025-06-01T21:23:35.7310302Z adding 'torch/include/ATen/ops/_nested_sum_backward.h' 2025-06-01T21:23:35.7313314Z adding 'torch/include/ATen/ops/_nested_sum_backward_native.h' 2025-06-01T21:23:35.7316408Z adding 'torch/include/ATen/ops/_nested_sum_backward_ops.h' 2025-06-01T21:23:35.7319519Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask.h' 2025-06-01T21:23:35.7322798Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.7325764Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_cpu_dispatch.h' 2025-06-01T21:23:35.7328799Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_cuda_dispatch.h' 2025-06-01T21:23:35.7331820Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned.h' 2025-06-01T21:23:35.7334913Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_cpu_dispatch.h' 2025-06-01T21:23:35.7338018Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_cuda_dispatch.h' 2025-06-01T21:23:35.7341011Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_native.h' 2025-06-01T21:23:35.7344193Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_ops.h' 2025-06-01T21:23:35.7347179Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_native.h' 2025-06-01T21:23:35.7350361Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_ops.h' 2025-06-01T21:23:35.7353573Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list.h' 2025-06-01T21:23:35.7356872Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.7359846Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list_native.h' 2025-06-01T21:23:35.7363086Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list_ops.h' 2025-06-01T21:23:35.7366162Z adding 'torch/include/ATen/ops/_nested_tensor_size.h' 2025-06-01T21:23:35.7369377Z adding 'torch/include/ATen/ops/_nested_tensor_size_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.7372230Z adding 'torch/include/ATen/ops/_nested_tensor_size_native.h' 2025-06-01T21:23:35.7375359Z adding 'torch/include/ATen/ops/_nested_tensor_size_ops.h' 2025-06-01T21:23:35.7378439Z adding 'torch/include/ATen/ops/_nested_tensor_softmax_with_shape.h' 2025-06-01T21:23:35.7381415Z adding 'torch/include/ATen/ops/_nested_tensor_softmax_with_shape_native.h' 2025-06-01T21:23:35.7384609Z adding 'torch/include/ATen/ops/_nested_tensor_softmax_with_shape_ops.h' 2025-06-01T21:23:35.7387657Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets.h' 2025-06-01T21:23:35.7390936Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.7394040Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets_native.h' 2025-06-01T21:23:35.7397172Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets_ops.h' 2025-06-01T21:23:35.7400916Z adding 'torch/include/ATen/ops/_nested_tensor_strides.h' 2025-06-01T21:23:35.7404208Z adding 'torch/include/ATen/ops/_nested_tensor_strides_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.7407416Z adding 'torch/include/ATen/ops/_nested_tensor_strides_native.h' 2025-06-01T21:23:35.7410975Z adding 'torch/include/ATen/ops/_nested_tensor_strides_ops.h' 2025-06-01T21:23:35.7414445Z adding 'torch/include/ATen/ops/_nested_view_from_buffer.h' 2025-06-01T21:23:35.7418069Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy.h' 2025-06-01T21:23:35.7421855Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.7425653Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:35.7428907Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_native.h' 2025-06-01T21:23:35.7432561Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_ops.h' 2025-06-01T21:23:35.7436097Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_cpu_dispatch.h' 2025-06-01T21:23:35.7439523Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_cuda_dispatch.h' 2025-06-01T21:23:35.7442889Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_native.h' 2025-06-01T21:23:35.7446938Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_ops.h' 2025-06-01T21:23:35.7450335Z adding 'torch/include/ATen/ops/_nested_view_from_jagged.h' 2025-06-01T21:23:35.7453622Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy.h' 2025-06-01T21:23:35.7457180Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.7460559Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:35.7463557Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_native.h' 2025-06-01T21:23:35.7467137Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_ops.h' 2025-06-01T21:23:35.7470159Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_native.h' 2025-06-01T21:23:35.7473355Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_ops.h' 2025-06-01T21:23:35.7476529Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta.h' 2025-06-01T21:23:35.7480014Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.7482942Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta_native.h' 2025-06-01T21:23:35.7486142Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta_ops.h' 2025-06-01T21:23:35.7489176Z adding 'torch/include/ATen/ops/_nnpack_available.h' 2025-06-01T21:23:35.7492363Z adding 'torch/include/ATen/ops/_nnpack_available_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.7495413Z adding 'torch/include/ATen/ops/_nnpack_available_native.h' 2025-06-01T21:23:35.7498483Z adding 'torch/include/ATen/ops/_nnpack_available_ops.h' 2025-06-01T21:23:35.7501960Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution.h' 2025-06-01T21:23:35.7505533Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.7508503Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution_native.h' 2025-06-01T21:23:35.7511737Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution_ops.h' 2025-06-01T21:23:35.7514694Z adding 'torch/include/ATen/ops/_nnz.h' 2025-06-01T21:23:35.7517707Z adding 'torch/include/ATen/ops/_nnz_native.h' 2025-06-01T21:23:35.7520786Z adding 'torch/include/ATen/ops/_nnz_ops.h' 2025-06-01T21:23:35.7523990Z adding 'torch/include/ATen/ops/_pack_padded_sequence.h' 2025-06-01T21:23:35.7527351Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward.h' 2025-06-01T21:23:35.7530708Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.7533534Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward_native.h' 2025-06-01T21:23:35.7536646Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward_ops.h' 2025-06-01T21:23:35.7539865Z adding 'torch/include/ATen/ops/_pack_padded_sequence_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.7542776Z adding 'torch/include/ATen/ops/_pack_padded_sequence_native.h' 2025-06-01T21:23:35.7546122Z adding 'torch/include/ATen/ops/_pack_padded_sequence_ops.h' 2025-06-01T21:23:35.7549255Z adding 'torch/include/ATen/ops/_pad_circular.h' 2025-06-01T21:23:35.7552487Z adding 'torch/include/ATen/ops/_pad_circular_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.7555485Z adding 'torch/include/ATen/ops/_pad_circular_native.h' 2025-06-01T21:23:35.7558628Z adding 'torch/include/ATen/ops/_pad_circular_ops.h' 2025-06-01T21:23:35.7561748Z adding 'torch/include/ATen/ops/_pad_enum.h' 2025-06-01T21:23:35.7565040Z adding 'torch/include/ATen/ops/_pad_enum_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.7567952Z adding 'torch/include/ATen/ops/_pad_enum_native.h' 2025-06-01T21:23:35.7571082Z adding 'torch/include/ATen/ops/_pad_enum_ops.h' 2025-06-01T21:23:35.7574196Z adding 'torch/include/ATen/ops/_pad_packed_sequence.h' 2025-06-01T21:23:35.7577439Z adding 'torch/include/ATen/ops/_pad_packed_sequence_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.7580391Z adding 'torch/include/ATen/ops/_pad_packed_sequence_native.h' 2025-06-01T21:23:35.7583841Z adding 'torch/include/ATen/ops/_pad_packed_sequence_ops.h' 2025-06-01T21:23:35.7587123Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward.h' 2025-06-01T21:23:35.7590326Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_cpu_dispatch.h' 2025-06-01T21:23:35.7593432Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_cuda_dispatch.h' 2025-06-01T21:23:35.7596421Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_native.h' 2025-06-01T21:23:35.7599536Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_ops.h' 2025-06-01T21:23:35.7602894Z adding 'torch/include/ATen/ops/_pdist_backward.h' 2025-06-01T21:23:35.7606137Z adding 'torch/include/ATen/ops/_pdist_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.7609151Z adding 'torch/include/ATen/ops/_pdist_backward_cpu_dispatch.h' 2025-06-01T21:23:35.7612184Z adding 'torch/include/ATen/ops/_pdist_backward_cuda_dispatch.h' 2025-06-01T21:23:35.7615226Z adding 'torch/include/ATen/ops/_pdist_backward_native.h' 2025-06-01T21:23:35.7618437Z adding 'torch/include/ATen/ops/_pdist_backward_ops.h' 2025-06-01T21:23:35.7621538Z adding 'torch/include/ATen/ops/_pdist_forward.h' 2025-06-01T21:23:35.7624863Z adding 'torch/include/ATen/ops/_pdist_forward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.7628286Z adding 'torch/include/ATen/ops/_pdist_forward_cpu_dispatch.h' 2025-06-01T21:23:35.7630906Z adding 'torch/include/ATen/ops/_pdist_forward_cuda_dispatch.h' 2025-06-01T21:23:35.7633864Z adding 'torch/include/ATen/ops/_pdist_forward_native.h' 2025-06-01T21:23:35.7637087Z adding 'torch/include/ATen/ops/_pdist_forward_ops.h' 2025-06-01T21:23:35.7640244Z adding 'torch/include/ATen/ops/_pin_memory.h' 2025-06-01T21:23:35.7643485Z adding 'torch/include/ATen/ops/_pin_memory_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.7646401Z adding 'torch/include/ATen/ops/_pin_memory_native.h' 2025-06-01T21:23:35.7649571Z adding 'torch/include/ATen/ops/_pin_memory_ops.h' 2025-06-01T21:23:35.7652607Z adding 'torch/include/ATen/ops/_prelu_kernel.h' 2025-06-01T21:23:35.7655661Z adding 'torch/include/ATen/ops/_prelu_kernel_backward.h' 2025-06-01T21:23:35.7658768Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_cpu_dispatch.h' 2025-06-01T21:23:35.7661797Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_cuda_dispatch.h' 2025-06-01T21:23:35.7664937Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_native.h' 2025-06-01T21:23:35.7668015Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_ops.h' 2025-06-01T21:23:35.7671044Z adding 'torch/include/ATen/ops/_prelu_kernel_cpu_dispatch.h' 2025-06-01T21:23:35.7674064Z adding 'torch/include/ATen/ops/_prelu_kernel_cuda_dispatch.h' 2025-06-01T21:23:35.7677027Z adding 'torch/include/ATen/ops/_prelu_kernel_native.h' 2025-06-01T21:23:35.7680139Z adding 'torch/include/ATen/ops/_prelu_kernel_ops.h' 2025-06-01T21:23:35.7683296Z adding 'torch/include/ATen/ops/_print.h' 2025-06-01T21:23:35.7686474Z adding 'torch/include/ATen/ops/_print_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.7689365Z adding 'torch/include/ATen/ops/_print_native.h' 2025-06-01T21:23:35.7692590Z adding 'torch/include/ATen/ops/_print_ops.h' 2025-06-01T21:23:35.7695807Z adding 'torch/include/ATen/ops/_propagate_xla_data.h' 2025-06-01T21:23:35.7698926Z adding 'torch/include/ATen/ops/_propagate_xla_data_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.7701745Z adding 'torch/include/ATen/ops/_propagate_xla_data_native.h' 2025-06-01T21:23:35.7704903Z adding 'torch/include/ATen/ops/_propagate_xla_data_ops.h' 2025-06-01T21:23:35.7707997Z adding 'torch/include/ATen/ops/_remove_batch_dim.h' 2025-06-01T21:23:35.7711243Z adding 'torch/include/ATen/ops/_remove_batch_dim_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.7714086Z adding 'torch/include/ATen/ops/_remove_batch_dim_native.h' 2025-06-01T21:23:35.7717202Z adding 'torch/include/ATen/ops/_remove_batch_dim_ops.h' 2025-06-01T21:23:35.7720345Z adding 'torch/include/ATen/ops/_reshape_alias.h' 2025-06-01T21:23:35.7723711Z adding 'torch/include/ATen/ops/_reshape_alias_copy.h' 2025-06-01T21:23:35.7727058Z adding 'torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.7730277Z adding 'torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:35.7733094Z adding 'torch/include/ATen/ops/_reshape_alias_copy_native.h' 2025-06-01T21:23:35.7736281Z adding 'torch/include/ATen/ops/_reshape_alias_copy_ops.h' 2025-06-01T21:23:35.7739405Z adding 'torch/include/ATen/ops/_reshape_alias_cpu_dispatch.h' 2025-06-01T21:23:35.7742458Z adding 'torch/include/ATen/ops/_reshape_alias_cuda_dispatch.h' 2025-06-01T21:23:35.7745780Z adding 'torch/include/ATen/ops/_reshape_alias_meta_dispatch.h' 2025-06-01T21:23:35.7748780Z adding 'torch/include/ATen/ops/_reshape_alias_native.h' 2025-06-01T21:23:35.7751957Z adding 'torch/include/ATen/ops/_reshape_alias_ops.h' 2025-06-01T21:23:35.7755082Z adding 'torch/include/ATen/ops/_reshape_copy.h' 2025-06-01T21:23:35.7758299Z adding 'torch/include/ATen/ops/_reshape_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.7761150Z adding 'torch/include/ATen/ops/_reshape_copy_native.h' 2025-06-01T21:23:35.7764257Z adding 'torch/include/ATen/ops/_reshape_copy_ops.h' 2025-06-01T21:23:35.7767363Z adding 'torch/include/ATen/ops/_reshape_from_tensor.h' 2025-06-01T21:23:35.7770532Z adding 'torch/include/ATen/ops/_reshape_from_tensor_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.7773370Z adding 'torch/include/ATen/ops/_reshape_from_tensor_native.h' 2025-06-01T21:23:35.7776447Z adding 'torch/include/ATen/ops/_reshape_from_tensor_ops.h' 2025-06-01T21:23:35.7779830Z adding 'torch/include/ATen/ops/_resize_output.h' 2025-06-01T21:23:35.7783400Z adding 'torch/include/ATen/ops/_resize_output_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.7786527Z adding 'torch/include/ATen/ops/_resize_output_meta_dispatch.h' 2025-06-01T21:23:35.7789547Z adding 'torch/include/ATen/ops/_resize_output_native.h' 2025-06-01T21:23:35.7792844Z adding 'torch/include/ATen/ops/_resize_output_ops.h' 2025-06-01T21:23:35.7795963Z adding 'torch/include/ATen/ops/_rowwise_prune.h' 2025-06-01T21:23:35.7799665Z adding 'torch/include/ATen/ops/_rowwise_prune_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.7802526Z adding 'torch/include/ATen/ops/_rowwise_prune_native.h' 2025-06-01T21:23:35.7805723Z adding 'torch/include/ATen/ops/_rowwise_prune_ops.h' 2025-06-01T21:23:35.7808758Z adding 'torch/include/ATen/ops/_safe_softmax.h' 2025-06-01T21:23:35.7811940Z adding 'torch/include/ATen/ops/_safe_softmax_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.7814854Z adding 'torch/include/ATen/ops/_safe_softmax_native.h' 2025-06-01T21:23:35.7817984Z adding 'torch/include/ATen/ops/_safe_softmax_ops.h' 2025-06-01T21:23:35.7821116Z adding 'torch/include/ATen/ops/_sample_dirichlet.h' 2025-06-01T21:23:35.7824468Z adding 'torch/include/ATen/ops/_sample_dirichlet_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.7827474Z adding 'torch/include/ATen/ops/_sample_dirichlet_cpu_dispatch.h' 2025-06-01T21:23:35.7830500Z adding 'torch/include/ATen/ops/_sample_dirichlet_cuda_dispatch.h' 2025-06-01T21:23:35.7833480Z adding 'torch/include/ATen/ops/_sample_dirichlet_native.h' 2025-06-01T21:23:35.7836648Z adding 'torch/include/ATen/ops/_sample_dirichlet_ops.h' 2025-06-01T21:23:35.7839711Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16.h' 2025-06-01T21:23:35.7842928Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.7845765Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16_native.h' 2025-06-01T21:23:35.7848811Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16_ops.h' 2025-06-01T21:23:35.7851988Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math.h' 2025-06-01T21:23:35.7855267Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.7858290Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps.h' 2025-06-01T21:23:35.7861233Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_native.h' 2025-06-01T21:23:35.7864516Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_ops.h' 2025-06-01T21:23:35.7867582Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_native.h' 2025-06-01T21:23:35.7870789Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_ops.h' 2025-06-01T21:23:35.7874570Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention.h' 2025-06-01T21:23:35.7878072Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward.h' 2025-06-01T21:23:35.7881494Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_cuda_dispatch.h' 2025-06-01T21:23:35.7884663Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_native.h' 2025-06-01T21:23:35.7887984Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_ops.h' 2025-06-01T21:23:35.7891339Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_cuda_dispatch.h' 2025-06-01T21:23:35.7894426Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_native.h' 2025-06-01T21:23:35.7897884Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_ops.h' 2025-06-01T21:23:35.7901138Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention.h' 2025-06-01T21:23:35.7904526Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward.h' 2025-06-01T21:23:35.7907934Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_cuda_dispatch.h' 2025-06-01T21:23:35.7910991Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_native.h' 2025-06-01T21:23:35.7914383Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_ops.h' 2025-06-01T21:23:35.7917636Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_cuda_dispatch.h' 2025-06-01T21:23:35.7920759Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_native.h' 2025-06-01T21:23:35.7924131Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_ops.h' 2025-06-01T21:23:35.7927353Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention.h' 2025-06-01T21:23:35.7931375Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward.h' 2025-06-01T21:23:35.7934288Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_cuda_dispatch.h' 2025-06-01T21:23:35.7937455Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_native.h' 2025-06-01T21:23:35.7940741Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_ops.h' 2025-06-01T21:23:35.7944166Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_cuda_dispatch.h' 2025-06-01T21:23:35.7947416Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu.h' 2025-06-01T21:23:35.7950616Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward.h' 2025-06-01T21:23:35.7953941Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_cpu_dispatch.h' 2025-06-01T21:23:35.7957003Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_native.h' 2025-06-01T21:23:35.7970841Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_ops.h' 2025-06-01T21:23:35.7971272Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_cpu_dispatch.h' 2025-06-01T21:23:35.7971548Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_native.h' 2025-06-01T21:23:35.7971781Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_ops.h' 2025-06-01T21:23:35.7973160Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_native.h' 2025-06-01T21:23:35.7976463Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_ops.h' 2025-06-01T21:23:35.7979700Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable.h' 2025-06-01T21:23:35.7983362Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward.h' 2025-06-01T21:23:35.7987183Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.7990196Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_native.h' 2025-06-01T21:23:35.7993664Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_ops.h' 2025-06-01T21:23:35.7997020Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.8000078Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_native.h' 2025-06-01T21:23:35.8003875Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_ops.h' 2025-06-01T21:23:35.8006990Z adding 'torch/include/ATen/ops/_scaled_grouped_mm.h' 2025-06-01T21:23:35.8010290Z adding 'torch/include/ATen/ops/_scaled_grouped_mm_cuda_dispatch.h' 2025-06-01T21:23:35.8013406Z adding 'torch/include/ATen/ops/_scaled_grouped_mm_native.h' 2025-06-01T21:23:35.8016700Z adding 'torch/include/ATen/ops/_scaled_grouped_mm_ops.h' 2025-06-01T21:23:35.8019900Z adding 'torch/include/ATen/ops/_scaled_mm.h' 2025-06-01T21:23:35.8023278Z adding 'torch/include/ATen/ops/_scaled_mm_cpu_dispatch.h' 2025-06-01T21:23:35.8026725Z adding 'torch/include/ATen/ops/_scaled_mm_cuda_dispatch.h' 2025-06-01T21:23:35.8029854Z adding 'torch/include/ATen/ops/_scaled_mm_native.h' 2025-06-01T21:23:35.8033317Z adding 'torch/include/ATen/ops/_scaled_mm_ops.h' 2025-06-01T21:23:35.8036658Z adding 'torch/include/ATen/ops/_segment_reduce_backward.h' 2025-06-01T21:23:35.8040496Z adding 'torch/include/ATen/ops/_segment_reduce_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.8043923Z adding 'torch/include/ATen/ops/_segment_reduce_backward_cpu_dispatch.h' 2025-06-01T21:23:35.8047442Z adding 'torch/include/ATen/ops/_segment_reduce_backward_cuda_dispatch.h' 2025-06-01T21:23:35.8050969Z adding 'torch/include/ATen/ops/_segment_reduce_backward_native.h' 2025-06-01T21:23:35.8054849Z adding 'torch/include/ATen/ops/_segment_reduce_backward_ops.h' 2025-06-01T21:23:35.8058350Z adding 'torch/include/ATen/ops/_shape_as_tensor.h' 2025-06-01T21:23:35.8061776Z adding 'torch/include/ATen/ops/_shape_as_tensor_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.8064793Z adding 'torch/include/ATen/ops/_shape_as_tensor_native.h' 2025-06-01T21:23:35.8068080Z adding 'torch/include/ATen/ops/_shape_as_tensor_ops.h' 2025-06-01T21:23:35.8072222Z adding 'torch/include/ATen/ops/_slow_conv2d_backward.h' 2025-06-01T21:23:35.8075974Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.8079366Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_cpu_dispatch.h' 2025-06-01T21:23:35.8082625Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_cuda_dispatch.h' 2025-06-01T21:23:35.8085986Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_native.h' 2025-06-01T21:23:35.8089466Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_ops.h' 2025-06-01T21:23:35.8093074Z adding 'torch/include/ATen/ops/_slow_conv2d_forward.h' 2025-06-01T21:23:35.8096735Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_cpu_dispatch.h' 2025-06-01T21:23:35.8099966Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_cuda_dispatch.h' 2025-06-01T21:23:35.8103026Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_native.h' 2025-06-01T21:23:35.8106419Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_ops.h' 2025-06-01T21:23:35.8109526Z adding 'torch/include/ATen/ops/_sobol_engine_draw.h' 2025-06-01T21:23:35.8112963Z adding 'torch/include/ATen/ops/_sobol_engine_draw_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.8115860Z adding 'torch/include/ATen/ops/_sobol_engine_draw_native.h' 2025-06-01T21:23:35.8119029Z adding 'torch/include/ATen/ops/_sobol_engine_draw_ops.h' 2025-06-01T21:23:35.8122116Z adding 'torch/include/ATen/ops/_sobol_engine_ff.h' 2025-06-01T21:23:35.8125354Z adding 'torch/include/ATen/ops/_sobol_engine_ff_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.8128187Z adding 'torch/include/ATen/ops/_sobol_engine_ff_native.h' 2025-06-01T21:23:35.8131288Z adding 'torch/include/ATen/ops/_sobol_engine_ff_ops.h' 2025-06-01T21:23:35.8134335Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state.h' 2025-06-01T21:23:35.8137511Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.8140347Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state_native.h' 2025-06-01T21:23:35.8143669Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state_ops.h' 2025-06-01T21:23:35.8146767Z adding 'torch/include/ATen/ops/_sobol_engine_scramble.h' 2025-06-01T21:23:35.8150023Z adding 'torch/include/ATen/ops/_sobol_engine_scramble_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.8152877Z adding 'torch/include/ATen/ops/_sobol_engine_scramble_native.h' 2025-06-01T21:23:35.8156010Z adding 'torch/include/ATen/ops/_sobol_engine_scramble_ops.h' 2025-06-01T21:23:35.8158983Z adding 'torch/include/ATen/ops/_softmax.h' 2025-06-01T21:23:35.8162229Z adding 'torch/include/ATen/ops/_softmax_backward_data.h' 2025-06-01T21:23:35.8165459Z adding 'torch/include/ATen/ops/_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:35.8168463Z adding 'torch/include/ATen/ops/_softmax_backward_data_cpu_dispatch.h' 2025-06-01T21:23:35.8171569Z adding 'torch/include/ATen/ops/_softmax_backward_data_cuda_dispatch.h' 2025-06-01T21:23:35.8174501Z adding 'torch/include/ATen/ops/_softmax_backward_data_meta.h' 2025-06-01T21:23:35.8177658Z adding 'torch/include/ATen/ops/_softmax_backward_data_meta_dispatch.h' 2025-06-01T21:23:35.8180679Z adding 'torch/include/ATen/ops/_softmax_backward_data_native.h' 2025-06-01T21:23:35.8184000Z adding 'torch/include/ATen/ops/_softmax_backward_data_ops.h' 2025-06-01T21:23:35.8187276Z adding 'torch/include/ATen/ops/_softmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:35.8190237Z adding 'torch/include/ATen/ops/_softmax_cpu_dispatch.h' 2025-06-01T21:23:35.8193279Z adding 'torch/include/ATen/ops/_softmax_cuda_dispatch.h' 2025-06-01T21:23:35.8196266Z adding 'torch/include/ATen/ops/_softmax_meta.h' 2025-06-01T21:23:35.8199567Z adding 'torch/include/ATen/ops/_softmax_meta_dispatch.h' 2025-06-01T21:23:35.8202667Z adding 'torch/include/ATen/ops/_softmax_native.h' 2025-06-01T21:23:35.8205939Z adding 'torch/include/ATen/ops/_softmax_ops.h' 2025-06-01T21:23:35.8209214Z adding 'torch/include/ATen/ops/_sparse_addmm.h' 2025-06-01T21:23:35.8212807Z adding 'torch/include/ATen/ops/_sparse_addmm_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.8215898Z adding 'torch/include/ATen/ops/_sparse_addmm_native.h' 2025-06-01T21:23:35.8219136Z adding 'torch/include/ATen/ops/_sparse_addmm_ops.h' 2025-06-01T21:23:35.8222412Z adding 'torch/include/ATen/ops/_sparse_broadcast_to.h' 2025-06-01T21:23:35.8225645Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy.h' 2025-06-01T21:23:35.8229068Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.8232302Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:35.8235188Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_native.h' 2025-06-01T21:23:35.8238399Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_ops.h' 2025-06-01T21:23:35.8241485Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_native.h' 2025-06-01T21:23:35.8244775Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_ops.h' 2025-06-01T21:23:35.8247942Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe.h' 2025-06-01T21:23:35.8251399Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.8254343Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_native.h' 2025-06-01T21:23:35.8257654Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_ops.h' 2025-06-01T21:23:35.8260839Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe.h' 2025-06-01T21:23:35.8264411Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.8267375Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_native.h' 2025-06-01T21:23:35.8270761Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_ops.h' 2025-06-01T21:23:35.8274352Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe.h' 2025-06-01T21:23:35.8277877Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.8280893Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_native.h' 2025-06-01T21:23:35.8284157Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_ops.h' 2025-06-01T21:23:35.8287495Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims.h' 2025-06-01T21:23:35.8290922Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.8293949Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_native.h' 2025-06-01T21:23:35.8297223Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_ops.h' 2025-06-01T21:23:35.8300726Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe.h' 2025-06-01T21:23:35.8304462Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.8307467Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe_native.h' 2025-06-01T21:23:35.8310825Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe_ops.h' 2025-06-01T21:23:35.8314208Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims.h' 2025-06-01T21:23:35.8318129Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors.h' 2025-06-01T21:23:35.8321870Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.8325107Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_meta_dispatch.h' 2025-06-01T21:23:35.8328232Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_native.h' 2025-06-01T21:23:35.8331601Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_ops.h' 2025-06-01T21:23:35.8334976Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.8338002Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_meta_dispatch.h' 2025-06-01T21:23:35.8341176Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_native.h' 2025-06-01T21:23:35.8344558Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_ops.h' 2025-06-01T21:23:35.8347922Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe.h' 2025-06-01T21:23:35.8351380Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.8354359Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe_native.h' 2025-06-01T21:23:35.8357674Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe_ops.h' 2025-06-01T21:23:35.8360872Z adding 'torch/include/ATen/ops/_sparse_csr_prod.h' 2025-06-01T21:23:35.8364251Z adding 'torch/include/ATen/ops/_sparse_csr_prod_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.8367166Z adding 'torch/include/ATen/ops/_sparse_csr_prod_native.h' 2025-06-01T21:23:35.8370514Z adding 'torch/include/ATen/ops/_sparse_csr_prod_ops.h' 2025-06-01T21:23:35.8373722Z adding 'torch/include/ATen/ops/_sparse_csr_sum.h' 2025-06-01T21:23:35.8377129Z adding 'torch/include/ATen/ops/_sparse_csr_sum_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.8380066Z adding 'torch/include/ATen/ops/_sparse_csr_sum_native.h' 2025-06-01T21:23:35.8383431Z adding 'torch/include/ATen/ops/_sparse_csr_sum_ops.h' 2025-06-01T21:23:35.8386808Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe.h' 2025-06-01T21:23:35.8390290Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.8393257Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe_native.h' 2025-06-01T21:23:35.8396584Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe_ops.h' 2025-06-01T21:23:35.8399907Z adding 'torch/include/ATen/ops/_sparse_log_softmax.h' 2025-06-01T21:23:35.8403126Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data.h' 2025-06-01T21:23:35.8406522Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.8409512Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data_native.h' 2025-06-01T21:23:35.8412796Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data_ops.h' 2025-06-01T21:23:35.8416037Z adding 'torch/include/ATen/ops/_sparse_log_softmax_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.8419742Z adding 'torch/include/ATen/ops/_sparse_log_softmax_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.8422692Z adding 'torch/include/ATen/ops/_sparse_log_softmax_native.h' 2025-06-01T21:23:35.8426283Z adding 'torch/include/ATen/ops/_sparse_log_softmax_ops.h' 2025-06-01T21:23:35.8429508Z adding 'torch/include/ATen/ops/_sparse_mask_projection.h' 2025-06-01T21:23:35.8432873Z adding 'torch/include/ATen/ops/_sparse_mask_projection_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.8435782Z adding 'torch/include/ATen/ops/_sparse_mask_projection_native.h' 2025-06-01T21:23:35.8439094Z adding 'torch/include/ATen/ops/_sparse_mask_projection_ops.h' 2025-06-01T21:23:35.8442308Z adding 'torch/include/ATen/ops/_sparse_mm.h' 2025-06-01T21:23:35.8445624Z adding 'torch/include/ATen/ops/_sparse_mm_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.8448682Z adding 'torch/include/ATen/ops/_sparse_mm_native.h' 2025-06-01T21:23:35.8451879Z adding 'torch/include/ATen/ops/_sparse_mm_ops.h' 2025-06-01T21:23:35.8455136Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl.h' 2025-06-01T21:23:35.8458303Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_backward.h' 2025-06-01T21:23:35.8461431Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_backward_native.h' 2025-06-01T21:23:35.8464729Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_backward_ops.h' 2025-06-01T21:23:35.8467853Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_native.h' 2025-06-01T21:23:35.8471021Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_ops.h' 2025-06-01T21:23:35.8474312Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm.h' 2025-06-01T21:23:35.8477475Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm_cuda_dispatch.h' 2025-06-01T21:23:35.8480626Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm_native.h' 2025-06-01T21:23:35.8483835Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm_ops.h' 2025-06-01T21:23:35.8486994Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply.h' 2025-06-01T21:23:35.8490235Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_cuda_dispatch.h' 2025-06-01T21:23:35.8493325Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense.h' 2025-06-01T21:23:35.8496559Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense_cuda_dispatch.h' 2025-06-01T21:23:35.8499565Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense_native.h' 2025-06-01T21:23:35.8502819Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense_ops.h' 2025-06-01T21:23:35.8505966Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_native.h' 2025-06-01T21:23:35.8509178Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_ops.h' 2025-06-01T21:23:35.8512311Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear.h' 2025-06-01T21:23:35.8515638Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear_cuda_dispatch.h' 2025-06-01T21:23:35.8518740Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear_native.h' 2025-06-01T21:23:35.8522049Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear_ops.h' 2025-06-01T21:23:35.8525208Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm.h' 2025-06-01T21:23:35.8528377Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm_cuda_dispatch.h' 2025-06-01T21:23:35.8531459Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm_native.h' 2025-06-01T21:23:35.8534600Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm_ops.h' 2025-06-01T21:23:35.8537819Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile.h' 2025-06-01T21:23:35.8540954Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile_cuda_dispatch.h' 2025-06-01T21:23:35.8544206Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile_native.h' 2025-06-01T21:23:35.8547467Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile_ops.h' 2025-06-01T21:23:35.8550646Z adding 'torch/include/ATen/ops/_sparse_softmax.h' 2025-06-01T21:23:35.8554109Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data.h' 2025-06-01T21:23:35.8557409Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.8560351Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data_native.h' 2025-06-01T21:23:35.8563515Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data_ops.h' 2025-06-01T21:23:35.8566714Z adding 'torch/include/ATen/ops/_sparse_softmax_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.8569915Z adding 'torch/include/ATen/ops/_sparse_softmax_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.8572875Z adding 'torch/include/ATen/ops/_sparse_softmax_native.h' 2025-06-01T21:23:35.8576187Z adding 'torch/include/ATen/ops/_sparse_softmax_ops.h' 2025-06-01T21:23:35.8579367Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul.h' 2025-06-01T21:23:35.8582586Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.8585555Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul_native.h' 2025-06-01T21:23:35.8588740Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul_ops.h' 2025-06-01T21:23:35.8591920Z adding 'torch/include/ATen/ops/_sparse_sum.h' 2025-06-01T21:23:35.8595030Z adding 'torch/include/ATen/ops/_sparse_sum_backward.h' 2025-06-01T21:23:35.8598249Z adding 'torch/include/ATen/ops/_sparse_sum_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.8601342Z adding 'torch/include/ATen/ops/_sparse_sum_backward_native.h' 2025-06-01T21:23:35.8604612Z adding 'torch/include/ATen/ops/_sparse_sum_backward_ops.h' 2025-06-01T21:23:35.8607807Z adding 'torch/include/ATen/ops/_sparse_sum_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.8610925Z adding 'torch/include/ATen/ops/_sparse_sum_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.8613890Z adding 'torch/include/ATen/ops/_sparse_sum_native.h' 2025-06-01T21:23:35.8617223Z adding 'torch/include/ATen/ops/_sparse_sum_ops.h' 2025-06-01T21:23:35.8621437Z adding 'torch/include/ATen/ops/_spdiags.h' 2025-06-01T21:23:35.8624905Z adding 'torch/include/ATen/ops/_spdiags_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.8627893Z adding 'torch/include/ATen/ops/_spdiags_cpu_dispatch.h' 2025-06-01T21:23:35.8630905Z adding 'torch/include/ATen/ops/_spdiags_native.h' 2025-06-01T21:23:35.8634132Z adding 'torch/include/ATen/ops/_spdiags_ops.h' 2025-06-01T21:23:35.8637183Z adding 'torch/include/ATen/ops/_spsolve.h' 2025-06-01T21:23:35.8640172Z adding 'torch/include/ATen/ops/_spsolve_native.h' 2025-06-01T21:23:35.8643364Z adding 'torch/include/ATen/ops/_spsolve_ops.h' 2025-06-01T21:23:35.8646384Z adding 'torch/include/ATen/ops/_stack.h' 2025-06-01T21:23:35.8649657Z adding 'torch/include/ATen/ops/_stack_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.8652630Z adding 'torch/include/ATen/ops/_stack_cpu_dispatch.h' 2025-06-01T21:23:35.8655683Z adding 'torch/include/ATen/ops/_stack_native.h' 2025-06-01T21:23:35.8658899Z adding 'torch/include/ATen/ops/_stack_ops.h' 2025-06-01T21:23:35.8662021Z adding 'torch/include/ATen/ops/_standard_gamma.h' 2025-06-01T21:23:35.8665345Z adding 'torch/include/ATen/ops/_standard_gamma_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.8668363Z adding 'torch/include/ATen/ops/_standard_gamma_cpu_dispatch.h' 2025-06-01T21:23:35.8671449Z adding 'torch/include/ATen/ops/_standard_gamma_cuda_dispatch.h' 2025-06-01T21:23:35.8674496Z adding 'torch/include/ATen/ops/_standard_gamma_grad.h' 2025-06-01T21:23:35.8677754Z adding 'torch/include/ATen/ops/_standard_gamma_grad_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.8680717Z adding 'torch/include/ATen/ops/_standard_gamma_grad_cpu_dispatch.h' 2025-06-01T21:23:35.8683697Z adding 'torch/include/ATen/ops/_standard_gamma_grad_cuda_dispatch.h' 2025-06-01T21:23:35.8686681Z adding 'torch/include/ATen/ops/_standard_gamma_grad_native.h' 2025-06-01T21:23:35.8689764Z adding 'torch/include/ATen/ops/_standard_gamma_grad_ops.h' 2025-06-01T21:23:35.8692860Z adding 'torch/include/ATen/ops/_standard_gamma_native.h' 2025-06-01T21:23:35.8696057Z adding 'torch/include/ATen/ops/_standard_gamma_ops.h' 2025-06-01T21:23:35.8699120Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults.h' 2025-06-01T21:23:35.8702474Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.8705519Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults_native.h' 2025-06-01T21:23:35.8708643Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults_ops.h' 2025-06-01T21:23:35.8711819Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch.h' 2025-06-01T21:23:35.8715174Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.8718214Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.8721093Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_native.h' 2025-06-01T21:23:35.8724292Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_ops.h' 2025-06-01T21:23:35.8727449Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view.h' 2025-06-01T21:23:35.8730662Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.8733553Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy.h' 2025-06-01T21:23:35.8736819Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.8740010Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:35.8742820Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_native.h' 2025-06-01T21:23:35.8746089Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_ops.h' 2025-06-01T21:23:35.8749126Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_native.h' 2025-06-01T21:23:35.8752217Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_ops.h' 2025-06-01T21:23:35.8755183Z adding 'torch/include/ATen/ops/_test_check_tensor.h' 2025-06-01T21:23:35.8758435Z adding 'torch/include/ATen/ops/_test_check_tensor_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.8761299Z adding 'torch/include/ATen/ops/_test_check_tensor_native.h' 2025-06-01T21:23:35.8764491Z adding 'torch/include/ATen/ops/_test_check_tensor_ops.h' 2025-06-01T21:23:35.8767673Z adding 'torch/include/ATen/ops/_test_functorch_fallback.h' 2025-06-01T21:23:35.8771075Z adding 'torch/include/ATen/ops/_test_functorch_fallback_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.8774047Z adding 'torch/include/ATen/ops/_test_functorch_fallback_cpu_dispatch.h' 2025-06-01T21:23:35.8777126Z adding 'torch/include/ATen/ops/_test_functorch_fallback_native.h' 2025-06-01T21:23:35.8780305Z adding 'torch/include/ATen/ops/_test_functorch_fallback_ops.h' 2025-06-01T21:23:35.8783698Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist.h' 2025-06-01T21:23:35.8787044Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.8790172Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_cpu_dispatch.h' 2025-06-01T21:23:35.8793192Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_native.h' 2025-06-01T21:23:35.8796555Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_ops.h' 2025-06-01T21:23:35.8799653Z adding 'torch/include/ATen/ops/_test_optional_floatlist.h' 2025-06-01T21:23:35.8803090Z adding 'torch/include/ATen/ops/_test_optional_floatlist_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.8806083Z adding 'torch/include/ATen/ops/_test_optional_floatlist_cpu_dispatch.h' 2025-06-01T21:23:35.8809194Z adding 'torch/include/ATen/ops/_test_optional_floatlist_native.h' 2025-06-01T21:23:35.8812448Z adding 'torch/include/ATen/ops/_test_optional_floatlist_ops.h' 2025-06-01T21:23:35.8815748Z adding 'torch/include/ATen/ops/_test_optional_intlist.h' 2025-06-01T21:23:35.8819460Z adding 'torch/include/ATen/ops/_test_optional_intlist_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.8822457Z adding 'torch/include/ATen/ops/_test_optional_intlist_cpu_dispatch.h' 2025-06-01T21:23:35.8825692Z adding 'torch/include/ATen/ops/_test_optional_intlist_native.h' 2025-06-01T21:23:35.8828860Z adding 'torch/include/ATen/ops/_test_optional_intlist_ops.h' 2025-06-01T21:23:35.8832062Z adding 'torch/include/ATen/ops/_test_parallel_materialize.h' 2025-06-01T21:23:35.8835299Z adding 'torch/include/ATen/ops/_test_parallel_materialize_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.8838297Z adding 'torch/include/ATen/ops/_test_parallel_materialize_native.h' 2025-06-01T21:23:35.8841513Z adding 'torch/include/ATen/ops/_test_parallel_materialize_ops.h' 2025-06-01T21:23:35.8844938Z adding 'torch/include/ATen/ops/_test_serialization_subcmul.h' 2025-06-01T21:23:35.8848195Z adding 'torch/include/ATen/ops/_test_serialization_subcmul_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.8851050Z adding 'torch/include/ATen/ops/_test_serialization_subcmul_native.h' 2025-06-01T21:23:35.8854170Z adding 'torch/include/ATen/ops/_test_serialization_subcmul_ops.h' 2025-06-01T21:23:35.8857184Z adding 'torch/include/ATen/ops/_test_string_default.h' 2025-06-01T21:23:35.8860530Z adding 'torch/include/ATen/ops/_test_string_default_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.8863412Z adding 'torch/include/ATen/ops/_test_string_default_native.h' 2025-06-01T21:23:35.8866837Z adding 'torch/include/ATen/ops/_test_string_default_ops.h' 2025-06-01T21:23:35.8869964Z adding 'torch/include/ATen/ops/_test_warn_in_autograd.h' 2025-06-01T21:23:35.8873304Z adding 'torch/include/ATen/ops/_test_warn_in_autograd_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.8876301Z adding 'torch/include/ATen/ops/_test_warn_in_autograd_native.h' 2025-06-01T21:23:35.8879475Z adding 'torch/include/ATen/ops/_test_warn_in_autograd_ops.h' 2025-06-01T21:23:35.8882761Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward.h' 2025-06-01T21:23:35.8886068Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.8889136Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_native.h' 2025-06-01T21:23:35.8892354Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_ops.h' 2025-06-01T21:23:35.8895651Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward.h' 2025-06-01T21:23:35.8898994Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.8902051Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_native.h' 2025-06-01T21:23:35.8905457Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_ops.h' 2025-06-01T21:23:35.8908764Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell.h' 2025-06-01T21:23:35.8912191Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward.h' 2025-06-01T21:23:35.8915533Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.8918723Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_cuda_dispatch.h' 2025-06-01T21:23:35.8921738Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_native.h' 2025-06-01T21:23:35.8925133Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_ops.h' 2025-06-01T21:23:35.8928446Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.8931613Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_cuda_dispatch.h' 2025-06-01T21:23:35.8934642Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_native.h' 2025-06-01T21:23:35.8938162Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_ops.h' 2025-06-01T21:23:35.8941569Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell.h' 2025-06-01T21:23:35.8945065Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward.h' 2025-06-01T21:23:35.8948365Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.8951485Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl.h' 2025-06-01T21:23:35.8954947Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.8957999Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_cuda_dispatch.h' 2025-06-01T21:23:35.8961436Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_native.h' 2025-06-01T21:23:35.8964787Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_ops.h' 2025-06-01T21:23:35.8968052Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_native.h' 2025-06-01T21:23:35.8971263Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_ops.h' 2025-06-01T21:23:35.8974683Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.8977826Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_cuda_dispatch.h' 2025-06-01T21:23:35.8980923Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_native.h' 2025-06-01T21:23:35.8984500Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_ops.h' 2025-06-01T21:23:35.8987841Z adding 'torch/include/ATen/ops/_to_copy.h' 2025-06-01T21:23:35.8991326Z adding 'torch/include/ATen/ops/_to_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.8994345Z adding 'torch/include/ATen/ops/_to_copy_native.h' 2025-06-01T21:23:35.8997794Z adding 'torch/include/ATen/ops/_to_copy_ops.h' 2025-06-01T21:23:35.9000868Z adding 'torch/include/ATen/ops/_to_cpu.h' 2025-06-01T21:23:35.9004236Z adding 'torch/include/ATen/ops/_to_cpu_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.9007131Z adding 'torch/include/ATen/ops/_to_cpu_native.h' 2025-06-01T21:23:35.9010377Z adding 'torch/include/ATen/ops/_to_cpu_ops.h' 2025-06-01T21:23:35.9013547Z adding 'torch/include/ATen/ops/_to_dense.h' 2025-06-01T21:23:35.9016866Z adding 'torch/include/ATen/ops/_to_dense_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.9019869Z adding 'torch/include/ATen/ops/_to_dense_native.h' 2025-06-01T21:23:35.9023742Z adding 'torch/include/ATen/ops/_to_dense_ops.h' 2025-06-01T21:23:35.9027102Z adding 'torch/include/ATen/ops/_to_sparse.h' 2025-06-01T21:23:35.9030278Z adding 'torch/include/ATen/ops/_to_sparse_bsc.h' 2025-06-01T21:23:35.9033694Z adding 'torch/include/ATen/ops/_to_sparse_bsc_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.9036709Z adding 'torch/include/ATen/ops/_to_sparse_bsc_cpu_dispatch.h' 2025-06-01T21:23:35.9039886Z adding 'torch/include/ATen/ops/_to_sparse_bsc_cuda_dispatch.h' 2025-06-01T21:23:35.9042927Z adding 'torch/include/ATen/ops/_to_sparse_bsc_native.h' 2025-06-01T21:23:35.9046254Z adding 'torch/include/ATen/ops/_to_sparse_bsc_ops.h' 2025-06-01T21:23:35.9049465Z adding 'torch/include/ATen/ops/_to_sparse_bsr.h' 2025-06-01T21:23:35.9053063Z adding 'torch/include/ATen/ops/_to_sparse_bsr_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.9056204Z adding 'torch/include/ATen/ops/_to_sparse_bsr_cpu_dispatch.h' 2025-06-01T21:23:35.9059361Z adding 'torch/include/ATen/ops/_to_sparse_bsr_cuda_dispatch.h' 2025-06-01T21:23:35.9062476Z adding 'torch/include/ATen/ops/_to_sparse_bsr_native.h' 2025-06-01T21:23:35.9065892Z adding 'torch/include/ATen/ops/_to_sparse_bsr_ops.h' 2025-06-01T21:23:35.9069209Z adding 'torch/include/ATen/ops/_to_sparse_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.9072369Z adding 'torch/include/ATen/ops/_to_sparse_cpu_dispatch.h' 2025-06-01T21:23:35.9075455Z adding 'torch/include/ATen/ops/_to_sparse_csc.h' 2025-06-01T21:23:35.9078709Z adding 'torch/include/ATen/ops/_to_sparse_csc_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.9081684Z adding 'torch/include/ATen/ops/_to_sparse_csc_cpu_dispatch.h' 2025-06-01T21:23:35.9085018Z adding 'torch/include/ATen/ops/_to_sparse_csc_cuda_dispatch.h' 2025-06-01T21:23:35.9087935Z adding 'torch/include/ATen/ops/_to_sparse_csc_native.h' 2025-06-01T21:23:35.9091130Z adding 'torch/include/ATen/ops/_to_sparse_csc_ops.h' 2025-06-01T21:23:35.9094217Z adding 'torch/include/ATen/ops/_to_sparse_csr.h' 2025-06-01T21:23:35.9097408Z adding 'torch/include/ATen/ops/_to_sparse_csr_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.9100524Z adding 'torch/include/ATen/ops/_to_sparse_csr_cpu_dispatch.h' 2025-06-01T21:23:35.9103673Z adding 'torch/include/ATen/ops/_to_sparse_csr_cuda_dispatch.h' 2025-06-01T21:23:35.9106760Z adding 'torch/include/ATen/ops/_to_sparse_csr_native.h' 2025-06-01T21:23:35.9109968Z adding 'torch/include/ATen/ops/_to_sparse_csr_ops.h' 2025-06-01T21:23:35.9113067Z adding 'torch/include/ATen/ops/_to_sparse_cuda_dispatch.h' 2025-06-01T21:23:35.9116150Z adding 'torch/include/ATen/ops/_to_sparse_native.h' 2025-06-01T21:23:35.9119530Z adding 'torch/include/ATen/ops/_to_sparse_ops.h' 2025-06-01T21:23:35.9122681Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured.h' 2025-06-01T21:23:35.9125856Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured_cuda_dispatch.h' 2025-06-01T21:23:35.9128821Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured_native.h' 2025-06-01T21:23:35.9131981Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured_ops.h' 2025-06-01T21:23:35.9135181Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv.h' 2025-06-01T21:23:35.9138477Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.9141466Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_cpu_dispatch.h' 2025-06-01T21:23:35.9144570Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_cuda_dispatch.h' 2025-06-01T21:23:35.9147617Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_native.h' 2025-06-01T21:23:35.9150836Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_ops.h' 2025-06-01T21:23:35.9154281Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd.h' 2025-06-01T21:23:35.9157776Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.9160829Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_cpu_dispatch.h' 2025-06-01T21:23:35.9163935Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_cuda_dispatch.h' 2025-06-01T21:23:35.9167087Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_native.h' 2025-06-01T21:23:35.9170577Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_ops.h' 2025-06-01T21:23:35.9173799Z adding 'torch/include/ATen/ops/_trilinear.h' 2025-06-01T21:23:35.9177040Z adding 'torch/include/ATen/ops/_trilinear_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.9180213Z adding 'torch/include/ATen/ops/_trilinear_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:35.9183014Z adding 'torch/include/ATen/ops/_trilinear_native.h' 2025-06-01T21:23:35.9186410Z adding 'torch/include/ATen/ops/_trilinear_ops.h' 2025-06-01T21:23:35.9189936Z adding 'torch/include/ATen/ops/_triton_multi_head_attention.h' 2025-06-01T21:23:35.9193362Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.9196402Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_cuda_dispatch.h' 2025-06-01T21:23:35.9199428Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_native.h' 2025-06-01T21:23:35.9202709Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_ops.h' 2025-06-01T21:23:35.9205950Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention.h' 2025-06-01T21:23:35.9209231Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.9212209Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_cuda_dispatch.h' 2025-06-01T21:23:35.9215286Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_native.h' 2025-06-01T21:23:35.9218544Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_ops.h' 2025-06-01T21:23:35.9221546Z adding 'torch/include/ATen/ops/_unique.h' 2025-06-01T21:23:35.9225098Z adding 'torch/include/ATen/ops/_unique2.h' 2025-06-01T21:23:35.9228393Z adding 'torch/include/ATen/ops/_unique2_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.9231365Z adding 'torch/include/ATen/ops/_unique2_cpu_dispatch.h' 2025-06-01T21:23:35.9234406Z adding 'torch/include/ATen/ops/_unique2_cuda_dispatch.h' 2025-06-01T21:23:35.9237492Z adding 'torch/include/ATen/ops/_unique2_native.h' 2025-06-01T21:23:35.9240721Z adding 'torch/include/ATen/ops/_unique2_ops.h' 2025-06-01T21:23:35.9243982Z adding 'torch/include/ATen/ops/_unique_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.9246914Z adding 'torch/include/ATen/ops/_unique_cpu_dispatch.h' 2025-06-01T21:23:35.9249952Z adding 'torch/include/ATen/ops/_unique_cuda_dispatch.h' 2025-06-01T21:23:35.9253035Z adding 'torch/include/ATen/ops/_unique_native.h' 2025-06-01T21:23:35.9256277Z adding 'torch/include/ATen/ops/_unique_ops.h' 2025-06-01T21:23:35.9259366Z adding 'torch/include/ATen/ops/_unpack_dual.h' 2025-06-01T21:23:35.9262537Z adding 'torch/include/ATen/ops/_unpack_dual_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.9265585Z adding 'torch/include/ATen/ops/_unpack_dual_native.h' 2025-06-01T21:23:35.9268662Z adding 'torch/include/ATen/ops/_unpack_dual_ops.h' 2025-06-01T21:23:35.9271756Z adding 'torch/include/ATen/ops/_unsafe_index.h' 2025-06-01T21:23:35.9274945Z adding 'torch/include/ATen/ops/_unsafe_index_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.9277814Z adding 'torch/include/ATen/ops/_unsafe_index_native.h' 2025-06-01T21:23:35.9280984Z adding 'torch/include/ATen/ops/_unsafe_index_ops.h' 2025-06-01T21:23:35.9284025Z adding 'torch/include/ATen/ops/_unsafe_index_put.h' 2025-06-01T21:23:35.9287334Z adding 'torch/include/ATen/ops/_unsafe_index_put_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.9290179Z adding 'torch/include/ATen/ops/_unsafe_index_put_native.h' 2025-06-01T21:23:35.9293362Z adding 'torch/include/ATen/ops/_unsafe_index_put_ops.h' 2025-06-01T21:23:35.9296450Z adding 'torch/include/ATen/ops/_unsafe_masked_index.h' 2025-06-01T21:23:35.9299699Z adding 'torch/include/ATen/ops/_unsafe_masked_index_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.9302537Z adding 'torch/include/ATen/ops/_unsafe_masked_index_native.h' 2025-06-01T21:23:35.9305758Z adding 'torch/include/ATen/ops/_unsafe_masked_index_ops.h' 2025-06-01T21:23:35.9308914Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate.h' 2025-06-01T21:23:35.9312185Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.9315082Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_native.h' 2025-06-01T21:23:35.9318265Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_ops.h' 2025-06-01T21:23:35.9321403Z adding 'torch/include/ATen/ops/_unsafe_view.h' 2025-06-01T21:23:35.9324781Z adding 'torch/include/ATen/ops/_unsafe_view_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.9327653Z adding 'torch/include/ATen/ops/_unsafe_view_native.h' 2025-06-01T21:23:35.9330791Z adding 'torch/include/ATen/ops/_unsafe_view_ops.h' 2025-06-01T21:23:35.9334434Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa.h' 2025-06-01T21:23:35.9338185Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward.h' 2025-06-01T21:23:35.9341782Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:35.9344905Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_cpu_dispatch.h' 2025-06-01T21:23:35.9348138Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_cuda_dispatch.h' 2025-06-01T21:23:35.9351823Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_meta.h' 2025-06-01T21:23:35.9355237Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_meta_dispatch.h' 2025-06-01T21:23:35.9358343Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_native.h' 2025-06-01T21:23:35.9361688Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_ops.h' 2025-06-01T21:23:35.9365084Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:35.9368265Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.9371349Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_cpu_dispatch.h' 2025-06-01T21:23:35.9374669Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_cuda_dispatch.h' 2025-06-01T21:23:35.9377764Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_meta.h' 2025-06-01T21:23:35.9381141Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_meta_dispatch.h' 2025-06-01T21:23:35.9384361Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_native.h' 2025-06-01T21:23:35.9387841Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_ops.h' 2025-06-01T21:23:35.9391723Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa.h' 2025-06-01T21:23:35.9395470Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward.h' 2025-06-01T21:23:35.9399205Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:35.9402288Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_cpu_dispatch.h' 2025-06-01T21:23:35.9405728Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_cuda_dispatch.h' 2025-06-01T21:23:35.9408797Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_meta.h' 2025-06-01T21:23:35.9412205Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_meta_dispatch.h' 2025-06-01T21:23:35.9415419Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_native.h' 2025-06-01T21:23:35.9418795Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_ops.h' 2025-06-01T21:23:35.9422312Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:35.9425477Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.9428987Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_cpu_dispatch.h' 2025-06-01T21:23:35.9432248Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_cuda_dispatch.h' 2025-06-01T21:23:35.9435442Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_meta.h' 2025-06-01T21:23:35.9438666Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_meta_dispatch.h' 2025-06-01T21:23:35.9441951Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_native.h' 2025-06-01T21:23:35.9445368Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_ops.h' 2025-06-01T21:23:35.9449051Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d.h' 2025-06-01T21:23:35.9452838Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward.h' 2025-06-01T21:23:35.9456386Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:35.9459597Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_cpu_dispatch.h' 2025-06-01T21:23:35.9462836Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_cuda_dispatch.h' 2025-06-01T21:23:35.9466166Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_meta.h' 2025-06-01T21:23:35.9469440Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_meta_dispatch.h' 2025-06-01T21:23:35.9472616Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_native.h' 2025-06-01T21:23:35.9482441Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_ops.h' 2025-06-01T21:23:35.9483157Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:35.9485980Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.9489238Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_cpu_dispatch.h' 2025-06-01T21:23:35.9492455Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_cuda_dispatch.h' 2025-06-01T21:23:35.9495649Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_meta.h' 2025-06-01T21:23:35.9498835Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_meta_dispatch.h' 2025-06-01T21:23:35.9502105Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_native.h' 2025-06-01T21:23:35.9505642Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_ops.h' 2025-06-01T21:23:35.9509327Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d.h' 2025-06-01T21:23:35.9513251Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward.h' 2025-06-01T21:23:35.9516909Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:35.9520067Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_cpu_dispatch.h' 2025-06-01T21:23:35.9523493Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_cuda_dispatch.h' 2025-06-01T21:23:35.9526513Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_meta.h' 2025-06-01T21:23:35.9529814Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_meta_dispatch.h' 2025-06-01T21:23:35.9532896Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_native.h' 2025-06-01T21:23:35.9536350Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_ops.h' 2025-06-01T21:23:35.9539883Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:35.9542975Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.9546307Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_cpu_dispatch.h' 2025-06-01T21:23:35.9549542Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_cuda_dispatch.h' 2025-06-01T21:23:35.9552934Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_meta.h' 2025-06-01T21:23:35.9556571Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_meta_dispatch.h' 2025-06-01T21:23:35.9560163Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_native.h' 2025-06-01T21:23:35.9563896Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_ops.h' 2025-06-01T21:23:35.9568025Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d.h' 2025-06-01T21:23:35.9572285Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward.h' 2025-06-01T21:23:35.9575996Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:35.9579301Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_cpu_dispatch.h' 2025-06-01T21:23:35.9582718Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_cuda_dispatch.h' 2025-06-01T21:23:35.9585947Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_meta.h' 2025-06-01T21:23:35.9589345Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_meta_dispatch.h' 2025-06-01T21:23:35.9592459Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_native.h' 2025-06-01T21:23:35.9595937Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_ops.h' 2025-06-01T21:23:35.9599355Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:35.9602431Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.9605621Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_cpu_dispatch.h' 2025-06-01T21:23:35.9608952Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_cuda_dispatch.h' 2025-06-01T21:23:35.9612010Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_meta.h' 2025-06-01T21:23:35.9615275Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_meta_dispatch.h' 2025-06-01T21:23:35.9618353Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_native.h' 2025-06-01T21:23:35.9621841Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_ops.h' 2025-06-01T21:23:35.9625198Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss.h' 2025-06-01T21:23:35.9628299Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss_cuda_dispatch.h' 2025-06-01T21:23:35.9631237Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss_native.h' 2025-06-01T21:23:35.9634439Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss_ops.h' 2025-06-01T21:23:35.9637531Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight.h' 2025-06-01T21:23:35.9640743Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.9643974Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_native.h' 2025-06-01T21:23:35.9647034Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_ops.h' 2025-06-01T21:23:35.9650155Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices.h' 2025-06-01T21:23:35.9653407Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_cpu_dispatch.h' 2025-06-01T21:23:35.9656441Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_cuda_dispatch.h' 2025-06-01T21:23:35.9659404Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_native.h' 2025-06-01T21:23:35.9662578Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_ops.h' 2025-06-01T21:23:35.9665809Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args.h' 2025-06-01T21:23:35.9669086Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.9671965Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_native.h' 2025-06-01T21:23:35.9675085Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_ops.h' 2025-06-01T21:23:35.9678154Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args.h' 2025-06-01T21:23:35.9681378Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.9684291Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_native.h' 2025-06-01T21:23:35.9687386Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_ops.h' 2025-06-01T21:23:35.9690539Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args.h' 2025-06-01T21:23:35.9693845Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.9696714Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_native.h' 2025-06-01T21:23:35.9699862Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_ops.h' 2025-06-01T21:23:35.9702914Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args.h' 2025-06-01T21:23:35.9706286Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.9709387Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args_native.h' 2025-06-01T21:23:35.9712552Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args_ops.h' 2025-06-01T21:23:35.9715694Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args.h' 2025-06-01T21:23:35.9718957Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.9721821Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args_native.h' 2025-06-01T21:23:35.9724934Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args_ops.h' 2025-06-01T21:23:35.9727976Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args.h' 2025-06-01T21:23:35.9731192Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.9734057Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args_native.h' 2025-06-01T21:23:35.9737638Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args_ops.h' 2025-06-01T21:23:35.9740133Z adding 'torch/include/ATen/ops/_values.h' 2025-06-01T21:23:35.9743144Z adding 'torch/include/ATen/ops/_values_copy.h' 2025-06-01T21:23:35.9746561Z adding 'torch/include/ATen/ops/_values_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.9749641Z adding 'torch/include/ATen/ops/_values_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:35.9752432Z adding 'torch/include/ATen/ops/_values_copy_native.h' 2025-06-01T21:23:35.9755544Z adding 'torch/include/ATen/ops/_values_copy_ops.h' 2025-06-01T21:23:35.9758520Z adding 'torch/include/ATen/ops/_values_native.h' 2025-06-01T21:23:35.9761587Z adding 'torch/include/ATen/ops/_values_ops.h' 2025-06-01T21:23:35.9764569Z adding 'torch/include/ATen/ops/_version.h' 2025-06-01T21:23:35.9767732Z adding 'torch/include/ATen/ops/_version_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.9770609Z adding 'torch/include/ATen/ops/_version_native.h' 2025-06-01T21:23:35.9773735Z adding 'torch/include/ATen/ops/_version_ops.h' 2025-06-01T21:23:35.9776714Z adding 'torch/include/ATen/ops/_weight_int4pack_mm.h' 2025-06-01T21:23:35.9779840Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_cuda_dispatch.h' 2025-06-01T21:23:35.9782801Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu.h' 2025-06-01T21:23:35.9786056Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_cpu_dispatch.h' 2025-06-01T21:23:35.9789020Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_native.h' 2025-06-01T21:23:35.9792134Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_ops.h' 2025-06-01T21:23:35.9795109Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_native.h' 2025-06-01T21:23:35.9798179Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_ops.h' 2025-06-01T21:23:35.9801321Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros.h' 2025-06-01T21:23:35.9804262Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros_native.h' 2025-06-01T21:23:35.9807372Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros_ops.h' 2025-06-01T21:23:35.9810471Z adding 'torch/include/ATen/ops/_weight_int8pack_mm.h' 2025-06-01T21:23:35.9813581Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_cpu_dispatch.h' 2025-06-01T21:23:35.9816697Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_native.h' 2025-06-01T21:23:35.9819839Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_ops.h' 2025-06-01T21:23:35.9823026Z adding 'torch/include/ATen/ops/_weight_norm.h' 2025-06-01T21:23:35.9826417Z adding 'torch/include/ATen/ops/_weight_norm_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.9829587Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward.h' 2025-06-01T21:23:35.9832949Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.9835932Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward_native.h' 2025-06-01T21:23:35.9839584Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward_ops.h' 2025-06-01T21:23:35.9842705Z adding 'torch/include/ATen/ops/_weight_norm_interface.h' 2025-06-01T21:23:35.9846093Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward.h' 2025-06-01T21:23:35.9849391Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.9852533Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_cpu_dispatch.h' 2025-06-01T21:23:35.9855623Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_cuda_dispatch.h' 2025-06-01T21:23:35.9858781Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_native.h' 2025-06-01T21:23:35.9862069Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_ops.h' 2025-06-01T21:23:35.9865641Z adding 'torch/include/ATen/ops/_weight_norm_interface_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.9868790Z adding 'torch/include/ATen/ops/_weight_norm_interface_cpu_dispatch.h' 2025-06-01T21:23:35.9871905Z adding 'torch/include/ATen/ops/_weight_norm_interface_cuda_dispatch.h' 2025-06-01T21:23:35.9874927Z adding 'torch/include/ATen/ops/_weight_norm_interface_native.h' 2025-06-01T21:23:35.9878250Z adding 'torch/include/ATen/ops/_weight_norm_interface_ops.h' 2025-06-01T21:23:35.9881582Z adding 'torch/include/ATen/ops/_weight_norm_native.h' 2025-06-01T21:23:35.9884703Z adding 'torch/include/ATen/ops/_weight_norm_ops.h' 2025-06-01T21:23:35.9887723Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack.h' 2025-06-01T21:23:35.9891012Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.9894025Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack_native.h' 2025-06-01T21:23:35.9897145Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack_ops.h' 2025-06-01T21:23:35.9900420Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked.h' 2025-06-01T21:23:35.9903865Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.9906961Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_native.h' 2025-06-01T21:23:35.9910533Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_ops.h' 2025-06-01T21:23:35.9913875Z adding 'torch/include/ATen/ops/abs.h' 2025-06-01T21:23:35.9917425Z adding 'torch/include/ATen/ops/abs_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:35.9920767Z adding 'torch/include/ATen/ops/abs_cpu_dispatch.h' 2025-06-01T21:23:35.9924205Z adding 'torch/include/ATen/ops/abs_cuda_dispatch.h' 2025-06-01T21:23:35.9927535Z adding 'torch/include/ATen/ops/abs_native.h' 2025-06-01T21:23:35.9930742Z adding 'torch/include/ATen/ops/abs_ops.h' 2025-06-01T21:23:35.9934020Z adding 'torch/include/ATen/ops/absolute.h' 2025-06-01T21:23:35.9937630Z adding 'torch/include/ATen/ops/absolute_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:35.9940893Z adding 'torch/include/ATen/ops/absolute_native.h' 2025-06-01T21:23:35.9944577Z adding 'torch/include/ATen/ops/absolute_ops.h' 2025-06-01T21:23:35.9947886Z adding 'torch/include/ATen/ops/acos.h' 2025-06-01T21:23:35.9951184Z adding 'torch/include/ATen/ops/acos_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:35.9954325Z adding 'torch/include/ATen/ops/acos_cpu_dispatch.h' 2025-06-01T21:23:35.9957419Z adding 'torch/include/ATen/ops/acos_cuda_dispatch.h' 2025-06-01T21:23:35.9960596Z adding 'torch/include/ATen/ops/acos_meta.h' 2025-06-01T21:23:35.9963714Z adding 'torch/include/ATen/ops/acos_meta_dispatch.h' 2025-06-01T21:23:35.9966890Z adding 'torch/include/ATen/ops/acos_native.h' 2025-06-01T21:23:35.9970118Z adding 'torch/include/ATen/ops/acos_ops.h' 2025-06-01T21:23:35.9973202Z adding 'torch/include/ATen/ops/acosh.h' 2025-06-01T21:23:35.9976690Z adding 'torch/include/ATen/ops/acosh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:35.9979665Z adding 'torch/include/ATen/ops/acosh_cpu_dispatch.h' 2025-06-01T21:23:35.9982715Z adding 'torch/include/ATen/ops/acosh_cuda_dispatch.h' 2025-06-01T21:23:35.9985809Z adding 'torch/include/ATen/ops/acosh_meta.h' 2025-06-01T21:23:35.9988874Z adding 'torch/include/ATen/ops/acosh_meta_dispatch.h' 2025-06-01T21:23:35.9992172Z adding 'torch/include/ATen/ops/acosh_native.h' 2025-06-01T21:23:35.9995423Z adding 'torch/include/ATen/ops/acosh_ops.h' 2025-06-01T21:23:35.9998484Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d.h' 2025-06-01T21:23:36.0001774Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.0004847Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.0007708Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_native.h' 2025-06-01T21:23:36.0010848Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_ops.h' 2025-06-01T21:23:36.0014168Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d.h' 2025-06-01T21:23:36.0017623Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.0020565Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_cpu_dispatch.h' 2025-06-01T21:23:36.0023960Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_cuda_dispatch.h' 2025-06-01T21:23:36.0026952Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_native.h' 2025-06-01T21:23:36.0030138Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_ops.h' 2025-06-01T21:23:36.0033491Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d.h' 2025-06-01T21:23:36.0036690Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward.h' 2025-06-01T21:23:36.0039831Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_cpu_dispatch.h' 2025-06-01T21:23:36.0043274Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_cuda_dispatch.h' 2025-06-01T21:23:36.0046277Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_native.h' 2025-06-01T21:23:36.0049425Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_ops.h' 2025-06-01T21:23:36.0053182Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.0055644Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_cpu_dispatch.h' 2025-06-01T21:23:36.0058802Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_cuda_dispatch.h' 2025-06-01T21:23:36.0061795Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_native.h' 2025-06-01T21:23:36.0065055Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_ops.h' 2025-06-01T21:23:36.0068144Z adding 'torch/include/ATen/ops/adaptive_max_pool1d.h' 2025-06-01T21:23:36.0071390Z adding 'torch/include/ATen/ops/adaptive_max_pool1d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.0074256Z adding 'torch/include/ATen/ops/adaptive_max_pool1d_native.h' 2025-06-01T21:23:36.0077318Z adding 'torch/include/ATen/ops/adaptive_max_pool1d_ops.h' 2025-06-01T21:23:36.0080627Z adding 'torch/include/ATen/ops/adaptive_max_pool2d.h' 2025-06-01T21:23:36.0083812Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward.h' 2025-06-01T21:23:36.0087157Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.0090069Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_cpu_dispatch.h' 2025-06-01T21:23:36.0093123Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_cuda_dispatch.h' 2025-06-01T21:23:36.0096726Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_meta.h' 2025-06-01T21:23:36.0099919Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_meta_dispatch.h' 2025-06-01T21:23:36.0102948Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_native.h' 2025-06-01T21:23:36.0106307Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_ops.h' 2025-06-01T21:23:36.0109616Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.0112573Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_cpu_dispatch.h' 2025-06-01T21:23:36.0115706Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_cuda_dispatch.h' 2025-06-01T21:23:36.0118718Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_meta.h' 2025-06-01T21:23:36.0121825Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_meta_dispatch.h' 2025-06-01T21:23:36.0124810Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_native.h' 2025-06-01T21:23:36.0128017Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_ops.h' 2025-06-01T21:23:36.0131189Z adding 'torch/include/ATen/ops/adaptive_max_pool3d.h' 2025-06-01T21:23:36.0134332Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward.h' 2025-06-01T21:23:36.0137669Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.0140593Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_cpu_dispatch.h' 2025-06-01T21:23:36.0143833Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_cuda_dispatch.h' 2025-06-01T21:23:36.0146820Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_meta.h' 2025-06-01T21:23:36.0149936Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_meta_dispatch.h' 2025-06-01T21:23:36.0152926Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_native.h' 2025-06-01T21:23:36.0156145Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_ops.h' 2025-06-01T21:23:36.0159440Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.0162385Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_cpu_dispatch.h' 2025-06-01T21:23:36.0165495Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_cuda_dispatch.h' 2025-06-01T21:23:36.0168477Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_meta.h' 2025-06-01T21:23:36.0171605Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_meta_dispatch.h' 2025-06-01T21:23:36.0174592Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_native.h' 2025-06-01T21:23:36.0177802Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_ops.h' 2025-06-01T21:23:36.0181203Z adding 'torch/include/ATen/ops/add.h' 2025-06-01T21:23:36.0184954Z adding 'torch/include/ATen/ops/add_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.0188493Z adding 'torch/include/ATen/ops/add_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.0191491Z adding 'torch/include/ATen/ops/add_cpu_dispatch.h' 2025-06-01T21:23:36.0194783Z adding 'torch/include/ATen/ops/add_cuda_dispatch.h' 2025-06-01T21:23:36.0198081Z adding 'torch/include/ATen/ops/add_meta.h' 2025-06-01T21:23:36.0201565Z adding 'torch/include/ATen/ops/add_meta_dispatch.h' 2025-06-01T21:23:36.0205086Z adding 'torch/include/ATen/ops/add_native.h' 2025-06-01T21:23:36.0208691Z adding 'torch/include/ATen/ops/add_ops.h' 2025-06-01T21:23:36.0212019Z adding 'torch/include/ATen/ops/addbmm.h' 2025-06-01T21:23:36.0215247Z adding 'torch/include/ATen/ops/addbmm_cpu_dispatch.h' 2025-06-01T21:23:36.0218504Z adding 'torch/include/ATen/ops/addbmm_cuda_dispatch.h' 2025-06-01T21:23:36.0221561Z adding 'torch/include/ATen/ops/addbmm_meta_dispatch.h' 2025-06-01T21:23:36.0224826Z adding 'torch/include/ATen/ops/addbmm_native.h' 2025-06-01T21:23:36.0228198Z adding 'torch/include/ATen/ops/addbmm_ops.h' 2025-06-01T21:23:36.0231549Z adding 'torch/include/ATen/ops/addcdiv.h' 2025-06-01T21:23:36.0235045Z adding 'torch/include/ATen/ops/addcdiv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.0238036Z adding 'torch/include/ATen/ops/addcdiv_cpu_dispatch.h' 2025-06-01T21:23:36.0241286Z adding 'torch/include/ATen/ops/addcdiv_cuda_dispatch.h' 2025-06-01T21:23:36.0244684Z adding 'torch/include/ATen/ops/addcdiv_meta.h' 2025-06-01T21:23:36.0247977Z adding 'torch/include/ATen/ops/addcdiv_meta_dispatch.h' 2025-06-01T21:23:36.0250982Z adding 'torch/include/ATen/ops/addcdiv_native.h' 2025-06-01T21:23:36.0254403Z adding 'torch/include/ATen/ops/addcdiv_ops.h' 2025-06-01T21:23:36.0257680Z adding 'torch/include/ATen/ops/addcmul.h' 2025-06-01T21:23:36.0261063Z adding 'torch/include/ATen/ops/addcmul_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.0264255Z adding 'torch/include/ATen/ops/addcmul_cpu_dispatch.h' 2025-06-01T21:23:36.0267387Z adding 'torch/include/ATen/ops/addcmul_cuda_dispatch.h' 2025-06-01T21:23:36.0270556Z adding 'torch/include/ATen/ops/addcmul_meta.h' 2025-06-01T21:23:36.0273696Z adding 'torch/include/ATen/ops/addcmul_meta_dispatch.h' 2025-06-01T21:23:36.0276869Z adding 'torch/include/ATen/ops/addcmul_native.h' 2025-06-01T21:23:36.0280237Z adding 'torch/include/ATen/ops/addcmul_ops.h' 2025-06-01T21:23:36.0283483Z adding 'torch/include/ATen/ops/addmm.h' 2025-06-01T21:23:36.0286947Z adding 'torch/include/ATen/ops/addmm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.0289983Z adding 'torch/include/ATen/ops/addmm_cpu_dispatch.h' 2025-06-01T21:23:36.0293343Z adding 'torch/include/ATen/ops/addmm_cuda_dispatch.h' 2025-06-01T21:23:36.0296416Z adding 'torch/include/ATen/ops/addmm_meta.h' 2025-06-01T21:23:36.0299629Z adding 'torch/include/ATen/ops/addmm_meta_dispatch.h' 2025-06-01T21:23:36.0302977Z adding 'torch/include/ATen/ops/addmm_native.h' 2025-06-01T21:23:36.0306675Z adding 'torch/include/ATen/ops/addmm_ops.h' 2025-06-01T21:23:36.0310019Z adding 'torch/include/ATen/ops/addmv.h' 2025-06-01T21:23:36.0313332Z adding 'torch/include/ATen/ops/addmv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.0316505Z adding 'torch/include/ATen/ops/addmv_cpu_dispatch.h' 2025-06-01T21:23:36.0319741Z adding 'torch/include/ATen/ops/addmv_cuda_dispatch.h' 2025-06-01T21:23:36.0322798Z adding 'torch/include/ATen/ops/addmv_meta.h' 2025-06-01T21:23:36.0326054Z adding 'torch/include/ATen/ops/addmv_meta_dispatch.h' 2025-06-01T21:23:36.0329143Z adding 'torch/include/ATen/ops/addmv_native.h' 2025-06-01T21:23:36.0332616Z adding 'torch/include/ATen/ops/addmv_ops.h' 2025-06-01T21:23:36.0335728Z adding 'torch/include/ATen/ops/addr.h' 2025-06-01T21:23:36.0339212Z adding 'torch/include/ATen/ops/addr_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.0342423Z adding 'torch/include/ATen/ops/addr_cpu_dispatch.h' 2025-06-01T21:23:36.0345713Z adding 'torch/include/ATen/ops/addr_cuda_dispatch.h' 2025-06-01T21:23:36.0348892Z adding 'torch/include/ATen/ops/addr_native.h' 2025-06-01T21:23:36.0352205Z adding 'torch/include/ATen/ops/addr_ops.h' 2025-06-01T21:23:36.0355401Z adding 'torch/include/ATen/ops/adjoint.h' 2025-06-01T21:23:36.0358640Z adding 'torch/include/ATen/ops/adjoint_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.0361625Z adding 'torch/include/ATen/ops/adjoint_native.h' 2025-06-01T21:23:36.0364741Z adding 'torch/include/ATen/ops/adjoint_ops.h' 2025-06-01T21:23:36.0368298Z adding 'torch/include/ATen/ops/affine_grid_generator.h' 2025-06-01T21:23:36.0371725Z adding 'torch/include/ATen/ops/affine_grid_generator_backward.h' 2025-06-01T21:23:36.0375051Z adding 'torch/include/ATen/ops/affine_grid_generator_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.0378055Z adding 'torch/include/ATen/ops/affine_grid_generator_backward_native.h' 2025-06-01T21:23:36.0381172Z adding 'torch/include/ATen/ops/affine_grid_generator_backward_ops.h' 2025-06-01T21:23:36.0384705Z adding 'torch/include/ATen/ops/affine_grid_generator_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.0387630Z adding 'torch/include/ATen/ops/affine_grid_generator_native.h' 2025-06-01T21:23:36.0390959Z adding 'torch/include/ATen/ops/affine_grid_generator_ops.h' 2025-06-01T21:23:36.0394065Z adding 'torch/include/ATen/ops/alias.h' 2025-06-01T21:23:36.0397340Z adding 'torch/include/ATen/ops/alias_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.0400339Z adding 'torch/include/ATen/ops/alias_copy.h' 2025-06-01T21:23:36.0403557Z adding 'torch/include/ATen/ops/alias_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.0406803Z adding 'torch/include/ATen/ops/alias_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.0409606Z adding 'torch/include/ATen/ops/alias_copy_native.h' 2025-06-01T21:23:36.0412884Z adding 'torch/include/ATen/ops/alias_copy_ops.h' 2025-06-01T21:23:36.0415891Z adding 'torch/include/ATen/ops/alias_native.h' 2025-06-01T21:23:36.0419124Z adding 'torch/include/ATen/ops/alias_ops.h' 2025-06-01T21:23:36.0422153Z adding 'torch/include/ATen/ops/align_as.h' 2025-06-01T21:23:36.0425794Z adding 'torch/include/ATen/ops/align_as_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.0428791Z adding 'torch/include/ATen/ops/align_as_native.h' 2025-06-01T21:23:36.0431768Z adding 'torch/include/ATen/ops/align_as_ops.h' 2025-06-01T21:23:36.0434888Z adding 'torch/include/ATen/ops/align_tensors.h' 2025-06-01T21:23:36.0438108Z adding 'torch/include/ATen/ops/align_tensors_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.0441086Z adding 'torch/include/ATen/ops/align_tensors_native.h' 2025-06-01T21:23:36.0444171Z adding 'torch/include/ATen/ops/align_tensors_ops.h' 2025-06-01T21:23:36.0447742Z adding 'torch/include/ATen/ops/align_to.h' 2025-06-01T21:23:36.0451864Z adding 'torch/include/ATen/ops/align_to_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.0453970Z adding 'torch/include/ATen/ops/align_to_native.h' 2025-06-01T21:23:36.0457565Z adding 'torch/include/ATen/ops/align_to_ops.h' 2025-06-01T21:23:36.0460535Z adding 'torch/include/ATen/ops/all.h' 2025-06-01T21:23:36.0464169Z adding 'torch/include/ATen/ops/all_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.0467395Z adding 'torch/include/ATen/ops/all_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.0470593Z adding 'torch/include/ATen/ops/all_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.0474653Z adding 'torch/include/ATen/ops/all_cpu_dispatch.h' 2025-06-01T21:23:36.0477133Z adding 'torch/include/ATen/ops/all_cuda_dispatch.h' 2025-06-01T21:23:36.0480490Z adding 'torch/include/ATen/ops/all_meta.h' 2025-06-01T21:23:36.0483580Z adding 'torch/include/ATen/ops/all_meta_dispatch.h' 2025-06-01T21:23:36.0486833Z adding 'torch/include/ATen/ops/all_native.h' 2025-06-01T21:23:36.0490425Z adding 'torch/include/ATen/ops/all_ops.h' 2025-06-01T21:23:36.0493682Z adding 'torch/include/ATen/ops/allclose.h' 2025-06-01T21:23:36.0497737Z adding 'torch/include/ATen/ops/allclose_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.0500197Z adding 'torch/include/ATen/ops/allclose_native.h' 2025-06-01T21:23:36.0503571Z adding 'torch/include/ATen/ops/allclose_ops.h' 2025-06-01T21:23:36.0506748Z adding 'torch/include/ATen/ops/alpha_dropout.h' 2025-06-01T21:23:36.0510110Z adding 'torch/include/ATen/ops/alpha_dropout_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.0513066Z adding 'torch/include/ATen/ops/alpha_dropout_native.h' 2025-06-01T21:23:36.0516344Z adding 'torch/include/ATen/ops/alpha_dropout_ops.h' 2025-06-01T21:23:36.0520424Z adding 'torch/include/ATen/ops/amax.h' 2025-06-01T21:23:36.0522990Z adding 'torch/include/ATen/ops/amax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.0526259Z adding 'torch/include/ATen/ops/amax_cpu_dispatch.h' 2025-06-01T21:23:36.0529214Z adding 'torch/include/ATen/ops/amax_cuda_dispatch.h' 2025-06-01T21:23:36.0532560Z adding 'torch/include/ATen/ops/amax_meta.h' 2025-06-01T21:23:36.0535528Z adding 'torch/include/ATen/ops/amax_meta_dispatch.h' 2025-06-01T21:23:36.0538646Z adding 'torch/include/ATen/ops/amax_native.h' 2025-06-01T21:23:36.0541861Z adding 'torch/include/ATen/ops/amax_ops.h' 2025-06-01T21:23:36.0545215Z adding 'torch/include/ATen/ops/amin.h' 2025-06-01T21:23:36.0548654Z adding 'torch/include/ATen/ops/amin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.0551639Z adding 'torch/include/ATen/ops/amin_cpu_dispatch.h' 2025-06-01T21:23:36.0554861Z adding 'torch/include/ATen/ops/amin_cuda_dispatch.h' 2025-06-01T21:23:36.0558079Z adding 'torch/include/ATen/ops/amin_meta.h' 2025-06-01T21:23:36.0561407Z adding 'torch/include/ATen/ops/amin_meta_dispatch.h' 2025-06-01T21:23:36.0564286Z adding 'torch/include/ATen/ops/amin_native.h' 2025-06-01T21:23:36.0567561Z adding 'torch/include/ATen/ops/amin_ops.h' 2025-06-01T21:23:36.0571038Z adding 'torch/include/ATen/ops/aminmax.h' 2025-06-01T21:23:36.0574789Z adding 'torch/include/ATen/ops/aminmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.0578086Z adding 'torch/include/ATen/ops/aminmax_cpu_dispatch.h' 2025-06-01T21:23:36.0581605Z adding 'torch/include/ATen/ops/aminmax_cuda_dispatch.h' 2025-06-01T21:23:36.0585043Z adding 'torch/include/ATen/ops/aminmax_meta.h' 2025-06-01T21:23:36.0596191Z adding 'torch/include/ATen/ops/aminmax_meta_dispatch.h' 2025-06-01T21:23:36.0599316Z adding 'torch/include/ATen/ops/aminmax_native.h' 2025-06-01T21:23:36.0602743Z adding 'torch/include/ATen/ops/aminmax_ops.h' 2025-06-01T21:23:36.0605969Z adding 'torch/include/ATen/ops/and.h' 2025-06-01T21:23:36.0609323Z adding 'torch/include/ATen/ops/and_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.0612352Z adding 'torch/include/ATen/ops/and_native.h' 2025-06-01T21:23:36.0615694Z adding 'torch/include/ATen/ops/and_ops.h' 2025-06-01T21:23:36.0618820Z adding 'torch/include/ATen/ops/angle.h' 2025-06-01T21:23:36.0621947Z adding 'torch/include/ATen/ops/angle_cpu_dispatch.h' 2025-06-01T21:23:36.0625282Z adding 'torch/include/ATen/ops/angle_cuda_dispatch.h' 2025-06-01T21:23:36.0628327Z adding 'torch/include/ATen/ops/angle_native.h' 2025-06-01T21:23:36.0631450Z adding 'torch/include/ATen/ops/angle_ops.h' 2025-06-01T21:23:36.0634773Z adding 'torch/include/ATen/ops/any.h' 2025-06-01T21:23:36.0638110Z adding 'torch/include/ATen/ops/any_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.0641465Z adding 'torch/include/ATen/ops/any_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.0644556Z adding 'torch/include/ATen/ops/any_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.0647650Z adding 'torch/include/ATen/ops/any_cpu_dispatch.h' 2025-06-01T21:23:36.0650782Z adding 'torch/include/ATen/ops/any_cuda_dispatch.h' 2025-06-01T21:23:36.0653790Z adding 'torch/include/ATen/ops/any_meta.h' 2025-06-01T21:23:36.0657039Z adding 'torch/include/ATen/ops/any_meta_dispatch.h' 2025-06-01T21:23:36.0660455Z adding 'torch/include/ATen/ops/any_native.h' 2025-06-01T21:23:36.0664075Z adding 'torch/include/ATen/ops/any_ops.h' 2025-06-01T21:23:36.0667603Z adding 'torch/include/ATen/ops/arange.h' 2025-06-01T21:23:36.0670999Z adding 'torch/include/ATen/ops/arange_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.0674194Z adding 'torch/include/ATen/ops/arange_cpu_dispatch.h' 2025-06-01T21:23:36.0677275Z adding 'torch/include/ATen/ops/arange_cuda_dispatch.h' 2025-06-01T21:23:36.0680342Z adding 'torch/include/ATen/ops/arange_meta_dispatch.h' 2025-06-01T21:23:36.0683390Z adding 'torch/include/ATen/ops/arange_native.h' 2025-06-01T21:23:36.0686852Z adding 'torch/include/ATen/ops/arange_ops.h' 2025-06-01T21:23:36.0690057Z adding 'torch/include/ATen/ops/arccos.h' 2025-06-01T21:23:36.0693303Z adding 'torch/include/ATen/ops/arccos_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.0696214Z adding 'torch/include/ATen/ops/arccos_native.h' 2025-06-01T21:23:36.0699373Z adding 'torch/include/ATen/ops/arccos_ops.h' 2025-06-01T21:23:36.0702444Z adding 'torch/include/ATen/ops/arccosh.h' 2025-06-01T21:23:36.0705897Z adding 'torch/include/ATen/ops/arccosh_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.0708796Z adding 'torch/include/ATen/ops/arccosh_native.h' 2025-06-01T21:23:36.0711994Z adding 'torch/include/ATen/ops/arccosh_ops.h' 2025-06-01T21:23:36.0715230Z adding 'torch/include/ATen/ops/arcsin.h' 2025-06-01T21:23:36.0718548Z adding 'torch/include/ATen/ops/arcsin_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.0721455Z adding 'torch/include/ATen/ops/arcsin_native.h' 2025-06-01T21:23:36.0724646Z adding 'torch/include/ATen/ops/arcsin_ops.h' 2025-06-01T21:23:36.0727865Z adding 'torch/include/ATen/ops/arcsinh.h' 2025-06-01T21:23:36.0731132Z adding 'torch/include/ATen/ops/arcsinh_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.0734022Z adding 'torch/include/ATen/ops/arcsinh_native.h' 2025-06-01T21:23:36.0737212Z adding 'torch/include/ATen/ops/arcsinh_ops.h' 2025-06-01T21:23:36.0740301Z adding 'torch/include/ATen/ops/arctan.h' 2025-06-01T21:23:36.0743365Z adding 'torch/include/ATen/ops/arctan2.h' 2025-06-01T21:23:36.0746732Z adding 'torch/include/ATen/ops/arctan2_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.0749594Z adding 'torch/include/ATen/ops/arctan2_native.h' 2025-06-01T21:23:36.0752808Z adding 'torch/include/ATen/ops/arctan2_ops.h' 2025-06-01T21:23:36.0756055Z adding 'torch/include/ATen/ops/arctan_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.0758924Z adding 'torch/include/ATen/ops/arctan_native.h' 2025-06-01T21:23:36.0762102Z adding 'torch/include/ATen/ops/arctan_ops.h' 2025-06-01T21:23:36.0765191Z adding 'torch/include/ATen/ops/arctanh.h' 2025-06-01T21:23:36.0768414Z adding 'torch/include/ATen/ops/arctanh_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.0771357Z adding 'torch/include/ATen/ops/arctanh_native.h' 2025-06-01T21:23:36.0774476Z adding 'torch/include/ATen/ops/arctanh_ops.h' 2025-06-01T21:23:36.0777588Z adding 'torch/include/ATen/ops/argmax.h' 2025-06-01T21:23:36.0780917Z adding 'torch/include/ATen/ops/argmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.0783939Z adding 'torch/include/ATen/ops/argmax_cpu_dispatch.h' 2025-06-01T21:23:36.0787045Z adding 'torch/include/ATen/ops/argmax_cuda_dispatch.h' 2025-06-01T21:23:36.0790048Z adding 'torch/include/ATen/ops/argmax_meta.h' 2025-06-01T21:23:36.0793165Z adding 'torch/include/ATen/ops/argmax_meta_dispatch.h' 2025-06-01T21:23:36.0796156Z adding 'torch/include/ATen/ops/argmax_native.h' 2025-06-01T21:23:36.0799326Z adding 'torch/include/ATen/ops/argmax_ops.h' 2025-06-01T21:23:36.0802452Z adding 'torch/include/ATen/ops/argmin.h' 2025-06-01T21:23:36.0805741Z adding 'torch/include/ATen/ops/argmin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.0808670Z adding 'torch/include/ATen/ops/argmin_cpu_dispatch.h' 2025-06-01T21:23:36.0811817Z adding 'torch/include/ATen/ops/argmin_cuda_dispatch.h' 2025-06-01T21:23:36.0814752Z adding 'torch/include/ATen/ops/argmin_meta.h' 2025-06-01T21:23:36.0817853Z adding 'torch/include/ATen/ops/argmin_meta_dispatch.h' 2025-06-01T21:23:36.0820844Z adding 'torch/include/ATen/ops/argmin_native.h' 2025-06-01T21:23:36.0824118Z adding 'torch/include/ATen/ops/argmin_ops.h' 2025-06-01T21:23:36.0827429Z adding 'torch/include/ATen/ops/argsort.h' 2025-06-01T21:23:36.0830762Z adding 'torch/include/ATen/ops/argsort_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.0833896Z adding 'torch/include/ATen/ops/argsort_native.h' 2025-06-01T21:23:36.0837223Z adding 'torch/include/ATen/ops/argsort_ops.h' 2025-06-01T21:23:36.0841092Z adding 'torch/include/ATen/ops/argwhere.h' 2025-06-01T21:23:36.0844501Z adding 'torch/include/ATen/ops/argwhere_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.0847380Z adding 'torch/include/ATen/ops/argwhere_native.h' 2025-06-01T21:23:36.0850635Z adding 'torch/include/ATen/ops/argwhere_ops.h' 2025-06-01T21:23:36.0853989Z adding 'torch/include/ATen/ops/as_strided.h' 2025-06-01T21:23:36.0857591Z adding 'torch/include/ATen/ops/as_strided_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.0861425Z adding 'torch/include/ATen/ops/as_strided_copy.h' 2025-06-01T21:23:36.0865009Z adding 'torch/include/ATen/ops/as_strided_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.0868367Z adding 'torch/include/ATen/ops/as_strided_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.0871244Z adding 'torch/include/ATen/ops/as_strided_copy_native.h' 2025-06-01T21:23:36.0874637Z adding 'torch/include/ATen/ops/as_strided_copy_ops.h' 2025-06-01T21:23:36.0877797Z adding 'torch/include/ATen/ops/as_strided_cpu_dispatch.h' 2025-06-01T21:23:36.0881071Z adding 'torch/include/ATen/ops/as_strided_cuda_dispatch.h' 2025-06-01T21:23:36.0884194Z adding 'torch/include/ATen/ops/as_strided_meta_dispatch.h' 2025-06-01T21:23:36.0887529Z adding 'torch/include/ATen/ops/as_strided_native.h' 2025-06-01T21:23:36.0890690Z adding 'torch/include/ATen/ops/as_strided_ops.h' 2025-06-01T21:23:36.0894400Z adding 'torch/include/ATen/ops/as_strided_scatter.h' 2025-06-01T21:23:36.0898030Z adding 'torch/include/ATen/ops/as_strided_scatter_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.0901249Z adding 'torch/include/ATen/ops/as_strided_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.0904403Z adding 'torch/include/ATen/ops/as_strided_scatter_native.h' 2025-06-01T21:23:36.0907714Z adding 'torch/include/ATen/ops/as_strided_scatter_ops.h' 2025-06-01T21:23:36.0910917Z adding 'torch/include/ATen/ops/asin.h' 2025-06-01T21:23:36.0914373Z adding 'torch/include/ATen/ops/asin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.0917322Z adding 'torch/include/ATen/ops/asin_cpu_dispatch.h' 2025-06-01T21:23:36.0920673Z adding 'torch/include/ATen/ops/asin_cuda_dispatch.h' 2025-06-01T21:23:36.0923595Z adding 'torch/include/ATen/ops/asin_meta.h' 2025-06-01T21:23:36.0926856Z adding 'torch/include/ATen/ops/asin_meta_dispatch.h' 2025-06-01T21:23:36.0929914Z adding 'torch/include/ATen/ops/asin_native.h' 2025-06-01T21:23:36.0933299Z adding 'torch/include/ATen/ops/asin_ops.h' 2025-06-01T21:23:36.0936451Z adding 'torch/include/ATen/ops/asinh.h' 2025-06-01T21:23:36.0939803Z adding 'torch/include/ATen/ops/asinh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.0942857Z adding 'torch/include/ATen/ops/asinh_cpu_dispatch.h' 2025-06-01T21:23:36.0946057Z adding 'torch/include/ATen/ops/asinh_cuda_dispatch.h' 2025-06-01T21:23:36.0949278Z adding 'torch/include/ATen/ops/asinh_meta.h' 2025-06-01T21:23:36.0952376Z adding 'torch/include/ATen/ops/asinh_meta_dispatch.h' 2025-06-01T21:23:36.0955565Z adding 'torch/include/ATen/ops/asinh_native.h' 2025-06-01T21:23:36.0958771Z adding 'torch/include/ATen/ops/asinh_ops.h' 2025-06-01T21:23:36.0962046Z adding 'torch/include/ATen/ops/atan.h' 2025-06-01T21:23:36.0965283Z adding 'torch/include/ATen/ops/atan2.h' 2025-06-01T21:23:36.0968525Z adding 'torch/include/ATen/ops/atan2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.0971579Z adding 'torch/include/ATen/ops/atan2_cpu_dispatch.h' 2025-06-01T21:23:36.0974670Z adding 'torch/include/ATen/ops/atan2_cuda_dispatch.h' 2025-06-01T21:23:36.0977785Z adding 'torch/include/ATen/ops/atan2_meta.h' 2025-06-01T21:23:36.0980919Z adding 'torch/include/ATen/ops/atan2_meta_dispatch.h' 2025-06-01T21:23:36.0984165Z adding 'torch/include/ATen/ops/atan2_native.h' 2025-06-01T21:23:36.0987426Z adding 'torch/include/ATen/ops/atan2_ops.h' 2025-06-01T21:23:36.0990843Z adding 'torch/include/ATen/ops/atan_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.0993908Z adding 'torch/include/ATen/ops/atan_cpu_dispatch.h' 2025-06-01T21:23:36.0997038Z adding 'torch/include/ATen/ops/atan_cuda_dispatch.h' 2025-06-01T21:23:36.1000144Z adding 'torch/include/ATen/ops/atan_meta.h' 2025-06-01T21:23:36.1003253Z adding 'torch/include/ATen/ops/atan_meta_dispatch.h' 2025-06-01T21:23:36.1006422Z adding 'torch/include/ATen/ops/atan_native.h' 2025-06-01T21:23:36.1009659Z adding 'torch/include/ATen/ops/atan_ops.h' 2025-06-01T21:23:36.1012903Z adding 'torch/include/ATen/ops/atanh.h' 2025-06-01T21:23:36.1016227Z adding 'torch/include/ATen/ops/atanh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.1019299Z adding 'torch/include/ATen/ops/atanh_cpu_dispatch.h' 2025-06-01T21:23:36.1022461Z adding 'torch/include/ATen/ops/atanh_cuda_dispatch.h' 2025-06-01T21:23:36.1025581Z adding 'torch/include/ATen/ops/atanh_meta.h' 2025-06-01T21:23:36.1028799Z adding 'torch/include/ATen/ops/atanh_meta_dispatch.h' 2025-06-01T21:23:36.1031851Z adding 'torch/include/ATen/ops/atanh_native.h' 2025-06-01T21:23:36.1035166Z adding 'torch/include/ATen/ops/atanh_ops.h' 2025-06-01T21:23:36.1038302Z adding 'torch/include/ATen/ops/atleast_1d.h' 2025-06-01T21:23:36.1041684Z adding 'torch/include/ATen/ops/atleast_1d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.1044618Z adding 'torch/include/ATen/ops/atleast_1d_native.h' 2025-06-01T21:23:36.1047897Z adding 'torch/include/ATen/ops/atleast_1d_ops.h' 2025-06-01T21:23:36.1051088Z adding 'torch/include/ATen/ops/atleast_2d.h' 2025-06-01T21:23:36.1054338Z adding 'torch/include/ATen/ops/atleast_2d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.1057351Z adding 'torch/include/ATen/ops/atleast_2d_native.h' 2025-06-01T21:23:36.1060525Z adding 'torch/include/ATen/ops/atleast_2d_ops.h' 2025-06-01T21:23:36.1064476Z adding 'torch/include/ATen/ops/atleast_3d.h' 2025-06-01T21:23:36.1068328Z adding 'torch/include/ATen/ops/atleast_3d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.1071615Z adding 'torch/include/ATen/ops/atleast_3d_native.h' 2025-06-01T21:23:36.1075271Z adding 'torch/include/ATen/ops/atleast_3d_ops.h' 2025-06-01T21:23:36.1078789Z adding 'torch/include/ATen/ops/avg_pool1d.h' 2025-06-01T21:23:36.1082061Z adding 'torch/include/ATen/ops/avg_pool1d_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.1085303Z adding 'torch/include/ATen/ops/avg_pool1d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.1088354Z adding 'torch/include/ATen/ops/avg_pool1d_native.h' 2025-06-01T21:23:36.1091724Z adding 'torch/include/ATen/ops/avg_pool1d_ops.h' 2025-06-01T21:23:36.1095180Z adding 'torch/include/ATen/ops/avg_pool2d.h' 2025-06-01T21:23:36.1098489Z adding 'torch/include/ATen/ops/avg_pool2d_backward.h' 2025-06-01T21:23:36.1102085Z adding 'torch/include/ATen/ops/avg_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.1105213Z adding 'torch/include/ATen/ops/avg_pool2d_backward_cpu_dispatch.h' 2025-06-01T21:23:36.1108367Z adding 'torch/include/ATen/ops/avg_pool2d_backward_cuda_dispatch.h' 2025-06-01T21:23:36.1111494Z adding 'torch/include/ATen/ops/avg_pool2d_backward_meta.h' 2025-06-01T21:23:36.1114775Z adding 'torch/include/ATen/ops/avg_pool2d_backward_meta_dispatch.h' 2025-06-01T21:23:36.1117957Z adding 'torch/include/ATen/ops/avg_pool2d_backward_native.h' 2025-06-01T21:23:36.1121196Z adding 'torch/include/ATen/ops/avg_pool2d_backward_ops.h' 2025-06-01T21:23:36.1124567Z adding 'torch/include/ATen/ops/avg_pool2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.1127702Z adding 'torch/include/ATen/ops/avg_pool2d_cpu_dispatch.h' 2025-06-01T21:23:36.1130890Z adding 'torch/include/ATen/ops/avg_pool2d_cuda_dispatch.h' 2025-06-01T21:23:36.1134355Z adding 'torch/include/ATen/ops/avg_pool2d_meta.h' 2025-06-01T21:23:36.1137623Z adding 'torch/include/ATen/ops/avg_pool2d_meta_dispatch.h' 2025-06-01T21:23:36.1140773Z adding 'torch/include/ATen/ops/avg_pool2d_native.h' 2025-06-01T21:23:36.1144154Z adding 'torch/include/ATen/ops/avg_pool2d_ops.h' 2025-06-01T21:23:36.1147410Z adding 'torch/include/ATen/ops/avg_pool3d.h' 2025-06-01T21:23:36.1150688Z adding 'torch/include/ATen/ops/avg_pool3d_backward.h' 2025-06-01T21:23:36.1154119Z adding 'torch/include/ATen/ops/avg_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.1157117Z adding 'torch/include/ATen/ops/avg_pool3d_backward_cpu_dispatch.h' 2025-06-01T21:23:36.1160455Z adding 'torch/include/ATen/ops/avg_pool3d_backward_cuda_dispatch.h' 2025-06-01T21:23:36.1163498Z adding 'torch/include/ATen/ops/avg_pool3d_backward_meta.h' 2025-06-01T21:23:36.1166625Z adding 'torch/include/ATen/ops/avg_pool3d_backward_meta_dispatch.h' 2025-06-01T21:23:36.1169691Z adding 'torch/include/ATen/ops/avg_pool3d_backward_native.h' 2025-06-01T21:23:36.1172953Z adding 'torch/include/ATen/ops/avg_pool3d_backward_ops.h' 2025-06-01T21:23:36.1176312Z adding 'torch/include/ATen/ops/avg_pool3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.1179259Z adding 'torch/include/ATen/ops/avg_pool3d_cpu_dispatch.h' 2025-06-01T21:23:36.1182409Z adding 'torch/include/ATen/ops/avg_pool3d_cuda_dispatch.h' 2025-06-01T21:23:36.1185568Z adding 'torch/include/ATen/ops/avg_pool3d_meta.h' 2025-06-01T21:23:36.1188722Z adding 'torch/include/ATen/ops/avg_pool3d_meta_dispatch.h' 2025-06-01T21:23:36.1191852Z adding 'torch/include/ATen/ops/avg_pool3d_native.h' 2025-06-01T21:23:36.1195143Z adding 'torch/include/ATen/ops/avg_pool3d_ops.h' 2025-06-01T21:23:36.1198455Z adding 'torch/include/ATen/ops/baddbmm.h' 2025-06-01T21:23:36.1201818Z adding 'torch/include/ATen/ops/baddbmm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.1204747Z adding 'torch/include/ATen/ops/baddbmm_cpu_dispatch.h' 2025-06-01T21:23:36.1207901Z adding 'torch/include/ATen/ops/baddbmm_cuda_dispatch.h' 2025-06-01T21:23:36.1210928Z adding 'torch/include/ATen/ops/baddbmm_meta.h' 2025-06-01T21:23:36.1214043Z adding 'torch/include/ATen/ops/baddbmm_meta_dispatch.h' 2025-06-01T21:23:36.1217110Z adding 'torch/include/ATen/ops/baddbmm_native.h' 2025-06-01T21:23:36.1220748Z adding 'torch/include/ATen/ops/baddbmm_ops.h' 2025-06-01T21:23:36.1224422Z adding 'torch/include/ATen/ops/bartlett_window.h' 2025-06-01T21:23:36.1227898Z adding 'torch/include/ATen/ops/bartlett_window_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.1231002Z adding 'torch/include/ATen/ops/bartlett_window_native.h' 2025-06-01T21:23:36.1234361Z adding 'torch/include/ATen/ops/bartlett_window_ops.h' 2025-06-01T21:23:36.1237660Z adding 'torch/include/ATen/ops/batch_norm.h' 2025-06-01T21:23:36.1240879Z adding 'torch/include/ATen/ops/batch_norm_backward.h' 2025-06-01T21:23:36.1244224Z adding 'torch/include/ATen/ops/batch_norm_backward_cpu_dispatch.h' 2025-06-01T21:23:36.1247367Z adding 'torch/include/ATen/ops/batch_norm_backward_cuda_dispatch.h' 2025-06-01T21:23:36.1250664Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt.h' 2025-06-01T21:23:36.1254141Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.1257195Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_cuda_dispatch.h' 2025-06-01T21:23:36.1260345Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_native.h' 2025-06-01T21:23:36.1263750Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_ops.h' 2025-06-01T21:23:36.1267047Z adding 'torch/include/ATen/ops/batch_norm_backward_native.h' 2025-06-01T21:23:36.1270661Z adding 'torch/include/ATen/ops/batch_norm_backward_ops.h' 2025-06-01T21:23:36.1273973Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce.h' 2025-06-01T21:23:36.1277471Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.1280534Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_cuda_dispatch.h' 2025-06-01T21:23:36.1283699Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_native.h' 2025-06-01T21:23:36.1287094Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_ops.h' 2025-06-01T21:23:36.1290464Z adding 'torch/include/ATen/ops/batch_norm_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.1293633Z adding 'torch/include/ATen/ops/batch_norm_elemt.h' 2025-06-01T21:23:36.1296848Z adding 'torch/include/ATen/ops/batch_norm_elemt_cuda_dispatch.h' 2025-06-01T21:23:36.1299967Z adding 'torch/include/ATen/ops/batch_norm_elemt_native.h' 2025-06-01T21:23:36.1303214Z adding 'torch/include/ATen/ops/batch_norm_elemt_ops.h' 2025-06-01T21:23:36.1306811Z adding 'torch/include/ATen/ops/batch_norm_gather_stats.h' 2025-06-01T21:23:36.1310252Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.1313375Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_cuda_dispatch.h' 2025-06-01T21:23:36.1316508Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_native.h' 2025-06-01T21:23:36.1319803Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_ops.h' 2025-06-01T21:23:36.1323215Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts.h' 2025-06-01T21:23:36.1326608Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.1329792Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_cuda_dispatch.h' 2025-06-01T21:23:36.1332861Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_native.h' 2025-06-01T21:23:36.1336285Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_ops.h' 2025-06-01T21:23:36.1339416Z adding 'torch/include/ATen/ops/batch_norm_native.h' 2025-06-01T21:23:36.1342618Z adding 'torch/include/ATen/ops/batch_norm_ops.h' 2025-06-01T21:23:36.1346050Z adding 'torch/include/ATen/ops/batch_norm_stats.h' 2025-06-01T21:23:36.1349318Z adding 'torch/include/ATen/ops/batch_norm_stats_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.1352457Z adding 'torch/include/ATen/ops/batch_norm_stats_cuda_dispatch.h' 2025-06-01T21:23:36.1355509Z adding 'torch/include/ATen/ops/batch_norm_stats_native.h' 2025-06-01T21:23:36.1358825Z adding 'torch/include/ATen/ops/batch_norm_stats_ops.h' 2025-06-01T21:23:36.1362146Z adding 'torch/include/ATen/ops/batch_norm_update_stats.h' 2025-06-01T21:23:36.1365541Z adding 'torch/include/ATen/ops/batch_norm_update_stats_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.1368592Z adding 'torch/include/ATen/ops/batch_norm_update_stats_cpu_dispatch.h' 2025-06-01T21:23:36.1371645Z adding 'torch/include/ATen/ops/batch_norm_update_stats_cuda_dispatch.h' 2025-06-01T21:23:36.1374778Z adding 'torch/include/ATen/ops/batch_norm_update_stats_native.h' 2025-06-01T21:23:36.1378025Z adding 'torch/include/ATen/ops/batch_norm_update_stats_ops.h' 2025-06-01T21:23:36.1381458Z adding 'torch/include/ATen/ops/bernoulli.h' 2025-06-01T21:23:36.1385015Z adding 'torch/include/ATen/ops/bernoulli_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.1388229Z adding 'torch/include/ATen/ops/bernoulli_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.1391315Z adding 'torch/include/ATen/ops/bernoulli_cpu_dispatch.h' 2025-06-01T21:23:36.1394436Z adding 'torch/include/ATen/ops/bernoulli_cuda_dispatch.h' 2025-06-01T21:23:36.1397598Z adding 'torch/include/ATen/ops/bernoulli_meta_dispatch.h' 2025-06-01T21:23:36.1400730Z adding 'torch/include/ATen/ops/bernoulli_native.h' 2025-06-01T21:23:36.1404408Z adding 'torch/include/ATen/ops/bernoulli_ops.h' 2025-06-01T21:23:36.1407647Z adding 'torch/include/ATen/ops/bilinear.h' 2025-06-01T21:23:36.1410861Z adding 'torch/include/ATen/ops/bilinear_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.1413831Z adding 'torch/include/ATen/ops/bilinear_native.h' 2025-06-01T21:23:36.1416942Z adding 'torch/include/ATen/ops/bilinear_ops.h' 2025-06-01T21:23:36.1420255Z adding 'torch/include/ATen/ops/binary_cross_entropy.h' 2025-06-01T21:23:36.1423514Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward.h' 2025-06-01T21:23:36.1426978Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_cpu_dispatch.h' 2025-06-01T21:23:36.1430231Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_cuda_dispatch.h' 2025-06-01T21:23:36.1433347Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_native.h' 2025-06-01T21:23:36.1436735Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_ops.h' 2025-06-01T21:23:36.1439894Z adding 'torch/include/ATen/ops/binary_cross_entropy_cpu_dispatch.h' 2025-06-01T21:23:36.1443175Z adding 'torch/include/ATen/ops/binary_cross_entropy_cuda_dispatch.h' 2025-06-01T21:23:36.1446268Z adding 'torch/include/ATen/ops/binary_cross_entropy_native.h' 2025-06-01T21:23:36.1449677Z adding 'torch/include/ATen/ops/binary_cross_entropy_ops.h' 2025-06-01T21:23:36.1453043Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits.h' 2025-06-01T21:23:36.1456440Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.1459526Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits_native.h' 2025-06-01T21:23:36.1462763Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits_ops.h' 2025-06-01T21:23:36.1466336Z adding 'torch/include/ATen/ops/bincount.h' 2025-06-01T21:23:36.1469801Z adding 'torch/include/ATen/ops/bincount_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.1472915Z adding 'torch/include/ATen/ops/bincount_cpu_dispatch.h' 2025-06-01T21:23:36.1476363Z adding 'torch/include/ATen/ops/bincount_cuda_dispatch.h' 2025-06-01T21:23:36.1479402Z adding 'torch/include/ATen/ops/bincount_native.h' 2025-06-01T21:23:36.1482742Z adding 'torch/include/ATen/ops/bincount_ops.h' 2025-06-01T21:23:36.1485899Z adding 'torch/include/ATen/ops/binomial.h' 2025-06-01T21:23:36.1489384Z adding 'torch/include/ATen/ops/binomial_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.1492407Z adding 'torch/include/ATen/ops/binomial_cpu_dispatch.h' 2025-06-01T21:23:36.1495604Z adding 'torch/include/ATen/ops/binomial_cuda_dispatch.h' 2025-06-01T21:23:36.1498767Z adding 'torch/include/ATen/ops/binomial_native.h' 2025-06-01T21:23:36.1502037Z adding 'torch/include/ATen/ops/binomial_ops.h' 2025-06-01T21:23:36.1505558Z adding 'torch/include/ATen/ops/bitwise_and.h' 2025-06-01T21:23:36.1509021Z adding 'torch/include/ATen/ops/bitwise_and_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.1512289Z adding 'torch/include/ATen/ops/bitwise_and_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.1515215Z adding 'torch/include/ATen/ops/bitwise_and_cpu_dispatch.h' 2025-06-01T21:23:36.1518495Z adding 'torch/include/ATen/ops/bitwise_and_cuda_dispatch.h' 2025-06-01T21:23:36.1521583Z adding 'torch/include/ATen/ops/bitwise_and_meta.h' 2025-06-01T21:23:36.1524683Z adding 'torch/include/ATen/ops/bitwise_and_meta_dispatch.h' 2025-06-01T21:23:36.1527860Z adding 'torch/include/ATen/ops/bitwise_and_native.h' 2025-06-01T21:23:36.1531362Z adding 'torch/include/ATen/ops/bitwise_and_ops.h' 2025-06-01T21:23:36.1534937Z adding 'torch/include/ATen/ops/bitwise_left_shift.h' 2025-06-01T21:23:36.1538370Z adding 'torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.1541642Z adding 'torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.1544842Z adding 'torch/include/ATen/ops/bitwise_left_shift_cpu_dispatch.h' 2025-06-01T21:23:36.1547934Z adding 'torch/include/ATen/ops/bitwise_left_shift_cuda_dispatch.h' 2025-06-01T21:23:36.1550882Z adding 'torch/include/ATen/ops/bitwise_left_shift_meta.h' 2025-06-01T21:23:36.1553958Z adding 'torch/include/ATen/ops/bitwise_left_shift_meta_dispatch.h' 2025-06-01T21:23:36.1557140Z adding 'torch/include/ATen/ops/bitwise_left_shift_native.h' 2025-06-01T21:23:36.1560675Z adding 'torch/include/ATen/ops/bitwise_left_shift_ops.h' 2025-06-01T21:23:36.1563881Z adding 'torch/include/ATen/ops/bitwise_not.h' 2025-06-01T21:23:36.1567237Z adding 'torch/include/ATen/ops/bitwise_not_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.1570141Z adding 'torch/include/ATen/ops/bitwise_not_cpu_dispatch.h' 2025-06-01T21:23:36.1573423Z adding 'torch/include/ATen/ops/bitwise_not_cuda_dispatch.h' 2025-06-01T21:23:36.1576413Z adding 'torch/include/ATen/ops/bitwise_not_meta.h' 2025-06-01T21:23:36.1579484Z adding 'torch/include/ATen/ops/bitwise_not_meta_dispatch.h' 2025-06-01T21:23:36.1582441Z adding 'torch/include/ATen/ops/bitwise_not_native.h' 2025-06-01T21:23:36.1586427Z adding 'torch/include/ATen/ops/bitwise_not_ops.h' 2025-06-01T21:23:36.1589734Z adding 'torch/include/ATen/ops/bitwise_or.h' 2025-06-01T21:23:36.1593103Z adding 'torch/include/ATen/ops/bitwise_or_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.1596262Z adding 'torch/include/ATen/ops/bitwise_or_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.1599242Z adding 'torch/include/ATen/ops/bitwise_or_cpu_dispatch.h' 2025-06-01T21:23:36.1602489Z adding 'torch/include/ATen/ops/bitwise_or_cuda_dispatch.h' 2025-06-01T21:23:36.1605544Z adding 'torch/include/ATen/ops/bitwise_or_meta.h' 2025-06-01T21:23:36.1608649Z adding 'torch/include/ATen/ops/bitwise_or_meta_dispatch.h' 2025-06-01T21:23:36.1611683Z adding 'torch/include/ATen/ops/bitwise_or_native.h' 2025-06-01T21:23:36.1615192Z adding 'torch/include/ATen/ops/bitwise_or_ops.h' 2025-06-01T21:23:36.1618617Z adding 'torch/include/ATen/ops/bitwise_right_shift.h' 2025-06-01T21:23:36.1621965Z adding 'torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.1625328Z adding 'torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.1628257Z adding 'torch/include/ATen/ops/bitwise_right_shift_cpu_dispatch.h' 2025-06-01T21:23:36.1631311Z adding 'torch/include/ATen/ops/bitwise_right_shift_cuda_dispatch.h' 2025-06-01T21:23:36.1634236Z adding 'torch/include/ATen/ops/bitwise_right_shift_meta.h' 2025-06-01T21:23:36.1637350Z adding 'torch/include/ATen/ops/bitwise_right_shift_meta_dispatch.h' 2025-06-01T21:23:36.1640326Z adding 'torch/include/ATen/ops/bitwise_right_shift_native.h' 2025-06-01T21:23:36.1643858Z adding 'torch/include/ATen/ops/bitwise_right_shift_ops.h' 2025-06-01T21:23:36.1647265Z adding 'torch/include/ATen/ops/bitwise_xor.h' 2025-06-01T21:23:36.1650541Z adding 'torch/include/ATen/ops/bitwise_xor_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.1653699Z adding 'torch/include/ATen/ops/bitwise_xor_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.1656603Z adding 'torch/include/ATen/ops/bitwise_xor_cpu_dispatch.h' 2025-06-01T21:23:36.1659839Z adding 'torch/include/ATen/ops/bitwise_xor_cuda_dispatch.h' 2025-06-01T21:23:36.1662835Z adding 'torch/include/ATen/ops/bitwise_xor_meta.h' 2025-06-01T21:23:36.1666098Z adding 'torch/include/ATen/ops/bitwise_xor_meta_dispatch.h' 2025-06-01T21:23:36.1669183Z adding 'torch/include/ATen/ops/bitwise_xor_native.h' 2025-06-01T21:23:36.1672755Z adding 'torch/include/ATen/ops/bitwise_xor_ops.h' 2025-06-01T21:23:36.1676215Z adding 'torch/include/ATen/ops/blackman_window.h' 2025-06-01T21:23:36.1679838Z adding 'torch/include/ATen/ops/blackman_window_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.1682762Z adding 'torch/include/ATen/ops/blackman_window_native.h' 2025-06-01T21:23:36.1686190Z adding 'torch/include/ATen/ops/blackman_window_ops.h' 2025-06-01T21:23:36.1689357Z adding 'torch/include/ATen/ops/block_diag.h' 2025-06-01T21:23:36.1692574Z adding 'torch/include/ATen/ops/block_diag_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.1695453Z adding 'torch/include/ATen/ops/block_diag_native.h' 2025-06-01T21:23:36.1698608Z adding 'torch/include/ATen/ops/block_diag_ops.h' 2025-06-01T21:23:36.1701726Z adding 'torch/include/ATen/ops/bmm.h' 2025-06-01T21:23:36.1705131Z adding 'torch/include/ATen/ops/bmm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.1708078Z adding 'torch/include/ATen/ops/bmm_cpu_dispatch.h' 2025-06-01T21:23:36.1711213Z adding 'torch/include/ATen/ops/bmm_cuda_dispatch.h' 2025-06-01T21:23:36.1714211Z adding 'torch/include/ATen/ops/bmm_meta.h' 2025-06-01T21:23:36.1717304Z adding 'torch/include/ATen/ops/bmm_meta_dispatch.h' 2025-06-01T21:23:36.1720362Z adding 'torch/include/ATen/ops/bmm_native.h' 2025-06-01T21:23:36.1723787Z adding 'torch/include/ATen/ops/bmm_ops.h' 2025-06-01T21:23:36.1726963Z adding 'torch/include/ATen/ops/broadcast_tensors.h' 2025-06-01T21:23:36.1730171Z adding 'torch/include/ATen/ops/broadcast_tensors_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.1733007Z adding 'torch/include/ATen/ops/broadcast_tensors_native.h' 2025-06-01T21:23:36.1736064Z adding 'torch/include/ATen/ops/broadcast_tensors_ops.h' 2025-06-01T21:23:36.1739171Z adding 'torch/include/ATen/ops/broadcast_to.h' 2025-06-01T21:23:36.1742392Z adding 'torch/include/ATen/ops/broadcast_to_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.1745386Z adding 'torch/include/ATen/ops/broadcast_to_native.h' 2025-06-01T21:23:36.1755639Z adding 'torch/include/ATen/ops/broadcast_to_ops.h' 2025-06-01T21:23:36.1755763Z adding 'torch/include/ATen/ops/bucketize.h' 2025-06-01T21:23:36.1756025Z adding 'torch/include/ATen/ops/bucketize_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.1758067Z adding 'torch/include/ATen/ops/bucketize_cpu_dispatch.h' 2025-06-01T21:23:36.1761104Z adding 'torch/include/ATen/ops/bucketize_cuda_dispatch.h' 2025-06-01T21:23:36.1764120Z adding 'torch/include/ATen/ops/bucketize_native.h' 2025-06-01T21:23:36.1767514Z adding 'torch/include/ATen/ops/bucketize_ops.h' 2025-06-01T21:23:36.1770587Z adding 'torch/include/ATen/ops/can_cast.h' 2025-06-01T21:23:36.1773802Z adding 'torch/include/ATen/ops/can_cast_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.1776613Z adding 'torch/include/ATen/ops/can_cast_native.h' 2025-06-01T21:23:36.1779716Z adding 'torch/include/ATen/ops/can_cast_ops.h' 2025-06-01T21:23:36.1782736Z adding 'torch/include/ATen/ops/cartesian_prod.h' 2025-06-01T21:23:36.1786314Z adding 'torch/include/ATen/ops/cartesian_prod_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.1788949Z adding 'torch/include/ATen/ops/cartesian_prod_native.h' 2025-06-01T21:23:36.1792020Z adding 'torch/include/ATen/ops/cartesian_prod_ops.h' 2025-06-01T21:23:36.1795202Z adding 'torch/include/ATen/ops/cat.h' 2025-06-01T21:23:36.1798459Z adding 'torch/include/ATen/ops/cat_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.1801442Z adding 'torch/include/ATen/ops/cat_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.1804438Z adding 'torch/include/ATen/ops/cat_cpu_dispatch.h' 2025-06-01T21:23:36.1807547Z adding 'torch/include/ATen/ops/cat_cuda_dispatch.h' 2025-06-01T21:23:36.1811084Z adding 'torch/include/ATen/ops/cat_meta.h' 2025-06-01T21:23:36.1814304Z adding 'torch/include/ATen/ops/cat_meta_dispatch.h' 2025-06-01T21:23:36.1817428Z adding 'torch/include/ATen/ops/cat_native.h' 2025-06-01T21:23:36.1820712Z adding 'torch/include/ATen/ops/cat_ops.h' 2025-06-01T21:23:36.1823964Z adding 'torch/include/ATen/ops/cauchy.h' 2025-06-01T21:23:36.1827234Z adding 'torch/include/ATen/ops/cauchy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.1830200Z adding 'torch/include/ATen/ops/cauchy_cpu_dispatch.h' 2025-06-01T21:23:36.1833287Z adding 'torch/include/ATen/ops/cauchy_cuda_dispatch.h' 2025-06-01T21:23:36.1836376Z adding 'torch/include/ATen/ops/cauchy_meta_dispatch.h' 2025-06-01T21:23:36.1839555Z adding 'torch/include/ATen/ops/cauchy_native.h' 2025-06-01T21:23:36.1842545Z adding 'torch/include/ATen/ops/cauchy_ops.h' 2025-06-01T21:23:36.1845529Z adding 'torch/include/ATen/ops/ccol_indices.h' 2025-06-01T21:23:36.1848705Z adding 'torch/include/ATen/ops/ccol_indices_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.1851610Z adding 'torch/include/ATen/ops/ccol_indices_copy.h' 2025-06-01T21:23:36.1854856Z adding 'torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.1858011Z adding 'torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.1860970Z adding 'torch/include/ATen/ops/ccol_indices_copy_native.h' 2025-06-01T21:23:36.1864266Z adding 'torch/include/ATen/ops/ccol_indices_copy_ops.h' 2025-06-01T21:23:36.1867309Z adding 'torch/include/ATen/ops/ccol_indices_native.h' 2025-06-01T21:23:36.1870382Z adding 'torch/include/ATen/ops/ccol_indices_ops.h' 2025-06-01T21:23:36.1873411Z adding 'torch/include/ATen/ops/cdist.h' 2025-06-01T21:23:36.1876869Z adding 'torch/include/ATen/ops/cdist_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.1879747Z adding 'torch/include/ATen/ops/cdist_native.h' 2025-06-01T21:23:36.1882842Z adding 'torch/include/ATen/ops/cdist_ops.h' 2025-06-01T21:23:36.1885929Z adding 'torch/include/ATen/ops/ceil.h' 2025-06-01T21:23:36.1889184Z adding 'torch/include/ATen/ops/ceil_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.1892111Z adding 'torch/include/ATen/ops/ceil_cpu_dispatch.h' 2025-06-01T21:23:36.1895156Z adding 'torch/include/ATen/ops/ceil_cuda_dispatch.h' 2025-06-01T21:23:36.1898506Z adding 'torch/include/ATen/ops/ceil_meta.h' 2025-06-01T21:23:36.1906308Z adding 'torch/include/ATen/ops/ceil_meta_dispatch.h' 2025-06-01T21:23:36.1907539Z adding 'torch/include/ATen/ops/ceil_native.h' 2025-06-01T21:23:36.1910660Z adding 'torch/include/ATen/ops/ceil_ops.h' 2025-06-01T21:23:36.1913834Z adding 'torch/include/ATen/ops/celu.h' 2025-06-01T21:23:36.1917191Z adding 'torch/include/ATen/ops/celu_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.1920097Z adding 'torch/include/ATen/ops/celu_native.h' 2025-06-01T21:23:36.1923336Z adding 'torch/include/ATen/ops/celu_ops.h' 2025-06-01T21:23:36.1926500Z adding 'torch/include/ATen/ops/chain_matmul.h' 2025-06-01T21:23:36.1929895Z adding 'torch/include/ATen/ops/chain_matmul_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.1932807Z adding 'torch/include/ATen/ops/chain_matmul_native.h' 2025-06-01T21:23:36.1936014Z adding 'torch/include/ATen/ops/chain_matmul_ops.h' 2025-06-01T21:23:36.1938968Z adding 'torch/include/ATen/ops/chalf.h' 2025-06-01T21:23:36.1942227Z adding 'torch/include/ATen/ops/chalf_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.1945290Z adding 'torch/include/ATen/ops/chalf_native.h' 2025-06-01T21:23:36.1948541Z adding 'torch/include/ATen/ops/chalf_ops.h' 2025-06-01T21:23:36.1951808Z adding 'torch/include/ATen/ops/channel_shuffle.h' 2025-06-01T21:23:36.1955179Z adding 'torch/include/ATen/ops/channel_shuffle_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.1958199Z adding 'torch/include/ATen/ops/channel_shuffle_cpu_dispatch.h' 2025-06-01T21:23:36.1961397Z adding 'torch/include/ATen/ops/channel_shuffle_cuda_dispatch.h' 2025-06-01T21:23:36.1964490Z adding 'torch/include/ATen/ops/channel_shuffle_native.h' 2025-06-01T21:23:36.1967744Z adding 'torch/include/ATen/ops/channel_shuffle_ops.h' 2025-06-01T21:23:36.1970879Z adding 'torch/include/ATen/ops/cholesky.h' 2025-06-01T21:23:36.1974049Z adding 'torch/include/ATen/ops/cholesky_cpu_dispatch.h' 2025-06-01T21:23:36.1977150Z adding 'torch/include/ATen/ops/cholesky_cuda_dispatch.h' 2025-06-01T21:23:36.1980240Z adding 'torch/include/ATen/ops/cholesky_inverse.h' 2025-06-01T21:23:36.1983375Z adding 'torch/include/ATen/ops/cholesky_inverse_cpu_dispatch.h' 2025-06-01T21:23:36.1986681Z adding 'torch/include/ATen/ops/cholesky_inverse_cuda_dispatch.h' 2025-06-01T21:23:36.1989606Z adding 'torch/include/ATen/ops/cholesky_inverse_native.h' 2025-06-01T21:23:36.1992814Z adding 'torch/include/ATen/ops/cholesky_inverse_ops.h' 2025-06-01T21:23:36.1995905Z adding 'torch/include/ATen/ops/cholesky_native.h' 2025-06-01T21:23:36.1999086Z adding 'torch/include/ATen/ops/cholesky_ops.h' 2025-06-01T21:23:36.2002244Z adding 'torch/include/ATen/ops/cholesky_solve.h' 2025-06-01T21:23:36.2005548Z adding 'torch/include/ATen/ops/cholesky_solve_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.2008463Z adding 'torch/include/ATen/ops/cholesky_solve_native.h' 2025-06-01T21:23:36.2011682Z adding 'torch/include/ATen/ops/cholesky_solve_ops.h' 2025-06-01T21:23:36.2014840Z adding 'torch/include/ATen/ops/choose_qparams_optimized.h' 2025-06-01T21:23:36.2018187Z adding 'torch/include/ATen/ops/choose_qparams_optimized_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.2021061Z adding 'torch/include/ATen/ops/choose_qparams_optimized_native.h' 2025-06-01T21:23:36.2024322Z adding 'torch/include/ATen/ops/choose_qparams_optimized_ops.h' 2025-06-01T21:23:36.2027350Z adding 'torch/include/ATen/ops/chunk.h' 2025-06-01T21:23:36.2030600Z adding 'torch/include/ATen/ops/chunk_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.2033528Z adding 'torch/include/ATen/ops/chunk_native.h' 2025-06-01T21:23:36.2036642Z adding 'torch/include/ATen/ops/chunk_ops.h' 2025-06-01T21:23:36.2039893Z adding 'torch/include/ATen/ops/clamp.h' 2025-06-01T21:23:36.2043378Z adding 'torch/include/ATen/ops/clamp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.2046462Z adding 'torch/include/ATen/ops/clamp_cpu_dispatch.h' 2025-06-01T21:23:36.2049676Z adding 'torch/include/ATen/ops/clamp_cuda_dispatch.h' 2025-06-01T21:23:36.2052901Z adding 'torch/include/ATen/ops/clamp_max.h' 2025-06-01T21:23:36.2056268Z adding 'torch/include/ATen/ops/clamp_max_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.2059251Z adding 'torch/include/ATen/ops/clamp_max_cpu_dispatch.h' 2025-06-01T21:23:36.2062518Z adding 'torch/include/ATen/ops/clamp_max_cuda_dispatch.h' 2025-06-01T21:23:36.2065701Z adding 'torch/include/ATen/ops/clamp_max_meta.h' 2025-06-01T21:23:36.2069448Z adding 'torch/include/ATen/ops/clamp_max_meta_dispatch.h' 2025-06-01T21:23:36.2072600Z adding 'torch/include/ATen/ops/clamp_max_native.h' 2025-06-01T21:23:36.2076278Z adding 'torch/include/ATen/ops/clamp_max_ops.h' 2025-06-01T21:23:36.2079842Z adding 'torch/include/ATen/ops/clamp_meta.h' 2025-06-01T21:23:36.2083610Z adding 'torch/include/ATen/ops/clamp_meta_dispatch.h' 2025-06-01T21:23:36.2087315Z adding 'torch/include/ATen/ops/clamp_min.h' 2025-06-01T21:23:36.2091205Z adding 'torch/include/ATen/ops/clamp_min_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.2094777Z adding 'torch/include/ATen/ops/clamp_min_cpu_dispatch.h' 2025-06-01T21:23:36.2098925Z adding 'torch/include/ATen/ops/clamp_min_cuda_dispatch.h' 2025-06-01T21:23:36.2102076Z adding 'torch/include/ATen/ops/clamp_min_meta.h' 2025-06-01T21:23:36.2105746Z adding 'torch/include/ATen/ops/clamp_min_meta_dispatch.h' 2025-06-01T21:23:36.2109242Z adding 'torch/include/ATen/ops/clamp_min_native.h' 2025-06-01T21:23:36.2113292Z adding 'torch/include/ATen/ops/clamp_min_ops.h' 2025-06-01T21:23:36.2117008Z adding 'torch/include/ATen/ops/clamp_native.h' 2025-06-01T21:23:36.2120546Z adding 'torch/include/ATen/ops/clamp_ops.h' 2025-06-01T21:23:36.2124163Z adding 'torch/include/ATen/ops/clip.h' 2025-06-01T21:23:36.2127733Z adding 'torch/include/ATen/ops/clip_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.2130935Z adding 'torch/include/ATen/ops/clip_native.h' 2025-06-01T21:23:36.2134627Z adding 'torch/include/ATen/ops/clip_ops.h' 2025-06-01T21:23:36.2137936Z adding 'torch/include/ATen/ops/clone.h' 2025-06-01T21:23:36.2141425Z adding 'torch/include/ATen/ops/clone_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.2144575Z adding 'torch/include/ATen/ops/clone_native.h' 2025-06-01T21:23:36.2147910Z adding 'torch/include/ATen/ops/clone_ops.h' 2025-06-01T21:23:36.2151167Z adding 'torch/include/ATen/ops/coalesce.h' 2025-06-01T21:23:36.2154317Z adding 'torch/include/ATen/ops/coalesce_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.2157199Z adding 'torch/include/ATen/ops/coalesce_native.h' 2025-06-01T21:23:36.2160298Z adding 'torch/include/ATen/ops/coalesce_ops.h' 2025-06-01T21:23:36.2163730Z adding 'torch/include/ATen/ops/col2im.h' 2025-06-01T21:23:36.2167206Z adding 'torch/include/ATen/ops/col2im_cpu_dispatch.h' 2025-06-01T21:23:36.2170551Z adding 'torch/include/ATen/ops/col2im_cuda_dispatch.h' 2025-06-01T21:23:36.2173701Z adding 'torch/include/ATen/ops/col2im_native.h' 2025-06-01T21:23:36.2177026Z adding 'torch/include/ATen/ops/col2im_ops.h' 2025-06-01T21:23:36.2180141Z adding 'torch/include/ATen/ops/col_indices.h' 2025-06-01T21:23:36.2183386Z adding 'torch/include/ATen/ops/col_indices_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.2186517Z adding 'torch/include/ATen/ops/col_indices_copy.h' 2025-06-01T21:23:36.2189779Z adding 'torch/include/ATen/ops/col_indices_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.2192952Z adding 'torch/include/ATen/ops/col_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.2195844Z adding 'torch/include/ATen/ops/col_indices_copy_native.h' 2025-06-01T21:23:36.2199221Z adding 'torch/include/ATen/ops/col_indices_copy_ops.h' 2025-06-01T21:23:36.2202205Z adding 'torch/include/ATen/ops/col_indices_native.h' 2025-06-01T21:23:36.2205323Z adding 'torch/include/ATen/ops/col_indices_ops.h' 2025-06-01T21:23:36.2208441Z adding 'torch/include/ATen/ops/column_stack.h' 2025-06-01T21:23:36.2211701Z adding 'torch/include/ATen/ops/column_stack_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.2214601Z adding 'torch/include/ATen/ops/column_stack_native.h' 2025-06-01T21:23:36.2217798Z adding 'torch/include/ATen/ops/column_stack_ops.h' 2025-06-01T21:23:36.2220888Z adding 'torch/include/ATen/ops/combinations.h' 2025-06-01T21:23:36.2224519Z adding 'torch/include/ATen/ops/combinations_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.2227198Z adding 'torch/include/ATen/ops/combinations_native.h' 2025-06-01T21:23:36.2230454Z adding 'torch/include/ATen/ops/combinations_ops.h' 2025-06-01T21:23:36.2233566Z adding 'torch/include/ATen/ops/complex.h' 2025-06-01T21:23:36.2236808Z adding 'torch/include/ATen/ops/complex_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.2239805Z adding 'torch/include/ATen/ops/complex_cpu_dispatch.h' 2025-06-01T21:23:36.2242899Z adding 'torch/include/ATen/ops/complex_cuda_dispatch.h' 2025-06-01T21:23:36.2245865Z adding 'torch/include/ATen/ops/complex_native.h' 2025-06-01T21:23:36.2249053Z adding 'torch/include/ATen/ops/complex_ops.h' 2025-06-01T21:23:36.2252300Z adding 'torch/include/ATen/ops/concat.h' 2025-06-01T21:23:36.2255747Z adding 'torch/include/ATen/ops/concat_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.2258610Z adding 'torch/include/ATen/ops/concat_native.h' 2025-06-01T21:23:36.2261907Z adding 'torch/include/ATen/ops/concat_ops.h' 2025-06-01T21:23:36.2265295Z adding 'torch/include/ATen/ops/concatenate.h' 2025-06-01T21:23:36.2268624Z adding 'torch/include/ATen/ops/concatenate_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.2271611Z adding 'torch/include/ATen/ops/concatenate_native.h' 2025-06-01T21:23:36.2274956Z adding 'torch/include/ATen/ops/concatenate_ops.h' 2025-06-01T21:23:36.2278076Z adding 'torch/include/ATen/ops/conj.h' 2025-06-01T21:23:36.2281327Z adding 'torch/include/ATen/ops/conj_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.2284211Z adding 'torch/include/ATen/ops/conj_native.h' 2025-06-01T21:23:36.2287512Z adding 'torch/include/ATen/ops/conj_ops.h' 2025-06-01T21:23:36.2290708Z adding 'torch/include/ATen/ops/conj_physical.h' 2025-06-01T21:23:36.2293928Z adding 'torch/include/ATen/ops/conj_physical_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.2297074Z adding 'torch/include/ATen/ops/conj_physical_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.2299985Z adding 'torch/include/ATen/ops/conj_physical_cpu_dispatch.h' 2025-06-01T21:23:36.2303089Z adding 'torch/include/ATen/ops/conj_physical_cuda_dispatch.h' 2025-06-01T21:23:36.2306271Z adding 'torch/include/ATen/ops/conj_physical_native.h' 2025-06-01T21:23:36.2309528Z adding 'torch/include/ATen/ops/conj_physical_ops.h' 2025-06-01T21:23:36.2312919Z adding 'torch/include/ATen/ops/constant_pad_nd.h' 2025-06-01T21:23:36.2316364Z adding 'torch/include/ATen/ops/constant_pad_nd_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.2319279Z adding 'torch/include/ATen/ops/constant_pad_nd_native.h' 2025-06-01T21:23:36.2323144Z adding 'torch/include/ATen/ops/constant_pad_nd_ops.h' 2025-06-01T21:23:36.2326221Z adding 'torch/include/ATen/ops/contiguous.h' 2025-06-01T21:23:36.2329478Z adding 'torch/include/ATen/ops/contiguous_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.2332434Z adding 'torch/include/ATen/ops/contiguous_native.h' 2025-06-01T21:23:36.2335585Z adding 'torch/include/ATen/ops/contiguous_ops.h' 2025-06-01T21:23:36.2338967Z adding 'torch/include/ATen/ops/conv1d.h' 2025-06-01T21:23:36.2342411Z adding 'torch/include/ATen/ops/conv1d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.2345549Z adding 'torch/include/ATen/ops/conv1d_native.h' 2025-06-01T21:23:36.2348841Z adding 'torch/include/ATen/ops/conv1d_ops.h' 2025-06-01T21:23:36.2352304Z adding 'torch/include/ATen/ops/conv2d.h' 2025-06-01T21:23:36.2355808Z adding 'torch/include/ATen/ops/conv2d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.2358801Z adding 'torch/include/ATen/ops/conv2d_native.h' 2025-06-01T21:23:36.2362091Z adding 'torch/include/ATen/ops/conv2d_ops.h' 2025-06-01T21:23:36.2365543Z adding 'torch/include/ATen/ops/conv3d.h' 2025-06-01T21:23:36.2368982Z adding 'torch/include/ATen/ops/conv3d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.2371952Z adding 'torch/include/ATen/ops/conv3d_native.h' 2025-06-01T21:23:36.2375267Z adding 'torch/include/ATen/ops/conv3d_ops.h' 2025-06-01T21:23:36.2378906Z adding 'torch/include/ATen/ops/conv_depthwise3d.h' 2025-06-01T21:23:36.2382447Z adding 'torch/include/ATen/ops/conv_depthwise3d_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.2386032Z adding 'torch/include/ATen/ops/conv_depthwise3d_cuda_dispatch.h' 2025-06-01T21:23:36.2388851Z adding 'torch/include/ATen/ops/conv_depthwise3d_native.h' 2025-06-01T21:23:36.2392330Z adding 'torch/include/ATen/ops/conv_depthwise3d_ops.h' 2025-06-01T21:23:36.2395511Z adding 'torch/include/ATen/ops/conv_tbc.h' 2025-06-01T21:23:36.2398854Z adding 'torch/include/ATen/ops/conv_tbc_backward.h' 2025-06-01T21:23:36.2403088Z adding 'torch/include/ATen/ops/conv_tbc_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.2405205Z adding 'torch/include/ATen/ops/conv_tbc_backward_native.h' 2025-06-01T21:23:36.2408940Z adding 'torch/include/ATen/ops/conv_tbc_backward_ops.h' 2025-06-01T21:23:36.2411761Z adding 'torch/include/ATen/ops/conv_tbc_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.2414835Z adding 'torch/include/ATen/ops/conv_tbc_native.h' 2025-06-01T21:23:36.2418220Z adding 'torch/include/ATen/ops/conv_tbc_ops.h' 2025-06-01T21:23:36.2421775Z adding 'torch/include/ATen/ops/conv_transpose1d.h' 2025-06-01T21:23:36.2426118Z adding 'torch/include/ATen/ops/conv_transpose1d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.2428453Z adding 'torch/include/ATen/ops/conv_transpose1d_native.h' 2025-06-01T21:23:36.2431827Z adding 'torch/include/ATen/ops/conv_transpose1d_ops.h' 2025-06-01T21:23:36.2435179Z adding 'torch/include/ATen/ops/conv_transpose2d.h' 2025-06-01T21:23:36.2438766Z adding 'torch/include/ATen/ops/conv_transpose2d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.2441744Z adding 'torch/include/ATen/ops/conv_transpose2d_native.h' 2025-06-01T21:23:36.2445259Z adding 'torch/include/ATen/ops/conv_transpose2d_ops.h' 2025-06-01T21:23:36.2449478Z adding 'torch/include/ATen/ops/conv_transpose3d.h' 2025-06-01T21:23:36.2452232Z adding 'torch/include/ATen/ops/conv_transpose3d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.2455320Z adding 'torch/include/ATen/ops/conv_transpose3d_native.h' 2025-06-01T21:23:36.2458540Z adding 'torch/include/ATen/ops/conv_transpose3d_ops.h' 2025-06-01T21:23:36.2462280Z adding 'torch/include/ATen/ops/convolution.h' 2025-06-01T21:23:36.2466679Z adding 'torch/include/ATen/ops/convolution_backward.h' 2025-06-01T21:23:36.2470482Z adding 'torch/include/ATen/ops/convolution_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.2473891Z adding 'torch/include/ATen/ops/convolution_backward_cuda_dispatch.h' 2025-06-01T21:23:36.2477740Z adding 'torch/include/ATen/ops/convolution_backward_native.h' 2025-06-01T21:23:36.2480596Z adding 'torch/include/ATen/ops/convolution_backward_ops.h' 2025-06-01T21:23:36.2484731Z adding 'torch/include/ATen/ops/convolution_backward_overrideable.h' 2025-06-01T21:23:36.2489371Z adding 'torch/include/ATen/ops/convolution_backward_overrideable_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.2491801Z adding 'torch/include/ATen/ops/convolution_backward_overrideable_native.h' 2025-06-01T21:23:36.2495353Z adding 'torch/include/ATen/ops/convolution_backward_overrideable_ops.h' 2025-06-01T21:23:36.2498977Z adding 'torch/include/ATen/ops/convolution_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.2502228Z adding 'torch/include/ATen/ops/convolution_native.h' 2025-06-01T21:23:36.2506291Z adding 'torch/include/ATen/ops/convolution_ops.h' 2025-06-01T21:23:36.2509660Z adding 'torch/include/ATen/ops/convolution_overrideable.h' 2025-06-01T21:23:36.2513481Z adding 'torch/include/ATen/ops/convolution_overrideable_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.2517109Z adding 'torch/include/ATen/ops/convolution_overrideable_native.h' 2025-06-01T21:23:36.2520065Z adding 'torch/include/ATen/ops/convolution_overrideable_ops.h' 2025-06-01T21:23:36.2523447Z adding 'torch/include/ATen/ops/copy.h' 2025-06-01T21:23:36.2526699Z adding 'torch/include/ATen/ops/copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.2530045Z adding 'torch/include/ATen/ops/copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.2533061Z adding 'torch/include/ATen/ops/copy_meta_dispatch.h' 2025-06-01T21:23:36.2536334Z adding 'torch/include/ATen/ops/copy_native.h' 2025-06-01T21:23:36.2540538Z adding 'torch/include/ATen/ops/copy_ops.h' 2025-06-01T21:23:36.2543053Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse.h' 2025-06-01T21:23:36.2546696Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.2549761Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_meta_dispatch.h' 2025-06-01T21:23:36.2552927Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_native.h' 2025-06-01T21:23:36.2556175Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_ops.h' 2025-06-01T21:23:36.2559650Z adding 'torch/include/ATen/ops/copysign.h' 2025-06-01T21:23:36.2563595Z adding 'torch/include/ATen/ops/copysign_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.2566162Z adding 'torch/include/ATen/ops/copysign_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.2569269Z adding 'torch/include/ATen/ops/copysign_cpu_dispatch.h' 2025-06-01T21:23:36.2572388Z adding 'torch/include/ATen/ops/copysign_cuda_dispatch.h' 2025-06-01T21:23:36.2599210Z adding 'torch/include/ATen/ops/copysign_meta.h' 2025-06-01T21:23:36.2599393Z adding 'torch/include/ATen/ops/copysign_meta_dispatch.h' 2025-06-01T21:23:36.2599524Z adding 'torch/include/ATen/ops/copysign_native.h' 2025-06-01T21:23:36.2599653Z adding 'torch/include/ATen/ops/copysign_ops.h' 2025-06-01T21:23:36.2599758Z adding 'torch/include/ATen/ops/corrcoef.h' 2025-06-01T21:23:36.2599996Z adding 'torch/include/ATen/ops/corrcoef_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.2600120Z adding 'torch/include/ATen/ops/corrcoef_native.h' 2025-06-01T21:23:36.2600897Z adding 'torch/include/ATen/ops/corrcoef_ops.h' 2025-06-01T21:23:36.2605251Z adding 'torch/include/ATen/ops/cos.h' 2025-06-01T21:23:36.2607454Z adding 'torch/include/ATen/ops/cos_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.2611314Z adding 'torch/include/ATen/ops/cos_cpu_dispatch.h' 2025-06-01T21:23:36.2613729Z adding 'torch/include/ATen/ops/cos_cuda_dispatch.h' 2025-06-01T21:23:36.2617295Z adding 'torch/include/ATen/ops/cos_meta.h' 2025-06-01T21:23:36.2620057Z adding 'torch/include/ATen/ops/cos_meta_dispatch.h' 2025-06-01T21:23:36.2623309Z adding 'torch/include/ATen/ops/cos_native.h' 2025-06-01T21:23:36.2626642Z adding 'torch/include/ATen/ops/cos_ops.h' 2025-06-01T21:23:36.2629769Z adding 'torch/include/ATen/ops/cosh.h' 2025-06-01T21:23:36.2634401Z adding 'torch/include/ATen/ops/cosh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.2636288Z adding 'torch/include/ATen/ops/cosh_cpu_dispatch.h' 2025-06-01T21:23:36.2639437Z adding 'torch/include/ATen/ops/cosh_cuda_dispatch.h' 2025-06-01T21:23:36.2642431Z adding 'torch/include/ATen/ops/cosh_meta.h' 2025-06-01T21:23:36.2645561Z adding 'torch/include/ATen/ops/cosh_meta_dispatch.h' 2025-06-01T21:23:36.2648525Z adding 'torch/include/ATen/ops/cosh_native.h' 2025-06-01T21:23:36.2651994Z adding 'torch/include/ATen/ops/cosh_ops.h' 2025-06-01T21:23:36.2655190Z adding 'torch/include/ATen/ops/cosine_embedding_loss.h' 2025-06-01T21:23:36.2658478Z adding 'torch/include/ATen/ops/cosine_embedding_loss_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.2661373Z adding 'torch/include/ATen/ops/cosine_embedding_loss_native.h' 2025-06-01T21:23:36.2664636Z adding 'torch/include/ATen/ops/cosine_embedding_loss_ops.h' 2025-06-01T21:23:36.2667758Z adding 'torch/include/ATen/ops/cosine_similarity.h' 2025-06-01T21:23:36.2671021Z adding 'torch/include/ATen/ops/cosine_similarity_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.2673932Z adding 'torch/include/ATen/ops/cosine_similarity_native.h' 2025-06-01T21:23:36.2677090Z adding 'torch/include/ATen/ops/cosine_similarity_ops.h' 2025-06-01T21:23:36.2681099Z adding 'torch/include/ATen/ops/count_nonzero.h' 2025-06-01T21:23:36.2683769Z adding 'torch/include/ATen/ops/count_nonzero_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.2686793Z adding 'torch/include/ATen/ops/count_nonzero_cpu_dispatch.h' 2025-06-01T21:23:36.2689869Z adding 'torch/include/ATen/ops/count_nonzero_cuda_dispatch.h' 2025-06-01T21:23:36.2692912Z adding 'torch/include/ATen/ops/count_nonzero_native.h' 2025-06-01T21:23:36.2696296Z adding 'torch/include/ATen/ops/count_nonzero_ops.h' 2025-06-01T21:23:36.2699358Z adding 'torch/include/ATen/ops/cov.h' 2025-06-01T21:23:36.2702644Z adding 'torch/include/ATen/ops/cov_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.2705912Z adding 'torch/include/ATen/ops/cov_native.h' 2025-06-01T21:23:36.2709077Z adding 'torch/include/ATen/ops/cov_ops.h' 2025-06-01T21:23:36.2712371Z adding 'torch/include/ATen/ops/cross.h' 2025-06-01T21:23:36.2715585Z adding 'torch/include/ATen/ops/cross_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.2718746Z adding 'torch/include/ATen/ops/cross_entropy_loss.h' 2025-06-01T21:23:36.2722083Z adding 'torch/include/ATen/ops/cross_entropy_loss_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.2725011Z adding 'torch/include/ATen/ops/cross_entropy_loss_native.h' 2025-06-01T21:23:36.2728195Z adding 'torch/include/ATen/ops/cross_entropy_loss_ops.h' 2025-06-01T21:23:36.2731496Z adding 'torch/include/ATen/ops/cross_native.h' 2025-06-01T21:23:36.2734616Z adding 'torch/include/ATen/ops/cross_ops.h' 2025-06-01T21:23:36.2737733Z adding 'torch/include/ATen/ops/crow_indices.h' 2025-06-01T21:23:36.2740983Z adding 'torch/include/ATen/ops/crow_indices_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.2744041Z adding 'torch/include/ATen/ops/crow_indices_copy.h' 2025-06-01T21:23:36.2747369Z adding 'torch/include/ATen/ops/crow_indices_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.2750673Z adding 'torch/include/ATen/ops/crow_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.2753414Z adding 'torch/include/ATen/ops/crow_indices_copy_native.h' 2025-06-01T21:23:36.2756549Z adding 'torch/include/ATen/ops/crow_indices_copy_ops.h' 2025-06-01T21:23:36.2759555Z adding 'torch/include/ATen/ops/crow_indices_native.h' 2025-06-01T21:23:36.2762687Z adding 'torch/include/ATen/ops/crow_indices_ops.h' 2025-06-01T21:23:36.2765813Z adding 'torch/include/ATen/ops/ctc_loss.h' 2025-06-01T21:23:36.2769137Z adding 'torch/include/ATen/ops/ctc_loss_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.2772109Z adding 'torch/include/ATen/ops/ctc_loss_native.h' 2025-06-01T21:23:36.2775396Z adding 'torch/include/ATen/ops/ctc_loss_ops.h' 2025-06-01T21:23:36.2778671Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator.h' 2025-06-01T21:23:36.2781848Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward.h' 2025-06-01T21:23:36.2785316Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.2788372Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_cuda_dispatch.h' 2025-06-01T21:23:36.2791381Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_native.h' 2025-06-01T21:23:36.2794607Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_ops.h' 2025-06-01T21:23:36.2798184Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.2800972Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_cuda_dispatch.h' 2025-06-01T21:23:36.2803960Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_native.h' 2025-06-01T21:23:36.2807157Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_ops.h' 2025-06-01T21:23:36.2810414Z adding 'torch/include/ATen/ops/cudnn_batch_norm.h' 2025-06-01T21:23:36.2813900Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward.h' 2025-06-01T21:23:36.2817306Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.2820337Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_cuda_dispatch.h' 2025-06-01T21:23:36.2823392Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_native.h' 2025-06-01T21:23:36.2826989Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_ops.h' 2025-06-01T21:23:36.2830355Z adding 'torch/include/ATen/ops/cudnn_batch_norm_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.2833445Z adding 'torch/include/ATen/ops/cudnn_batch_norm_cuda_dispatch.h' 2025-06-01T21:23:36.2836516Z adding 'torch/include/ATen/ops/cudnn_batch_norm_native.h' 2025-06-01T21:23:36.2840066Z adding 'torch/include/ATen/ops/cudnn_batch_norm_ops.h' 2025-06-01T21:23:36.2844107Z adding 'torch/include/ATen/ops/cudnn_convolution.h' 2025-06-01T21:23:36.2847810Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu.h' 2025-06-01T21:23:36.2851511Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.2855584Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_cuda_dispatch.h' 2025-06-01T21:23:36.2857956Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_native.h' 2025-06-01T21:23:36.2861529Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_ops.h' 2025-06-01T21:23:36.2864815Z adding 'torch/include/ATen/ops/cudnn_convolution_cuda_dispatch.h' 2025-06-01T21:23:36.2868035Z adding 'torch/include/ATen/ops/cudnn_convolution_native.h' 2025-06-01T21:23:36.2871333Z adding 'torch/include/ATen/ops/cudnn_convolution_ops.h' 2025-06-01T21:23:36.2875121Z adding 'torch/include/ATen/ops/cudnn_convolution_relu.h' 2025-06-01T21:23:36.2878812Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.2881889Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_cuda_dispatch.h' 2025-06-01T21:23:36.2885104Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_native.h' 2025-06-01T21:23:36.2888497Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_ops.h' 2025-06-01T21:23:36.2892326Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose.h' 2025-06-01T21:23:36.2896104Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.2899224Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_cuda_dispatch.h' 2025-06-01T21:23:36.2902446Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_native.h' 2025-06-01T21:23:36.2905932Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_ops.h' 2025-06-01T21:23:36.2909293Z adding 'torch/include/ATen/ops/cudnn_grid_sampler.h' 2025-06-01T21:23:36.2912965Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward.h' 2025-06-01T21:23:36.2916255Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.2919450Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_cuda_dispatch.h' 2025-06-01T21:23:36.2922450Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_native.h' 2025-06-01T21:23:36.2925836Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_ops.h' 2025-06-01T21:23:36.2930045Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.2932313Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_cuda_dispatch.h' 2025-06-01T21:23:36.2935727Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_native.h' 2025-06-01T21:23:36.2938626Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_ops.h' 2025-06-01T21:23:36.2941872Z adding 'torch/include/ATen/ops/cudnn_is_acceptable.h' 2025-06-01T21:23:36.2945249Z adding 'torch/include/ATen/ops/cudnn_is_acceptable_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.2948301Z adding 'torch/include/ATen/ops/cudnn_is_acceptable_native.h' 2025-06-01T21:23:36.2951415Z adding 'torch/include/ATen/ops/cudnn_is_acceptable_ops.h' 2025-06-01T21:23:36.2954782Z adding 'torch/include/ATen/ops/cummax.h' 2025-06-01T21:23:36.2958677Z adding 'torch/include/ATen/ops/cummax_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.2961353Z adding 'torch/include/ATen/ops/cummax_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.2964427Z adding 'torch/include/ATen/ops/cummax_native.h' 2025-06-01T21:23:36.2967816Z adding 'torch/include/ATen/ops/cummax_ops.h' 2025-06-01T21:23:36.2971207Z adding 'torch/include/ATen/ops/cummaxmin_backward.h' 2025-06-01T21:23:36.2975076Z adding 'torch/include/ATen/ops/cummaxmin_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.2977533Z adding 'torch/include/ATen/ops/cummaxmin_backward_native.h' 2025-06-01T21:23:36.2981443Z adding 'torch/include/ATen/ops/cummaxmin_backward_ops.h' 2025-06-01T21:23:36.2984111Z adding 'torch/include/ATen/ops/cummin.h' 2025-06-01T21:23:36.2987561Z adding 'torch/include/ATen/ops/cummin_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.2990878Z adding 'torch/include/ATen/ops/cummin_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.2993905Z adding 'torch/include/ATen/ops/cummin_native.h' 2025-06-01T21:23:36.2997246Z adding 'torch/include/ATen/ops/cummin_ops.h' 2025-06-01T21:23:36.3000750Z adding 'torch/include/ATen/ops/cumprod.h' 2025-06-01T21:23:36.3004351Z adding 'torch/include/ATen/ops/cumprod_backward.h' 2025-06-01T21:23:36.3007336Z adding 'torch/include/ATen/ops/cumprod_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.3010355Z adding 'torch/include/ATen/ops/cumprod_backward_native.h' 2025-06-01T21:23:36.3013490Z adding 'torch/include/ATen/ops/cumprod_backward_ops.h' 2025-06-01T21:23:36.3016973Z adding 'torch/include/ATen/ops/cumprod_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.3020082Z adding 'torch/include/ATen/ops/cumprod_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.3023416Z adding 'torch/include/ATen/ops/cumprod_cpu_dispatch.h' 2025-06-01T21:23:36.3027411Z adding 'torch/include/ATen/ops/cumprod_cuda_dispatch.h' 2025-06-01T21:23:36.3029973Z adding 'torch/include/ATen/ops/cumprod_meta.h' 2025-06-01T21:23:36.3033191Z adding 'torch/include/ATen/ops/cumprod_meta_dispatch.h' 2025-06-01T21:23:36.3036286Z adding 'torch/include/ATen/ops/cumprod_native.h' 2025-06-01T21:23:36.3039994Z adding 'torch/include/ATen/ops/cumprod_ops.h' 2025-06-01T21:23:36.3043353Z adding 'torch/include/ATen/ops/cumsum.h' 2025-06-01T21:23:36.3046962Z adding 'torch/include/ATen/ops/cumsum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.3050475Z adding 'torch/include/ATen/ops/cumsum_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.3053266Z adding 'torch/include/ATen/ops/cumsum_cpu_dispatch.h' 2025-06-01T21:23:36.3056542Z adding 'torch/include/ATen/ops/cumsum_cuda_dispatch.h' 2025-06-01T21:23:36.3059611Z adding 'torch/include/ATen/ops/cumsum_meta.h' 2025-06-01T21:23:36.3062940Z adding 'torch/include/ATen/ops/cumsum_meta_dispatch.h' 2025-06-01T21:23:36.3066170Z adding 'torch/include/ATen/ops/cumsum_native.h' 2025-06-01T21:23:36.3069905Z adding 'torch/include/ATen/ops/cumsum_ops.h' 2025-06-01T21:23:36.3073244Z adding 'torch/include/ATen/ops/cumulative_trapezoid.h' 2025-06-01T21:23:36.3076594Z adding 'torch/include/ATen/ops/cumulative_trapezoid_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.3086780Z adding 'torch/include/ATen/ops/cumulative_trapezoid_native.h' 2025-06-01T21:23:36.3090023Z adding 'torch/include/ATen/ops/cumulative_trapezoid_ops.h' 2025-06-01T21:23:36.3093180Z adding 'torch/include/ATen/ops/data.h' 2025-06-01T21:23:36.3096403Z adding 'torch/include/ATen/ops/data_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.3099476Z adding 'torch/include/ATen/ops/data_native.h' 2025-06-01T21:23:36.3102615Z adding 'torch/include/ATen/ops/data_ops.h' 2025-06-01T21:23:36.3106072Z adding 'torch/include/ATen/ops/deg2rad.h' 2025-06-01T21:23:36.3110745Z adding 'torch/include/ATen/ops/deg2rad_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.3112561Z adding 'torch/include/ATen/ops/deg2rad_native.h' 2025-06-01T21:23:36.3115844Z adding 'torch/include/ATen/ops/deg2rad_ops.h' 2025-06-01T21:23:36.3118875Z adding 'torch/include/ATen/ops/dense_dim.h' 2025-06-01T21:23:36.3122263Z adding 'torch/include/ATen/ops/dense_dim_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.3125541Z adding 'torch/include/ATen/ops/dense_dim_native.h' 2025-06-01T21:23:36.3128699Z adding 'torch/include/ATen/ops/dense_dim_ops.h' 2025-06-01T21:23:36.3131925Z adding 'torch/include/ATen/ops/dequantize.h' 2025-06-01T21:23:36.3135235Z adding 'torch/include/ATen/ops/dequantize_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.3138423Z adding 'torch/include/ATen/ops/dequantize_cpu_dispatch.h' 2025-06-01T21:23:36.3141437Z adding 'torch/include/ATen/ops/dequantize_cuda_dispatch.h' 2025-06-01T21:23:36.3144627Z adding 'torch/include/ATen/ops/dequantize_native.h' 2025-06-01T21:23:36.3147992Z adding 'torch/include/ATen/ops/dequantize_ops.h' 2025-06-01T21:23:36.3151172Z adding 'torch/include/ATen/ops/det.h' 2025-06-01T21:23:36.3154381Z adding 'torch/include/ATen/ops/det_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.3157239Z adding 'torch/include/ATen/ops/det_native.h' 2025-06-01T21:23:36.3160328Z adding 'torch/include/ATen/ops/det_ops.h' 2025-06-01T21:23:36.3163386Z adding 'torch/include/ATen/ops/detach.h' 2025-06-01T21:23:36.3166571Z adding 'torch/include/ATen/ops/detach_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.3169786Z adding 'torch/include/ATen/ops/detach_copy.h' 2025-06-01T21:23:36.3173047Z adding 'torch/include/ATen/ops/detach_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.3176239Z adding 'torch/include/ATen/ops/detach_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.3179096Z adding 'torch/include/ATen/ops/detach_copy_native.h' 2025-06-01T21:23:36.3182352Z adding 'torch/include/ATen/ops/detach_copy_ops.h' 2025-06-01T21:23:36.3185487Z adding 'torch/include/ATen/ops/detach_native.h' 2025-06-01T21:23:36.3188750Z adding 'torch/include/ATen/ops/detach_ops.h' 2025-06-01T21:23:36.3191857Z adding 'torch/include/ATen/ops/diag.h' 2025-06-01T21:23:36.3195109Z adding 'torch/include/ATen/ops/diag_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.3198111Z adding 'torch/include/ATen/ops/diag_embed.h' 2025-06-01T21:23:36.3201369Z adding 'torch/include/ATen/ops/diag_embed_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.3204557Z adding 'torch/include/ATen/ops/diag_embed_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.3207416Z adding 'torch/include/ATen/ops/diag_embed_native.h' 2025-06-01T21:23:36.3210663Z adding 'torch/include/ATen/ops/diag_embed_ops.h' 2025-06-01T21:23:36.3213737Z adding 'torch/include/ATen/ops/diag_native.h' 2025-06-01T21:23:36.3216901Z adding 'torch/include/ATen/ops/diag_ops.h' 2025-06-01T21:23:36.3219978Z adding 'torch/include/ATen/ops/diagflat.h' 2025-06-01T21:23:36.3223230Z adding 'torch/include/ATen/ops/diagflat_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.3226425Z adding 'torch/include/ATen/ops/diagflat_native.h' 2025-06-01T21:23:36.3229552Z adding 'torch/include/ATen/ops/diagflat_ops.h' 2025-06-01T21:23:36.3232645Z adding 'torch/include/ATen/ops/diagonal.h' 2025-06-01T21:23:36.3236292Z adding 'torch/include/ATen/ops/diagonal_backward.h' 2025-06-01T21:23:36.3239838Z adding 'torch/include/ATen/ops/diagonal_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.3242827Z adding 'torch/include/ATen/ops/diagonal_backward_native.h' 2025-06-01T21:23:36.3246116Z adding 'torch/include/ATen/ops/diagonal_backward_ops.h' 2025-06-01T21:23:36.3249360Z adding 'torch/include/ATen/ops/diagonal_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.3252481Z adding 'torch/include/ATen/ops/diagonal_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.3255560Z adding 'torch/include/ATen/ops/diagonal_copy.h' 2025-06-01T21:23:36.3258874Z adding 'torch/include/ATen/ops/diagonal_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.3262137Z adding 'torch/include/ATen/ops/diagonal_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.3265092Z adding 'torch/include/ATen/ops/diagonal_copy_native.h' 2025-06-01T21:23:36.3268324Z adding 'torch/include/ATen/ops/diagonal_copy_ops.h' 2025-06-01T21:23:36.3271372Z adding 'torch/include/ATen/ops/diagonal_native.h' 2025-06-01T21:23:36.3274617Z adding 'torch/include/ATen/ops/diagonal_ops.h' 2025-06-01T21:23:36.3277801Z adding 'torch/include/ATen/ops/diagonal_scatter.h' 2025-06-01T21:23:36.3281145Z adding 'torch/include/ATen/ops/diagonal_scatter_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.3284389Z adding 'torch/include/ATen/ops/diagonal_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.3287197Z adding 'torch/include/ATen/ops/diagonal_scatter_native.h' 2025-06-01T21:23:36.3290457Z adding 'torch/include/ATen/ops/diagonal_scatter_ops.h' 2025-06-01T21:23:36.3293706Z adding 'torch/include/ATen/ops/diff.h' 2025-06-01T21:23:36.3296970Z adding 'torch/include/ATen/ops/diff_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.3299934Z adding 'torch/include/ATen/ops/diff_native.h' 2025-06-01T21:23:36.3303219Z adding 'torch/include/ATen/ops/diff_ops.h' 2025-06-01T21:23:36.3306512Z adding 'torch/include/ATen/ops/digamma.h' 2025-06-01T21:23:36.3309856Z adding 'torch/include/ATen/ops/digamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.3312801Z adding 'torch/include/ATen/ops/digamma_cpu_dispatch.h' 2025-06-01T21:23:36.3315874Z adding 'torch/include/ATen/ops/digamma_cuda_dispatch.h' 2025-06-01T21:23:36.3318884Z adding 'torch/include/ATen/ops/digamma_meta.h' 2025-06-01T21:23:36.3321999Z adding 'torch/include/ATen/ops/digamma_meta_dispatch.h' 2025-06-01T21:23:36.3326147Z adding 'torch/include/ATen/ops/digamma_native.h' 2025-06-01T21:23:36.3328869Z adding 'torch/include/ATen/ops/digamma_ops.h' 2025-06-01T21:23:36.3332000Z adding 'torch/include/ATen/ops/dist.h' 2025-06-01T21:23:36.3335360Z adding 'torch/include/ATen/ops/dist_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.3338221Z adding 'torch/include/ATen/ops/dist_native.h' 2025-06-01T21:23:36.3341431Z adding 'torch/include/ATen/ops/dist_ops.h' 2025-06-01T21:23:36.3344883Z adding 'torch/include/ATen/ops/div.h' 2025-06-01T21:23:36.3348277Z adding 'torch/include/ATen/ops/div_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.3351497Z adding 'torch/include/ATen/ops/div_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.3354538Z adding 'torch/include/ATen/ops/div_cpu_dispatch.h' 2025-06-01T21:23:36.3357739Z adding 'torch/include/ATen/ops/div_cuda_dispatch.h' 2025-06-01T21:23:36.3360787Z adding 'torch/include/ATen/ops/div_meta.h' 2025-06-01T21:23:36.3364085Z adding 'torch/include/ATen/ops/div_meta_dispatch.h' 2025-06-01T21:23:36.3367272Z adding 'torch/include/ATen/ops/div_native.h' 2025-06-01T21:23:36.3371034Z adding 'torch/include/ATen/ops/div_ops.h' 2025-06-01T21:23:36.3374479Z adding 'torch/include/ATen/ops/divide.h' 2025-06-01T21:23:36.3377885Z adding 'torch/include/ATen/ops/divide_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.3380973Z adding 'torch/include/ATen/ops/divide_native.h' 2025-06-01T21:23:36.3384740Z adding 'torch/include/ATen/ops/divide_ops.h' 2025-06-01T21:23:36.3388028Z adding 'torch/include/ATen/ops/dot.h' 2025-06-01T21:23:36.3391279Z adding 'torch/include/ATen/ops/dot_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.3394232Z adding 'torch/include/ATen/ops/dot_cpu_dispatch.h' 2025-06-01T21:23:36.3397377Z adding 'torch/include/ATen/ops/dot_cuda_dispatch.h' 2025-06-01T21:23:36.3400392Z adding 'torch/include/ATen/ops/dot_native.h' 2025-06-01T21:23:36.3403600Z adding 'torch/include/ATen/ops/dot_ops.h' 2025-06-01T21:23:36.3406697Z adding 'torch/include/ATen/ops/dropout.h' 2025-06-01T21:23:36.3409949Z adding 'torch/include/ATen/ops/dropout_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.3412809Z adding 'torch/include/ATen/ops/dropout_native.h' 2025-06-01T21:23:36.3415998Z adding 'torch/include/ATen/ops/dropout_ops.h' 2025-06-01T21:23:36.3419058Z adding 'torch/include/ATen/ops/dsplit.h' 2025-06-01T21:23:36.3422291Z adding 'torch/include/ATen/ops/dsplit_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.3425339Z adding 'torch/include/ATen/ops/dsplit_native.h' 2025-06-01T21:23:36.3428741Z adding 'torch/include/ATen/ops/dsplit_ops.h' 2025-06-01T21:23:36.3431851Z adding 'torch/include/ATen/ops/dstack.h' 2025-06-01T21:23:36.3435114Z adding 'torch/include/ATen/ops/dstack_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.3438046Z adding 'torch/include/ATen/ops/dstack_native.h' 2025-06-01T21:23:36.3441175Z adding 'torch/include/ATen/ops/dstack_ops.h' 2025-06-01T21:23:36.3444201Z adding 'torch/include/ATen/ops/einsum.h' 2025-06-01T21:23:36.3447502Z adding 'torch/include/ATen/ops/einsum_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.3450403Z adding 'torch/include/ATen/ops/einsum_native.h' 2025-06-01T21:23:36.3453674Z adding 'torch/include/ATen/ops/einsum_ops.h' 2025-06-01T21:23:36.3456800Z adding 'torch/include/ATen/ops/elu.h' 2025-06-01T21:23:36.3460044Z adding 'torch/include/ATen/ops/elu_backward.h' 2025-06-01T21:23:36.3463480Z adding 'torch/include/ATen/ops/elu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.3466608Z adding 'torch/include/ATen/ops/elu_backward_cpu_dispatch.h' 2025-06-01T21:23:36.3469741Z adding 'torch/include/ATen/ops/elu_backward_cuda_dispatch.h' 2025-06-01T21:23:36.3472789Z adding 'torch/include/ATen/ops/elu_backward_meta.h' 2025-06-01T21:23:36.3475960Z adding 'torch/include/ATen/ops/elu_backward_meta_dispatch.h' 2025-06-01T21:23:36.3479026Z adding 'torch/include/ATen/ops/elu_backward_native.h' 2025-06-01T21:23:36.3482338Z adding 'torch/include/ATen/ops/elu_backward_ops.h' 2025-06-01T21:23:36.3485770Z adding 'torch/include/ATen/ops/elu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.3488763Z adding 'torch/include/ATen/ops/elu_cpu_dispatch.h' 2025-06-01T21:23:36.3491956Z adding 'torch/include/ATen/ops/elu_cuda_dispatch.h' 2025-06-01T21:23:36.3494901Z adding 'torch/include/ATen/ops/elu_meta.h' 2025-06-01T21:23:36.3498080Z adding 'torch/include/ATen/ops/elu_meta_dispatch.h' 2025-06-01T21:23:36.3501122Z adding 'torch/include/ATen/ops/elu_native.h' 2025-06-01T21:23:36.3504457Z adding 'torch/include/ATen/ops/elu_ops.h' 2025-06-01T21:23:36.3507957Z adding 'torch/include/ATen/ops/embedding.h' 2025-06-01T21:23:36.3511356Z adding 'torch/include/ATen/ops/embedding_backward.h' 2025-06-01T21:23:36.3514684Z adding 'torch/include/ATen/ops/embedding_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.3517570Z adding 'torch/include/ATen/ops/embedding_backward_native.h' 2025-06-01T21:23:36.3520739Z adding 'torch/include/ATen/ops/embedding_backward_ops.h' 2025-06-01T21:23:36.3523925Z adding 'torch/include/ATen/ops/embedding_bag.h' 2025-06-01T21:23:36.3528177Z adding 'torch/include/ATen/ops/embedding_bag_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.3530896Z adding 'torch/include/ATen/ops/embedding_bag_native.h' 2025-06-01T21:23:36.3534414Z adding 'torch/include/ATen/ops/embedding_bag_ops.h' 2025-06-01T21:23:36.3537876Z adding 'torch/include/ATen/ops/embedding_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.3541428Z adding 'torch/include/ATen/ops/embedding_dense_backward.h' 2025-06-01T21:23:36.3545462Z adding 'torch/include/ATen/ops/embedding_dense_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.3548346Z adding 'torch/include/ATen/ops/embedding_dense_backward_cpu_dispatch.h' 2025-06-01T21:23:36.3551625Z adding 'torch/include/ATen/ops/embedding_dense_backward_cuda_dispatch.h' 2025-06-01T21:23:36.3554719Z adding 'torch/include/ATen/ops/embedding_dense_backward_native.h' 2025-06-01T21:23:36.3558154Z adding 'torch/include/ATen/ops/embedding_dense_backward_ops.h' 2025-06-01T21:23:36.3561309Z adding 'torch/include/ATen/ops/embedding_native.h' 2025-06-01T21:23:36.3564794Z adding 'torch/include/ATen/ops/embedding_ops.h' 2025-06-01T21:23:36.3568295Z adding 'torch/include/ATen/ops/embedding_renorm.h' 2025-06-01T21:23:36.3571507Z adding 'torch/include/ATen/ops/embedding_renorm_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.3574633Z adding 'torch/include/ATen/ops/embedding_renorm_cpu_dispatch.h' 2025-06-01T21:23:36.3577799Z adding 'torch/include/ATen/ops/embedding_renorm_cuda_dispatch.h' 2025-06-01T21:23:36.3581033Z adding 'torch/include/ATen/ops/embedding_renorm_meta_dispatch.h' 2025-06-01T21:23:36.3584119Z adding 'torch/include/ATen/ops/embedding_renorm_native.h' 2025-06-01T21:23:36.3619768Z adding 'torch/include/ATen/ops/embedding_renorm_ops.h' 2025-06-01T21:23:36.3619969Z adding 'torch/include/ATen/ops/embedding_sparse_backward.h' 2025-06-01T21:23:36.3620290Z adding 'torch/include/ATen/ops/embedding_sparse_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.3620475Z adding 'torch/include/ATen/ops/embedding_sparse_backward_native.h' 2025-06-01T21:23:36.3620748Z adding 'torch/include/ATen/ops/embedding_sparse_backward_ops.h' 2025-06-01T21:23:36.3620860Z adding 'torch/include/ATen/ops/empty.h' 2025-06-01T21:23:36.3621139Z adding 'torch/include/ATen/ops/empty_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.3621417Z adding 'torch/include/ATen/ops/empty_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.3621556Z adding 'torch/include/ATen/ops/empty_cpu_dispatch.h' 2025-06-01T21:23:36.3621699Z adding 'torch/include/ATen/ops/empty_cuda_dispatch.h' 2025-06-01T21:23:36.3625871Z adding 'torch/include/ATen/ops/empty_like.h' 2025-06-01T21:23:36.3628398Z adding 'torch/include/ATen/ops/empty_like_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.3631891Z adding 'torch/include/ATen/ops/empty_like_native.h' 2025-06-01T21:23:36.3635028Z adding 'torch/include/ATen/ops/empty_like_ops.h' 2025-06-01T21:23:36.3638457Z adding 'torch/include/ATen/ops/empty_meta_dispatch.h' 2025-06-01T21:23:36.3641737Z adding 'torch/include/ATen/ops/empty_native.h' 2025-06-01T21:23:36.3646531Z adding 'torch/include/ATen/ops/empty_ops.h' 2025-06-01T21:23:36.3650318Z adding 'torch/include/ATen/ops/empty_permuted.h' 2025-06-01T21:23:36.3655106Z adding 'torch/include/ATen/ops/empty_permuted_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.3657068Z adding 'torch/include/ATen/ops/empty_permuted_native.h' 2025-06-01T21:23:36.3660384Z adding 'torch/include/ATen/ops/empty_permuted_ops.h' 2025-06-01T21:23:36.3663897Z adding 'torch/include/ATen/ops/empty_quantized.h' 2025-06-01T21:23:36.3667295Z adding 'torch/include/ATen/ops/empty_quantized_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.3671027Z adding 'torch/include/ATen/ops/empty_quantized_native.h' 2025-06-01T21:23:36.3673936Z adding 'torch/include/ATen/ops/empty_quantized_ops.h' 2025-06-01T21:23:36.3677606Z adding 'torch/include/ATen/ops/empty_strided.h' 2025-06-01T21:23:36.3681031Z adding 'torch/include/ATen/ops/empty_strided_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.3684101Z adding 'torch/include/ATen/ops/empty_strided_cpu_dispatch.h' 2025-06-01T21:23:36.3687268Z adding 'torch/include/ATen/ops/empty_strided_cuda_dispatch.h' 2025-06-01T21:23:36.3690420Z adding 'torch/include/ATen/ops/empty_strided_meta_dispatch.h' 2025-06-01T21:23:36.3693540Z adding 'torch/include/ATen/ops/empty_strided_native.h' 2025-06-01T21:23:36.3696884Z adding 'torch/include/ATen/ops/empty_strided_ops.h' 2025-06-01T21:23:36.3700047Z adding 'torch/include/ATen/ops/eq.h' 2025-06-01T21:23:36.3703623Z adding 'torch/include/ATen/ops/eq_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.3706717Z adding 'torch/include/ATen/ops/eq_cpu_dispatch.h' 2025-06-01T21:23:36.3709918Z adding 'torch/include/ATen/ops/eq_cuda_dispatch.h' 2025-06-01T21:23:36.3712986Z adding 'torch/include/ATen/ops/eq_meta.h' 2025-06-01T21:23:36.3716200Z adding 'torch/include/ATen/ops/eq_meta_dispatch.h' 2025-06-01T21:23:36.3719324Z adding 'torch/include/ATen/ops/eq_native.h' 2025-06-01T21:23:36.3722763Z adding 'torch/include/ATen/ops/eq_ops.h' 2025-06-01T21:23:36.3725915Z adding 'torch/include/ATen/ops/equal.h' 2025-06-01T21:23:36.3729033Z adding 'torch/include/ATen/ops/equal_cpu_dispatch.h' 2025-06-01T21:23:36.3732140Z adding 'torch/include/ATen/ops/equal_cuda_dispatch.h' 2025-06-01T21:23:36.3735133Z adding 'torch/include/ATen/ops/equal_native.h' 2025-06-01T21:23:36.3738337Z adding 'torch/include/ATen/ops/equal_ops.h' 2025-06-01T21:23:36.3741776Z adding 'torch/include/ATen/ops/erf.h' 2025-06-01T21:23:36.3745228Z adding 'torch/include/ATen/ops/erf_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.3748206Z adding 'torch/include/ATen/ops/erf_cpu_dispatch.h' 2025-06-01T21:23:36.3751335Z adding 'torch/include/ATen/ops/erf_cuda_dispatch.h' 2025-06-01T21:23:36.3754324Z adding 'torch/include/ATen/ops/erf_meta.h' 2025-06-01T21:23:36.3757400Z adding 'torch/include/ATen/ops/erf_meta_dispatch.h' 2025-06-01T21:23:36.3760391Z adding 'torch/include/ATen/ops/erf_native.h' 2025-06-01T21:23:36.3763683Z adding 'torch/include/ATen/ops/erf_ops.h' 2025-06-01T21:23:36.3766702Z adding 'torch/include/ATen/ops/erfc.h' 2025-06-01T21:23:36.3770016Z adding 'torch/include/ATen/ops/erfc_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.3772964Z adding 'torch/include/ATen/ops/erfc_cpu_dispatch.h' 2025-06-01T21:23:36.3776047Z adding 'torch/include/ATen/ops/erfc_cuda_dispatch.h' 2025-06-01T21:23:36.3779036Z adding 'torch/include/ATen/ops/erfc_meta.h' 2025-06-01T21:23:36.3782154Z adding 'torch/include/ATen/ops/erfc_meta_dispatch.h' 2025-06-01T21:23:36.3785295Z adding 'torch/include/ATen/ops/erfc_native.h' 2025-06-01T21:23:36.3788458Z adding 'torch/include/ATen/ops/erfc_ops.h' 2025-06-01T21:23:36.3791630Z adding 'torch/include/ATen/ops/erfinv.h' 2025-06-01T21:23:36.3794950Z adding 'torch/include/ATen/ops/erfinv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.3797854Z adding 'torch/include/ATen/ops/erfinv_cpu_dispatch.h' 2025-06-01T21:23:36.3800932Z adding 'torch/include/ATen/ops/erfinv_cuda_dispatch.h' 2025-06-01T21:23:36.3803967Z adding 'torch/include/ATen/ops/erfinv_meta.h' 2025-06-01T21:23:36.3807007Z adding 'torch/include/ATen/ops/erfinv_meta_dispatch.h' 2025-06-01T21:23:36.3810071Z adding 'torch/include/ATen/ops/erfinv_native.h' 2025-06-01T21:23:36.3813280Z adding 'torch/include/ATen/ops/erfinv_ops.h' 2025-06-01T21:23:36.3816394Z adding 'torch/include/ATen/ops/exp.h' 2025-06-01T21:23:36.3819557Z adding 'torch/include/ATen/ops/exp2.h' 2025-06-01T21:23:36.3822776Z adding 'torch/include/ATen/ops/exp2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.3825906Z adding 'torch/include/ATen/ops/exp2_cpu_dispatch.h' 2025-06-01T21:23:36.3829677Z adding 'torch/include/ATen/ops/exp2_cuda_dispatch.h' 2025-06-01T21:23:36.3832758Z adding 'torch/include/ATen/ops/exp2_meta.h' 2025-06-01T21:23:36.3835929Z adding 'torch/include/ATen/ops/exp2_meta_dispatch.h' 2025-06-01T21:23:36.3838968Z adding 'torch/include/ATen/ops/exp2_native.h' 2025-06-01T21:23:36.3842144Z adding 'torch/include/ATen/ops/exp2_ops.h' 2025-06-01T21:23:36.3845462Z adding 'torch/include/ATen/ops/exp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.3848442Z adding 'torch/include/ATen/ops/exp_cpu_dispatch.h' 2025-06-01T21:23:36.3851510Z adding 'torch/include/ATen/ops/exp_cuda_dispatch.h' 2025-06-01T21:23:36.3854504Z adding 'torch/include/ATen/ops/exp_meta.h' 2025-06-01T21:23:36.3857608Z adding 'torch/include/ATen/ops/exp_meta_dispatch.h' 2025-06-01T21:23:36.3860564Z adding 'torch/include/ATen/ops/exp_native.h' 2025-06-01T21:23:36.3863782Z adding 'torch/include/ATen/ops/exp_ops.h' 2025-06-01T21:23:36.3866997Z adding 'torch/include/ATen/ops/expand.h' 2025-06-01T21:23:36.3869992Z adding 'torch/include/ATen/ops/expand_as.h' 2025-06-01T21:23:36.3873224Z adding 'torch/include/ATen/ops/expand_as_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.3876125Z adding 'torch/include/ATen/ops/expand_as_native.h' 2025-06-01T21:23:36.3879247Z adding 'torch/include/ATen/ops/expand_as_ops.h' 2025-06-01T21:23:36.3882489Z adding 'torch/include/ATen/ops/expand_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.3885709Z adding 'torch/include/ATen/ops/expand_copy.h' 2025-06-01T21:23:36.3889110Z adding 'torch/include/ATen/ops/expand_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.3892312Z adding 'torch/include/ATen/ops/expand_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.3895534Z adding 'torch/include/ATen/ops/expand_copy_native.h' 2025-06-01T21:23:36.3898673Z adding 'torch/include/ATen/ops/expand_copy_ops.h' 2025-06-01T21:23:36.3902015Z adding 'torch/include/ATen/ops/expand_native.h' 2025-06-01T21:23:36.3905718Z adding 'torch/include/ATen/ops/expand_ops.h' 2025-06-01T21:23:36.3908479Z adding 'torch/include/ATen/ops/expm1.h' 2025-06-01T21:23:36.3911920Z adding 'torch/include/ATen/ops/expm1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.3914990Z adding 'torch/include/ATen/ops/expm1_cpu_dispatch.h' 2025-06-01T21:23:36.3918131Z adding 'torch/include/ATen/ops/expm1_cuda_dispatch.h' 2025-06-01T21:23:36.3921155Z adding 'torch/include/ATen/ops/expm1_meta.h' 2025-06-01T21:23:36.3924409Z adding 'torch/include/ATen/ops/expm1_meta_dispatch.h' 2025-06-01T21:23:36.3928508Z adding 'torch/include/ATen/ops/expm1_native.h' 2025-06-01T21:23:36.3930972Z adding 'torch/include/ATen/ops/expm1_ops.h' 2025-06-01T21:23:36.3934430Z adding 'torch/include/ATen/ops/exponential.h' 2025-06-01T21:23:36.3937659Z adding 'torch/include/ATen/ops/exponential_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.3941105Z adding 'torch/include/ATen/ops/exponential_cpu_dispatch.h' 2025-06-01T21:23:36.3944359Z adding 'torch/include/ATen/ops/exponential_cuda_dispatch.h' 2025-06-01T21:23:36.3947561Z adding 'torch/include/ATen/ops/exponential_meta_dispatch.h' 2025-06-01T21:23:36.3951554Z adding 'torch/include/ATen/ops/exponential_native.h' 2025-06-01T21:23:36.3954199Z adding 'torch/include/ATen/ops/exponential_ops.h' 2025-06-01T21:23:36.3958078Z adding 'torch/include/ATen/ops/eye.h' 2025-06-01T21:23:36.3961750Z adding 'torch/include/ATen/ops/eye_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.3964961Z adding 'torch/include/ATen/ops/eye_cpu_dispatch.h' 2025-06-01T21:23:36.3968715Z adding 'torch/include/ATen/ops/eye_cuda_dispatch.h' 2025-06-01T21:23:36.3971464Z adding 'torch/include/ATen/ops/eye_meta_dispatch.h' 2025-06-01T21:23:36.3974693Z adding 'torch/include/ATen/ops/eye_native.h' 2025-06-01T21:23:36.3978078Z adding 'torch/include/ATen/ops/eye_ops.h' 2025-06-01T21:23:36.3981529Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine.h' 2025-06-01T21:23:36.3985912Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask.h' 2025-06-01T21:23:36.3988314Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward.h' 2025-06-01T21:23:36.3992091Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.3994693Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_native.h' 2025-06-01T21:23:36.3997968Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_ops.h' 2025-06-01T21:23:36.4001335Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.4004577Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_cpu_dispatch.h' 2025-06-01T21:23:36.4007686Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_cuda_dispatch.h' 2025-06-01T21:23:36.4010869Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_native.h' 2025-06-01T21:23:36.4014811Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_ops.h' 2025-06-01T21:23:36.4017577Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.4020641Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_native.h' 2025-06-01T21:23:36.4023919Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_ops.h' 2025-06-01T21:23:36.4027237Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine.h' 2025-06-01T21:23:36.4030485Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask.h' 2025-06-01T21:23:36.4033828Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward.h' 2025-06-01T21:23:36.4037848Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.4040207Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_native.h' 2025-06-01T21:23:36.4043467Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_ops.h' 2025-06-01T21:23:36.4046941Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.4050073Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_cpu_dispatch.h' 2025-06-01T21:23:36.4053211Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_cuda_dispatch.h' 2025-06-01T21:23:36.4056395Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_native.h' 2025-06-01T21:23:36.4060637Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_ops.h' 2025-06-01T21:23:36.4063104Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.4066445Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_native.h' 2025-06-01T21:23:36.4069735Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_ops.h' 2025-06-01T21:23:36.4072965Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight.h' 2025-06-01T21:23:36.4076287Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.4079530Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation.h' 2025-06-01T21:23:36.4087830Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.4088562Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_native.h' 2025-06-01T21:23:36.4089301Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_ops.h' 2025-06-01T21:23:36.4113201Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_native.h' 2025-06-01T21:23:36.4113691Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_ops.h' 2025-06-01T21:23:36.4114124Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight.h' 2025-06-01T21:23:36.4114679Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.4115305Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation.h' 2025-06-01T21:23:36.4116000Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.4116711Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_native.h' 2025-06-01T21:23:36.4117298Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_ops.h' 2025-06-01T21:23:36.4120653Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_native.h' 2025-06-01T21:23:36.4125192Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_ops.h' 2025-06-01T21:23:36.4127204Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight.h' 2025-06-01T21:23:36.4131407Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.4133561Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight_native.h' 2025-06-01T21:23:36.4137316Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight_ops.h' 2025-06-01T21:23:36.4139975Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16.h' 2025-06-01T21:23:36.4143221Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.4146260Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_native.h' 2025-06-01T21:23:36.4149860Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_ops.h' 2025-06-01T21:23:36.4152994Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix.h' 2025-06-01T21:23:36.4156262Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.4159169Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix_native.h' 2025-06-01T21:23:36.4162353Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix_ops.h' 2025-06-01T21:23:36.4165645Z adding 'torch/include/ATen/ops/feature_alpha_dropout.h' 2025-06-01T21:23:36.4168987Z adding 'torch/include/ATen/ops/feature_alpha_dropout_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.4171893Z adding 'torch/include/ATen/ops/feature_alpha_dropout_native.h' 2025-06-01T21:23:36.4174978Z adding 'torch/include/ATen/ops/feature_alpha_dropout_ops.h' 2025-06-01T21:23:36.4178084Z adding 'torch/include/ATen/ops/feature_dropout.h' 2025-06-01T21:23:36.4181346Z adding 'torch/include/ATen/ops/feature_dropout_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.4184350Z adding 'torch/include/ATen/ops/feature_dropout_native.h' 2025-06-01T21:23:36.4187558Z adding 'torch/include/ATen/ops/feature_dropout_ops.h' 2025-06-01T21:23:36.4190953Z adding 'torch/include/ATen/ops/fft_fft.h' 2025-06-01T21:23:36.4195048Z adding 'torch/include/ATen/ops/fft_fft2.h' 2025-06-01T21:23:36.4198160Z adding 'torch/include/ATen/ops/fft_fft2_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.4201183Z adding 'torch/include/ATen/ops/fft_fft2_native.h' 2025-06-01T21:23:36.4204424Z adding 'torch/include/ATen/ops/fft_fft2_ops.h' 2025-06-01T21:23:36.4207803Z adding 'torch/include/ATen/ops/fft_fft_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.4210763Z adding 'torch/include/ATen/ops/fft_fft_native.h' 2025-06-01T21:23:36.4214081Z adding 'torch/include/ATen/ops/fft_fft_ops.h' 2025-06-01T21:23:36.4217261Z adding 'torch/include/ATen/ops/fft_fftfreq.h' 2025-06-01T21:23:36.4220584Z adding 'torch/include/ATen/ops/fft_fftfreq_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.4223675Z adding 'torch/include/ATen/ops/fft_fftfreq_native.h' 2025-06-01T21:23:36.4226976Z adding 'torch/include/ATen/ops/fft_fftfreq_ops.h' 2025-06-01T21:23:36.4230443Z adding 'torch/include/ATen/ops/fft_fftn.h' 2025-06-01T21:23:36.4233918Z adding 'torch/include/ATen/ops/fft_fftn_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.4236897Z adding 'torch/include/ATen/ops/fft_fftn_native.h' 2025-06-01T21:23:36.4240415Z adding 'torch/include/ATen/ops/fft_fftn_ops.h' 2025-06-01T21:23:36.4243453Z adding 'torch/include/ATen/ops/fft_fftshift.h' 2025-06-01T21:23:36.4246939Z adding 'torch/include/ATen/ops/fft_fftshift_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.4249906Z adding 'torch/include/ATen/ops/fft_fftshift_native.h' 2025-06-01T21:23:36.4253046Z adding 'torch/include/ATen/ops/fft_fftshift_ops.h' 2025-06-01T21:23:36.4256417Z adding 'torch/include/ATen/ops/fft_hfft.h' 2025-06-01T21:23:36.4259920Z adding 'torch/include/ATen/ops/fft_hfft2.h' 2025-06-01T21:23:36.4263393Z adding 'torch/include/ATen/ops/fft_hfft2_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.4266544Z adding 'torch/include/ATen/ops/fft_hfft2_native.h' 2025-06-01T21:23:36.4269817Z adding 'torch/include/ATen/ops/fft_hfft2_ops.h' 2025-06-01T21:23:36.4273175Z adding 'torch/include/ATen/ops/fft_hfft_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.4276175Z adding 'torch/include/ATen/ops/fft_hfft_native.h' 2025-06-01T21:23:36.4279420Z adding 'torch/include/ATen/ops/fft_hfft_ops.h' 2025-06-01T21:23:36.4282884Z adding 'torch/include/ATen/ops/fft_hfftn.h' 2025-06-01T21:23:36.4286582Z adding 'torch/include/ATen/ops/fft_hfftn_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.4295449Z adding 'torch/include/ATen/ops/fft_hfftn_native.h' 2025-06-01T21:23:36.4296114Z adding 'torch/include/ATen/ops/fft_hfftn_ops.h' 2025-06-01T21:23:36.4298350Z adding 'torch/include/ATen/ops/fft_ifft.h' 2025-06-01T21:23:36.4301936Z adding 'torch/include/ATen/ops/fft_ifft2.h' 2025-06-01T21:23:36.4305281Z adding 'torch/include/ATen/ops/fft_ifft2_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.4308301Z adding 'torch/include/ATen/ops/fft_ifft2_native.h' 2025-06-01T21:23:36.4311584Z adding 'torch/include/ATen/ops/fft_ifft2_ops.h' 2025-06-01T21:23:36.4314979Z adding 'torch/include/ATen/ops/fft_ifft_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.4317972Z adding 'torch/include/ATen/ops/fft_ifft_native.h' 2025-06-01T21:23:36.4321228Z adding 'torch/include/ATen/ops/fft_ifft_ops.h' 2025-06-01T21:23:36.4324708Z adding 'torch/include/ATen/ops/fft_ifftn.h' 2025-06-01T21:23:36.4328412Z adding 'torch/include/ATen/ops/fft_ifftn_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.4331327Z adding 'torch/include/ATen/ops/fft_ifftn_native.h' 2025-06-01T21:23:36.4334515Z adding 'torch/include/ATen/ops/fft_ifftn_ops.h' 2025-06-01T21:23:36.4337650Z adding 'torch/include/ATen/ops/fft_ifftshift.h' 2025-06-01T21:23:36.4340890Z adding 'torch/include/ATen/ops/fft_ifftshift_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.4343829Z adding 'torch/include/ATen/ops/fft_ifftshift_native.h' 2025-06-01T21:23:36.4347489Z adding 'torch/include/ATen/ops/fft_ifftshift_ops.h' 2025-06-01T21:23:36.4351061Z adding 'torch/include/ATen/ops/fft_ihfft.h' 2025-06-01T21:23:36.4354648Z adding 'torch/include/ATen/ops/fft_ihfft2.h' 2025-06-01T21:23:36.4358441Z adding 'torch/include/ATen/ops/fft_ihfft2_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.4361468Z adding 'torch/include/ATen/ops/fft_ihfft2_native.h' 2025-06-01T21:23:36.4364709Z adding 'torch/include/ATen/ops/fft_ihfft2_ops.h' 2025-06-01T21:23:36.4368188Z adding 'torch/include/ATen/ops/fft_ihfft_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.4371168Z adding 'torch/include/ATen/ops/fft_ihfft_native.h' 2025-06-01T21:23:36.4374506Z adding 'torch/include/ATen/ops/fft_ihfft_ops.h' 2025-06-01T21:23:36.4377903Z adding 'torch/include/ATen/ops/fft_ihfftn.h' 2025-06-01T21:23:36.4381449Z adding 'torch/include/ATen/ops/fft_ihfftn_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.4384575Z adding 'torch/include/ATen/ops/fft_ihfftn_native.h' 2025-06-01T21:23:36.4387894Z adding 'torch/include/ATen/ops/fft_ihfftn_ops.h' 2025-06-01T21:23:36.4391303Z adding 'torch/include/ATen/ops/fft_irfft.h' 2025-06-01T21:23:36.4394825Z adding 'torch/include/ATen/ops/fft_irfft2.h' 2025-06-01T21:23:36.4398275Z adding 'torch/include/ATen/ops/fft_irfft2_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.4401236Z adding 'torch/include/ATen/ops/fft_irfft2_native.h' 2025-06-01T21:23:36.4404460Z adding 'torch/include/ATen/ops/fft_irfft2_ops.h' 2025-06-01T21:23:36.4407850Z adding 'torch/include/ATen/ops/fft_irfft_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.4410820Z adding 'torch/include/ATen/ops/fft_irfft_native.h' 2025-06-01T21:23:36.4414042Z adding 'torch/include/ATen/ops/fft_irfft_ops.h' 2025-06-01T21:23:36.4417527Z adding 'torch/include/ATen/ops/fft_irfftn.h' 2025-06-01T21:23:36.4421006Z adding 'torch/include/ATen/ops/fft_irfftn_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.4424066Z adding 'torch/include/ATen/ops/fft_irfftn_native.h' 2025-06-01T21:23:36.4427426Z adding 'torch/include/ATen/ops/fft_irfftn_ops.h' 2025-06-01T21:23:36.4430856Z adding 'torch/include/ATen/ops/fft_rfft.h' 2025-06-01T21:23:36.4434416Z adding 'torch/include/ATen/ops/fft_rfft2.h' 2025-06-01T21:23:36.4437920Z adding 'torch/include/ATen/ops/fft_rfft2_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.4440912Z adding 'torch/include/ATen/ops/fft_rfft2_native.h' 2025-06-01T21:23:36.4444136Z adding 'torch/include/ATen/ops/fft_rfft2_ops.h' 2025-06-01T21:23:36.4448524Z adding 'torch/include/ATen/ops/fft_rfft_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.4450772Z adding 'torch/include/ATen/ops/fft_rfft_native.h' 2025-06-01T21:23:36.4454195Z adding 'torch/include/ATen/ops/fft_rfft_ops.h' 2025-06-01T21:23:36.4457443Z adding 'torch/include/ATen/ops/fft_rfftfreq.h' 2025-06-01T21:23:36.4460951Z adding 'torch/include/ATen/ops/fft_rfftfreq_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.4464162Z adding 'torch/include/ATen/ops/fft_rfftfreq_native.h' 2025-06-01T21:23:36.4467617Z adding 'torch/include/ATen/ops/fft_rfftfreq_ops.h' 2025-06-01T21:23:36.4471361Z adding 'torch/include/ATen/ops/fft_rfftn.h' 2025-06-01T21:23:36.4474758Z adding 'torch/include/ATen/ops/fft_rfftn_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.4477902Z adding 'torch/include/ATen/ops/fft_rfftn_native.h' 2025-06-01T21:23:36.4481199Z adding 'torch/include/ATen/ops/fft_rfftn_ops.h' 2025-06-01T21:23:36.4484642Z adding 'torch/include/ATen/ops/fill.h' 2025-06-01T21:23:36.4489090Z adding 'torch/include/ATen/ops/fill_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.4491182Z adding 'torch/include/ATen/ops/fill_cpu_dispatch.h' 2025-06-01T21:23:36.4494495Z adding 'torch/include/ATen/ops/fill_cuda_dispatch.h' 2025-06-01T21:23:36.4497465Z adding 'torch/include/ATen/ops/fill_diagonal.h' 2025-06-01T21:23:36.4500939Z adding 'torch/include/ATen/ops/fill_diagonal_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.4503861Z adding 'torch/include/ATen/ops/fill_diagonal_native.h' 2025-06-01T21:23:36.4507217Z adding 'torch/include/ATen/ops/fill_diagonal_ops.h' 2025-06-01T21:23:36.4510944Z adding 'torch/include/ATen/ops/fill_meta_dispatch.h' 2025-06-01T21:23:36.4513625Z adding 'torch/include/ATen/ops/fill_native.h' 2025-06-01T21:23:36.4517329Z adding 'torch/include/ATen/ops/fill_ops.h' 2025-06-01T21:23:36.4520394Z adding 'torch/include/ATen/ops/fix.h' 2025-06-01T21:23:36.4523885Z adding 'torch/include/ATen/ops/fix_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.4526787Z adding 'torch/include/ATen/ops/fix_native.h' 2025-06-01T21:23:36.4530149Z adding 'torch/include/ATen/ops/fix_ops.h' 2025-06-01T21:23:36.4534451Z adding 'torch/include/ATen/ops/flatten.h' 2025-06-01T21:23:36.4536878Z adding 'torch/include/ATen/ops/flatten_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.4540370Z adding 'torch/include/ATen/ops/flatten_dense_tensors.h' 2025-06-01T21:23:36.4543321Z adding 'torch/include/ATen/ops/flatten_dense_tensors_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.4546467Z adding 'torch/include/ATen/ops/flatten_dense_tensors_native.h' 2025-06-01T21:23:36.4549677Z adding 'torch/include/ATen/ops/flatten_dense_tensors_ops.h' 2025-06-01T21:23:36.4552902Z adding 'torch/include/ATen/ops/flatten_native.h' 2025-06-01T21:23:36.4556225Z adding 'torch/include/ATen/ops/flatten_ops.h' 2025-06-01T21:23:36.4559651Z adding 'torch/include/ATen/ops/flip.h' 2025-06-01T21:23:36.4563333Z adding 'torch/include/ATen/ops/flip_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.4566384Z adding 'torch/include/ATen/ops/flip_cpu_dispatch.h' 2025-06-01T21:23:36.4569619Z adding 'torch/include/ATen/ops/flip_cuda_dispatch.h' 2025-06-01T21:23:36.4572671Z adding 'torch/include/ATen/ops/flip_native.h' 2025-06-01T21:23:36.4576022Z adding 'torch/include/ATen/ops/flip_ops.h' 2025-06-01T21:23:36.4579093Z adding 'torch/include/ATen/ops/fliplr.h' 2025-06-01T21:23:36.4583090Z adding 'torch/include/ATen/ops/fliplr_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.4616401Z adding 'torch/include/ATen/ops/fliplr_native.h' 2025-06-01T21:23:36.4616777Z adding 'torch/include/ATen/ops/fliplr_ops.h' 2025-06-01T21:23:36.4617066Z adding 'torch/include/ATen/ops/flipud.h' 2025-06-01T21:23:36.4617493Z adding 'torch/include/ATen/ops/flipud_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.4617950Z adding 'torch/include/ATen/ops/flipud_native.h' 2025-06-01T21:23:36.4618263Z adding 'torch/include/ATen/ops/flipud_ops.h' 2025-06-01T21:23:36.4618585Z adding 'torch/include/ATen/ops/float_power.h' 2025-06-01T21:23:36.4619040Z adding 'torch/include/ATen/ops/float_power_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.4619528Z adding 'torch/include/ATen/ops/float_power_native.h' 2025-06-01T21:23:36.4619872Z adding 'torch/include/ATen/ops/float_power_ops.h' 2025-06-01T21:23:36.4622428Z adding 'torch/include/ATen/ops/floor.h' 2025-06-01T21:23:36.4625880Z adding 'torch/include/ATen/ops/floor_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.4629029Z adding 'torch/include/ATen/ops/floor_cpu_dispatch.h' 2025-06-01T21:23:36.4632190Z adding 'torch/include/ATen/ops/floor_cuda_dispatch.h' 2025-06-01T21:23:36.4635538Z adding 'torch/include/ATen/ops/floor_divide.h' 2025-06-01T21:23:36.4638854Z adding 'torch/include/ATen/ops/floor_divide_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.4642090Z adding 'torch/include/ATen/ops/floor_divide_cpu_dispatch.h' 2025-06-01T21:23:36.4645142Z adding 'torch/include/ATen/ops/floor_divide_cuda_dispatch.h' 2025-06-01T21:23:36.4648354Z adding 'torch/include/ATen/ops/floor_divide_meta_dispatch.h' 2025-06-01T21:23:36.4651573Z adding 'torch/include/ATen/ops/floor_divide_native.h' 2025-06-01T21:23:36.4654910Z adding 'torch/include/ATen/ops/floor_divide_ops.h' 2025-06-01T21:23:36.4658050Z adding 'torch/include/ATen/ops/floor_meta.h' 2025-06-01T21:23:36.4661244Z adding 'torch/include/ATen/ops/floor_meta_dispatch.h' 2025-06-01T21:23:36.4664372Z adding 'torch/include/ATen/ops/floor_native.h' 2025-06-01T21:23:36.4667811Z adding 'torch/include/ATen/ops/floor_ops.h' 2025-06-01T21:23:36.4670942Z adding 'torch/include/ATen/ops/fmax.h' 2025-06-01T21:23:36.4674251Z adding 'torch/include/ATen/ops/fmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.4677208Z adding 'torch/include/ATen/ops/fmax_cpu_dispatch.h' 2025-06-01T21:23:36.4680267Z adding 'torch/include/ATen/ops/fmax_cuda_dispatch.h' 2025-06-01T21:23:36.4683248Z adding 'torch/include/ATen/ops/fmax_meta.h' 2025-06-01T21:23:36.4686384Z adding 'torch/include/ATen/ops/fmax_meta_dispatch.h' 2025-06-01T21:23:36.4689414Z adding 'torch/include/ATen/ops/fmax_native.h' 2025-06-01T21:23:36.4692682Z adding 'torch/include/ATen/ops/fmax_ops.h' 2025-06-01T21:23:36.4695683Z adding 'torch/include/ATen/ops/fmin.h' 2025-06-01T21:23:36.4699102Z adding 'torch/include/ATen/ops/fmin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.4702045Z adding 'torch/include/ATen/ops/fmin_cpu_dispatch.h' 2025-06-01T21:23:36.4705254Z adding 'torch/include/ATen/ops/fmin_cuda_dispatch.h' 2025-06-01T21:23:36.4708245Z adding 'torch/include/ATen/ops/fmin_meta.h' 2025-06-01T21:23:36.4711393Z adding 'torch/include/ATen/ops/fmin_meta_dispatch.h' 2025-06-01T21:23:36.4714393Z adding 'torch/include/ATen/ops/fmin_native.h' 2025-06-01T21:23:36.4717584Z adding 'torch/include/ATen/ops/fmin_ops.h' 2025-06-01T21:23:36.4720744Z adding 'torch/include/ATen/ops/fmod.h' 2025-06-01T21:23:36.4724026Z adding 'torch/include/ATen/ops/fmod_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.4727200Z adding 'torch/include/ATen/ops/fmod_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.4730158Z adding 'torch/include/ATen/ops/fmod_cpu_dispatch.h' 2025-06-01T21:23:36.4733264Z adding 'torch/include/ATen/ops/fmod_cuda_dispatch.h' 2025-06-01T21:23:36.4736292Z adding 'torch/include/ATen/ops/fmod_meta.h' 2025-06-01T21:23:36.4739410Z adding 'torch/include/ATen/ops/fmod_meta_dispatch.h' 2025-06-01T21:23:36.4742461Z adding 'torch/include/ATen/ops/fmod_native.h' 2025-06-01T21:23:36.4746110Z adding 'torch/include/ATen/ops/fmod_ops.h' 2025-06-01T21:23:36.4749333Z adding 'torch/include/ATen/ops/frac.h' 2025-06-01T21:23:36.4752603Z adding 'torch/include/ATen/ops/frac_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.4755573Z adding 'torch/include/ATen/ops/frac_cpu_dispatch.h' 2025-06-01T21:23:36.4758685Z adding 'torch/include/ATen/ops/frac_cuda_dispatch.h' 2025-06-01T21:23:36.4761701Z adding 'torch/include/ATen/ops/frac_meta.h' 2025-06-01T21:23:36.4764800Z adding 'torch/include/ATen/ops/frac_meta_dispatch.h' 2025-06-01T21:23:36.4767875Z adding 'torch/include/ATen/ops/frac_native.h' 2025-06-01T21:23:36.4771397Z adding 'torch/include/ATen/ops/frac_ops.h' 2025-06-01T21:23:36.4774671Z adding 'torch/include/ATen/ops/fractional_max_pool2d.h' 2025-06-01T21:23:36.4777904Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward.h' 2025-06-01T21:23:36.4781286Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.4784377Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_cpu_dispatch.h' 2025-06-01T21:23:36.4787571Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_cuda_dispatch.h' 2025-06-01T21:23:36.4790664Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_meta.h' 2025-06-01T21:23:36.4793838Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_meta_dispatch.h' 2025-06-01T21:23:36.4796894Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_native.h' 2025-06-01T21:23:36.4800278Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_ops.h' 2025-06-01T21:23:36.4803550Z adding 'torch/include/ATen/ops/fractional_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.4807354Z adding 'torch/include/ATen/ops/fractional_max_pool2d_cpu_dispatch.h' 2025-06-01T21:23:36.4812570Z adding 'torch/include/ATen/ops/fractional_max_pool2d_cuda_dispatch.h' 2025-06-01T21:23:36.4815630Z adding 'torch/include/ATen/ops/fractional_max_pool2d_meta.h' 2025-06-01T21:23:36.4818815Z adding 'torch/include/ATen/ops/fractional_max_pool2d_meta_dispatch.h' 2025-06-01T21:23:36.4821852Z adding 'torch/include/ATen/ops/fractional_max_pool2d_native.h' 2025-06-01T21:23:36.4825217Z adding 'torch/include/ATen/ops/fractional_max_pool2d_ops.h' 2025-06-01T21:23:36.4828455Z adding 'torch/include/ATen/ops/fractional_max_pool3d.h' 2025-06-01T21:23:36.4831711Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward.h' 2025-06-01T21:23:36.4834942Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_cpu_dispatch.h' 2025-06-01T21:23:36.4838676Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_cuda_dispatch.h' 2025-06-01T21:23:36.4841131Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_native.h' 2025-06-01T21:23:36.4844413Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_ops.h' 2025-06-01T21:23:36.4847733Z adding 'torch/include/ATen/ops/fractional_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.4850732Z adding 'torch/include/ATen/ops/fractional_max_pool3d_cpu_dispatch.h' 2025-06-01T21:23:36.4853867Z adding 'torch/include/ATen/ops/fractional_max_pool3d_cuda_dispatch.h' 2025-06-01T21:23:36.4857815Z adding 'torch/include/ATen/ops/fractional_max_pool3d_meta.h' 2025-06-01T21:23:36.4861362Z adding 'torch/include/ATen/ops/fractional_max_pool3d_meta_dispatch.h' 2025-06-01T21:23:36.4864578Z adding 'torch/include/ATen/ops/fractional_max_pool3d_native.h' 2025-06-01T21:23:36.4867867Z adding 'torch/include/ATen/ops/fractional_max_pool3d_ops.h' 2025-06-01T21:23:36.4870980Z adding 'torch/include/ATen/ops/frexp.h' 2025-06-01T21:23:36.4874193Z adding 'torch/include/ATen/ops/frexp_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.4877252Z adding 'torch/include/ATen/ops/frexp_cpu_dispatch.h' 2025-06-01T21:23:36.4880355Z adding 'torch/include/ATen/ops/frexp_cuda_dispatch.h' 2025-06-01T21:23:36.4883388Z adding 'torch/include/ATen/ops/frexp_native.h' 2025-06-01T21:23:36.4886567Z adding 'torch/include/ATen/ops/frexp_ops.h' 2025-06-01T21:23:36.4889703Z adding 'torch/include/ATen/ops/frobenius_norm.h' 2025-06-01T21:23:36.4892989Z adding 'torch/include/ATen/ops/frobenius_norm_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.4895883Z adding 'torch/include/ATen/ops/frobenius_norm_native.h' 2025-06-01T21:23:36.4899071Z adding 'torch/include/ATen/ops/frobenius_norm_ops.h' 2025-06-01T21:23:36.4902941Z adding 'torch/include/ATen/ops/from_blob.h' 2025-06-01T21:23:36.4906598Z adding 'torch/include/ATen/ops/from_file.h' 2025-06-01T21:23:36.4909990Z adding 'torch/include/ATen/ops/from_file_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.4913167Z adding 'torch/include/ATen/ops/from_file_cpu_dispatch.h' 2025-06-01T21:23:36.4916263Z adding 'torch/include/ATen/ops/from_file_native.h' 2025-06-01T21:23:36.4919800Z adding 'torch/include/ATen/ops/from_file_ops.h' 2025-06-01T21:23:36.4923824Z adding 'torch/include/ATen/ops/full.h' 2025-06-01T21:23:36.4927316Z adding 'torch/include/ATen/ops/full_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.4930715Z adding 'torch/include/ATen/ops/full_like.h' 2025-06-01T21:23:36.4935141Z adding 'torch/include/ATen/ops/full_like_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.4937359Z adding 'torch/include/ATen/ops/full_like_native.h' 2025-06-01T21:23:36.4940988Z adding 'torch/include/ATen/ops/full_like_ops.h' 2025-06-01T21:23:36.4944180Z adding 'torch/include/ATen/ops/full_native.h' 2025-06-01T21:23:36.4947945Z adding 'torch/include/ATen/ops/full_ops.h' 2025-06-01T21:23:36.4952226Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant.h' 2025-06-01T21:23:36.4954797Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.4958254Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_native.h' 2025-06-01T21:23:36.4961171Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_ops.h' 2025-06-01T21:23:36.4964456Z adding 'torch/include/ATen/ops/gather.h' 2025-06-01T21:23:36.4967726Z adding 'torch/include/ATen/ops/gather_backward.h' 2025-06-01T21:23:36.4971173Z adding 'torch/include/ATen/ops/gather_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.4974649Z adding 'torch/include/ATen/ops/gather_backward_native.h' 2025-06-01T21:23:36.4977421Z adding 'torch/include/ATen/ops/gather_backward_ops.h' 2025-06-01T21:23:36.4981121Z adding 'torch/include/ATen/ops/gather_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.4984024Z adding 'torch/include/ATen/ops/gather_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.4987136Z adding 'torch/include/ATen/ops/gather_cpu_dispatch.h' 2025-06-01T21:23:36.4990287Z adding 'torch/include/ATen/ops/gather_cuda_dispatch.h' 2025-06-01T21:23:36.4993454Z adding 'torch/include/ATen/ops/gather_meta.h' 2025-06-01T21:23:36.4996583Z adding 'torch/include/ATen/ops/gather_meta_dispatch.h' 2025-06-01T21:23:36.4999825Z adding 'torch/include/ATen/ops/gather_native.h' 2025-06-01T21:23:36.5003859Z adding 'torch/include/ATen/ops/gather_ops.h' 2025-06-01T21:23:36.5006470Z adding 'torch/include/ATen/ops/gcd.h' 2025-06-01T21:23:36.5009956Z adding 'torch/include/ATen/ops/gcd_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.5012908Z adding 'torch/include/ATen/ops/gcd_cpu_dispatch.h' 2025-06-01T21:23:36.5016183Z adding 'torch/include/ATen/ops/gcd_cuda_dispatch.h' 2025-06-01T21:23:36.5019226Z adding 'torch/include/ATen/ops/gcd_meta.h' 2025-06-01T21:23:36.5022528Z adding 'torch/include/ATen/ops/gcd_meta_dispatch.h' 2025-06-01T21:23:36.5026623Z adding 'torch/include/ATen/ops/gcd_native.h' 2025-06-01T21:23:36.5029029Z adding 'torch/include/ATen/ops/gcd_ops.h' 2025-06-01T21:23:36.5032486Z adding 'torch/include/ATen/ops/ge.h' 2025-06-01T21:23:36.5035746Z adding 'torch/include/ATen/ops/ge_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.5038877Z adding 'torch/include/ATen/ops/ge_cpu_dispatch.h' 2025-06-01T21:23:36.5042076Z adding 'torch/include/ATen/ops/ge_cuda_dispatch.h' 2025-06-01T21:23:36.5045242Z adding 'torch/include/ATen/ops/ge_meta.h' 2025-06-01T21:23:36.5048420Z adding 'torch/include/ATen/ops/ge_meta_dispatch.h' 2025-06-01T21:23:36.5051687Z adding 'torch/include/ATen/ops/ge_native.h' 2025-06-01T21:23:36.5055520Z adding 'torch/include/ATen/ops/ge_ops.h' 2025-06-01T21:23:36.5058446Z adding 'torch/include/ATen/ops/gelu.h' 2025-06-01T21:23:36.5061795Z adding 'torch/include/ATen/ops/gelu_backward.h' 2025-06-01T21:23:36.5065288Z adding 'torch/include/ATen/ops/gelu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.5068434Z adding 'torch/include/ATen/ops/gelu_backward_cpu_dispatch.h' 2025-06-01T21:23:36.5072534Z adding 'torch/include/ATen/ops/gelu_backward_cuda_dispatch.h' 2025-06-01T21:23:36.5074803Z adding 'torch/include/ATen/ops/gelu_backward_meta.h' 2025-06-01T21:23:36.5078363Z adding 'torch/include/ATen/ops/gelu_backward_meta_dispatch.h' 2025-06-01T21:23:36.5081142Z adding 'torch/include/ATen/ops/gelu_backward_native.h' 2025-06-01T21:23:36.5084561Z adding 'torch/include/ATen/ops/gelu_backward_ops.h' 2025-06-01T21:23:36.5087878Z adding 'torch/include/ATen/ops/gelu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.5104438Z adding 'torch/include/ATen/ops/gelu_cpu_dispatch.h' 2025-06-01T21:23:36.5104837Z adding 'torch/include/ATen/ops/gelu_cuda_dispatch.h' 2025-06-01T21:23:36.5105178Z adding 'torch/include/ATen/ops/gelu_meta.h' 2025-06-01T21:23:36.5105600Z adding 'torch/include/ATen/ops/gelu_meta_dispatch.h' 2025-06-01T21:23:36.5105959Z adding 'torch/include/ATen/ops/gelu_native.h' 2025-06-01T21:23:36.5108723Z adding 'torch/include/ATen/ops/gelu_ops.h' 2025-06-01T21:23:36.5112166Z adding 'torch/include/ATen/ops/geometric.h' 2025-06-01T21:23:36.5116658Z adding 'torch/include/ATen/ops/geometric_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.5118786Z adding 'torch/include/ATen/ops/geometric_cpu_dispatch.h' 2025-06-01T21:23:36.5122586Z adding 'torch/include/ATen/ops/geometric_cuda_dispatch.h' 2025-06-01T21:23:36.5125160Z adding 'torch/include/ATen/ops/geometric_meta_dispatch.h' 2025-06-01T21:23:36.5128580Z adding 'torch/include/ATen/ops/geometric_native.h' 2025-06-01T21:23:36.5131615Z adding 'torch/include/ATen/ops/geometric_ops.h' 2025-06-01T21:23:36.5134769Z adding 'torch/include/ATen/ops/geqrf.h' 2025-06-01T21:23:36.5137932Z adding 'torch/include/ATen/ops/geqrf_cpu_dispatch.h' 2025-06-01T21:23:36.5141327Z adding 'torch/include/ATen/ops/geqrf_cuda_dispatch.h' 2025-06-01T21:23:36.5144448Z adding 'torch/include/ATen/ops/geqrf_native.h' 2025-06-01T21:23:36.5147806Z adding 'torch/include/ATen/ops/geqrf_ops.h' 2025-06-01T21:23:36.5150836Z adding 'torch/include/ATen/ops/ger.h' 2025-06-01T21:23:36.5154075Z adding 'torch/include/ATen/ops/ger_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.5157228Z adding 'torch/include/ATen/ops/ger_native.h' 2025-06-01T21:23:36.5160410Z adding 'torch/include/ATen/ops/ger_ops.h' 2025-06-01T21:23:36.5163529Z adding 'torch/include/ATen/ops/glu.h' 2025-06-01T21:23:36.5166677Z adding 'torch/include/ATen/ops/glu_backward.h' 2025-06-01T21:23:36.5169836Z adding 'torch/include/ATen/ops/glu_backward_cpu_dispatch.h' 2025-06-01T21:23:36.5172993Z adding 'torch/include/ATen/ops/glu_backward_cuda_dispatch.h' 2025-06-01T21:23:36.5176083Z adding 'torch/include/ATen/ops/glu_backward_jvp.h' 2025-06-01T21:23:36.5179453Z adding 'torch/include/ATen/ops/glu_backward_jvp_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.5182727Z adding 'torch/include/ATen/ops/glu_backward_jvp_cpu_dispatch.h' 2025-06-01T21:23:36.5186811Z adding 'torch/include/ATen/ops/glu_backward_jvp_cuda_dispatch.h' 2025-06-01T21:23:36.5189252Z adding 'torch/include/ATen/ops/glu_backward_jvp_native.h' 2025-06-01T21:23:36.5192465Z adding 'torch/include/ATen/ops/glu_backward_jvp_ops.h' 2025-06-01T21:23:36.5195534Z adding 'torch/include/ATen/ops/glu_backward_native.h' 2025-06-01T21:23:36.5198781Z adding 'torch/include/ATen/ops/glu_backward_ops.h' 2025-06-01T21:23:36.5202085Z adding 'torch/include/ATen/ops/glu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.5205032Z adding 'torch/include/ATen/ops/glu_cpu_dispatch.h' 2025-06-01T21:23:36.5208119Z adding 'torch/include/ATen/ops/glu_cuda_dispatch.h' 2025-06-01T21:23:36.5211201Z adding 'torch/include/ATen/ops/glu_jvp.h' 2025-06-01T21:23:36.5214483Z adding 'torch/include/ATen/ops/glu_jvp_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.5217459Z adding 'torch/include/ATen/ops/glu_jvp_cpu_dispatch.h' 2025-06-01T21:23:36.5220520Z adding 'torch/include/ATen/ops/glu_jvp_cuda_dispatch.h' 2025-06-01T21:23:36.5224136Z adding 'torch/include/ATen/ops/glu_jvp_native.h' 2025-06-01T21:23:36.5227399Z adding 'torch/include/ATen/ops/glu_jvp_ops.h' 2025-06-01T21:23:36.5230514Z adding 'torch/include/ATen/ops/glu_meta.h' 2025-06-01T21:23:36.5233619Z adding 'torch/include/ATen/ops/glu_meta_dispatch.h' 2025-06-01T21:23:36.5236602Z adding 'torch/include/ATen/ops/glu_native.h' 2025-06-01T21:23:36.5239732Z adding 'torch/include/ATen/ops/glu_ops.h' 2025-06-01T21:23:36.5243183Z adding 'torch/include/ATen/ops/gradient.h' 2025-06-01T21:23:36.5246569Z adding 'torch/include/ATen/ops/gradient_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.5249807Z adding 'torch/include/ATen/ops/gradient_native.h' 2025-06-01T21:23:36.5253913Z adding 'torch/include/ATen/ops/gradient_ops.h' 2025-06-01T21:23:36.5256918Z adding 'torch/include/ATen/ops/greater.h' 2025-06-01T21:23:36.5260477Z adding 'torch/include/ATen/ops/greater_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.5263466Z adding 'torch/include/ATen/ops/greater_equal.h' 2025-06-01T21:23:36.5267089Z adding 'torch/include/ATen/ops/greater_equal_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.5270731Z adding 'torch/include/ATen/ops/greater_equal_native.h' 2025-06-01T21:23:36.5273704Z adding 'torch/include/ATen/ops/greater_equal_ops.h' 2025-06-01T21:23:36.5277117Z adding 'torch/include/ATen/ops/greater_native.h' 2025-06-01T21:23:36.5280462Z adding 'torch/include/ATen/ops/greater_ops.h' 2025-06-01T21:23:36.5283833Z adding 'torch/include/ATen/ops/grid_sampler.h' 2025-06-01T21:23:36.5287037Z adding 'torch/include/ATen/ops/grid_sampler_2d.h' 2025-06-01T21:23:36.5290501Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward.h' 2025-06-01T21:23:36.5294378Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.5297106Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_cpu_dispatch.h' 2025-06-01T21:23:36.5300404Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_cuda_dispatch.h' 2025-06-01T21:23:36.5303429Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_native.h' 2025-06-01T21:23:36.5307043Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_ops.h' 2025-06-01T21:23:36.5311303Z adding 'torch/include/ATen/ops/grid_sampler_2d_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.5313540Z adding 'torch/include/ATen/ops/grid_sampler_2d_cpu_dispatch.h' 2025-06-01T21:23:36.5317153Z adding 'torch/include/ATen/ops/grid_sampler_2d_cuda_dispatch.h' 2025-06-01T21:23:36.5319838Z adding 'torch/include/ATen/ops/grid_sampler_2d_native.h' 2025-06-01T21:23:36.5323253Z adding 'torch/include/ATen/ops/grid_sampler_2d_ops.h' 2025-06-01T21:23:36.5326457Z adding 'torch/include/ATen/ops/grid_sampler_3d.h' 2025-06-01T21:23:36.5329968Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward.h' 2025-06-01T21:23:36.5334432Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.5337220Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_cpu_dispatch.h' 2025-06-01T21:23:36.5340446Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_cuda_dispatch.h' 2025-06-01T21:23:36.5343713Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_native.h' 2025-06-01T21:23:36.5347269Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_ops.h' 2025-06-01T21:23:36.5351528Z adding 'torch/include/ATen/ops/grid_sampler_3d_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.5353791Z adding 'torch/include/ATen/ops/grid_sampler_3d_cpu_dispatch.h' 2025-06-01T21:23:36.5357271Z adding 'torch/include/ATen/ops/grid_sampler_3d_cuda_dispatch.h' 2025-06-01T21:23:36.5360078Z adding 'torch/include/ATen/ops/grid_sampler_3d_native.h' 2025-06-01T21:23:36.5363517Z adding 'torch/include/ATen/ops/grid_sampler_3d_ops.h' 2025-06-01T21:23:36.5366807Z adding 'torch/include/ATen/ops/grid_sampler_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.5369895Z adding 'torch/include/ATen/ops/grid_sampler_native.h' 2025-06-01T21:23:36.5373066Z adding 'torch/include/ATen/ops/grid_sampler_ops.h' 2025-06-01T21:23:36.5376380Z adding 'torch/include/ATen/ops/group_norm.h' 2025-06-01T21:23:36.5380174Z adding 'torch/include/ATen/ops/group_norm_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.5382771Z adding 'torch/include/ATen/ops/group_norm_native.h' 2025-06-01T21:23:36.5386247Z adding 'torch/include/ATen/ops/group_norm_ops.h' 2025-06-01T21:23:36.5389737Z adding 'torch/include/ATen/ops/gru.h' 2025-06-01T21:23:36.5393077Z adding 'torch/include/ATen/ops/gru_cell.h' 2025-06-01T21:23:36.5397291Z adding 'torch/include/ATen/ops/gru_cell_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.5399461Z adding 'torch/include/ATen/ops/gru_cell_native.h' 2025-06-01T21:23:36.5403077Z adding 'torch/include/ATen/ops/gru_cell_ops.h' 2025-06-01T21:23:36.5406073Z adding 'torch/include/ATen/ops/gru_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.5409242Z adding 'torch/include/ATen/ops/gru_native.h' 2025-06-01T21:23:36.5412438Z adding 'torch/include/ATen/ops/gru_ops.h' 2025-06-01T21:23:36.5415797Z adding 'torch/include/ATen/ops/gt.h' 2025-06-01T21:23:36.5420147Z adding 'torch/include/ATen/ops/gt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.5422450Z adding 'torch/include/ATen/ops/gt_cpu_dispatch.h' 2025-06-01T21:23:36.5426052Z adding 'torch/include/ATen/ops/gt_cuda_dispatch.h' 2025-06-01T21:23:36.5428946Z adding 'torch/include/ATen/ops/gt_meta.h' 2025-06-01T21:23:36.5432253Z adding 'torch/include/ATen/ops/gt_meta_dispatch.h' 2025-06-01T21:23:36.5435401Z adding 'torch/include/ATen/ops/gt_native.h' 2025-06-01T21:23:36.5438958Z adding 'torch/include/ATen/ops/gt_ops.h' 2025-06-01T21:23:36.5443166Z adding 'torch/include/ATen/ops/hamming_window.h' 2025-06-01T21:23:36.5446513Z adding 'torch/include/ATen/ops/hamming_window_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.5449727Z adding 'torch/include/ATen/ops/hamming_window_native.h' 2025-06-01T21:23:36.5454454Z adding 'torch/include/ATen/ops/hamming_window_ops.h' 2025-06-01T21:23:36.5457133Z adding 'torch/include/ATen/ops/hann_window.h' 2025-06-01T21:23:36.5460670Z adding 'torch/include/ATen/ops/hann_window_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.5463790Z adding 'torch/include/ATen/ops/hann_window_native.h' 2025-06-01T21:23:36.5467392Z adding 'torch/include/ATen/ops/hann_window_ops.h' 2025-06-01T21:23:36.5471554Z adding 'torch/include/ATen/ops/hardshrink.h' 2025-06-01T21:23:36.5473970Z adding 'torch/include/ATen/ops/hardshrink_backward.h' 2025-06-01T21:23:36.5477710Z adding 'torch/include/ATen/ops/hardshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.5480507Z adding 'torch/include/ATen/ops/hardshrink_backward_cpu_dispatch.h' 2025-06-01T21:23:36.5483769Z adding 'torch/include/ATen/ops/hardshrink_backward_cuda_dispatch.h' 2025-06-01T21:23:36.5486829Z adding 'torch/include/ATen/ops/hardshrink_backward_meta.h' 2025-06-01T21:23:36.5490141Z adding 'torch/include/ATen/ops/hardshrink_backward_meta_dispatch.h' 2025-06-01T21:23:36.5493148Z adding 'torch/include/ATen/ops/hardshrink_backward_native.h' 2025-06-01T21:23:36.5496591Z adding 'torch/include/ATen/ops/hardshrink_backward_ops.h' 2025-06-01T21:23:36.5500666Z adding 'torch/include/ATen/ops/hardshrink_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.5502997Z adding 'torch/include/ATen/ops/hardshrink_cpu_dispatch.h' 2025-06-01T21:23:36.5506381Z adding 'torch/include/ATen/ops/hardshrink_cuda_dispatch.h' 2025-06-01T21:23:36.5509449Z adding 'torch/include/ATen/ops/hardshrink_meta.h' 2025-06-01T21:23:36.5512750Z adding 'torch/include/ATen/ops/hardshrink_meta_dispatch.h' 2025-06-01T21:23:36.5515791Z adding 'torch/include/ATen/ops/hardshrink_native.h' 2025-06-01T21:23:36.5519118Z adding 'torch/include/ATen/ops/hardshrink_ops.h' 2025-06-01T21:23:36.5522808Z adding 'torch/include/ATen/ops/hardsigmoid.h' 2025-06-01T21:23:36.5525563Z adding 'torch/include/ATen/ops/hardsigmoid_backward.h' 2025-06-01T21:23:36.5529428Z adding 'torch/include/ATen/ops/hardsigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.5532070Z adding 'torch/include/ATen/ops/hardsigmoid_backward_cpu_dispatch.h' 2025-06-01T21:23:36.5535289Z adding 'torch/include/ATen/ops/hardsigmoid_backward_cuda_dispatch.h' 2025-06-01T21:23:36.5538320Z adding 'torch/include/ATen/ops/hardsigmoid_backward_meta.h' 2025-06-01T21:23:36.5541605Z adding 'torch/include/ATen/ops/hardsigmoid_backward_meta_dispatch.h' 2025-06-01T21:23:36.5544780Z adding 'torch/include/ATen/ops/hardsigmoid_backward_native.h' 2025-06-01T21:23:36.5548148Z adding 'torch/include/ATen/ops/hardsigmoid_backward_ops.h' 2025-06-01T21:23:36.5552216Z adding 'torch/include/ATen/ops/hardsigmoid_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.5554582Z adding 'torch/include/ATen/ops/hardsigmoid_cpu_dispatch.h' 2025-06-01T21:23:36.5558094Z adding 'torch/include/ATen/ops/hardsigmoid_cuda_dispatch.h' 2025-06-01T21:23:36.5560870Z adding 'torch/include/ATen/ops/hardsigmoid_meta.h' 2025-06-01T21:23:36.5564065Z adding 'torch/include/ATen/ops/hardsigmoid_meta_dispatch.h' 2025-06-01T21:23:36.5567160Z adding 'torch/include/ATen/ops/hardsigmoid_native.h' 2025-06-01T21:23:36.5587182Z adding 'torch/include/ATen/ops/hardsigmoid_ops.h' 2025-06-01T21:23:36.5587390Z adding 'torch/include/ATen/ops/hardswish.h' 2025-06-01T21:23:36.5587540Z adding 'torch/include/ATen/ops/hardswish_backward.h' 2025-06-01T21:23:36.5587841Z adding 'torch/include/ATen/ops/hardswish_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.5588034Z adding 'torch/include/ATen/ops/hardswish_backward_cpu_dispatch.h' 2025-06-01T21:23:36.5588221Z adding 'torch/include/ATen/ops/hardswish_backward_cuda_dispatch.h' 2025-06-01T21:23:36.5589310Z adding 'torch/include/ATen/ops/hardswish_backward_native.h' 2025-06-01T21:23:36.5592442Z adding 'torch/include/ATen/ops/hardswish_backward_ops.h' 2025-06-01T21:23:36.5595809Z adding 'torch/include/ATen/ops/hardswish_cpu_dispatch.h' 2025-06-01T21:23:36.5598989Z adding 'torch/include/ATen/ops/hardswish_cuda_dispatch.h' 2025-06-01T21:23:36.5602143Z adding 'torch/include/ATen/ops/hardswish_meta_dispatch.h' 2025-06-01T21:23:36.5605171Z adding 'torch/include/ATen/ops/hardswish_native.h' 2025-06-01T21:23:36.5608391Z adding 'torch/include/ATen/ops/hardswish_ops.h' 2025-06-01T21:23:36.5611624Z adding 'torch/include/ATen/ops/hardtanh.h' 2025-06-01T21:23:36.5614846Z adding 'torch/include/ATen/ops/hardtanh_backward.h' 2025-06-01T21:23:36.5618351Z adding 'torch/include/ATen/ops/hardtanh_backward_cpu_dispatch.h' 2025-06-01T21:23:36.5621564Z adding 'torch/include/ATen/ops/hardtanh_backward_cuda_dispatch.h' 2025-06-01T21:23:36.5624688Z adding 'torch/include/ATen/ops/hardtanh_backward_native.h' 2025-06-01T21:23:36.5627947Z adding 'torch/include/ATen/ops/hardtanh_backward_ops.h' 2025-06-01T21:23:36.5631138Z adding 'torch/include/ATen/ops/hardtanh_cpu_dispatch.h' 2025-06-01T21:23:36.5634480Z adding 'torch/include/ATen/ops/hardtanh_cuda_dispatch.h' 2025-06-01T21:23:36.5637587Z adding 'torch/include/ATen/ops/hardtanh_meta_dispatch.h' 2025-06-01T21:23:36.5640662Z adding 'torch/include/ATen/ops/hardtanh_native.h' 2025-06-01T21:23:36.5643950Z adding 'torch/include/ATen/ops/hardtanh_ops.h' 2025-06-01T21:23:36.5647107Z adding 'torch/include/ATen/ops/heaviside.h' 2025-06-01T21:23:36.5650440Z adding 'torch/include/ATen/ops/heaviside_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.5653361Z adding 'torch/include/ATen/ops/heaviside_cpu_dispatch.h' 2025-06-01T21:23:36.5656420Z adding 'torch/include/ATen/ops/heaviside_cuda_dispatch.h' 2025-06-01T21:23:36.5659426Z adding 'torch/include/ATen/ops/heaviside_meta.h' 2025-06-01T21:23:36.5662503Z adding 'torch/include/ATen/ops/heaviside_meta_dispatch.h' 2025-06-01T21:23:36.5665622Z adding 'torch/include/ATen/ops/heaviside_native.h' 2025-06-01T21:23:36.5668903Z adding 'torch/include/ATen/ops/heaviside_ops.h' 2025-06-01T21:23:36.5672060Z adding 'torch/include/ATen/ops/hinge_embedding_loss.h' 2025-06-01T21:23:36.5675375Z adding 'torch/include/ATen/ops/hinge_embedding_loss_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.5678262Z adding 'torch/include/ATen/ops/hinge_embedding_loss_native.h' 2025-06-01T21:23:36.5681379Z adding 'torch/include/ATen/ops/hinge_embedding_loss_ops.h' 2025-06-01T21:23:36.5684444Z adding 'torch/include/ATen/ops/histc.h' 2025-06-01T21:23:36.5687757Z adding 'torch/include/ATen/ops/histc_cpu_dispatch.h' 2025-06-01T21:23:36.5691324Z adding 'torch/include/ATen/ops/histc_cuda_dispatch.h' 2025-06-01T21:23:36.5694873Z adding 'torch/include/ATen/ops/histc_native.h' 2025-06-01T21:23:36.5698575Z adding 'torch/include/ATen/ops/histc_ops.h' 2025-06-01T21:23:36.5702378Z adding 'torch/include/ATen/ops/histogram.h' 2025-06-01T21:23:36.5706355Z adding 'torch/include/ATen/ops/histogram_cpu_dispatch.h' 2025-06-01T21:23:36.5709975Z adding 'torch/include/ATen/ops/histogram_native.h' 2025-06-01T21:23:36.5714053Z adding 'torch/include/ATen/ops/histogram_ops.h' 2025-06-01T21:23:36.5717826Z adding 'torch/include/ATen/ops/histogramdd.h' 2025-06-01T21:23:36.5721367Z adding 'torch/include/ATen/ops/histogramdd_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.5724544Z adding 'torch/include/ATen/ops/histogramdd_native.h' 2025-06-01T21:23:36.5728029Z adding 'torch/include/ATen/ops/histogramdd_ops.h' 2025-06-01T21:23:36.5731440Z adding 'torch/include/ATen/ops/hsplit.h' 2025-06-01T21:23:36.5735185Z adding 'torch/include/ATen/ops/hsplit_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.5738523Z adding 'torch/include/ATen/ops/hsplit_native.h' 2025-06-01T21:23:36.5742218Z adding 'torch/include/ATen/ops/hsplit_ops.h' 2025-06-01T21:23:36.5745580Z adding 'torch/include/ATen/ops/hspmm.h' 2025-06-01T21:23:36.5748666Z adding 'torch/include/ATen/ops/hspmm_native.h' 2025-06-01T21:23:36.5751847Z adding 'torch/include/ATen/ops/hspmm_ops.h' 2025-06-01T21:23:36.5755114Z adding 'torch/include/ATen/ops/hstack.h' 2025-06-01T21:23:36.5758482Z adding 'torch/include/ATen/ops/hstack_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.5761493Z adding 'torch/include/ATen/ops/hstack_native.h' 2025-06-01T21:23:36.5764724Z adding 'torch/include/ATen/ops/hstack_ops.h' 2025-06-01T21:23:36.5767907Z adding 'torch/include/ATen/ops/huber_loss.h' 2025-06-01T21:23:36.5771276Z adding 'torch/include/ATen/ops/huber_loss_backward.h' 2025-06-01T21:23:36.5774593Z adding 'torch/include/ATen/ops/huber_loss_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.5777808Z adding 'torch/include/ATen/ops/huber_loss_backward_cpu_dispatch.h' 2025-06-01T21:23:36.5780912Z adding 'torch/include/ATen/ops/huber_loss_backward_cuda_dispatch.h' 2025-06-01T21:23:36.5784164Z adding 'torch/include/ATen/ops/huber_loss_backward_native.h' 2025-06-01T21:23:36.5787521Z adding 'torch/include/ATen/ops/huber_loss_backward_ops.h' 2025-06-01T21:23:36.5790742Z adding 'torch/include/ATen/ops/huber_loss_cpu_dispatch.h' 2025-06-01T21:23:36.5793994Z adding 'torch/include/ATen/ops/huber_loss_cuda_dispatch.h' 2025-06-01T21:23:36.5797092Z adding 'torch/include/ATen/ops/huber_loss_native.h' 2025-06-01T21:23:36.5800459Z adding 'torch/include/ATen/ops/huber_loss_ops.h' 2025-06-01T21:23:36.5803556Z adding 'torch/include/ATen/ops/hypot.h' 2025-06-01T21:23:36.5807222Z adding 'torch/include/ATen/ops/hypot_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.5810319Z adding 'torch/include/ATen/ops/hypot_cpu_dispatch.h' 2025-06-01T21:23:36.5813476Z adding 'torch/include/ATen/ops/hypot_cuda_dispatch.h' 2025-06-01T21:23:36.5816608Z adding 'torch/include/ATen/ops/hypot_meta.h' 2025-06-01T21:23:36.5819746Z adding 'torch/include/ATen/ops/hypot_meta_dispatch.h' 2025-06-01T21:23:36.5822797Z adding 'torch/include/ATen/ops/hypot_native.h' 2025-06-01T21:23:36.5826214Z adding 'torch/include/ATen/ops/hypot_ops.h' 2025-06-01T21:23:36.5829501Z adding 'torch/include/ATen/ops/i0.h' 2025-06-01T21:23:36.5832812Z adding 'torch/include/ATen/ops/i0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.5835816Z adding 'torch/include/ATen/ops/i0_cpu_dispatch.h' 2025-06-01T21:23:36.5838914Z adding 'torch/include/ATen/ops/i0_cuda_dispatch.h' 2025-06-01T21:23:36.5841934Z adding 'torch/include/ATen/ops/i0_meta.h' 2025-06-01T21:23:36.5845147Z adding 'torch/include/ATen/ops/i0_meta_dispatch.h' 2025-06-01T21:23:36.5848176Z adding 'torch/include/ATen/ops/i0_native.h' 2025-06-01T21:23:36.5851400Z adding 'torch/include/ATen/ops/i0_ops.h' 2025-06-01T21:23:36.5854536Z adding 'torch/include/ATen/ops/igamma.h' 2025-06-01T21:23:36.5857876Z adding 'torch/include/ATen/ops/igamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.5860807Z adding 'torch/include/ATen/ops/igamma_cpu_dispatch.h' 2025-06-01T21:23:36.5863995Z adding 'torch/include/ATen/ops/igamma_cuda_dispatch.h' 2025-06-01T21:23:36.5867030Z adding 'torch/include/ATen/ops/igamma_meta.h' 2025-06-01T21:23:36.5870215Z adding 'torch/include/ATen/ops/igamma_meta_dispatch.h' 2025-06-01T21:23:36.5873515Z adding 'torch/include/ATen/ops/igamma_native.h' 2025-06-01T21:23:36.5876653Z adding 'torch/include/ATen/ops/igamma_ops.h' 2025-06-01T21:23:36.5879712Z adding 'torch/include/ATen/ops/igammac.h' 2025-06-01T21:23:36.5883046Z adding 'torch/include/ATen/ops/igammac_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.5885981Z adding 'torch/include/ATen/ops/igammac_cpu_dispatch.h' 2025-06-01T21:23:36.5889058Z adding 'torch/include/ATen/ops/igammac_cuda_dispatch.h' 2025-06-01T21:23:36.5892070Z adding 'torch/include/ATen/ops/igammac_meta.h' 2025-06-01T21:23:36.5895223Z adding 'torch/include/ATen/ops/igammac_meta_dispatch.h' 2025-06-01T21:23:36.5898190Z adding 'torch/include/ATen/ops/igammac_native.h' 2025-06-01T21:23:36.5901419Z adding 'torch/include/ATen/ops/igammac_ops.h' 2025-06-01T21:23:36.5904743Z adding 'torch/include/ATen/ops/im2col.h' 2025-06-01T21:23:36.5907926Z adding 'torch/include/ATen/ops/im2col_cpu_dispatch.h' 2025-06-01T21:23:36.5911067Z adding 'torch/include/ATen/ops/im2col_cuda_dispatch.h' 2025-06-01T21:23:36.5914199Z adding 'torch/include/ATen/ops/im2col_native.h' 2025-06-01T21:23:36.5917358Z adding 'torch/include/ATen/ops/im2col_ops.h' 2025-06-01T21:23:36.5920383Z adding 'torch/include/ATen/ops/imag.h' 2025-06-01T21:23:36.5923604Z adding 'torch/include/ATen/ops/imag_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.5926458Z adding 'torch/include/ATen/ops/imag_native.h' 2025-06-01T21:23:36.5929707Z adding 'torch/include/ATen/ops/imag_ops.h' 2025-06-01T21:23:36.5932854Z adding 'torch/include/ATen/ops/index.h' 2025-06-01T21:23:36.5936033Z adding 'torch/include/ATen/ops/index_add.h' 2025-06-01T21:23:36.5939386Z adding 'torch/include/ATen/ops/index_add_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.5942426Z adding 'torch/include/ATen/ops/index_add_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.5945574Z adding 'torch/include/ATen/ops/index_add_cpu_dispatch.h' 2025-06-01T21:23:36.5948697Z adding 'torch/include/ATen/ops/index_add_cuda_dispatch.h' 2025-06-01T21:23:36.5951839Z adding 'torch/include/ATen/ops/index_add_meta.h' 2025-06-01T21:23:36.5954997Z adding 'torch/include/ATen/ops/index_add_meta_dispatch.h' 2025-06-01T21:23:36.5958076Z adding 'torch/include/ATen/ops/index_add_native.h' 2025-06-01T21:23:36.5961476Z adding 'torch/include/ATen/ops/index_add_ops.h' 2025-06-01T21:23:36.5964822Z adding 'torch/include/ATen/ops/index_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.5967803Z adding 'torch/include/ATen/ops/index_copy.h' 2025-06-01T21:23:36.5971153Z adding 'torch/include/ATen/ops/index_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.5974216Z adding 'torch/include/ATen/ops/index_copy_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.5977238Z adding 'torch/include/ATen/ops/index_copy_cpu_dispatch.h' 2025-06-01T21:23:36.5980368Z adding 'torch/include/ATen/ops/index_copy_cuda_dispatch.h' 2025-06-01T21:23:36.5983533Z adding 'torch/include/ATen/ops/index_copy_meta.h' 2025-06-01T21:23:36.5986755Z adding 'torch/include/ATen/ops/index_copy_meta_dispatch.h' 2025-06-01T21:23:36.5989801Z adding 'torch/include/ATen/ops/index_copy_native.h' 2025-06-01T21:23:36.5993196Z adding 'torch/include/ATen/ops/index_copy_ops.h' 2025-06-01T21:23:36.5996407Z adding 'torch/include/ATen/ops/index_cpu_dispatch.h' 2025-06-01T21:23:36.5999544Z adding 'torch/include/ATen/ops/index_cuda_dispatch.h' 2025-06-01T21:23:36.6002814Z adding 'torch/include/ATen/ops/index_fill.h' 2025-06-01T21:23:36.6006368Z adding 'torch/include/ATen/ops/index_fill_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.6009514Z adding 'torch/include/ATen/ops/index_fill_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.6012493Z adding 'torch/include/ATen/ops/index_fill_cpu_dispatch.h' 2025-06-01T21:23:36.6015562Z adding 'torch/include/ATen/ops/index_fill_cuda_dispatch.h' 2025-06-01T21:23:36.6018672Z adding 'torch/include/ATen/ops/index_fill_meta_dispatch.h' 2025-06-01T21:23:36.6022017Z adding 'torch/include/ATen/ops/index_fill_native.h' 2025-06-01T21:23:36.6025946Z adding 'torch/include/ATen/ops/index_fill_ops.h' 2025-06-01T21:23:36.6029431Z adding 'torch/include/ATen/ops/index_meta.h' 2025-06-01T21:23:36.6032728Z adding 'torch/include/ATen/ops/index_meta_dispatch.h' 2025-06-01T21:23:36.6035786Z adding 'torch/include/ATen/ops/index_native.h' 2025-06-01T21:23:36.6038995Z adding 'torch/include/ATen/ops/index_ops.h' 2025-06-01T21:23:36.6042181Z adding 'torch/include/ATen/ops/index_put.h' 2025-06-01T21:23:36.6045505Z adding 'torch/include/ATen/ops/index_put_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.6048466Z adding 'torch/include/ATen/ops/index_put_native.h' 2025-06-01T21:23:36.6051797Z adding 'torch/include/ATen/ops/index_put_ops.h' 2025-06-01T21:23:36.6055003Z adding 'torch/include/ATen/ops/index_reduce.h' 2025-06-01T21:23:36.6058391Z adding 'torch/include/ATen/ops/index_reduce_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.6061423Z adding 'torch/include/ATen/ops/index_reduce_cpu_dispatch.h' 2025-06-01T21:23:36.6064641Z adding 'torch/include/ATen/ops/index_reduce_cuda_dispatch.h' 2025-06-01T21:23:36.6067805Z adding 'torch/include/ATen/ops/index_reduce_meta.h' 2025-06-01T21:23:36.6071011Z adding 'torch/include/ATen/ops/index_reduce_meta_dispatch.h' 2025-06-01T21:23:36.6074070Z adding 'torch/include/ATen/ops/index_reduce_native.h' 2025-06-01T21:23:36.6078045Z adding 'torch/include/ATen/ops/index_reduce_ops.h' 2025-06-01T21:23:36.6081387Z adding 'torch/include/ATen/ops/index_select.h' 2025-06-01T21:23:36.6084707Z adding 'torch/include/ATen/ops/index_select_backward.h' 2025-06-01T21:23:36.6088070Z adding 'torch/include/ATen/ops/index_select_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.6090967Z adding 'torch/include/ATen/ops/index_select_backward_native.h' 2025-06-01T21:23:36.6094125Z adding 'torch/include/ATen/ops/index_select_backward_ops.h' 2025-06-01T21:23:36.6097373Z adding 'torch/include/ATen/ops/index_select_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.6100381Z adding 'torch/include/ATen/ops/index_select_cpu_dispatch.h' 2025-06-01T21:23:36.6103474Z adding 'torch/include/ATen/ops/index_select_cuda_dispatch.h' 2025-06-01T21:23:36.6106682Z adding 'torch/include/ATen/ops/index_select_native.h' 2025-06-01T21:23:36.6110044Z adding 'torch/include/ATen/ops/index_select_ops.h' 2025-06-01T21:23:36.6113146Z adding 'torch/include/ATen/ops/indices.h' 2025-06-01T21:23:36.6116373Z adding 'torch/include/ATen/ops/indices_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.6119365Z adding 'torch/include/ATen/ops/indices_copy.h' 2025-06-01T21:23:36.6122639Z adding 'torch/include/ATen/ops/indices_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.6125773Z adding 'torch/include/ATen/ops/indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.6128557Z adding 'torch/include/ATen/ops/indices_copy_native.h' 2025-06-01T21:23:36.6132102Z adding 'torch/include/ATen/ops/indices_copy_ops.h' 2025-06-01T21:23:36.6135874Z adding 'torch/include/ATen/ops/indices_native.h' 2025-06-01T21:23:36.6139179Z adding 'torch/include/ATen/ops/indices_ops.h' 2025-06-01T21:23:36.6142801Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward.h' 2025-06-01T21:23:36.6146863Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.6150181Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward_native.h' 2025-06-01T21:23:36.6153478Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward_ops.h' 2025-06-01T21:23:36.6156406Z adding 'torch/include/ATen/ops/inner.h' 2025-06-01T21:23:36.6159899Z adding 'torch/include/ATen/ops/inner_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.6163296Z adding 'torch/include/ATen/ops/inner_native.h' 2025-06-01T21:23:36.6166898Z adding 'torch/include/ATen/ops/inner_ops.h' 2025-06-01T21:23:36.6170672Z adding 'torch/include/ATen/ops/instance_norm.h' 2025-06-01T21:23:36.6174457Z adding 'torch/include/ATen/ops/instance_norm_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.6177806Z adding 'torch/include/ATen/ops/instance_norm_native.h' 2025-06-01T21:23:36.6181503Z adding 'torch/include/ATen/ops/instance_norm_ops.h' 2025-06-01T21:23:36.6185160Z adding 'torch/include/ATen/ops/int_repr.h' 2025-06-01T21:23:36.6188937Z adding 'torch/include/ATen/ops/int_repr_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.6192344Z adding 'torch/include/ATen/ops/int_repr_native.h' 2025-06-01T21:23:36.6196022Z adding 'torch/include/ATen/ops/int_repr_ops.h' 2025-06-01T21:23:36.6199195Z adding 'torch/include/ATen/ops/inverse.h' 2025-06-01T21:23:36.6202668Z adding 'torch/include/ATen/ops/inverse_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.6205750Z adding 'torch/include/ATen/ops/inverse_native.h' 2025-06-01T21:23:36.6209197Z adding 'torch/include/ATen/ops/inverse_ops.h' 2025-06-01T21:23:36.6212261Z adding 'torch/include/ATen/ops/is_coalesced.h' 2025-06-01T21:23:36.6216000Z adding 'torch/include/ATen/ops/is_coalesced_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.6218882Z adding 'torch/include/ATen/ops/is_coalesced_native.h' 2025-06-01T21:23:36.6222184Z adding 'torch/include/ATen/ops/is_coalesced_ops.h' 2025-06-01T21:23:36.6225381Z adding 'torch/include/ATen/ops/is_complex.h' 2025-06-01T21:23:36.6228551Z adding 'torch/include/ATen/ops/is_complex_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.6231612Z adding 'torch/include/ATen/ops/is_complex_native.h' 2025-06-01T21:23:36.6234774Z adding 'torch/include/ATen/ops/is_complex_ops.h' 2025-06-01T21:23:36.6237809Z adding 'torch/include/ATen/ops/is_conj.h' 2025-06-01T21:23:36.6241013Z adding 'torch/include/ATen/ops/is_conj_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.6243892Z adding 'torch/include/ATen/ops/is_conj_native.h' 2025-06-01T21:23:36.6247143Z adding 'torch/include/ATen/ops/is_conj_ops.h' 2025-06-01T21:23:36.6250477Z adding 'torch/include/ATen/ops/is_distributed.h' 2025-06-01T21:23:36.6253482Z adding 'torch/include/ATen/ops/is_distributed_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.6257251Z adding 'torch/include/ATen/ops/is_distributed_native.h' 2025-06-01T21:23:36.6259602Z adding 'torch/include/ATen/ops/is_distributed_ops.h' 2025-06-01T21:23:36.6262696Z adding 'torch/include/ATen/ops/is_floating_point.h' 2025-06-01T21:23:36.6266069Z adding 'torch/include/ATen/ops/is_floating_point_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.6268951Z adding 'torch/include/ATen/ops/is_floating_point_native.h' 2025-06-01T21:23:36.6273012Z adding 'torch/include/ATen/ops/is_floating_point_ops.h' 2025-06-01T21:23:36.6275241Z adding 'torch/include/ATen/ops/is_inference.h' 2025-06-01T21:23:36.6278473Z adding 'torch/include/ATen/ops/is_inference_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.6281321Z adding 'torch/include/ATen/ops/is_inference_native.h' 2025-06-01T21:23:36.6284448Z adding 'torch/include/ATen/ops/is_inference_ops.h' 2025-06-01T21:23:36.6287401Z adding 'torch/include/ATen/ops/is_leaf.h' 2025-06-01T21:23:36.6290590Z adding 'torch/include/ATen/ops/is_leaf_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.6293473Z adding 'torch/include/ATen/ops/is_leaf_native.h' 2025-06-01T21:23:36.6296585Z adding 'torch/include/ATen/ops/is_leaf_ops.h' 2025-06-01T21:23:36.6299616Z adding 'torch/include/ATen/ops/is_neg.h' 2025-06-01T21:23:36.6302811Z adding 'torch/include/ATen/ops/is_neg_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.6305859Z adding 'torch/include/ATen/ops/is_neg_native.h' 2025-06-01T21:23:36.6308945Z adding 'torch/include/ATen/ops/is_neg_ops.h' 2025-06-01T21:23:36.6311950Z adding 'torch/include/ATen/ops/is_nonzero.h' 2025-06-01T21:23:36.6315124Z adding 'torch/include/ATen/ops/is_nonzero_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.6318004Z adding 'torch/include/ATen/ops/is_nonzero_native.h' 2025-06-01T21:23:36.6321220Z adding 'torch/include/ATen/ops/is_nonzero_ops.h' 2025-06-01T21:23:36.6324082Z adding 'torch/include/ATen/ops/is_pinned.h' 2025-06-01T21:23:36.6327287Z adding 'torch/include/ATen/ops/is_pinned_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.6330408Z adding 'torch/include/ATen/ops/is_pinned_native.h' 2025-06-01T21:23:36.6333528Z adding 'torch/include/ATen/ops/is_pinned_ops.h' 2025-06-01T21:23:36.6336571Z adding 'torch/include/ATen/ops/is_same_size.h' 2025-06-01T21:23:36.6339784Z adding 'torch/include/ATen/ops/is_same_size_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.6342680Z adding 'torch/include/ATen/ops/is_same_size_native.h' 2025-06-01T21:23:36.6346068Z adding 'torch/include/ATen/ops/is_same_size_ops.h' 2025-06-01T21:23:36.6349073Z adding 'torch/include/ATen/ops/is_set_to.h' 2025-06-01T21:23:36.6352170Z adding 'torch/include/ATen/ops/is_set_to_cpu_dispatch.h' 2025-06-01T21:23:36.6355196Z adding 'torch/include/ATen/ops/is_set_to_cuda_dispatch.h' 2025-06-01T21:23:36.6358176Z adding 'torch/include/ATen/ops/is_set_to_native.h' 2025-06-01T21:23:36.6361349Z adding 'torch/include/ATen/ops/is_set_to_ops.h' 2025-06-01T21:23:36.6364261Z adding 'torch/include/ATen/ops/is_signed.h' 2025-06-01T21:23:36.6367440Z adding 'torch/include/ATen/ops/is_signed_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.6370360Z adding 'torch/include/ATen/ops/is_signed_native.h' 2025-06-01T21:23:36.6373463Z adding 'torch/include/ATen/ops/is_signed_ops.h' 2025-06-01T21:23:36.6376518Z adding 'torch/include/ATen/ops/is_vulkan_available.h' 2025-06-01T21:23:36.6379751Z adding 'torch/include/ATen/ops/is_vulkan_available_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.6382629Z adding 'torch/include/ATen/ops/is_vulkan_available_native.h' 2025-06-01T21:23:36.6385823Z adding 'torch/include/ATen/ops/is_vulkan_available_ops.h' 2025-06-01T21:23:36.6388883Z adding 'torch/include/ATen/ops/isclose.h' 2025-06-01T21:23:36.6392131Z adding 'torch/include/ATen/ops/isclose_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.6395030Z adding 'torch/include/ATen/ops/isclose_native.h' 2025-06-01T21:23:36.6398250Z adding 'torch/include/ATen/ops/isclose_ops.h' 2025-06-01T21:23:36.6401255Z adding 'torch/include/ATen/ops/isfinite.h' 2025-06-01T21:23:36.6404518Z adding 'torch/include/ATen/ops/isfinite_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.6407403Z adding 'torch/include/ATen/ops/isfinite_native.h' 2025-06-01T21:23:36.6410678Z adding 'torch/include/ATen/ops/isfinite_ops.h' 2025-06-01T21:23:36.6413970Z adding 'torch/include/ATen/ops/isin.h' 2025-06-01T21:23:36.6417389Z adding 'torch/include/ATen/ops/isin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.6420402Z adding 'torch/include/ATen/ops/isin_cpu_dispatch.h' 2025-06-01T21:23:36.6423673Z adding 'torch/include/ATen/ops/isin_cuda_dispatch.h' 2025-06-01T21:23:36.6426794Z adding 'torch/include/ATen/ops/isin_meta.h' 2025-06-01T21:23:36.6430209Z adding 'torch/include/ATen/ops/isin_meta_dispatch.h' 2025-06-01T21:23:36.6433334Z adding 'torch/include/ATen/ops/isin_native.h' 2025-06-01T21:23:36.6436971Z adding 'torch/include/ATen/ops/isin_ops.h' 2025-06-01T21:23:36.6441038Z adding 'torch/include/ATen/ops/isinf.h' 2025-06-01T21:23:36.6443632Z adding 'torch/include/ATen/ops/isinf_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.6446841Z adding 'torch/include/ATen/ops/isinf_native.h' 2025-06-01T21:23:36.6449952Z adding 'torch/include/ATen/ops/isinf_ops.h' 2025-06-01T21:23:36.6453439Z adding 'torch/include/ATen/ops/isnan.h' 2025-06-01T21:23:36.6456761Z adding 'torch/include/ATen/ops/isnan_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.6459943Z adding 'torch/include/ATen/ops/isnan_cpu_dispatch.h' 2025-06-01T21:23:36.6463988Z adding 'torch/include/ATen/ops/isnan_cuda_dispatch.h' 2025-06-01T21:23:36.6466354Z adding 'torch/include/ATen/ops/isnan_native.h' 2025-06-01T21:23:36.6469638Z adding 'torch/include/ATen/ops/isnan_ops.h' 2025-06-01T21:23:36.6472888Z adding 'torch/include/ATen/ops/isneginf.h' 2025-06-01T21:23:36.6476291Z adding 'torch/include/ATen/ops/isneginf_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.6479207Z adding 'torch/include/ATen/ops/isneginf_cpu_dispatch.h' 2025-06-01T21:23:36.6482496Z adding 'torch/include/ATen/ops/isneginf_cuda_dispatch.h' 2025-06-01T21:23:36.6485544Z adding 'torch/include/ATen/ops/isneginf_meta.h' 2025-06-01T21:23:36.6488830Z adding 'torch/include/ATen/ops/isneginf_meta_dispatch.h' 2025-06-01T21:23:36.6492519Z adding 'torch/include/ATen/ops/isneginf_native.h' 2025-06-01T21:23:36.6495365Z adding 'torch/include/ATen/ops/isneginf_ops.h' 2025-06-01T21:23:36.6498613Z adding 'torch/include/ATen/ops/isposinf.h' 2025-06-01T21:23:36.6501957Z adding 'torch/include/ATen/ops/isposinf_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.6505163Z adding 'torch/include/ATen/ops/isposinf_cpu_dispatch.h' 2025-06-01T21:23:36.6508295Z adding 'torch/include/ATen/ops/isposinf_cuda_dispatch.h' 2025-06-01T21:23:36.6511494Z adding 'torch/include/ATen/ops/isposinf_meta.h' 2025-06-01T21:23:36.6515509Z adding 'torch/include/ATen/ops/isposinf_meta_dispatch.h' 2025-06-01T21:23:36.6517838Z adding 'torch/include/ATen/ops/isposinf_native.h' 2025-06-01T21:23:36.6521191Z adding 'torch/include/ATen/ops/isposinf_ops.h' 2025-06-01T21:23:36.6524231Z adding 'torch/include/ATen/ops/isreal.h' 2025-06-01T21:23:36.6527637Z adding 'torch/include/ATen/ops/isreal_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.6530563Z adding 'torch/include/ATen/ops/isreal_native.h' 2025-06-01T21:23:36.6533781Z adding 'torch/include/ATen/ops/isreal_ops.h' 2025-06-01T21:23:36.6536935Z adding 'torch/include/ATen/ops/istft.h' 2025-06-01T21:23:36.6540475Z adding 'torch/include/ATen/ops/istft_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.6544056Z adding 'torch/include/ATen/ops/istft_native.h' 2025-06-01T21:23:36.6546982Z adding 'torch/include/ATen/ops/istft_ops.h' 2025-06-01T21:23:36.6550163Z adding 'torch/include/ATen/ops/item.h' 2025-06-01T21:23:36.6553469Z adding 'torch/include/ATen/ops/item_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.6556516Z adding 'torch/include/ATen/ops/item_native.h' 2025-06-01T21:23:36.6559599Z adding 'torch/include/ATen/ops/item_ops.h' 2025-06-01T21:23:36.6563301Z adding 'torch/include/ATen/ops/kaiser_window.h' 2025-06-01T21:23:36.6567205Z adding 'torch/include/ATen/ops/kaiser_window_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.6570037Z adding 'torch/include/ATen/ops/kaiser_window_native.h' 2025-06-01T21:23:36.6573740Z adding 'torch/include/ATen/ops/kaiser_window_ops.h' 2025-06-01T21:23:36.6576942Z adding 'torch/include/ATen/ops/kl_div.h' 2025-06-01T21:23:36.6580379Z adding 'torch/include/ATen/ops/kl_div_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.6584207Z adding 'torch/include/ATen/ops/kl_div_native.h' 2025-06-01T21:23:36.6586724Z adding 'torch/include/ATen/ops/kl_div_ops.h' 2025-06-01T21:23:36.6589981Z adding 'torch/include/ATen/ops/kron.h' 2025-06-01T21:23:36.6593278Z adding 'torch/include/ATen/ops/kron_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.6596323Z adding 'torch/include/ATen/ops/kron_native.h' 2025-06-01T21:23:36.6599511Z adding 'torch/include/ATen/ops/kron_ops.h' 2025-06-01T21:23:36.6603368Z adding 'torch/include/ATen/ops/kthvalue.h' 2025-06-01T21:23:36.6622488Z adding 'torch/include/ATen/ops/kthvalue_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.6622748Z adding 'torch/include/ATen/ops/kthvalue_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.6622905Z adding 'torch/include/ATen/ops/kthvalue_cpu_dispatch.h' 2025-06-01T21:23:36.6623049Z adding 'torch/include/ATen/ops/kthvalue_cuda_dispatch.h' 2025-06-01T21:23:36.6623168Z adding 'torch/include/ATen/ops/kthvalue_native.h' 2025-06-01T21:23:36.6625374Z adding 'torch/include/ATen/ops/kthvalue_ops.h' 2025-06-01T21:23:36.6628731Z adding 'torch/include/ATen/ops/l1_loss.h' 2025-06-01T21:23:36.6631962Z adding 'torch/include/ATen/ops/l1_loss_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.6635168Z adding 'torch/include/ATen/ops/l1_loss_native.h' 2025-06-01T21:23:36.6638243Z adding 'torch/include/ATen/ops/l1_loss_ops.h' 2025-06-01T21:23:36.6641725Z adding 'torch/include/ATen/ops/layer_norm.h' 2025-06-01T21:23:36.6646387Z adding 'torch/include/ATen/ops/layer_norm_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.6648242Z adding 'torch/include/ATen/ops/layer_norm_native.h' 2025-06-01T21:23:36.6651453Z adding 'torch/include/ATen/ops/layer_norm_ops.h' 2025-06-01T21:23:36.6654572Z adding 'torch/include/ATen/ops/lcm.h' 2025-06-01T21:23:36.6658111Z adding 'torch/include/ATen/ops/lcm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.6661083Z adding 'torch/include/ATen/ops/lcm_cpu_dispatch.h' 2025-06-01T21:23:36.6664305Z adding 'torch/include/ATen/ops/lcm_cuda_dispatch.h' 2025-06-01T21:23:36.6667318Z adding 'torch/include/ATen/ops/lcm_meta.h' 2025-06-01T21:23:36.6670422Z adding 'torch/include/ATen/ops/lcm_meta_dispatch.h' 2025-06-01T21:23:36.6673603Z adding 'torch/include/ATen/ops/lcm_native.h' 2025-06-01T21:23:36.6676915Z adding 'torch/include/ATen/ops/lcm_ops.h' 2025-06-01T21:23:36.6679974Z adding 'torch/include/ATen/ops/ldexp.h' 2025-06-01T21:23:36.6683232Z adding 'torch/include/ATen/ops/ldexp_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.6686194Z adding 'torch/include/ATen/ops/ldexp_native.h' 2025-06-01T21:23:36.6689370Z adding 'torch/include/ATen/ops/ldexp_ops.h' 2025-06-01T21:23:36.6692545Z adding 'torch/include/ATen/ops/le.h' 2025-06-01T21:23:36.6695877Z adding 'torch/include/ATen/ops/le_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.6698892Z adding 'torch/include/ATen/ops/le_cpu_dispatch.h' 2025-06-01T21:23:36.6702036Z adding 'torch/include/ATen/ops/le_cuda_dispatch.h' 2025-06-01T21:23:36.6705330Z adding 'torch/include/ATen/ops/le_meta.h' 2025-06-01T21:23:36.6708520Z adding 'torch/include/ATen/ops/le_meta_dispatch.h' 2025-06-01T21:23:36.6711603Z adding 'torch/include/ATen/ops/le_native.h' 2025-06-01T21:23:36.6715032Z adding 'torch/include/ATen/ops/le_ops.h' 2025-06-01T21:23:36.6722464Z adding 'torch/include/ATen/ops/leaky_relu.h' 2025-06-01T21:23:36.6723719Z adding 'torch/include/ATen/ops/leaky_relu_backward.h' 2025-06-01T21:23:36.6727529Z adding 'torch/include/ATen/ops/leaky_relu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.6730360Z adding 'torch/include/ATen/ops/leaky_relu_backward_cpu_dispatch.h' 2025-06-01T21:23:36.6733504Z adding 'torch/include/ATen/ops/leaky_relu_backward_cuda_dispatch.h' 2025-06-01T21:23:36.6736565Z adding 'torch/include/ATen/ops/leaky_relu_backward_meta.h' 2025-06-01T21:23:36.6739726Z adding 'torch/include/ATen/ops/leaky_relu_backward_meta_dispatch.h' 2025-06-01T21:23:36.6742765Z adding 'torch/include/ATen/ops/leaky_relu_backward_native.h' 2025-06-01T21:23:36.6746189Z adding 'torch/include/ATen/ops/leaky_relu_backward_ops.h' 2025-06-01T21:23:36.6749527Z adding 'torch/include/ATen/ops/leaky_relu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.6752487Z adding 'torch/include/ATen/ops/leaky_relu_cpu_dispatch.h' 2025-06-01T21:23:36.6755581Z adding 'torch/include/ATen/ops/leaky_relu_cuda_dispatch.h' 2025-06-01T21:23:36.6758555Z adding 'torch/include/ATen/ops/leaky_relu_meta.h' 2025-06-01T21:23:36.6761867Z adding 'torch/include/ATen/ops/leaky_relu_meta_dispatch.h' 2025-06-01T21:23:36.6764987Z adding 'torch/include/ATen/ops/leaky_relu_native.h' 2025-06-01T21:23:36.6768259Z adding 'torch/include/ATen/ops/leaky_relu_ops.h' 2025-06-01T21:23:36.6771418Z adding 'torch/include/ATen/ops/lerp.h' 2025-06-01T21:23:36.6774705Z adding 'torch/include/ATen/ops/lerp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.6777643Z adding 'torch/include/ATen/ops/lerp_cpu_dispatch.h' 2025-06-01T21:23:36.6781080Z adding 'torch/include/ATen/ops/lerp_cuda_dispatch.h' 2025-06-01T21:23:36.6783867Z adding 'torch/include/ATen/ops/lerp_meta.h' 2025-06-01T21:23:36.6787189Z adding 'torch/include/ATen/ops/lerp_meta_dispatch.h' 2025-06-01T21:23:36.6790166Z adding 'torch/include/ATen/ops/lerp_native.h' 2025-06-01T21:23:36.6793624Z adding 'torch/include/ATen/ops/lerp_ops.h' 2025-06-01T21:23:36.6796871Z adding 'torch/include/ATen/ops/less.h' 2025-06-01T21:23:36.6800206Z adding 'torch/include/ATen/ops/less_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.6803269Z adding 'torch/include/ATen/ops/less_equal.h' 2025-06-01T21:23:36.6806577Z adding 'torch/include/ATen/ops/less_equal_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.6809605Z adding 'torch/include/ATen/ops/less_equal_native.h' 2025-06-01T21:23:36.6813073Z adding 'torch/include/ATen/ops/less_equal_ops.h' 2025-06-01T21:23:36.6816227Z adding 'torch/include/ATen/ops/less_native.h' 2025-06-01T21:23:36.6820262Z adding 'torch/include/ATen/ops/less_ops.h' 2025-06-01T21:23:36.6823765Z adding 'torch/include/ATen/ops/lgamma.h' 2025-06-01T21:23:36.6827201Z adding 'torch/include/ATen/ops/lgamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.6830145Z adding 'torch/include/ATen/ops/lgamma_cpu_dispatch.h' 2025-06-01T21:23:36.6833272Z adding 'torch/include/ATen/ops/lgamma_cuda_dispatch.h' 2025-06-01T21:23:36.6836193Z adding 'torch/include/ATen/ops/lgamma_meta.h' 2025-06-01T21:23:36.6839307Z adding 'torch/include/ATen/ops/lgamma_meta_dispatch.h' 2025-06-01T21:23:36.6842325Z adding 'torch/include/ATen/ops/lgamma_native.h' 2025-06-01T21:23:36.6845506Z adding 'torch/include/ATen/ops/lgamma_ops.h' 2025-06-01T21:23:36.6848600Z adding 'torch/include/ATen/ops/lift.h' 2025-06-01T21:23:36.6851813Z adding 'torch/include/ATen/ops/lift_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.6854711Z adding 'torch/include/ATen/ops/lift_fresh.h' 2025-06-01T21:23:36.6857903Z adding 'torch/include/ATen/ops/lift_fresh_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.6861174Z adding 'torch/include/ATen/ops/lift_fresh_copy.h' 2025-06-01T21:23:36.6864426Z adding 'torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.6868254Z adding 'torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.6871162Z adding 'torch/include/ATen/ops/lift_fresh_copy_native.h' 2025-06-01T21:23:36.6874502Z adding 'torch/include/ATen/ops/lift_fresh_copy_ops.h' 2025-06-01T21:23:36.6877650Z adding 'torch/include/ATen/ops/lift_fresh_native.h' 2025-06-01T21:23:36.6880843Z adding 'torch/include/ATen/ops/lift_fresh_ops.h' 2025-06-01T21:23:36.6883958Z adding 'torch/include/ATen/ops/lift_native.h' 2025-06-01T21:23:36.6887120Z adding 'torch/include/ATen/ops/lift_ops.h' 2025-06-01T21:23:36.6890410Z adding 'torch/include/ATen/ops/linalg_cholesky.h' 2025-06-01T21:23:36.6893742Z adding 'torch/include/ATen/ops/linalg_cholesky_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.6896949Z adding 'torch/include/ATen/ops/linalg_cholesky_ex.h' 2025-06-01T21:23:36.6900419Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.6903459Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_cpu_dispatch.h' 2025-06-01T21:23:36.6906849Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_cuda_dispatch.h' 2025-06-01T21:23:36.6909880Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_meta.h' 2025-06-01T21:23:36.6913607Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_meta_dispatch.h' 2025-06-01T21:23:36.6916309Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_native.h' 2025-06-01T21:23:36.6919667Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_ops.h' 2025-06-01T21:23:36.6922726Z adding 'torch/include/ATen/ops/linalg_cholesky_native.h' 2025-06-01T21:23:36.6926121Z adding 'torch/include/ATen/ops/linalg_cholesky_ops.h' 2025-06-01T21:23:36.6929471Z adding 'torch/include/ATen/ops/linalg_cond.h' 2025-06-01T21:23:36.6932836Z adding 'torch/include/ATen/ops/linalg_cond_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.6935902Z adding 'torch/include/ATen/ops/linalg_cond_native.h' 2025-06-01T21:23:36.6939687Z adding 'torch/include/ATen/ops/linalg_cond_ops.h' 2025-06-01T21:23:36.6942632Z adding 'torch/include/ATen/ops/linalg_cross.h' 2025-06-01T21:23:36.6946187Z adding 'torch/include/ATen/ops/linalg_cross_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.6949219Z adding 'torch/include/ATen/ops/linalg_cross_cpu_dispatch.h' 2025-06-01T21:23:36.6952431Z adding 'torch/include/ATen/ops/linalg_cross_cuda_dispatch.h' 2025-06-01T21:23:36.6955464Z adding 'torch/include/ATen/ops/linalg_cross_meta.h' 2025-06-01T21:23:36.6958717Z adding 'torch/include/ATen/ops/linalg_cross_meta_dispatch.h' 2025-06-01T21:23:36.6961774Z adding 'torch/include/ATen/ops/linalg_cross_native.h' 2025-06-01T21:23:36.6965120Z adding 'torch/include/ATen/ops/linalg_cross_ops.h' 2025-06-01T21:23:36.6969504Z adding 'torch/include/ATen/ops/linalg_det.h' 2025-06-01T21:23:36.6971813Z adding 'torch/include/ATen/ops/linalg_det_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.6975120Z adding 'torch/include/ATen/ops/linalg_det_native.h' 2025-06-01T21:23:36.6978129Z adding 'torch/include/ATen/ops/linalg_det_ops.h' 2025-06-01T21:23:36.6981243Z adding 'torch/include/ATen/ops/linalg_diagonal.h' 2025-06-01T21:23:36.6984629Z adding 'torch/include/ATen/ops/linalg_diagonal_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.6987683Z adding 'torch/include/ATen/ops/linalg_diagonal_native.h' 2025-06-01T21:23:36.6990824Z adding 'torch/include/ATen/ops/linalg_diagonal_ops.h' 2025-06-01T21:23:36.6994109Z adding 'torch/include/ATen/ops/linalg_eig.h' 2025-06-01T21:23:36.6997950Z adding 'torch/include/ATen/ops/linalg_eig_cpu_dispatch.h' 2025-06-01T21:23:36.7000569Z adding 'torch/include/ATen/ops/linalg_eig_cuda_dispatch.h' 2025-06-01T21:23:36.7003737Z adding 'torch/include/ATen/ops/linalg_eig_native.h' 2025-06-01T21:23:36.7006946Z adding 'torch/include/ATen/ops/linalg_eig_ops.h' 2025-06-01T21:23:36.7010304Z adding 'torch/include/ATen/ops/linalg_eigh.h' 2025-06-01T21:23:36.7013622Z adding 'torch/include/ATen/ops/linalg_eigh_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.7016758Z adding 'torch/include/ATen/ops/linalg_eigh_native.h' 2025-06-01T21:23:36.7020774Z adding 'torch/include/ATen/ops/linalg_eigh_ops.h' 2025-06-01T21:23:36.7023358Z adding 'torch/include/ATen/ops/linalg_eigvals.h' 2025-06-01T21:23:36.7027090Z adding 'torch/include/ATen/ops/linalg_eigvals_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.7030156Z adding 'torch/include/ATen/ops/linalg_eigvals_cpu_dispatch.h' 2025-06-01T21:23:36.7033329Z adding 'torch/include/ATen/ops/linalg_eigvals_cuda_dispatch.h' 2025-06-01T21:23:36.7036315Z adding 'torch/include/ATen/ops/linalg_eigvals_native.h' 2025-06-01T21:23:36.7039695Z adding 'torch/include/ATen/ops/linalg_eigvals_ops.h' 2025-06-01T21:23:36.7043673Z adding 'torch/include/ATen/ops/linalg_eigvalsh.h' 2025-06-01T21:23:36.7046283Z adding 'torch/include/ATen/ops/linalg_eigvalsh_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.7049469Z adding 'torch/include/ATen/ops/linalg_eigvalsh_native.h' 2025-06-01T21:23:36.7052589Z adding 'torch/include/ATen/ops/linalg_eigvalsh_ops.h' 2025-06-01T21:23:36.7055970Z adding 'torch/include/ATen/ops/linalg_householder_product.h' 2025-06-01T21:23:36.7059148Z adding 'torch/include/ATen/ops/linalg_householder_product_cpu_dispatch.h' 2025-06-01T21:23:36.7062477Z adding 'torch/include/ATen/ops/linalg_householder_product_cuda_dispatch.h' 2025-06-01T21:23:36.7066634Z adding 'torch/include/ATen/ops/linalg_householder_product_native.h' 2025-06-01T21:23:36.7068994Z adding 'torch/include/ATen/ops/linalg_householder_product_ops.h' 2025-06-01T21:23:36.7072338Z adding 'torch/include/ATen/ops/linalg_inv.h' 2025-06-01T21:23:36.7075508Z adding 'torch/include/ATen/ops/linalg_inv_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.7078677Z adding 'torch/include/ATen/ops/linalg_inv_ex.h' 2025-06-01T21:23:36.7082074Z adding 'torch/include/ATen/ops/linalg_inv_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.7091135Z adding 'torch/include/ATen/ops/linalg_inv_ex_cpu_dispatch.h' 2025-06-01T21:23:36.7095172Z adding 'torch/include/ATen/ops/linalg_inv_ex_cuda_dispatch.h' 2025-06-01T21:23:36.7097477Z adding 'torch/include/ATen/ops/linalg_inv_ex_meta.h' 2025-06-01T21:23:36.7100943Z adding 'torch/include/ATen/ops/linalg_inv_ex_meta_dispatch.h' 2025-06-01T21:23:36.7103852Z adding 'torch/include/ATen/ops/linalg_inv_ex_native.h' 2025-06-01T21:23:36.7115173Z adding 'torch/include/ATen/ops/linalg_inv_ex_ops.h' 2025-06-01T21:23:36.7115313Z adding 'torch/include/ATen/ops/linalg_inv_native.h' 2025-06-01T21:23:36.7115446Z adding 'torch/include/ATen/ops/linalg_inv_ops.h' 2025-06-01T21:23:36.7117776Z adding 'torch/include/ATen/ops/linalg_ldl_factor.h' 2025-06-01T21:23:36.7121323Z adding 'torch/include/ATen/ops/linalg_ldl_factor_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.7124358Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex.h' 2025-06-01T21:23:36.7127948Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.7131002Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_cpu_dispatch.h' 2025-06-01T21:23:36.7134295Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_cuda_dispatch.h' 2025-06-01T21:23:36.7137347Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_meta.h' 2025-06-01T21:23:36.7140727Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_meta_dispatch.h' 2025-06-01T21:23:36.7143786Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_native.h' 2025-06-01T21:23:36.7147051Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_ops.h' 2025-06-01T21:23:36.7150242Z adding 'torch/include/ATen/ops/linalg_ldl_factor_native.h' 2025-06-01T21:23:36.7153639Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ops.h' 2025-06-01T21:23:36.7156694Z adding 'torch/include/ATen/ops/linalg_ldl_solve.h' 2025-06-01T21:23:36.7160010Z adding 'torch/include/ATen/ops/linalg_ldl_solve_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.7162924Z adding 'torch/include/ATen/ops/linalg_ldl_solve_cpu_dispatch.h' 2025-06-01T21:23:36.7166331Z adding 'torch/include/ATen/ops/linalg_ldl_solve_cuda_dispatch.h' 2025-06-01T21:23:36.7169185Z adding 'torch/include/ATen/ops/linalg_ldl_solve_meta.h' 2025-06-01T21:23:36.7172272Z adding 'torch/include/ATen/ops/linalg_ldl_solve_meta_dispatch.h' 2025-06-01T21:23:36.7175292Z adding 'torch/include/ATen/ops/linalg_ldl_solve_native.h' 2025-06-01T21:23:36.7178466Z adding 'torch/include/ATen/ops/linalg_ldl_solve_ops.h' 2025-06-01T21:23:36.7181686Z adding 'torch/include/ATen/ops/linalg_lstsq.h' 2025-06-01T21:23:36.7185103Z adding 'torch/include/ATen/ops/linalg_lstsq_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.7188131Z adding 'torch/include/ATen/ops/linalg_lstsq_cpu_dispatch.h' 2025-06-01T21:23:36.7191244Z adding 'torch/include/ATen/ops/linalg_lstsq_cuda_dispatch.h' 2025-06-01T21:23:36.7194304Z adding 'torch/include/ATen/ops/linalg_lstsq_native.h' 2025-06-01T21:23:36.7197793Z adding 'torch/include/ATen/ops/linalg_lstsq_ops.h' 2025-06-01T21:23:36.7200977Z adding 'torch/include/ATen/ops/linalg_lu.h' 2025-06-01T21:23:36.7204354Z adding 'torch/include/ATen/ops/linalg_lu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.7207292Z adding 'torch/include/ATen/ops/linalg_lu_cpu_dispatch.h' 2025-06-01T21:23:36.7210386Z adding 'torch/include/ATen/ops/linalg_lu_cuda_dispatch.h' 2025-06-01T21:23:36.7213497Z adding 'torch/include/ATen/ops/linalg_lu_factor.h' 2025-06-01T21:23:36.7216771Z adding 'torch/include/ATen/ops/linalg_lu_factor_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.7219808Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex.h' 2025-06-01T21:23:36.7223134Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.7226268Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_cpu_dispatch.h' 2025-06-01T21:23:36.7229375Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_cuda_dispatch.h' 2025-06-01T21:23:36.7232428Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_meta.h' 2025-06-01T21:23:36.7235710Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_meta_dispatch.h' 2025-06-01T21:23:36.7238767Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_native.h' 2025-06-01T21:23:36.7241971Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_ops.h' 2025-06-01T21:23:36.7244994Z adding 'torch/include/ATen/ops/linalg_lu_factor_native.h' 2025-06-01T21:23:36.7248208Z adding 'torch/include/ATen/ops/linalg_lu_factor_ops.h' 2025-06-01T21:23:36.7251236Z adding 'torch/include/ATen/ops/linalg_lu_meta.h' 2025-06-01T21:23:36.7255382Z adding 'torch/include/ATen/ops/linalg_lu_meta_dispatch.h' 2025-06-01T21:23:36.7257829Z adding 'torch/include/ATen/ops/linalg_lu_native.h' 2025-06-01T21:23:36.7261207Z adding 'torch/include/ATen/ops/linalg_lu_ops.h' 2025-06-01T21:23:36.7264548Z adding 'torch/include/ATen/ops/linalg_lu_solve.h' 2025-06-01T21:23:36.7268060Z adding 'torch/include/ATen/ops/linalg_lu_solve_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.7272578Z adding 'torch/include/ATen/ops/linalg_lu_solve_cpu_dispatch.h' 2025-06-01T21:23:36.7274536Z adding 'torch/include/ATen/ops/linalg_lu_solve_cuda_dispatch.h' 2025-06-01T21:23:36.7278324Z adding 'torch/include/ATen/ops/linalg_lu_solve_meta.h' 2025-06-01T21:23:36.7280871Z adding 'torch/include/ATen/ops/linalg_lu_solve_meta_dispatch.h' 2025-06-01T21:23:36.7284096Z adding 'torch/include/ATen/ops/linalg_lu_solve_native.h' 2025-06-01T21:23:36.7287310Z adding 'torch/include/ATen/ops/linalg_lu_solve_ops.h' 2025-06-01T21:23:36.7290573Z adding 'torch/include/ATen/ops/linalg_matmul.h' 2025-06-01T21:23:36.7293831Z adding 'torch/include/ATen/ops/linalg_matmul_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.7296887Z adding 'torch/include/ATen/ops/linalg_matmul_native.h' 2025-06-01T21:23:36.7301142Z adding 'torch/include/ATen/ops/linalg_matmul_ops.h' 2025-06-01T21:23:36.7303459Z adding 'torch/include/ATen/ops/linalg_matrix_exp.h' 2025-06-01T21:23:36.7307111Z adding 'torch/include/ATen/ops/linalg_matrix_exp_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.7310002Z adding 'torch/include/ATen/ops/linalg_matrix_exp_cpu_dispatch.h' 2025-06-01T21:23:36.7313168Z adding 'torch/include/ATen/ops/linalg_matrix_exp_cuda_dispatch.h' 2025-06-01T21:23:36.7316136Z adding 'torch/include/ATen/ops/linalg_matrix_exp_native.h' 2025-06-01T21:23:36.7319477Z adding 'torch/include/ATen/ops/linalg_matrix_exp_ops.h' 2025-06-01T21:23:36.7323378Z adding 'torch/include/ATen/ops/linalg_matrix_norm.h' 2025-06-01T21:23:36.7326501Z adding 'torch/include/ATen/ops/linalg_matrix_norm_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.7329808Z adding 'torch/include/ATen/ops/linalg_matrix_norm_native.h' 2025-06-01T21:23:36.7333041Z adding 'torch/include/ATen/ops/linalg_matrix_norm_ops.h' 2025-06-01T21:23:36.7336394Z adding 'torch/include/ATen/ops/linalg_matrix_power.h' 2025-06-01T21:23:36.7339660Z adding 'torch/include/ATen/ops/linalg_matrix_power_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.7342725Z adding 'torch/include/ATen/ops/linalg_matrix_power_native.h' 2025-06-01T21:23:36.7346916Z adding 'torch/include/ATen/ops/linalg_matrix_power_ops.h' 2025-06-01T21:23:36.7349712Z adding 'torch/include/ATen/ops/linalg_matrix_rank.h' 2025-06-01T21:23:36.7353334Z adding 'torch/include/ATen/ops/linalg_matrix_rank_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.7356361Z adding 'torch/include/ATen/ops/linalg_matrix_rank_native.h' 2025-06-01T21:23:36.7360150Z adding 'torch/include/ATen/ops/linalg_matrix_rank_ops.h' 2025-06-01T21:23:36.7364232Z adding 'torch/include/ATen/ops/linalg_multi_dot.h' 2025-06-01T21:23:36.7366846Z adding 'torch/include/ATen/ops/linalg_multi_dot_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.7370033Z adding 'torch/include/ATen/ops/linalg_multi_dot_native.h' 2025-06-01T21:23:36.7373044Z adding 'torch/include/ATen/ops/linalg_multi_dot_ops.h' 2025-06-01T21:23:36.7376454Z adding 'torch/include/ATen/ops/linalg_norm.h' 2025-06-01T21:23:36.7380003Z adding 'torch/include/ATen/ops/linalg_norm_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.7383099Z adding 'torch/include/ATen/ops/linalg_norm_native.h' 2025-06-01T21:23:36.7387152Z adding 'torch/include/ATen/ops/linalg_norm_ops.h' 2025-06-01T21:23:36.7390279Z adding 'torch/include/ATen/ops/linalg_pinv.h' 2025-06-01T21:23:36.7393815Z adding 'torch/include/ATen/ops/linalg_pinv_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.7397046Z adding 'torch/include/ATen/ops/linalg_pinv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.7429793Z adding 'torch/include/ATen/ops/linalg_pinv_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.7429967Z adding 'torch/include/ATen/ops/linalg_pinv_native.h' 2025-06-01T21:23:36.7430092Z adding 'torch/include/ATen/ops/linalg_pinv_ops.h' 2025-06-01T21:23:36.7430195Z adding 'torch/include/ATen/ops/linalg_qr.h' 2025-06-01T21:23:36.7430504Z adding 'torch/include/ATen/ops/linalg_qr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.7430738Z adding 'torch/include/ATen/ops/linalg_qr_cpu_dispatch.h' 2025-06-01T21:23:36.7430888Z adding 'torch/include/ATen/ops/linalg_qr_cuda_dispatch.h' 2025-06-01T21:23:36.7431010Z adding 'torch/include/ATen/ops/linalg_qr_meta.h' 2025-06-01T21:23:36.7431174Z adding 'torch/include/ATen/ops/linalg_qr_meta_dispatch.h' 2025-06-01T21:23:36.7433040Z adding 'torch/include/ATen/ops/linalg_qr_native.h' 2025-06-01T21:23:36.7436451Z adding 'torch/include/ATen/ops/linalg_qr_ops.h' 2025-06-01T21:23:36.7439617Z adding 'torch/include/ATen/ops/linalg_slogdet.h' 2025-06-01T21:23:36.7443518Z adding 'torch/include/ATen/ops/linalg_slogdet_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.7447752Z adding 'torch/include/ATen/ops/linalg_slogdet_native.h' 2025-06-01T21:23:36.7449912Z adding 'torch/include/ATen/ops/linalg_slogdet_ops.h' 2025-06-01T21:23:36.7453737Z adding 'torch/include/ATen/ops/linalg_solve.h' 2025-06-01T21:23:36.7456503Z adding 'torch/include/ATen/ops/linalg_solve_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.7459532Z adding 'torch/include/ATen/ops/linalg_solve_ex.h' 2025-06-01T21:23:36.7462845Z adding 'torch/include/ATen/ops/linalg_solve_ex_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.7466157Z adding 'torch/include/ATen/ops/linalg_solve_ex_native.h' 2025-06-01T21:23:36.7469484Z adding 'torch/include/ATen/ops/linalg_solve_ex_ops.h' 2025-06-01T21:23:36.7472525Z adding 'torch/include/ATen/ops/linalg_solve_native.h' 2025-06-01T21:23:36.7475762Z adding 'torch/include/ATen/ops/linalg_solve_ops.h' 2025-06-01T21:23:36.7479001Z adding 'torch/include/ATen/ops/linalg_solve_triangular.h' 2025-06-01T21:23:36.7482394Z adding 'torch/include/ATen/ops/linalg_solve_triangular_cpu_dispatch.h' 2025-06-01T21:23:36.7485521Z adding 'torch/include/ATen/ops/linalg_solve_triangular_cuda_dispatch.h' 2025-06-01T21:23:36.7488517Z adding 'torch/include/ATen/ops/linalg_solve_triangular_native.h' 2025-06-01T21:23:36.7491711Z adding 'torch/include/ATen/ops/linalg_solve_triangular_ops.h' 2025-06-01T21:23:36.7494862Z adding 'torch/include/ATen/ops/linalg_svd.h' 2025-06-01T21:23:36.7498174Z adding 'torch/include/ATen/ops/linalg_svd_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.7501142Z adding 'torch/include/ATen/ops/linalg_svd_native.h' 2025-06-01T21:23:36.7504527Z adding 'torch/include/ATen/ops/linalg_svd_ops.h' 2025-06-01T21:23:36.7507956Z adding 'torch/include/ATen/ops/linalg_svdvals.h' 2025-06-01T21:23:36.7511000Z adding 'torch/include/ATen/ops/linalg_svdvals_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.7514005Z adding 'torch/include/ATen/ops/linalg_svdvals_native.h' 2025-06-01T21:23:36.7517198Z adding 'torch/include/ATen/ops/linalg_svdvals_ops.h' 2025-06-01T21:23:36.7520358Z adding 'torch/include/ATen/ops/linalg_tensorinv.h' 2025-06-01T21:23:36.7523690Z adding 'torch/include/ATen/ops/linalg_tensorinv_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.7526566Z adding 'torch/include/ATen/ops/linalg_tensorinv_native.h' 2025-06-01T21:23:36.7529835Z adding 'torch/include/ATen/ops/linalg_tensorinv_ops.h' 2025-06-01T21:23:36.7532883Z adding 'torch/include/ATen/ops/linalg_tensorsolve.h' 2025-06-01T21:23:36.7536195Z adding 'torch/include/ATen/ops/linalg_tensorsolve_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.7539065Z adding 'torch/include/ATen/ops/linalg_tensorsolve_native.h' 2025-06-01T21:23:36.7542269Z adding 'torch/include/ATen/ops/linalg_tensorsolve_ops.h' 2025-06-01T21:23:36.7545561Z adding 'torch/include/ATen/ops/linalg_vander.h' 2025-06-01T21:23:36.7548879Z adding 'torch/include/ATen/ops/linalg_vander_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.7552206Z adding 'torch/include/ATen/ops/linalg_vander_native.h' 2025-06-01T21:23:36.7555023Z adding 'torch/include/ATen/ops/linalg_vander_ops.h' 2025-06-01T21:23:36.7558086Z adding 'torch/include/ATen/ops/linalg_vecdot.h' 2025-06-01T21:23:36.7561363Z adding 'torch/include/ATen/ops/linalg_vecdot_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.7564521Z adding 'torch/include/ATen/ops/linalg_vecdot_native.h' 2025-06-01T21:23:36.7567555Z adding 'torch/include/ATen/ops/linalg_vecdot_ops.h' 2025-06-01T21:23:36.7571378Z adding 'torch/include/ATen/ops/linalg_vector_norm.h' 2025-06-01T21:23:36.7574840Z adding 'torch/include/ATen/ops/linalg_vector_norm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.7577796Z adding 'torch/include/ATen/ops/linalg_vector_norm_cpu_dispatch.h' 2025-06-01T21:23:36.7580931Z adding 'torch/include/ATen/ops/linalg_vector_norm_cuda_dispatch.h' 2025-06-01T21:23:36.7583990Z adding 'torch/include/ATen/ops/linalg_vector_norm_meta.h' 2025-06-01T21:23:36.7587153Z adding 'torch/include/ATen/ops/linalg_vector_norm_meta_dispatch.h' 2025-06-01T21:23:36.7590205Z adding 'torch/include/ATen/ops/linalg_vector_norm_native.h' 2025-06-01T21:23:36.7593417Z adding 'torch/include/ATen/ops/linalg_vector_norm_ops.h' 2025-06-01T21:23:36.7596528Z adding 'torch/include/ATen/ops/linear.h' 2025-06-01T21:23:36.7599760Z adding 'torch/include/ATen/ops/linear_backward.h' 2025-06-01T21:23:36.7603049Z adding 'torch/include/ATen/ops/linear_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.7606072Z adding 'torch/include/ATen/ops/linear_backward_native.h' 2025-06-01T21:23:36.7609198Z adding 'torch/include/ATen/ops/linear_backward_ops.h' 2025-06-01T21:23:36.7612463Z adding 'torch/include/ATen/ops/linear_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.7615769Z adding 'torch/include/ATen/ops/linear_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.7618488Z adding 'torch/include/ATen/ops/linear_native.h' 2025-06-01T21:23:36.7621667Z adding 'torch/include/ATen/ops/linear_ops.h' 2025-06-01T21:23:36.7625392Z adding 'torch/include/ATen/ops/linspace.h' 2025-06-01T21:23:36.7628986Z adding 'torch/include/ATen/ops/linspace_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.7632037Z adding 'torch/include/ATen/ops/linspace_cpu_dispatch.h' 2025-06-01T21:23:36.7635160Z adding 'torch/include/ATen/ops/linspace_cuda_dispatch.h' 2025-06-01T21:23:36.7638244Z adding 'torch/include/ATen/ops/linspace_meta_dispatch.h' 2025-06-01T21:23:36.7641321Z adding 'torch/include/ATen/ops/linspace_native.h' 2025-06-01T21:23:36.7645406Z adding 'torch/include/ATen/ops/linspace_ops.h' 2025-06-01T21:23:36.7648696Z adding 'torch/include/ATen/ops/log.h' 2025-06-01T21:23:36.7651753Z adding 'torch/include/ATen/ops/log10.h' 2025-06-01T21:23:36.7655028Z adding 'torch/include/ATen/ops/log10_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.7657958Z adding 'torch/include/ATen/ops/log10_cpu_dispatch.h' 2025-06-01T21:23:36.7661287Z adding 'torch/include/ATen/ops/log10_cuda_dispatch.h' 2025-06-01T21:23:36.7664395Z adding 'torch/include/ATen/ops/log10_meta.h' 2025-06-01T21:23:36.7667503Z adding 'torch/include/ATen/ops/log10_meta_dispatch.h' 2025-06-01T21:23:36.7670461Z adding 'torch/include/ATen/ops/log10_native.h' 2025-06-01T21:23:36.7673638Z adding 'torch/include/ATen/ops/log10_ops.h' 2025-06-01T21:23:36.7676850Z adding 'torch/include/ATen/ops/log1p.h' 2025-06-01T21:23:36.7680030Z adding 'torch/include/ATen/ops/log1p_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.7682946Z adding 'torch/include/ATen/ops/log1p_cpu_dispatch.h' 2025-06-01T21:23:36.7686023Z adding 'torch/include/ATen/ops/log1p_cuda_dispatch.h' 2025-06-01T21:23:36.7688988Z adding 'torch/include/ATen/ops/log1p_meta.h' 2025-06-01T21:23:36.7692060Z adding 'torch/include/ATen/ops/log1p_meta_dispatch.h' 2025-06-01T21:23:36.7695120Z adding 'torch/include/ATen/ops/log1p_native.h' 2025-06-01T21:23:36.7698258Z adding 'torch/include/ATen/ops/log1p_ops.h' 2025-06-01T21:23:36.7701298Z adding 'torch/include/ATen/ops/log2.h' 2025-06-01T21:23:36.7704662Z adding 'torch/include/ATen/ops/log2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.7707546Z adding 'torch/include/ATen/ops/log2_cpu_dispatch.h' 2025-06-01T21:23:36.7715310Z adding 'torch/include/ATen/ops/log2_cuda_dispatch.h' 2025-06-01T21:23:36.7715449Z adding 'torch/include/ATen/ops/log2_meta.h' 2025-06-01T21:23:36.7717836Z adding 'torch/include/ATen/ops/log2_meta_dispatch.h' 2025-06-01T21:23:36.7756297Z adding 'torch/include/ATen/ops/log2_native.h' 2025-06-01T21:23:36.7756660Z adding 'torch/include/ATen/ops/log2_ops.h' 2025-06-01T21:23:36.7756992Z adding 'torch/include/ATen/ops/log_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.7757125Z adding 'torch/include/ATen/ops/log_cpu_dispatch.h' 2025-06-01T21:23:36.7757262Z adding 'torch/include/ATen/ops/log_cuda_dispatch.h' 2025-06-01T21:23:36.7757363Z adding 'torch/include/ATen/ops/log_meta.h' 2025-06-01T21:23:36.7757485Z adding 'torch/include/ATen/ops/log_meta_dispatch.h' 2025-06-01T21:23:36.7757599Z adding 'torch/include/ATen/ops/log_native.h' 2025-06-01T21:23:36.7757703Z adding 'torch/include/ATen/ops/log_normal.h' 2025-06-01T21:23:36.7757952Z adding 'torch/include/ATen/ops/log_normal_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.7758121Z adding 'torch/include/ATen/ops/log_normal_cpu_dispatch.h' 2025-06-01T21:23:36.7759632Z adding 'torch/include/ATen/ops/log_normal_cuda_dispatch.h' 2025-06-01T21:23:36.7762760Z adding 'torch/include/ATen/ops/log_normal_meta_dispatch.h' 2025-06-01T21:23:36.7765790Z adding 'torch/include/ATen/ops/log_normal_native.h' 2025-06-01T21:23:36.7769208Z adding 'torch/include/ATen/ops/log_normal_ops.h' 2025-06-01T21:23:36.7772512Z adding 'torch/include/ATen/ops/log_ops.h' 2025-06-01T21:23:36.7775740Z adding 'torch/include/ATen/ops/log_sigmoid.h' 2025-06-01T21:23:36.7779020Z adding 'torch/include/ATen/ops/log_sigmoid_backward.h' 2025-06-01T21:23:36.7782208Z adding 'torch/include/ATen/ops/log_sigmoid_backward_cpu_dispatch.h' 2025-06-01T21:23:36.7785573Z adding 'torch/include/ATen/ops/log_sigmoid_backward_cuda_dispatch.h' 2025-06-01T21:23:36.7788563Z adding 'torch/include/ATen/ops/log_sigmoid_backward_native.h' 2025-06-01T21:23:36.7791871Z adding 'torch/include/ATen/ops/log_sigmoid_backward_ops.h' 2025-06-01T21:23:36.7795158Z adding 'torch/include/ATen/ops/log_sigmoid_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.7798129Z adding 'torch/include/ATen/ops/log_sigmoid_forward.h' 2025-06-01T21:23:36.7801406Z adding 'torch/include/ATen/ops/log_sigmoid_forward_cpu_dispatch.h' 2025-06-01T21:23:36.7804516Z adding 'torch/include/ATen/ops/log_sigmoid_forward_cuda_dispatch.h' 2025-06-01T21:23:36.7807488Z adding 'torch/include/ATen/ops/log_sigmoid_forward_native.h' 2025-06-01T21:23:36.7810663Z adding 'torch/include/ATen/ops/log_sigmoid_forward_ops.h' 2025-06-01T21:23:36.7813664Z adding 'torch/include/ATen/ops/log_sigmoid_native.h' 2025-06-01T21:23:36.7816895Z adding 'torch/include/ATen/ops/log_sigmoid_ops.h' 2025-06-01T21:23:36.7820110Z adding 'torch/include/ATen/ops/log_softmax.h' 2025-06-01T21:23:36.7823394Z adding 'torch/include/ATen/ops/log_softmax_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.7826616Z adding 'torch/include/ATen/ops/log_softmax_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.7829665Z adding 'torch/include/ATen/ops/log_softmax_native.h' 2025-06-01T21:23:36.7832862Z adding 'torch/include/ATen/ops/log_softmax_ops.h' 2025-06-01T21:23:36.7835979Z adding 'torch/include/ATen/ops/logaddexp.h' 2025-06-01T21:23:36.7839087Z adding 'torch/include/ATen/ops/logaddexp2.h' 2025-06-01T21:23:36.7842388Z adding 'torch/include/ATen/ops/logaddexp2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.7845269Z adding 'torch/include/ATen/ops/logaddexp2_cpu_dispatch.h' 2025-06-01T21:23:36.7848485Z adding 'torch/include/ATen/ops/logaddexp2_cuda_dispatch.h' 2025-06-01T21:23:36.7851843Z adding 'torch/include/ATen/ops/logaddexp2_meta.h' 2025-06-01T21:23:36.7854939Z adding 'torch/include/ATen/ops/logaddexp2_meta_dispatch.h' 2025-06-01T21:23:36.7857920Z adding 'torch/include/ATen/ops/logaddexp2_native.h' 2025-06-01T21:23:36.7861083Z adding 'torch/include/ATen/ops/logaddexp2_ops.h' 2025-06-01T21:23:36.7864476Z adding 'torch/include/ATen/ops/logaddexp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.7867491Z adding 'torch/include/ATen/ops/logaddexp_cpu_dispatch.h' 2025-06-01T21:23:36.7870508Z adding 'torch/include/ATen/ops/logaddexp_cuda_dispatch.h' 2025-06-01T21:23:36.7873456Z adding 'torch/include/ATen/ops/logaddexp_meta.h' 2025-06-01T21:23:36.7876529Z adding 'torch/include/ATen/ops/logaddexp_meta_dispatch.h' 2025-06-01T21:23:36.7879523Z adding 'torch/include/ATen/ops/logaddexp_native.h' 2025-06-01T21:23:36.7882679Z adding 'torch/include/ATen/ops/logaddexp_ops.h' 2025-06-01T21:23:36.7885822Z adding 'torch/include/ATen/ops/logcumsumexp.h' 2025-06-01T21:23:36.7889075Z adding 'torch/include/ATen/ops/logcumsumexp_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.7892143Z adding 'torch/include/ATen/ops/logcumsumexp_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.7895033Z adding 'torch/include/ATen/ops/logcumsumexp_native.h' 2025-06-01T21:23:36.7898317Z adding 'torch/include/ATen/ops/logcumsumexp_ops.h' 2025-06-01T21:23:36.7901350Z adding 'torch/include/ATen/ops/logdet.h' 2025-06-01T21:23:36.7904798Z adding 'torch/include/ATen/ops/logdet_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.7907710Z adding 'torch/include/ATen/ops/logdet_native.h' 2025-06-01T21:23:36.7910922Z adding 'torch/include/ATen/ops/logdet_ops.h' 2025-06-01T21:23:36.7914028Z adding 'torch/include/ATen/ops/logical_and.h' 2025-06-01T21:23:36.7917410Z adding 'torch/include/ATen/ops/logical_and_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.7920450Z adding 'torch/include/ATen/ops/logical_and_cpu_dispatch.h' 2025-06-01T21:23:36.7923669Z adding 'torch/include/ATen/ops/logical_and_cuda_dispatch.h' 2025-06-01T21:23:36.7926749Z adding 'torch/include/ATen/ops/logical_and_native.h' 2025-06-01T21:23:36.7930007Z adding 'torch/include/ATen/ops/logical_and_ops.h' 2025-06-01T21:23:36.7933261Z adding 'torch/include/ATen/ops/logical_not.h' 2025-06-01T21:23:36.7936515Z adding 'torch/include/ATen/ops/logical_not_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.7939625Z adding 'torch/include/ATen/ops/logical_not_cpu_dispatch.h' 2025-06-01T21:23:36.7942695Z adding 'torch/include/ATen/ops/logical_not_cuda_dispatch.h' 2025-06-01T21:23:36.7945996Z adding 'torch/include/ATen/ops/logical_not_native.h' 2025-06-01T21:23:36.7949240Z adding 'torch/include/ATen/ops/logical_not_ops.h' 2025-06-01T21:23:36.7952518Z adding 'torch/include/ATen/ops/logical_or.h' 2025-06-01T21:23:36.7955855Z adding 'torch/include/ATen/ops/logical_or_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.7958854Z adding 'torch/include/ATen/ops/logical_or_cpu_dispatch.h' 2025-06-01T21:23:36.7962052Z adding 'torch/include/ATen/ops/logical_or_cuda_dispatch.h' 2025-06-01T21:23:36.7965068Z adding 'torch/include/ATen/ops/logical_or_native.h' 2025-06-01T21:23:36.7968391Z adding 'torch/include/ATen/ops/logical_or_ops.h' 2025-06-01T21:23:36.7971537Z adding 'torch/include/ATen/ops/logical_xor.h' 2025-06-01T21:23:36.7975001Z adding 'torch/include/ATen/ops/logical_xor_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.7977931Z adding 'torch/include/ATen/ops/logical_xor_cpu_dispatch.h' 2025-06-01T21:23:36.7981140Z adding 'torch/include/ATen/ops/logical_xor_cuda_dispatch.h' 2025-06-01T21:23:36.7984344Z adding 'torch/include/ATen/ops/logical_xor_native.h' 2025-06-01T21:23:36.7987626Z adding 'torch/include/ATen/ops/logical_xor_ops.h' 2025-06-01T21:23:36.7990882Z adding 'torch/include/ATen/ops/logit.h' 2025-06-01T21:23:36.7994100Z adding 'torch/include/ATen/ops/logit_backward.h' 2025-06-01T21:23:36.7997572Z adding 'torch/include/ATen/ops/logit_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.8000505Z adding 'torch/include/ATen/ops/logit_backward_cpu_dispatch.h' 2025-06-01T21:23:36.8003721Z adding 'torch/include/ATen/ops/logit_backward_cuda_dispatch.h' 2025-06-01T21:23:36.8006749Z adding 'torch/include/ATen/ops/logit_backward_meta.h' 2025-06-01T21:23:36.8010015Z adding 'torch/include/ATen/ops/logit_backward_meta_dispatch.h' 2025-06-01T21:23:36.8013097Z adding 'torch/include/ATen/ops/logit_backward_native.h' 2025-06-01T21:23:36.8016462Z adding 'torch/include/ATen/ops/logit_backward_ops.h' 2025-06-01T21:23:36.8019684Z adding 'torch/include/ATen/ops/logit_cpu_dispatch.h' 2025-06-01T21:23:36.8022811Z adding 'torch/include/ATen/ops/logit_cuda_dispatch.h' 2025-06-01T21:23:36.8026158Z adding 'torch/include/ATen/ops/logit_meta_dispatch.h' 2025-06-01T21:23:36.8029204Z adding 'torch/include/ATen/ops/logit_native.h' 2025-06-01T21:23:36.8032553Z adding 'torch/include/ATen/ops/logit_ops.h' 2025-06-01T21:23:36.8036274Z adding 'torch/include/ATen/ops/logspace.h' 2025-06-01T21:23:36.8039984Z adding 'torch/include/ATen/ops/logspace_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.8043238Z adding 'torch/include/ATen/ops/logspace_cpu_dispatch.h' 2025-06-01T21:23:36.8046387Z adding 'torch/include/ATen/ops/logspace_cuda_dispatch.h' 2025-06-01T21:23:36.8049649Z adding 'torch/include/ATen/ops/logspace_meta_dispatch.h' 2025-06-01T21:23:36.8053170Z adding 'torch/include/ATen/ops/logspace_native.h' 2025-06-01T21:23:36.8057124Z adding 'torch/include/ATen/ops/logspace_ops.h' 2025-06-01T21:23:36.8060666Z adding 'torch/include/ATen/ops/logsumexp.h' 2025-06-01T21:23:36.8064025Z adding 'torch/include/ATen/ops/logsumexp_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.8067428Z adding 'torch/include/ATen/ops/logsumexp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.8070875Z adding 'torch/include/ATen/ops/logsumexp_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.8073907Z adding 'torch/include/ATen/ops/logsumexp_native.h' 2025-06-01T21:23:36.8077352Z adding 'torch/include/ATen/ops/logsumexp_ops.h' 2025-06-01T21:23:36.8080620Z adding 'torch/include/ATen/ops/lshift.h' 2025-06-01T21:23:36.8084074Z adding 'torch/include/ATen/ops/lshift_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.8087099Z adding 'torch/include/ATen/ops/lshift_cpu_dispatch.h' 2025-06-01T21:23:36.8090389Z adding 'torch/include/ATen/ops/lshift_cuda_dispatch.h' 2025-06-01T21:23:36.8093602Z adding 'torch/include/ATen/ops/lshift_meta_dispatch.h' 2025-06-01T21:23:36.8096701Z adding 'torch/include/ATen/ops/lshift_native.h' 2025-06-01T21:23:36.8100252Z adding 'torch/include/ATen/ops/lshift_ops.h' 2025-06-01T21:23:36.8103547Z adding 'torch/include/ATen/ops/lstm.h' 2025-06-01T21:23:36.8106913Z adding 'torch/include/ATen/ops/lstm_cell.h' 2025-06-01T21:23:36.8110219Z adding 'torch/include/ATen/ops/lstm_cell_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.8113670Z adding 'torch/include/ATen/ops/lstm_cell_native.h' 2025-06-01T21:23:36.8117344Z adding 'torch/include/ATen/ops/lstm_cell_ops.h' 2025-06-01T21:23:36.8121237Z adding 'torch/include/ATen/ops/lstm_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.8124817Z adding 'torch/include/ATen/ops/lstm_mps_backward.h' 2025-06-01T21:23:36.8128293Z adding 'torch/include/ATen/ops/lstm_mps_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.8131560Z adding 'torch/include/ATen/ops/lstm_mps_backward_native.h' 2025-06-01T21:23:36.8135075Z adding 'torch/include/ATen/ops/lstm_mps_backward_ops.h' 2025-06-01T21:23:36.8138339Z adding 'torch/include/ATen/ops/lstm_native.h' 2025-06-01T21:23:36.8141841Z adding 'torch/include/ATen/ops/lstm_ops.h' 2025-06-01T21:23:36.8145234Z adding 'torch/include/ATen/ops/lt.h' 2025-06-01T21:23:36.8148764Z adding 'torch/include/ATen/ops/lt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.8151816Z adding 'torch/include/ATen/ops/lt_cpu_dispatch.h' 2025-06-01T21:23:36.8154960Z adding 'torch/include/ATen/ops/lt_cuda_dispatch.h' 2025-06-01T21:23:36.8158092Z adding 'torch/include/ATen/ops/lt_meta.h' 2025-06-01T21:23:36.8161346Z adding 'torch/include/ATen/ops/lt_meta_dispatch.h' 2025-06-01T21:23:36.8164415Z adding 'torch/include/ATen/ops/lt_native.h' 2025-06-01T21:23:36.8167826Z adding 'torch/include/ATen/ops/lt_ops.h' 2025-06-01T21:23:36.8171017Z adding 'torch/include/ATen/ops/lu_solve.h' 2025-06-01T21:23:36.8174390Z adding 'torch/include/ATen/ops/lu_solve_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.8177385Z adding 'torch/include/ATen/ops/lu_solve_native.h' 2025-06-01T21:23:36.8180518Z adding 'torch/include/ATen/ops/lu_solve_ops.h' 2025-06-01T21:23:36.8183775Z adding 'torch/include/ATen/ops/lu_unpack.h' 2025-06-01T21:23:36.8187153Z adding 'torch/include/ATen/ops/lu_unpack_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.8190170Z adding 'torch/include/ATen/ops/lu_unpack_cpu_dispatch.h' 2025-06-01T21:23:36.8193277Z adding 'torch/include/ATen/ops/lu_unpack_cuda_dispatch.h' 2025-06-01T21:23:36.8196267Z adding 'torch/include/ATen/ops/lu_unpack_meta.h' 2025-06-01T21:23:36.8199393Z adding 'torch/include/ATen/ops/lu_unpack_meta_dispatch.h' 2025-06-01T21:23:36.8202416Z adding 'torch/include/ATen/ops/lu_unpack_native.h' 2025-06-01T21:23:36.8205863Z adding 'torch/include/ATen/ops/lu_unpack_ops.h' 2025-06-01T21:23:36.8208928Z adding 'torch/include/ATen/ops/mH.h' 2025-06-01T21:23:36.8212086Z adding 'torch/include/ATen/ops/mH_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.8214894Z adding 'torch/include/ATen/ops/mH_native.h' 2025-06-01T21:23:36.8217958Z adding 'torch/include/ATen/ops/mH_ops.h' 2025-06-01T21:23:36.8220918Z adding 'torch/include/ATen/ops/mT.h' 2025-06-01T21:23:36.8224164Z adding 'torch/include/ATen/ops/mT_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.8227066Z adding 'torch/include/ATen/ops/mT_native.h' 2025-06-01T21:23:36.8230112Z adding 'torch/include/ATen/ops/mT_ops.h' 2025-06-01T21:23:36.8233208Z adding 'torch/include/ATen/ops/margin_ranking_loss.h' 2025-06-01T21:23:36.8236448Z adding 'torch/include/ATen/ops/margin_ranking_loss_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.8239283Z adding 'torch/include/ATen/ops/margin_ranking_loss_native.h' 2025-06-01T21:23:36.8242384Z adding 'torch/include/ATen/ops/margin_ranking_loss_ops.h' 2025-06-01T21:23:36.8245606Z adding 'torch/include/ATen/ops/masked_fill.h' 2025-06-01T21:23:36.8248927Z adding 'torch/include/ATen/ops/masked_fill_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.8251892Z adding 'torch/include/ATen/ops/masked_fill_cpu_dispatch.h' 2025-06-01T21:23:36.8254939Z adding 'torch/include/ATen/ops/masked_fill_cuda_dispatch.h' 2025-06-01T21:23:36.8258247Z adding 'torch/include/ATen/ops/masked_fill_meta_dispatch.h' 2025-06-01T21:23:36.8261572Z adding 'torch/include/ATen/ops/masked_fill_native.h' 2025-06-01T21:23:36.8265291Z adding 'torch/include/ATen/ops/masked_fill_ops.h' 2025-06-01T21:23:36.8268653Z adding 'torch/include/ATen/ops/masked_scatter.h' 2025-06-01T21:23:36.8271952Z adding 'torch/include/ATen/ops/masked_scatter_backward.h' 2025-06-01T21:23:36.8275409Z adding 'torch/include/ATen/ops/masked_scatter_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.8278280Z adding 'torch/include/ATen/ops/masked_scatter_backward_native.h' 2025-06-01T21:23:36.8281571Z adding 'torch/include/ATen/ops/masked_scatter_backward_ops.h' 2025-06-01T21:23:36.8284967Z adding 'torch/include/ATen/ops/masked_scatter_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.8287959Z adding 'torch/include/ATen/ops/masked_scatter_cpu_dispatch.h' 2025-06-01T21:23:36.8291140Z adding 'torch/include/ATen/ops/masked_scatter_cuda_dispatch.h' 2025-06-01T21:23:36.8294198Z adding 'torch/include/ATen/ops/masked_scatter_meta_dispatch.h' 2025-06-01T21:23:36.8297342Z adding 'torch/include/ATen/ops/masked_scatter_native.h' 2025-06-01T21:23:36.8300620Z adding 'torch/include/ATen/ops/masked_scatter_ops.h' 2025-06-01T21:23:36.8304043Z adding 'torch/include/ATen/ops/masked_select.h' 2025-06-01T21:23:36.8307183Z adding 'torch/include/ATen/ops/masked_select_backward.h' 2025-06-01T21:23:36.8311167Z adding 'torch/include/ATen/ops/masked_select_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.8314250Z adding 'torch/include/ATen/ops/masked_select_backward_native.h' 2025-06-01T21:23:36.8317447Z adding 'torch/include/ATen/ops/masked_select_backward_ops.h' 2025-06-01T21:23:36.8320728Z adding 'torch/include/ATen/ops/masked_select_cpu_dispatch.h' 2025-06-01T21:23:36.8323903Z adding 'torch/include/ATen/ops/masked_select_cuda_dispatch.h' 2025-06-01T21:23:36.8327016Z adding 'torch/include/ATen/ops/masked_select_native.h' 2025-06-01T21:23:36.8330354Z adding 'torch/include/ATen/ops/masked_select_ops.h' 2025-06-01T21:23:36.8333430Z adding 'torch/include/ATen/ops/matmul.h' 2025-06-01T21:23:36.8336807Z adding 'torch/include/ATen/ops/matmul_backward.h' 2025-06-01T21:23:36.8340072Z adding 'torch/include/ATen/ops/matmul_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.8343122Z adding 'torch/include/ATen/ops/matmul_backward_native.h' 2025-06-01T21:23:36.8346520Z adding 'torch/include/ATen/ops/matmul_backward_ops.h' 2025-06-01T21:23:36.8349930Z adding 'torch/include/ATen/ops/matmul_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.8352870Z adding 'torch/include/ATen/ops/matmul_native.h' 2025-06-01T21:23:36.8356175Z adding 'torch/include/ATen/ops/matmul_ops.h' 2025-06-01T21:23:36.8359284Z adding 'torch/include/ATen/ops/matrix_H.h' 2025-06-01T21:23:36.8362488Z adding 'torch/include/ATen/ops/matrix_H_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.8365468Z adding 'torch/include/ATen/ops/matrix_H_native.h' 2025-06-01T21:23:36.8368839Z adding 'torch/include/ATen/ops/matrix_H_ops.h' 2025-06-01T21:23:36.8371765Z adding 'torch/include/ATen/ops/matrix_exp.h' 2025-06-01T21:23:36.8374887Z adding 'torch/include/ATen/ops/matrix_exp_backward.h' 2025-06-01T21:23:36.8378383Z adding 'torch/include/ATen/ops/matrix_exp_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.8381288Z adding 'torch/include/ATen/ops/matrix_exp_backward_native.h' 2025-06-01T21:23:36.8384605Z adding 'torch/include/ATen/ops/matrix_exp_backward_ops.h' 2025-06-01T21:23:36.8387960Z adding 'torch/include/ATen/ops/matrix_exp_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.8390906Z adding 'torch/include/ATen/ops/matrix_exp_native.h' 2025-06-01T21:23:36.8394155Z adding 'torch/include/ATen/ops/matrix_exp_ops.h' 2025-06-01T21:23:36.8397261Z adding 'torch/include/ATen/ops/matrix_power.h' 2025-06-01T21:23:36.8400638Z adding 'torch/include/ATen/ops/matrix_power_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.8403506Z adding 'torch/include/ATen/ops/matrix_power_native.h' 2025-06-01T21:23:36.8406843Z adding 'torch/include/ATen/ops/matrix_power_ops.h' 2025-06-01T21:23:36.8410330Z adding 'torch/include/ATen/ops/max.h' 2025-06-01T21:23:36.8413730Z adding 'torch/include/ATen/ops/max_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.8416972Z adding 'torch/include/ATen/ops/max_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.8420042Z adding 'torch/include/ATen/ops/max_cpu_dispatch.h' 2025-06-01T21:23:36.8423486Z adding 'torch/include/ATen/ops/max_cuda_dispatch.h' 2025-06-01T21:23:36.8426801Z adding 'torch/include/ATen/ops/max_meta.h' 2025-06-01T21:23:36.8430077Z adding 'torch/include/ATen/ops/max_meta_dispatch.h' 2025-06-01T21:23:36.8433442Z adding 'torch/include/ATen/ops/max_native.h' 2025-06-01T21:23:36.8437016Z adding 'torch/include/ATen/ops/max_ops.h' 2025-06-01T21:23:36.8440394Z adding 'torch/include/ATen/ops/max_pool1d.h' 2025-06-01T21:23:36.8443705Z adding 'torch/include/ATen/ops/max_pool1d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.8446777Z adding 'torch/include/ATen/ops/max_pool1d_native.h' 2025-06-01T21:23:36.8450325Z adding 'torch/include/ATen/ops/max_pool1d_ops.h' 2025-06-01T21:23:36.8453497Z adding 'torch/include/ATen/ops/max_pool1d_with_indices.h' 2025-06-01T21:23:36.8456720Z adding 'torch/include/ATen/ops/max_pool1d_with_indices_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.8459884Z adding 'torch/include/ATen/ops/max_pool1d_with_indices_native.h' 2025-06-01T21:23:36.8463215Z adding 'torch/include/ATen/ops/max_pool1d_with_indices_ops.h' 2025-06-01T21:23:36.8466450Z adding 'torch/include/ATen/ops/max_pool2d.h' 2025-06-01T21:23:36.8469794Z adding 'torch/include/ATen/ops/max_pool2d_backward.h' 2025-06-01T21:23:36.8473799Z adding 'torch/include/ATen/ops/max_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.8476911Z adding 'torch/include/ATen/ops/max_pool2d_backward_native.h' 2025-06-01T21:23:36.8480219Z adding 'torch/include/ATen/ops/max_pool2d_backward_ops.h' 2025-06-01T21:23:36.8483514Z adding 'torch/include/ATen/ops/max_pool2d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.8486573Z adding 'torch/include/ATen/ops/max_pool2d_native.h' 2025-06-01T21:23:36.8489772Z adding 'torch/include/ATen/ops/max_pool2d_ops.h' 2025-06-01T21:23:36.8493218Z adding 'torch/include/ATen/ops/max_pool2d_with_indices.h' 2025-06-01T21:23:36.8496690Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward.h' 2025-06-01T21:23:36.8500136Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.8503287Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_cpu_dispatch.h' 2025-06-01T21:23:36.8506742Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_cuda_dispatch.h' 2025-06-01T21:23:36.8509861Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_meta.h' 2025-06-01T21:23:36.8513118Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_meta_dispatch.h' 2025-06-01T21:23:36.8516208Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_native.h' 2025-06-01T21:23:36.8519625Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_ops.h' 2025-06-01T21:23:36.8523035Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.8526171Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_cpu_dispatch.h' 2025-06-01T21:23:36.8529318Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_cuda_dispatch.h' 2025-06-01T21:23:36.8532542Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_meta.h' 2025-06-01T21:23:36.8535791Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_meta_dispatch.h' 2025-06-01T21:23:36.8538899Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_native.h' 2025-06-01T21:23:36.8542365Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_ops.h' 2025-06-01T21:23:36.8545591Z adding 'torch/include/ATen/ops/max_pool3d.h' 2025-06-01T21:23:36.8549019Z adding 'torch/include/ATen/ops/max_pool3d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.8551967Z adding 'torch/include/ATen/ops/max_pool3d_native.h' 2025-06-01T21:23:36.8555271Z adding 'torch/include/ATen/ops/max_pool3d_ops.h' 2025-06-01T21:23:36.8558636Z adding 'torch/include/ATen/ops/max_pool3d_with_indices.h' 2025-06-01T21:23:36.8561966Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward.h' 2025-06-01T21:23:36.8565310Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_cpu_dispatch.h' 2025-06-01T21:23:36.8568485Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_cuda_dispatch.h' 2025-06-01T21:23:36.8572481Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_native.h' 2025-06-01T21:23:36.8618445Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_ops.h' 2025-06-01T21:23:36.8622960Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_cpu_dispatch.h' 2025-06-01T21:23:36.8627846Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_cuda_dispatch.h' 2025-06-01T21:23:36.8632107Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_native.h' 2025-06-01T21:23:36.8636885Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_ops.h' 2025-06-01T21:23:36.8641558Z adding 'torch/include/ATen/ops/max_unpool2d.h' 2025-06-01T21:23:36.8646141Z adding 'torch/include/ATen/ops/max_unpool2d_cpu_dispatch.h' 2025-06-01T21:23:36.8650584Z adding 'torch/include/ATen/ops/max_unpool2d_cuda_dispatch.h' 2025-06-01T21:23:36.8654729Z adding 'torch/include/ATen/ops/max_unpool2d_native.h' 2025-06-01T21:23:36.8659058Z adding 'torch/include/ATen/ops/max_unpool2d_ops.h' 2025-06-01T21:23:36.8664092Z adding 'torch/include/ATen/ops/max_unpool3d.h' 2025-06-01T21:23:36.8668909Z adding 'torch/include/ATen/ops/max_unpool3d_cpu_dispatch.h' 2025-06-01T21:23:36.8673345Z adding 'torch/include/ATen/ops/max_unpool3d_cuda_dispatch.h' 2025-06-01T21:23:36.8677467Z adding 'torch/include/ATen/ops/max_unpool3d_native.h' 2025-06-01T21:23:36.8682119Z adding 'torch/include/ATen/ops/max_unpool3d_ops.h' 2025-06-01T21:23:36.8686340Z adding 'torch/include/ATen/ops/maximum.h' 2025-06-01T21:23:36.8691067Z adding 'torch/include/ATen/ops/maximum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.8694062Z adding 'torch/include/ATen/ops/maximum_cpu_dispatch.h' 2025-06-01T21:23:36.8697146Z adding 'torch/include/ATen/ops/maximum_cuda_dispatch.h' 2025-06-01T21:23:36.8700184Z adding 'torch/include/ATen/ops/maximum_meta.h' 2025-06-01T21:23:36.8703321Z adding 'torch/include/ATen/ops/maximum_meta_dispatch.h' 2025-06-01T21:23:36.8706670Z adding 'torch/include/ATen/ops/maximum_native.h' 2025-06-01T21:23:36.8709708Z adding 'torch/include/ATen/ops/maximum_ops.h' 2025-06-01T21:23:36.8713007Z adding 'torch/include/ATen/ops/mean.h' 2025-06-01T21:23:36.8716351Z adding 'torch/include/ATen/ops/mean_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.8719514Z adding 'torch/include/ATen/ops/mean_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.8722616Z adding 'torch/include/ATen/ops/mean_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.8725665Z adding 'torch/include/ATen/ops/mean_cpu_dispatch.h' 2025-06-01T21:23:36.8728771Z adding 'torch/include/ATen/ops/mean_cuda_dispatch.h' 2025-06-01T21:23:36.8731751Z adding 'torch/include/ATen/ops/mean_meta.h' 2025-06-01T21:23:36.8734881Z adding 'torch/include/ATen/ops/mean_meta_dispatch.h' 2025-06-01T21:23:36.8738015Z adding 'torch/include/ATen/ops/mean_native.h' 2025-06-01T21:23:36.8741437Z adding 'torch/include/ATen/ops/mean_ops.h' 2025-06-01T21:23:36.8744985Z adding 'torch/include/ATen/ops/median.h' 2025-06-01T21:23:36.8748321Z adding 'torch/include/ATen/ops/median_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.8751624Z adding 'torch/include/ATen/ops/median_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.8754642Z adding 'torch/include/ATen/ops/median_cpu_dispatch.h' 2025-06-01T21:23:36.8757768Z adding 'torch/include/ATen/ops/median_cuda_dispatch.h' 2025-06-01T21:23:36.8760854Z adding 'torch/include/ATen/ops/median_native.h' 2025-06-01T21:23:36.8764301Z adding 'torch/include/ATen/ops/median_ops.h' 2025-06-01T21:23:36.8767594Z adding 'torch/include/ATen/ops/meshgrid.h' 2025-06-01T21:23:36.8770853Z adding 'torch/include/ATen/ops/meshgrid_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.8773720Z adding 'torch/include/ATen/ops/meshgrid_native.h' 2025-06-01T21:23:36.8776884Z adding 'torch/include/ATen/ops/meshgrid_ops.h' 2025-06-01T21:23:36.8780239Z adding 'torch/include/ATen/ops/min.h' 2025-06-01T21:23:36.8783658Z adding 'torch/include/ATen/ops/min_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.8786925Z adding 'torch/include/ATen/ops/min_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.8789936Z adding 'torch/include/ATen/ops/min_cpu_dispatch.h' 2025-06-01T21:23:36.8793098Z adding 'torch/include/ATen/ops/min_cuda_dispatch.h' 2025-06-01T21:23:36.8796210Z adding 'torch/include/ATen/ops/min_meta.h' 2025-06-01T21:23:36.8799346Z adding 'torch/include/ATen/ops/min_meta_dispatch.h' 2025-06-01T21:23:36.8802432Z adding 'torch/include/ATen/ops/min_native.h' 2025-06-01T21:23:36.8805985Z adding 'torch/include/ATen/ops/min_ops.h' 2025-06-01T21:23:36.8809217Z adding 'torch/include/ATen/ops/minimum.h' 2025-06-01T21:23:36.8812553Z adding 'torch/include/ATen/ops/minimum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.8815491Z adding 'torch/include/ATen/ops/minimum_cpu_dispatch.h' 2025-06-01T21:23:36.8818657Z adding 'torch/include/ATen/ops/minimum_cuda_dispatch.h' 2025-06-01T21:23:36.8821633Z adding 'torch/include/ATen/ops/minimum_meta.h' 2025-06-01T21:23:36.8824868Z adding 'torch/include/ATen/ops/minimum_meta_dispatch.h' 2025-06-01T21:23:36.8827885Z adding 'torch/include/ATen/ops/minimum_native.h' 2025-06-01T21:23:36.8831083Z adding 'torch/include/ATen/ops/minimum_ops.h' 2025-06-01T21:23:36.8834331Z adding 'torch/include/ATen/ops/miopen_batch_norm.h' 2025-06-01T21:23:36.8837706Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward.h' 2025-06-01T21:23:36.8841097Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.8844150Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_cuda_dispatch.h' 2025-06-01T21:23:36.8847176Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_native.h' 2025-06-01T21:23:36.8850568Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_ops.h' 2025-06-01T21:23:36.8853933Z adding 'torch/include/ATen/ops/miopen_batch_norm_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.8856962Z adding 'torch/include/ATen/ops/miopen_batch_norm_cuda_dispatch.h' 2025-06-01T21:23:36.8860013Z adding 'torch/include/ATen/ops/miopen_batch_norm_native.h' 2025-06-01T21:23:36.8863395Z adding 'torch/include/ATen/ops/miopen_batch_norm_ops.h' 2025-06-01T21:23:36.8867178Z adding 'torch/include/ATen/ops/miopen_convolution.h' 2025-06-01T21:23:36.8870694Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu.h' 2025-06-01T21:23:36.8873986Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu_cuda_dispatch.h' 2025-06-01T21:23:36.8876992Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu_native.h' 2025-06-01T21:23:36.8880257Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu_ops.h' 2025-06-01T21:23:36.8883597Z adding 'torch/include/ATen/ops/miopen_convolution_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.8886621Z adding 'torch/include/ATen/ops/miopen_convolution_cuda_dispatch.h' 2025-06-01T21:23:36.8889642Z adding 'torch/include/ATen/ops/miopen_convolution_native.h' 2025-06-01T21:23:36.8892937Z adding 'torch/include/ATen/ops/miopen_convolution_ops.h' 2025-06-01T21:23:36.8896204Z adding 'torch/include/ATen/ops/miopen_convolution_relu.h' 2025-06-01T21:23:36.8899422Z adding 'torch/include/ATen/ops/miopen_convolution_relu_cuda_dispatch.h' 2025-06-01T21:23:36.8902717Z adding 'torch/include/ATen/ops/miopen_convolution_relu_native.h' 2025-06-01T21:23:36.8906066Z adding 'torch/include/ATen/ops/miopen_convolution_relu_ops.h' 2025-06-01T21:23:36.8909758Z adding 'torch/include/ATen/ops/miopen_convolution_transpose.h' 2025-06-01T21:23:36.8913374Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.8916468Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_cuda_dispatch.h' 2025-06-01T21:23:36.8919517Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_native.h' 2025-06-01T21:23:36.8922846Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_ops.h' 2025-06-01T21:23:36.8926925Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution.h' 2025-06-01T21:23:36.8930514Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.8933481Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_cuda_dispatch.h' 2025-06-01T21:23:36.8936685Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_native.h' 2025-06-01T21:23:36.8939966Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_ops.h' 2025-06-01T21:23:36.8943491Z adding 'torch/include/ATen/ops/miopen_rnn.h' 2025-06-01T21:23:36.8947468Z adding 'torch/include/ATen/ops/miopen_rnn_backward.h' 2025-06-01T21:23:36.8950890Z adding 'torch/include/ATen/ops/miopen_rnn_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.8954158Z adding 'torch/include/ATen/ops/miopen_rnn_backward_cuda_dispatch.h' 2025-06-01T21:23:36.8957304Z adding 'torch/include/ATen/ops/miopen_rnn_backward_native.h' 2025-06-01T21:23:36.8961325Z adding 'torch/include/ATen/ops/miopen_rnn_backward_ops.h' 2025-06-01T21:23:36.8964753Z adding 'torch/include/ATen/ops/miopen_rnn_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.8967803Z adding 'torch/include/ATen/ops/miopen_rnn_cuda_dispatch.h' 2025-06-01T21:23:36.8971147Z adding 'torch/include/ATen/ops/miopen_rnn_native.h' 2025-06-01T21:23:36.8974556Z adding 'torch/include/ATen/ops/miopen_rnn_ops.h' 2025-06-01T21:23:36.8977916Z adding 'torch/include/ATen/ops/mish.h' 2025-06-01T21:23:36.8981100Z adding 'torch/include/ATen/ops/mish_backward.h' 2025-06-01T21:23:36.8984504Z adding 'torch/include/ATen/ops/mish_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.8987635Z adding 'torch/include/ATen/ops/mish_backward_cpu_dispatch.h' 2025-06-01T21:23:36.8990677Z adding 'torch/include/ATen/ops/mish_backward_cuda_dispatch.h' 2025-06-01T21:23:36.8993774Z adding 'torch/include/ATen/ops/mish_backward_native.h' 2025-06-01T21:23:36.8996885Z adding 'torch/include/ATen/ops/mish_backward_ops.h' 2025-06-01T21:23:36.9000300Z adding 'torch/include/ATen/ops/mish_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.9003294Z adding 'torch/include/ATen/ops/mish_cpu_dispatch.h' 2025-06-01T21:23:36.9006493Z adding 'torch/include/ATen/ops/mish_cuda_dispatch.h' 2025-06-01T21:23:36.9009637Z adding 'torch/include/ATen/ops/mish_meta.h' 2025-06-01T21:23:36.9012840Z adding 'torch/include/ATen/ops/mish_meta_dispatch.h' 2025-06-01T21:23:36.9015962Z adding 'torch/include/ATen/ops/mish_native.h' 2025-06-01T21:23:36.9019134Z adding 'torch/include/ATen/ops/mish_ops.h' 2025-06-01T21:23:36.9022506Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d.h' 2025-06-01T21:23:36.9025856Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward.h' 2025-06-01T21:23:36.9029329Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.9032394Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_native.h' 2025-06-01T21:23:36.9035552Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_ops.h' 2025-06-01T21:23:36.9038702Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_native.h' 2025-06-01T21:23:36.9041856Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_ops.h' 2025-06-01T21:23:36.9045532Z adding 'torch/include/ATen/ops/mkldnn_convolution.h' 2025-06-01T21:23:36.9049201Z adding 'torch/include/ATen/ops/mkldnn_convolution_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.9052231Z adding 'torch/include/ATen/ops/mkldnn_convolution_native.h' 2025-06-01T21:23:36.9055659Z adding 'torch/include/ATen/ops/mkldnn_convolution_ops.h' 2025-06-01T21:23:36.9058924Z adding 'torch/include/ATen/ops/mkldnn_linear.h' 2025-06-01T21:23:36.9062341Z adding 'torch/include/ATen/ops/mkldnn_linear_backward.h' 2025-06-01T21:23:36.9065894Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.9069077Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input.h' 2025-06-01T21:23:36.9072565Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.9075639Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input_native.h' 2025-06-01T21:23:36.9078912Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input_ops.h' 2025-06-01T21:23:36.9081975Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_native.h' 2025-06-01T21:23:36.9085476Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_ops.h' 2025-06-01T21:23:36.9088872Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights.h' 2025-06-01T21:23:36.9092306Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.9095512Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights_native.h' 2025-06-01T21:23:36.9098769Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights_ops.h' 2025-06-01T21:23:36.9102169Z adding 'torch/include/ATen/ops/mkldnn_linear_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.9105225Z adding 'torch/include/ATen/ops/mkldnn_linear_native.h' 2025-06-01T21:23:36.9108625Z adding 'torch/include/ATen/ops/mkldnn_linear_ops.h' 2025-06-01T21:23:36.9112090Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d.h' 2025-06-01T21:23:36.9115465Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward.h' 2025-06-01T21:23:36.9119014Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.9123258Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward_native.h' 2025-06-01T21:23:36.9126994Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward_ops.h' 2025-06-01T21:23:36.9130964Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.9134282Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_native.h' 2025-06-01T21:23:36.9137597Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_ops.h' 2025-06-01T21:23:36.9141056Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d.h' 2025-06-01T21:23:36.9144574Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward.h' 2025-06-01T21:23:36.9148119Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.9159011Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward_native.h' 2025-06-01T21:23:36.9159538Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward_ops.h' 2025-06-01T21:23:36.9161254Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.9164053Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_native.h' 2025-06-01T21:23:36.9167309Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_ops.h' 2025-06-01T21:23:36.9171223Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight.h' 2025-06-01T21:23:36.9174781Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.9177744Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_native.h' 2025-06-01T21:23:36.9181064Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_ops.h' 2025-06-01T21:23:36.9184958Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight.h' 2025-06-01T21:23:36.9188590Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.9191543Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_native.h' 2025-06-01T21:23:36.9194807Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_ops.h' 2025-06-01T21:23:36.9198199Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer.h' 2025-06-01T21:23:36.9201867Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward.h' 2025-06-01T21:23:36.9205384Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.9208527Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_cpu_dispatch.h' 2025-06-01T21:23:36.9211693Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_native.h' 2025-06-01T21:23:36.9215321Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_ops.h' 2025-06-01T21:23:36.9219068Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.9222078Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_cpu_dispatch.h' 2025-06-01T21:23:36.9225295Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_native.h' 2025-06-01T21:23:36.9228738Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_ops.h' 2025-06-01T21:23:36.9231972Z adding 'torch/include/ATen/ops/mm.h' 2025-06-01T21:23:36.9235256Z adding 'torch/include/ATen/ops/mm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.9238212Z adding 'torch/include/ATen/ops/mm_cpu_dispatch.h' 2025-06-01T21:23:36.9241348Z adding 'torch/include/ATen/ops/mm_cuda_dispatch.h' 2025-06-01T21:23:36.9244377Z adding 'torch/include/ATen/ops/mm_meta.h' 2025-06-01T21:23:36.9247513Z adding 'torch/include/ATen/ops/mm_meta_dispatch.h' 2025-06-01T21:23:36.9250558Z adding 'torch/include/ATen/ops/mm_native.h' 2025-06-01T21:23:36.9253824Z adding 'torch/include/ATen/ops/mm_ops.h' 2025-06-01T21:23:36.9257080Z adding 'torch/include/ATen/ops/mode.h' 2025-06-01T21:23:36.9260413Z adding 'torch/include/ATen/ops/mode_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.9263904Z adding 'torch/include/ATen/ops/mode_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.9266983Z adding 'torch/include/ATen/ops/mode_cpu_dispatch.h' 2025-06-01T21:23:36.9270093Z adding 'torch/include/ATen/ops/mode_cuda_dispatch.h' 2025-06-01T21:23:36.9273354Z adding 'torch/include/ATen/ops/mode_native.h' 2025-06-01T21:23:36.9276660Z adding 'torch/include/ATen/ops/mode_ops.h' 2025-06-01T21:23:36.9279794Z adding 'torch/include/ATen/ops/moveaxis.h' 2025-06-01T21:23:36.9283031Z adding 'torch/include/ATen/ops/moveaxis_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.9285992Z adding 'torch/include/ATen/ops/moveaxis_native.h' 2025-06-01T21:23:36.9289278Z adding 'torch/include/ATen/ops/moveaxis_ops.h' 2025-06-01T21:23:36.9292335Z adding 'torch/include/ATen/ops/movedim.h' 2025-06-01T21:23:36.9295567Z adding 'torch/include/ATen/ops/movedim_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.9298575Z adding 'torch/include/ATen/ops/movedim_native.h' 2025-06-01T21:23:36.9301680Z adding 'torch/include/ATen/ops/movedim_ops.h' 2025-06-01T21:23:36.9305492Z adding 'torch/include/ATen/ops/mps_convolution_backward.h' 2025-06-01T21:23:36.9309132Z adding 'torch/include/ATen/ops/mps_convolution_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.9312299Z adding 'torch/include/ATen/ops/mps_convolution_backward_native.h' 2025-06-01T21:23:36.9315665Z adding 'torch/include/ATen/ops/mps_convolution_backward_ops.h' 2025-06-01T21:23:36.9319481Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward.h' 2025-06-01T21:23:36.9323208Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.9326199Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward_native.h' 2025-06-01T21:23:36.9329527Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward_ops.h' 2025-06-01T21:23:36.9332636Z adding 'torch/include/ATen/ops/mse_loss.h' 2025-06-01T21:23:36.9335832Z adding 'torch/include/ATen/ops/mse_loss_backward.h' 2025-06-01T21:23:36.9339011Z adding 'torch/include/ATen/ops/mse_loss_backward_cpu_dispatch.h' 2025-06-01T21:23:36.9342082Z adding 'torch/include/ATen/ops/mse_loss_backward_cuda_dispatch.h' 2025-06-01T21:23:36.9345149Z adding 'torch/include/ATen/ops/mse_loss_backward_native.h' 2025-06-01T21:23:36.9348366Z adding 'torch/include/ATen/ops/mse_loss_backward_ops.h' 2025-06-01T21:23:36.9351661Z adding 'torch/include/ATen/ops/mse_loss_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.9354612Z adding 'torch/include/ATen/ops/mse_loss_cpu_dispatch.h' 2025-06-01T21:23:36.9357766Z adding 'torch/include/ATen/ops/mse_loss_cuda_dispatch.h' 2025-06-01T21:23:36.9360743Z adding 'torch/include/ATen/ops/mse_loss_meta.h' 2025-06-01T21:23:36.9363871Z adding 'torch/include/ATen/ops/mse_loss_meta_dispatch.h' 2025-06-01T21:23:36.9367283Z adding 'torch/include/ATen/ops/mse_loss_native.h' 2025-06-01T21:23:36.9370044Z adding 'torch/include/ATen/ops/mse_loss_ops.h' 2025-06-01T21:23:36.9373237Z adding 'torch/include/ATen/ops/msort.h' 2025-06-01T21:23:36.9376474Z adding 'torch/include/ATen/ops/msort_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.9379525Z adding 'torch/include/ATen/ops/msort_native.h' 2025-06-01T21:23:36.9382733Z adding 'torch/include/ATen/ops/msort_ops.h' 2025-06-01T21:23:36.9386243Z adding 'torch/include/ATen/ops/mul.h' 2025-06-01T21:23:36.9389620Z adding 'torch/include/ATen/ops/mul_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.9392922Z adding 'torch/include/ATen/ops/mul_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.9395970Z adding 'torch/include/ATen/ops/mul_cpu_dispatch.h' 2025-06-01T21:23:36.9399083Z adding 'torch/include/ATen/ops/mul_cuda_dispatch.h' 2025-06-01T21:23:36.9402278Z adding 'torch/include/ATen/ops/mul_meta.h' 2025-06-01T21:23:36.9405414Z adding 'torch/include/ATen/ops/mul_meta_dispatch.h' 2025-06-01T21:23:36.9408841Z adding 'torch/include/ATen/ops/mul_native.h' 2025-06-01T21:23:36.9412212Z adding 'torch/include/ATen/ops/mul_ops.h' 2025-06-01T21:23:36.9415703Z adding 'torch/include/ATen/ops/multi_margin_loss.h' 2025-06-01T21:23:36.9419130Z adding 'torch/include/ATen/ops/multi_margin_loss_backward.h' 2025-06-01T21:23:36.9422399Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_cpu_dispatch.h' 2025-06-01T21:23:36.9425809Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_cuda_dispatch.h' 2025-06-01T21:23:36.9428938Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_native.h' 2025-06-01T21:23:36.9432354Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_ops.h' 2025-06-01T21:23:36.9435680Z adding 'torch/include/ATen/ops/multi_margin_loss_cpu_dispatch.h' 2025-06-01T21:23:36.9438881Z adding 'torch/include/ATen/ops/multi_margin_loss_cuda_dispatch.h' 2025-06-01T21:23:36.9442072Z adding 'torch/include/ATen/ops/multi_margin_loss_native.h' 2025-06-01T21:23:36.9445405Z adding 'torch/include/ATen/ops/multi_margin_loss_ops.h' 2025-06-01T21:23:36.9448786Z adding 'torch/include/ATen/ops/multilabel_margin_loss.h' 2025-06-01T21:23:36.9451991Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward.h' 2025-06-01T21:23:36.9455439Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_cpu_dispatch.h' 2025-06-01T21:23:36.9458675Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_cuda_dispatch.h' 2025-06-01T21:23:36.9461751Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_native.h' 2025-06-01T21:23:36.9465216Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_ops.h' 2025-06-01T21:23:36.9468530Z adding 'torch/include/ATen/ops/multilabel_margin_loss_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.9471707Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward.h' 2025-06-01T21:23:36.9474923Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_cpu_dispatch.h' 2025-06-01T21:23:36.9478181Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_cuda_dispatch.h' 2025-06-01T21:23:36.9481353Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_native.h' 2025-06-01T21:23:36.9484605Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_ops.h' 2025-06-01T21:23:36.9487798Z adding 'torch/include/ATen/ops/multilabel_margin_loss_native.h' 2025-06-01T21:23:36.9491044Z adding 'torch/include/ATen/ops/multilabel_margin_loss_ops.h' 2025-06-01T21:23:36.9494545Z adding 'torch/include/ATen/ops/multinomial.h' 2025-06-01T21:23:36.9497947Z adding 'torch/include/ATen/ops/multinomial_cpu_dispatch.h' 2025-06-01T21:23:36.9501250Z adding 'torch/include/ATen/ops/multinomial_cuda_dispatch.h' 2025-06-01T21:23:36.9504562Z adding 'torch/include/ATen/ops/multinomial_native.h' 2025-06-01T21:23:36.9507845Z adding 'torch/include/ATen/ops/multinomial_ops.h' 2025-06-01T21:23:36.9511117Z adding 'torch/include/ATen/ops/multiply.h' 2025-06-01T21:23:36.9514821Z adding 'torch/include/ATen/ops/multiply_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.9517850Z adding 'torch/include/ATen/ops/multiply_native.h' 2025-06-01T21:23:36.9521296Z adding 'torch/include/ATen/ops/multiply_ops.h' 2025-06-01T21:23:36.9524576Z adding 'torch/include/ATen/ops/mv.h' 2025-06-01T21:23:36.9527934Z adding 'torch/include/ATen/ops/mv_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.9530850Z adding 'torch/include/ATen/ops/mv_native.h' 2025-06-01T21:23:36.9534161Z adding 'torch/include/ATen/ops/mv_ops.h' 2025-06-01T21:23:36.9537298Z adding 'torch/include/ATen/ops/mvlgamma.h' 2025-06-01T21:23:36.9540670Z adding 'torch/include/ATen/ops/mvlgamma_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.9543763Z adding 'torch/include/ATen/ops/mvlgamma_cpu_dispatch.h' 2025-06-01T21:23:36.9547057Z adding 'torch/include/ATen/ops/mvlgamma_cuda_dispatch.h' 2025-06-01T21:23:36.9550167Z adding 'torch/include/ATen/ops/mvlgamma_native.h' 2025-06-01T21:23:36.9553439Z adding 'torch/include/ATen/ops/mvlgamma_ops.h' 2025-06-01T21:23:36.9556859Z adding 'torch/include/ATen/ops/nan_to_num.h' 2025-06-01T21:23:36.9560086Z adding 'torch/include/ATen/ops/nan_to_num_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.9563307Z adding 'torch/include/ATen/ops/nan_to_num_cpu_dispatch.h' 2025-06-01T21:23:36.9566410Z adding 'torch/include/ATen/ops/nan_to_num_cuda_dispatch.h' 2025-06-01T21:23:36.9569555Z adding 'torch/include/ATen/ops/nan_to_num_native.h' 2025-06-01T21:23:36.9573046Z adding 'torch/include/ATen/ops/nan_to_num_ops.h' 2025-06-01T21:23:36.9576311Z adding 'torch/include/ATen/ops/nanmean.h' 2025-06-01T21:23:36.9579840Z adding 'torch/include/ATen/ops/nanmean_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.9582730Z adding 'torch/include/ATen/ops/nanmean_native.h' 2025-06-01T21:23:36.9586275Z adding 'torch/include/ATen/ops/nanmean_ops.h' 2025-06-01T21:23:36.9589779Z adding 'torch/include/ATen/ops/nanmedian.h' 2025-06-01T21:23:36.9593107Z adding 'torch/include/ATen/ops/nanmedian_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.9596314Z adding 'torch/include/ATen/ops/nanmedian_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.9599328Z adding 'torch/include/ATen/ops/nanmedian_cpu_dispatch.h' 2025-06-01T21:23:36.9602552Z adding 'torch/include/ATen/ops/nanmedian_cuda_dispatch.h' 2025-06-01T21:23:36.9605651Z adding 'torch/include/ATen/ops/nanmedian_native.h' 2025-06-01T21:23:36.9609293Z adding 'torch/include/ATen/ops/nanmedian_ops.h' 2025-06-01T21:23:36.9612766Z adding 'torch/include/ATen/ops/nanquantile.h' 2025-06-01T21:23:36.9616196Z adding 'torch/include/ATen/ops/nanquantile_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.9619424Z adding 'torch/include/ATen/ops/nanquantile_native.h' 2025-06-01T21:23:36.9623479Z adding 'torch/include/ATen/ops/nanquantile_ops.h' 2025-06-01T21:23:36.9627268Z adding 'torch/include/ATen/ops/nansum.h' 2025-06-01T21:23:36.9630501Z adding 'torch/include/ATen/ops/nansum_cpu_dispatch.h' 2025-06-01T21:23:36.9633779Z adding 'torch/include/ATen/ops/nansum_cuda_dispatch.h' 2025-06-01T21:23:36.9636817Z adding 'torch/include/ATen/ops/nansum_native.h' 2025-06-01T21:23:36.9640223Z adding 'torch/include/ATen/ops/nansum_ops.h' 2025-06-01T21:23:36.9643478Z adding 'torch/include/ATen/ops/narrow.h' 2025-06-01T21:23:36.9647292Z adding 'torch/include/ATen/ops/narrow_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.9650656Z adding 'torch/include/ATen/ops/narrow_copy.h' 2025-06-01T21:23:36.9654215Z adding 'torch/include/ATen/ops/narrow_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.9657206Z adding 'torch/include/ATen/ops/narrow_copy_cpu_dispatch.h' 2025-06-01T21:23:36.9660236Z adding 'torch/include/ATen/ops/narrow_copy_native.h' 2025-06-01T21:23:36.9663719Z adding 'torch/include/ATen/ops/narrow_copy_ops.h' 2025-06-01T21:23:36.9666863Z adding 'torch/include/ATen/ops/narrow_native.h' 2025-06-01T21:23:36.9670056Z adding 'torch/include/ATen/ops/narrow_ops.h' 2025-06-01T21:23:36.9673796Z adding 'torch/include/ATen/ops/native_batch_norm.h' 2025-06-01T21:23:36.9676762Z adding 'torch/include/ATen/ops/native_batch_norm_backward.h' 2025-06-01T21:23:36.9680362Z adding 'torch/include/ATen/ops/native_batch_norm_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.9683449Z adding 'torch/include/ATen/ops/native_batch_norm_backward_cpu_dispatch.h' 2025-06-01T21:23:36.9686562Z adding 'torch/include/ATen/ops/native_batch_norm_backward_cuda_dispatch.h' 2025-06-01T21:23:36.9689741Z adding 'torch/include/ATen/ops/native_batch_norm_backward_native.h' 2025-06-01T21:23:36.9693097Z adding 'torch/include/ATen/ops/native_batch_norm_backward_ops.h' 2025-06-01T21:23:36.9696364Z adding 'torch/include/ATen/ops/native_batch_norm_cpu_dispatch.h' 2025-06-01T21:23:36.9699539Z adding 'torch/include/ATen/ops/native_batch_norm_cuda_dispatch.h' 2025-06-01T21:23:36.9702666Z adding 'torch/include/ATen/ops/native_batch_norm_native.h' 2025-06-01T21:23:36.9706175Z adding 'torch/include/ATen/ops/native_batch_norm_ops.h' 2025-06-01T21:23:36.9710028Z adding 'torch/include/ATen/ops/native_channel_shuffle.h' 2025-06-01T21:23:36.9712905Z adding 'torch/include/ATen/ops/native_channel_shuffle_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.9715866Z adding 'torch/include/ATen/ops/native_channel_shuffle_cpu_dispatch.h' 2025-06-01T21:23:36.9718814Z adding 'torch/include/ATen/ops/native_channel_shuffle_native.h' 2025-06-01T21:23:36.9721924Z adding 'torch/include/ATen/ops/native_channel_shuffle_ops.h' 2025-06-01T21:23:36.9725324Z adding 'torch/include/ATen/ops/native_dropout.h' 2025-06-01T21:23:36.9728504Z adding 'torch/include/ATen/ops/native_dropout_backward.h' 2025-06-01T21:23:36.9731781Z adding 'torch/include/ATen/ops/native_dropout_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.9734750Z adding 'torch/include/ATen/ops/native_dropout_backward_cpu_dispatch.h' 2025-06-01T21:23:36.9737813Z adding 'torch/include/ATen/ops/native_dropout_backward_cuda_dispatch.h' 2025-06-01T21:23:36.9740786Z adding 'torch/include/ATen/ops/native_dropout_backward_native.h' 2025-06-01T21:23:36.9744067Z adding 'torch/include/ATen/ops/native_dropout_backward_ops.h' 2025-06-01T21:23:36.9747328Z adding 'torch/include/ATen/ops/native_dropout_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.9750339Z adding 'torch/include/ATen/ops/native_dropout_cpu_dispatch.h' 2025-06-01T21:23:36.9753403Z adding 'torch/include/ATen/ops/native_dropout_cuda_dispatch.h' 2025-06-01T21:23:36.9756390Z adding 'torch/include/ATen/ops/native_dropout_native.h' 2025-06-01T21:23:36.9759629Z adding 'torch/include/ATen/ops/native_dropout_ops.h' 2025-06-01T21:23:36.9763230Z adding 'torch/include/ATen/ops/native_group_norm.h' 2025-06-01T21:23:36.9767231Z adding 'torch/include/ATen/ops/native_group_norm_backward.h' 2025-06-01T21:23:36.9771097Z adding 'torch/include/ATen/ops/native_group_norm_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.9773979Z adding 'torch/include/ATen/ops/native_group_norm_backward_cpu_dispatch.h' 2025-06-01T21:23:36.9777269Z adding 'torch/include/ATen/ops/native_group_norm_backward_cuda_dispatch.h' 2025-06-01T21:23:36.9780346Z adding 'torch/include/ATen/ops/native_group_norm_backward_native.h' 2025-06-01T21:23:36.9783768Z adding 'torch/include/ATen/ops/native_group_norm_backward_ops.h' 2025-06-01T21:23:36.9787271Z adding 'torch/include/ATen/ops/native_group_norm_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.9790328Z adding 'torch/include/ATen/ops/native_group_norm_cpu_dispatch.h' 2025-06-01T21:23:36.9793447Z adding 'torch/include/ATen/ops/native_group_norm_cuda_dispatch.h' 2025-06-01T21:23:36.9796510Z adding 'torch/include/ATen/ops/native_group_norm_native.h' 2025-06-01T21:23:36.9799819Z adding 'torch/include/ATen/ops/native_group_norm_ops.h' 2025-06-01T21:23:36.9803471Z adding 'torch/include/ATen/ops/native_layer_norm.h' 2025-06-01T21:23:36.9807359Z adding 'torch/include/ATen/ops/native_layer_norm_backward.h' 2025-06-01T21:23:36.9811064Z adding 'torch/include/ATen/ops/native_layer_norm_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.9814098Z adding 'torch/include/ATen/ops/native_layer_norm_backward_cpu_dispatch.h' 2025-06-01T21:23:36.9817224Z adding 'torch/include/ATen/ops/native_layer_norm_backward_cuda_dispatch.h' 2025-06-01T21:23:36.9820329Z adding 'torch/include/ATen/ops/native_layer_norm_backward_native.h' 2025-06-01T21:23:36.9823736Z adding 'torch/include/ATen/ops/native_layer_norm_backward_ops.h' 2025-06-01T21:23:36.9827205Z adding 'torch/include/ATen/ops/native_layer_norm_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.9830241Z adding 'torch/include/ATen/ops/native_layer_norm_cpu_dispatch.h' 2025-06-01T21:23:36.9833300Z adding 'torch/include/ATen/ops/native_layer_norm_cuda_dispatch.h' 2025-06-01T21:23:36.9836329Z adding 'torch/include/ATen/ops/native_layer_norm_native.h' 2025-06-01T21:23:36.9839631Z adding 'torch/include/ATen/ops/native_layer_norm_ops.h' 2025-06-01T21:23:36.9842898Z adding 'torch/include/ATen/ops/native_norm.h' 2025-06-01T21:23:36.9846704Z adding 'torch/include/ATen/ops/native_norm_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.9849188Z adding 'torch/include/ATen/ops/native_norm_native.h' 2025-06-01T21:23:36.9852533Z adding 'torch/include/ATen/ops/native_norm_ops.h' 2025-06-01T21:23:36.9855747Z adding 'torch/include/ATen/ops/ne.h' 2025-06-01T21:23:36.9859058Z adding 'torch/include/ATen/ops/ne_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.9862057Z adding 'torch/include/ATen/ops/ne_cpu_dispatch.h' 2025-06-01T21:23:36.9865361Z adding 'torch/include/ATen/ops/ne_cuda_dispatch.h' 2025-06-01T21:23:36.9868534Z adding 'torch/include/ATen/ops/ne_meta.h' 2025-06-01T21:23:36.9871847Z adding 'torch/include/ATen/ops/ne_meta_dispatch.h' 2025-06-01T21:23:36.9874909Z adding 'torch/include/ATen/ops/ne_native.h' 2025-06-01T21:23:36.9879026Z adding 'torch/include/ATen/ops/ne_ops.h' 2025-06-01T21:23:36.9882273Z adding 'torch/include/ATen/ops/neg.h' 2025-06-01T21:23:36.9885801Z adding 'torch/include/ATen/ops/neg_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.9888829Z adding 'torch/include/ATen/ops/neg_cpu_dispatch.h' 2025-06-01T21:23:36.9892016Z adding 'torch/include/ATen/ops/neg_cuda_dispatch.h' 2025-06-01T21:23:36.9895141Z adding 'torch/include/ATen/ops/neg_meta.h' 2025-06-01T21:23:36.9898242Z adding 'torch/include/ATen/ops/neg_meta_dispatch.h' 2025-06-01T21:23:36.9901430Z adding 'torch/include/ATen/ops/neg_native.h' 2025-06-01T21:23:36.9904774Z adding 'torch/include/ATen/ops/neg_ops.h' 2025-06-01T21:23:36.9908354Z adding 'torch/include/ATen/ops/negative.h' 2025-06-01T21:23:36.9912055Z adding 'torch/include/ATen/ops/negative_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.9915317Z adding 'torch/include/ATen/ops/negative_native.h' 2025-06-01T21:23:36.9918771Z adding 'torch/include/ATen/ops/negative_ops.h' 2025-06-01T21:23:36.9922057Z adding 'torch/include/ATen/ops/nested_to_padded_tensor.h' 2025-06-01T21:23:36.9925804Z adding 'torch/include/ATen/ops/nested_to_padded_tensor_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:36.9929117Z adding 'torch/include/ATen/ops/nested_to_padded_tensor_native.h' 2025-06-01T21:23:36.9932539Z adding 'torch/include/ATen/ops/nested_to_padded_tensor_ops.h' 2025-06-01T21:23:36.9936247Z adding 'torch/include/ATen/ops/new_empty.h' 2025-06-01T21:23:36.9940240Z adding 'torch/include/ATen/ops/new_empty_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.9943690Z adding 'torch/include/ATen/ops/new_empty_native.h' 2025-06-01T21:23:36.9947516Z adding 'torch/include/ATen/ops/new_empty_ops.h' 2025-06-01T21:23:36.9951562Z adding 'torch/include/ATen/ops/new_empty_strided.h' 2025-06-01T21:23:36.9955533Z adding 'torch/include/ATen/ops/new_empty_strided_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.9959327Z adding 'torch/include/ATen/ops/new_empty_strided_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:36.9962708Z adding 'torch/include/ATen/ops/new_empty_strided_native.h' 2025-06-01T21:23:36.9966421Z adding 'torch/include/ATen/ops/new_empty_strided_ops.h' 2025-06-01T21:23:36.9970387Z adding 'torch/include/ATen/ops/new_full.h' 2025-06-01T21:23:36.9974392Z adding 'torch/include/ATen/ops/new_full_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.9977466Z adding 'torch/include/ATen/ops/new_full_native.h' 2025-06-01T21:23:36.9980930Z adding 'torch/include/ATen/ops/new_full_ops.h' 2025-06-01T21:23:36.9984467Z adding 'torch/include/ATen/ops/new_ones.h' 2025-06-01T21:23:36.9988063Z adding 'torch/include/ATen/ops/new_ones_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:36.9991036Z adding 'torch/include/ATen/ops/new_ones_native.h' 2025-06-01T21:23:36.9994535Z adding 'torch/include/ATen/ops/new_ones_ops.h' 2025-06-01T21:23:36.9998116Z adding 'torch/include/ATen/ops/new_zeros.h' 2025-06-01T21:23:37.0008212Z adding 'torch/include/ATen/ops/new_zeros_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.0008779Z adding 'torch/include/ATen/ops/new_zeros_native.h' 2025-06-01T21:23:37.0009740Z adding 'torch/include/ATen/ops/new_zeros_ops.h' 2025-06-01T21:23:37.0011088Z adding 'torch/include/ATen/ops/nextafter.h' 2025-06-01T21:23:37.0015549Z adding 'torch/include/ATen/ops/nextafter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.0018635Z adding 'torch/include/ATen/ops/nextafter_cpu_dispatch.h' 2025-06-01T21:23:37.0021758Z adding 'torch/include/ATen/ops/nextafter_cuda_dispatch.h' 2025-06-01T21:23:37.0025027Z adding 'torch/include/ATen/ops/nextafter_meta.h' 2025-06-01T21:23:37.0028191Z adding 'torch/include/ATen/ops/nextafter_meta_dispatch.h' 2025-06-01T21:23:37.0031173Z adding 'torch/include/ATen/ops/nextafter_native.h' 2025-06-01T21:23:37.0034402Z adding 'torch/include/ATen/ops/nextafter_ops.h' 2025-06-01T21:23:37.0037817Z adding 'torch/include/ATen/ops/nll_loss.h' 2025-06-01T21:23:37.0041350Z adding 'torch/include/ATen/ops/nll_loss2d.h' 2025-06-01T21:23:37.0044998Z adding 'torch/include/ATen/ops/nll_loss2d_backward.h' 2025-06-01T21:23:37.0048428Z adding 'torch/include/ATen/ops/nll_loss2d_backward_cpu_dispatch.h' 2025-06-01T21:23:37.0051631Z adding 'torch/include/ATen/ops/nll_loss2d_backward_cuda_dispatch.h' 2025-06-01T21:23:37.0054684Z adding 'torch/include/ATen/ops/nll_loss2d_backward_native.h' 2025-06-01T21:23:37.0058126Z adding 'torch/include/ATen/ops/nll_loss2d_backward_ops.h' 2025-06-01T21:23:37.0061823Z adding 'torch/include/ATen/ops/nll_loss2d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.0069586Z adding 'torch/include/ATen/ops/nll_loss2d_forward.h' 2025-06-01T21:23:37.0070031Z adding 'torch/include/ATen/ops/nll_loss2d_forward_cpu_dispatch.h' 2025-06-01T21:23:37.0072838Z adding 'torch/include/ATen/ops/nll_loss2d_forward_cuda_dispatch.h' 2025-06-01T21:23:37.0075930Z adding 'torch/include/ATen/ops/nll_loss2d_forward_native.h' 2025-06-01T21:23:37.0079228Z adding 'torch/include/ATen/ops/nll_loss2d_forward_ops.h' 2025-06-01T21:23:37.0082370Z adding 'torch/include/ATen/ops/nll_loss2d_native.h' 2025-06-01T21:23:37.0085641Z adding 'torch/include/ATen/ops/nll_loss2d_ops.h' 2025-06-01T21:23:37.0089200Z adding 'torch/include/ATen/ops/nll_loss_backward.h' 2025-06-01T21:23:37.0092767Z adding 'torch/include/ATen/ops/nll_loss_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.0095791Z adding 'torch/include/ATen/ops/nll_loss_backward_cpu_dispatch.h' 2025-06-01T21:23:37.0099000Z adding 'torch/include/ATen/ops/nll_loss_backward_cuda_dispatch.h' 2025-06-01T21:23:37.0102054Z adding 'torch/include/ATen/ops/nll_loss_backward_meta.h' 2025-06-01T21:23:37.0105418Z adding 'torch/include/ATen/ops/nll_loss_backward_meta_dispatch.h' 2025-06-01T21:23:37.0108507Z adding 'torch/include/ATen/ops/nll_loss_backward_native.h' 2025-06-01T21:23:37.0111956Z adding 'torch/include/ATen/ops/nll_loss_backward_ops.h' 2025-06-01T21:23:37.0115299Z adding 'torch/include/ATen/ops/nll_loss_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.0118671Z adding 'torch/include/ATen/ops/nll_loss_forward.h' 2025-06-01T21:23:37.0122287Z adding 'torch/include/ATen/ops/nll_loss_forward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.0125231Z adding 'torch/include/ATen/ops/nll_loss_forward_cpu_dispatch.h' 2025-06-01T21:23:37.0128438Z adding 'torch/include/ATen/ops/nll_loss_forward_cuda_dispatch.h' 2025-06-01T21:23:37.0131516Z adding 'torch/include/ATen/ops/nll_loss_forward_meta.h' 2025-06-01T21:23:37.0134718Z adding 'torch/include/ATen/ops/nll_loss_forward_meta_dispatch.h' 2025-06-01T21:23:37.0137752Z adding 'torch/include/ATen/ops/nll_loss_forward_native.h' 2025-06-01T21:23:37.0141020Z adding 'torch/include/ATen/ops/nll_loss_forward_ops.h' 2025-06-01T21:23:37.0144213Z adding 'torch/include/ATen/ops/nll_loss_native.h' 2025-06-01T21:23:37.0147445Z adding 'torch/include/ATen/ops/nll_loss_nd.h' 2025-06-01T21:23:37.0151118Z adding 'torch/include/ATen/ops/nll_loss_nd_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.0154053Z adding 'torch/include/ATen/ops/nll_loss_nd_native.h' 2025-06-01T21:23:37.0157213Z adding 'torch/include/ATen/ops/nll_loss_nd_ops.h' 2025-06-01T21:23:37.0161019Z adding 'torch/include/ATen/ops/nll_loss_ops.h' 2025-06-01T21:23:37.0163547Z adding 'torch/include/ATen/ops/nonzero.h' 2025-06-01T21:23:37.0166660Z adding 'torch/include/ATen/ops/nonzero_cpu_dispatch.h' 2025-06-01T21:23:37.0169731Z adding 'torch/include/ATen/ops/nonzero_cuda_dispatch.h' 2025-06-01T21:23:37.0172706Z adding 'torch/include/ATen/ops/nonzero_native.h' 2025-06-01T21:23:37.0175724Z adding 'torch/include/ATen/ops/nonzero_numpy.h' 2025-06-01T21:23:37.0178946Z adding 'torch/include/ATen/ops/nonzero_numpy_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.0181790Z adding 'torch/include/ATen/ops/nonzero_numpy_native.h' 2025-06-01T21:23:37.0185021Z adding 'torch/include/ATen/ops/nonzero_numpy_ops.h' 2025-06-01T21:23:37.0188216Z adding 'torch/include/ATen/ops/nonzero_ops.h' 2025-06-01T21:23:37.0191534Z adding 'torch/include/ATen/ops/nonzero_static.h' 2025-06-01T21:23:37.0194789Z adding 'torch/include/ATen/ops/nonzero_static_cpu_dispatch.h' 2025-06-01T21:23:37.0197961Z adding 'torch/include/ATen/ops/nonzero_static_cuda_dispatch.h' 2025-06-01T21:23:37.0200969Z adding 'torch/include/ATen/ops/nonzero_static_native.h' 2025-06-01T21:23:37.0204207Z adding 'torch/include/ATen/ops/nonzero_static_ops.h' 2025-06-01T21:23:37.0207724Z adding 'torch/include/ATen/ops/norm.h' 2025-06-01T21:23:37.0215322Z adding 'torch/include/ATen/ops/norm_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.0215952Z adding 'torch/include/ATen/ops/norm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.0218112Z adding 'torch/include/ATen/ops/norm_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.0258048Z adding 'torch/include/ATen/ops/norm_cpu_dispatch.h' 2025-06-01T21:23:37.0258447Z adding 'torch/include/ATen/ops/norm_cuda_dispatch.h' 2025-06-01T21:23:37.0258804Z adding 'torch/include/ATen/ops/norm_except_dim.h' 2025-06-01T21:23:37.0259292Z adding 'torch/include/ATen/ops/norm_except_dim_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.0259818Z adding 'torch/include/ATen/ops/norm_except_dim_native.h' 2025-06-01T21:23:37.0260204Z adding 'torch/include/ATen/ops/norm_except_dim_ops.h' 2025-06-01T21:23:37.0260537Z adding 'torch/include/ATen/ops/norm_meta.h' 2025-06-01T21:23:37.0260874Z adding 'torch/include/ATen/ops/norm_meta_dispatch.h' 2025-06-01T21:23:37.0261209Z adding 'torch/include/ATen/ops/norm_native.h' 2025-06-01T21:23:37.0261518Z adding 'torch/include/ATen/ops/norm_ops.h' 2025-06-01T21:23:37.0261806Z adding 'torch/include/ATen/ops/normal.h' 2025-06-01T21:23:37.0264278Z adding 'torch/include/ATen/ops/normal_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.0266365Z adding 'torch/include/ATen/ops/normal_cpu_dispatch.h' 2025-06-01T21:23:37.0269827Z adding 'torch/include/ATen/ops/normal_cuda_dispatch.h' 2025-06-01T21:23:37.0272971Z adding 'torch/include/ATen/ops/normal_meta_dispatch.h' 2025-06-01T21:23:37.0276353Z adding 'torch/include/ATen/ops/normal_native.h' 2025-06-01T21:23:37.0280568Z adding 'torch/include/ATen/ops/normal_ops.h' 2025-06-01T21:23:37.0283682Z adding 'torch/include/ATen/ops/not_equal.h' 2025-06-01T21:23:37.0287192Z adding 'torch/include/ATen/ops/not_equal_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.0290116Z adding 'torch/include/ATen/ops/not_equal_native.h' 2025-06-01T21:23:37.0293547Z adding 'torch/include/ATen/ops/not_equal_ops.h' 2025-06-01T21:23:37.0297010Z adding 'torch/include/ATen/ops/nuclear_norm.h' 2025-06-01T21:23:37.0300302Z adding 'torch/include/ATen/ops/nuclear_norm_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.0303199Z adding 'torch/include/ATen/ops/nuclear_norm_native.h' 2025-06-01T21:23:37.0306630Z adding 'torch/include/ATen/ops/nuclear_norm_ops.h' 2025-06-01T21:23:37.0309627Z adding 'torch/include/ATen/ops/numpy_T.h' 2025-06-01T21:23:37.0312955Z adding 'torch/include/ATen/ops/numpy_T_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.0315832Z adding 'torch/include/ATen/ops/numpy_T_native.h' 2025-06-01T21:23:37.0319492Z adding 'torch/include/ATen/ops/numpy_T_ops.h' 2025-06-01T21:23:37.0321998Z adding 'torch/include/ATen/ops/one_hot.h' 2025-06-01T21:23:37.0325183Z adding 'torch/include/ATen/ops/one_hot_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.0328039Z adding 'torch/include/ATen/ops/one_hot_native.h' 2025-06-01T21:23:37.0331148Z adding 'torch/include/ATen/ops/one_hot_ops.h' 2025-06-01T21:23:37.0334797Z adding 'torch/include/ATen/ops/ones.h' 2025-06-01T21:23:37.0338332Z adding 'torch/include/ATen/ops/ones_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.0341539Z adding 'torch/include/ATen/ops/ones_like.h' 2025-06-01T21:23:37.0345201Z adding 'torch/include/ATen/ops/ones_like_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.0348228Z adding 'torch/include/ATen/ops/ones_like_native.h' 2025-06-01T21:23:37.0351490Z adding 'torch/include/ATen/ops/ones_like_ops.h' 2025-06-01T21:23:37.0354612Z adding 'torch/include/ATen/ops/ones_native.h' 2025-06-01T21:23:37.0358019Z adding 'torch/include/ATen/ops/ones_ops.h' 2025-06-01T21:23:37.0361521Z adding 'torch/include/ATen/ops/or.h' 2025-06-01T21:23:37.0364780Z adding 'torch/include/ATen/ops/or_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.0367668Z adding 'torch/include/ATen/ops/or_native.h' 2025-06-01T21:23:37.0370916Z adding 'torch/include/ATen/ops/or_ops.h' 2025-06-01T21:23:37.0374038Z adding 'torch/include/ATen/ops/orgqr.h' 2025-06-01T21:23:37.0377246Z adding 'torch/include/ATen/ops/orgqr_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.0380146Z adding 'torch/include/ATen/ops/orgqr_native.h' 2025-06-01T21:23:37.0383283Z adding 'torch/include/ATen/ops/orgqr_ops.h' 2025-06-01T21:23:37.0386600Z adding 'torch/include/ATen/ops/ormqr.h' 2025-06-01T21:23:37.0390083Z adding 'torch/include/ATen/ops/ormqr_cpu_dispatch.h' 2025-06-01T21:23:37.0393269Z adding 'torch/include/ATen/ops/ormqr_cuda_dispatch.h' 2025-06-01T21:23:37.0396374Z adding 'torch/include/ATen/ops/ormqr_native.h' 2025-06-01T21:23:37.0399644Z adding 'torch/include/ATen/ops/ormqr_ops.h' 2025-06-01T21:23:37.0402790Z adding 'torch/include/ATen/ops/outer.h' 2025-06-01T21:23:37.0406025Z adding 'torch/include/ATen/ops/outer_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.0408900Z adding 'torch/include/ATen/ops/outer_native.h' 2025-06-01T21:23:37.0412090Z adding 'torch/include/ATen/ops/outer_ops.h' 2025-06-01T21:23:37.0415081Z adding 'torch/include/ATen/ops/output_nr.h' 2025-06-01T21:23:37.0418310Z adding 'torch/include/ATen/ops/output_nr_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.0421172Z adding 'torch/include/ATen/ops/output_nr_native.h' 2025-06-01T21:23:37.0424359Z adding 'torch/include/ATen/ops/output_nr_ops.h' 2025-06-01T21:23:37.0427522Z adding 'torch/include/ATen/ops/pad.h' 2025-06-01T21:23:37.0430753Z adding 'torch/include/ATen/ops/pad_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.0433686Z adding 'torch/include/ATen/ops/pad_native.h' 2025-06-01T21:23:37.0436890Z adding 'torch/include/ATen/ops/pad_ops.h' 2025-06-01T21:23:37.0439909Z adding 'torch/include/ATen/ops/pad_sequence.h' 2025-06-01T21:23:37.0443159Z adding 'torch/include/ATen/ops/pad_sequence_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.0446061Z adding 'torch/include/ATen/ops/pad_sequence_native.h' 2025-06-01T21:23:37.0449283Z adding 'torch/include/ATen/ops/pad_sequence_ops.h' 2025-06-01T21:23:37.0452273Z adding 'torch/include/ATen/ops/pairwise_distance.h' 2025-06-01T21:23:37.0455528Z adding 'torch/include/ATen/ops/pairwise_distance_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.0458482Z adding 'torch/include/ATen/ops/pairwise_distance_native.h' 2025-06-01T21:23:37.0461627Z adding 'torch/include/ATen/ops/pairwise_distance_ops.h' 2025-06-01T21:23:37.0464762Z adding 'torch/include/ATen/ops/pdist.h' 2025-06-01T21:23:37.0467987Z adding 'torch/include/ATen/ops/pdist_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.0470874Z adding 'torch/include/ATen/ops/pdist_native.h' 2025-06-01T21:23:37.0473942Z adding 'torch/include/ATen/ops/pdist_ops.h' 2025-06-01T21:23:37.0477518Z adding 'torch/include/ATen/ops/permute.h' 2025-06-01T21:23:37.0480164Z adding 'torch/include/ATen/ops/permute_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.0483098Z adding 'torch/include/ATen/ops/permute_copy.h' 2025-06-01T21:23:37.0486298Z adding 'torch/include/ATen/ops/permute_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.0489455Z adding 'torch/include/ATen/ops/permute_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.0492248Z adding 'torch/include/ATen/ops/permute_copy_native.h' 2025-06-01T21:23:37.0495435Z adding 'torch/include/ATen/ops/permute_copy_ops.h' 2025-06-01T21:23:37.0498450Z adding 'torch/include/ATen/ops/permute_native.h' 2025-06-01T21:23:37.0501747Z adding 'torch/include/ATen/ops/permute_ops.h' 2025-06-01T21:23:37.0505924Z adding 'torch/include/ATen/ops/pin_memory.h' 2025-06-01T21:23:37.0508326Z adding 'torch/include/ATen/ops/pin_memory_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.0511781Z adding 'torch/include/ATen/ops/pin_memory_native.h' 2025-06-01T21:23:37.0514480Z adding 'torch/include/ATen/ops/pin_memory_ops.h' 2025-06-01T21:23:37.0517687Z adding 'torch/include/ATen/ops/pinverse.h' 2025-06-01T21:23:37.0520936Z adding 'torch/include/ATen/ops/pinverse_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.0524018Z adding 'torch/include/ATen/ops/pinverse_native.h' 2025-06-01T21:23:37.0527148Z adding 'torch/include/ATen/ops/pinverse_ops.h' 2025-06-01T21:23:37.0530440Z adding 'torch/include/ATen/ops/pixel_shuffle.h' 2025-06-01T21:23:37.0534644Z adding 'torch/include/ATen/ops/pixel_shuffle_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.0537050Z adding 'torch/include/ATen/ops/pixel_shuffle_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.0540617Z adding 'torch/include/ATen/ops/pixel_shuffle_cpu_dispatch.h' 2025-06-01T21:23:37.0543074Z adding 'torch/include/ATen/ops/pixel_shuffle_native.h' 2025-06-01T21:23:37.0546523Z adding 'torch/include/ATen/ops/pixel_shuffle_ops.h' 2025-06-01T21:23:37.0549716Z adding 'torch/include/ATen/ops/pixel_unshuffle.h' 2025-06-01T21:23:37.0553179Z adding 'torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.0556329Z adding 'torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.0559927Z adding 'torch/include/ATen/ops/pixel_unshuffle_cpu_dispatch.h' 2025-06-01T21:23:37.0563485Z adding 'torch/include/ATen/ops/pixel_unshuffle_native.h' 2025-06-01T21:23:37.0566268Z adding 'torch/include/ATen/ops/pixel_unshuffle_ops.h' 2025-06-01T21:23:37.0569516Z adding 'torch/include/ATen/ops/poisson.h' 2025-06-01T21:23:37.0572790Z adding 'torch/include/ATen/ops/poisson_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.0575967Z adding 'torch/include/ATen/ops/poisson_cpu_dispatch.h' 2025-06-01T21:23:37.0579046Z adding 'torch/include/ATen/ops/poisson_cuda_dispatch.h' 2025-06-01T21:23:37.0582312Z adding 'torch/include/ATen/ops/poisson_native.h' 2025-06-01T21:23:37.0586355Z adding 'torch/include/ATen/ops/poisson_nll_loss.h' 2025-06-01T21:23:37.0588747Z adding 'torch/include/ATen/ops/poisson_nll_loss_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.0592134Z adding 'torch/include/ATen/ops/poisson_nll_loss_native.h' 2025-06-01T21:23:37.0594868Z adding 'torch/include/ATen/ops/poisson_nll_loss_ops.h' 2025-06-01T21:23:37.0598245Z adding 'torch/include/ATen/ops/poisson_ops.h' 2025-06-01T21:23:37.0601320Z adding 'torch/include/ATen/ops/polar.h' 2025-06-01T21:23:37.0604682Z adding 'torch/include/ATen/ops/polar_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.0607684Z adding 'torch/include/ATen/ops/polar_cpu_dispatch.h' 2025-06-01T21:23:37.0610918Z adding 'torch/include/ATen/ops/polar_cuda_dispatch.h' 2025-06-01T21:23:37.0614882Z adding 'torch/include/ATen/ops/polar_native.h' 2025-06-01T21:23:37.0617201Z adding 'torch/include/ATen/ops/polar_ops.h' 2025-06-01T21:23:37.0620662Z adding 'torch/include/ATen/ops/polygamma.h' 2025-06-01T21:23:37.0623748Z adding 'torch/include/ATen/ops/polygamma_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.0629915Z adding 'torch/include/ATen/ops/polygamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.0630415Z adding 'torch/include/ATen/ops/polygamma_cpu_dispatch.h' 2025-06-01T21:23:37.0634154Z adding 'torch/include/ATen/ops/polygamma_cuda_dispatch.h' 2025-06-01T21:23:37.0656191Z adding 'torch/include/ATen/ops/polygamma_meta.h' 2025-06-01T21:23:37.0656370Z adding 'torch/include/ATen/ops/polygamma_meta_dispatch.h' 2025-06-01T21:23:37.0656502Z adding 'torch/include/ATen/ops/polygamma_native.h' 2025-06-01T21:23:37.0656631Z adding 'torch/include/ATen/ops/polygamma_ops.h' 2025-06-01T21:23:37.0656735Z adding 'torch/include/ATen/ops/positive.h' 2025-06-01T21:23:37.0656978Z adding 'torch/include/ATen/ops/positive_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.0658425Z adding 'torch/include/ATen/ops/positive_native.h' 2025-06-01T21:23:37.0662232Z adding 'torch/include/ATen/ops/positive_ops.h' 2025-06-01T21:23:37.0665050Z adding 'torch/include/ATen/ops/pow.h' 2025-06-01T21:23:37.0668592Z adding 'torch/include/ATen/ops/pow_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.0671603Z adding 'torch/include/ATen/ops/pow_cpu_dispatch.h' 2025-06-01T21:23:37.0674966Z adding 'torch/include/ATen/ops/pow_cuda_dispatch.h' 2025-06-01T21:23:37.0678022Z adding 'torch/include/ATen/ops/pow_meta.h' 2025-06-01T21:23:37.0681446Z adding 'torch/include/ATen/ops/pow_meta_dispatch.h' 2025-06-01T21:23:37.0684576Z adding 'torch/include/ATen/ops/pow_native.h' 2025-06-01T21:23:37.0688070Z adding 'torch/include/ATen/ops/pow_ops.h' 2025-06-01T21:23:37.0691399Z adding 'torch/include/ATen/ops/prelu.h' 2025-06-01T21:23:37.0694620Z adding 'torch/include/ATen/ops/prelu_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.0697508Z adding 'torch/include/ATen/ops/prelu_native.h' 2025-06-01T21:23:37.0700585Z adding 'torch/include/ATen/ops/prelu_ops.h' 2025-06-01T21:23:37.0703946Z adding 'torch/include/ATen/ops/prod.h' 2025-06-01T21:23:37.0707400Z adding 'torch/include/ATen/ops/prod_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.0710585Z adding 'torch/include/ATen/ops/prod_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.0713644Z adding 'torch/include/ATen/ops/prod_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.0716684Z adding 'torch/include/ATen/ops/prod_cpu_dispatch.h' 2025-06-01T21:23:37.0719818Z adding 'torch/include/ATen/ops/prod_cuda_dispatch.h' 2025-06-01T21:23:37.0722797Z adding 'torch/include/ATen/ops/prod_meta.h' 2025-06-01T21:23:37.0725915Z adding 'torch/include/ATen/ops/prod_meta_dispatch.h' 2025-06-01T21:23:37.0728982Z adding 'torch/include/ATen/ops/prod_native.h' 2025-06-01T21:23:37.0732419Z adding 'torch/include/ATen/ops/prod_ops.h' 2025-06-01T21:23:37.0735621Z adding 'torch/include/ATen/ops/promote_types.h' 2025-06-01T21:23:37.0739084Z adding 'torch/include/ATen/ops/promote_types_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.0741834Z adding 'torch/include/ATen/ops/promote_types_native.h' 2025-06-01T21:23:37.0745072Z adding 'torch/include/ATen/ops/promote_types_ops.h' 2025-06-01T21:23:37.0748122Z adding 'torch/include/ATen/ops/put.h' 2025-06-01T21:23:37.0751350Z adding 'torch/include/ATen/ops/put_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.0754341Z adding 'torch/include/ATen/ops/put_cpu_dispatch.h' 2025-06-01T21:23:37.0757423Z adding 'torch/include/ATen/ops/put_cuda_dispatch.h' 2025-06-01T21:23:37.0760907Z adding 'torch/include/ATen/ops/put_meta_dispatch.h' 2025-06-01T21:23:37.0763929Z adding 'torch/include/ATen/ops/put_native.h' 2025-06-01T21:23:37.0767147Z adding 'torch/include/ATen/ops/put_ops.h' 2025-06-01T21:23:37.0770284Z adding 'torch/include/ATen/ops/q_per_channel_axis.h' 2025-06-01T21:23:37.0773257Z adding 'torch/include/ATen/ops/q_per_channel_axis_native.h' 2025-06-01T21:23:37.0776309Z adding 'torch/include/ATen/ops/q_per_channel_axis_ops.h' 2025-06-01T21:23:37.0779422Z adding 'torch/include/ATen/ops/q_per_channel_scales.h' 2025-06-01T21:23:37.0783239Z adding 'torch/include/ATen/ops/q_per_channel_scales_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.0785797Z adding 'torch/include/ATen/ops/q_per_channel_scales_native.h' 2025-06-01T21:23:37.0788959Z adding 'torch/include/ATen/ops/q_per_channel_scales_ops.h' 2025-06-01T21:23:37.0792341Z adding 'torch/include/ATen/ops/q_per_channel_zero_points.h' 2025-06-01T21:23:37.0795325Z adding 'torch/include/ATen/ops/q_per_channel_zero_points_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.0798183Z adding 'torch/include/ATen/ops/q_per_channel_zero_points_native.h' 2025-06-01T21:23:37.0801272Z adding 'torch/include/ATen/ops/q_per_channel_zero_points_ops.h' 2025-06-01T21:23:37.0804208Z adding 'torch/include/ATen/ops/q_scale.h' 2025-06-01T21:23:37.0807199Z adding 'torch/include/ATen/ops/q_scale_native.h' 2025-06-01T21:23:37.0810614Z adding 'torch/include/ATen/ops/q_scale_ops.h' 2025-06-01T21:23:37.0813714Z adding 'torch/include/ATen/ops/q_zero_point.h' 2025-06-01T21:23:37.0816728Z adding 'torch/include/ATen/ops/q_zero_point_native.h' 2025-06-01T21:23:37.0820107Z adding 'torch/include/ATen/ops/q_zero_point_ops.h' 2025-06-01T21:23:37.0822922Z adding 'torch/include/ATen/ops/qr.h' 2025-06-01T21:23:37.0826333Z adding 'torch/include/ATen/ops/qr_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.0829169Z adding 'torch/include/ATen/ops/qr_native.h' 2025-06-01T21:23:37.0832337Z adding 'torch/include/ATen/ops/qr_ops.h' 2025-06-01T21:23:37.0835305Z adding 'torch/include/ATen/ops/qscheme.h' 2025-06-01T21:23:37.0838292Z adding 'torch/include/ATen/ops/qscheme_native.h' 2025-06-01T21:23:37.0841393Z adding 'torch/include/ATen/ops/qscheme_ops.h' 2025-06-01T21:23:37.0844607Z adding 'torch/include/ATen/ops/quantile.h' 2025-06-01T21:23:37.0847986Z adding 'torch/include/ATen/ops/quantile_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.0850952Z adding 'torch/include/ATen/ops/quantile_native.h' 2025-06-01T21:23:37.0854328Z adding 'torch/include/ATen/ops/quantile_ops.h' 2025-06-01T21:23:37.0857559Z adding 'torch/include/ATen/ops/quantize_per_channel.h' 2025-06-01T21:23:37.0860862Z adding 'torch/include/ATen/ops/quantize_per_channel_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.0863893Z adding 'torch/include/ATen/ops/quantize_per_channel_cpu_dispatch.h' 2025-06-01T21:23:37.0867024Z adding 'torch/include/ATen/ops/quantize_per_channel_cuda_dispatch.h' 2025-06-01T21:23:37.0870010Z adding 'torch/include/ATen/ops/quantize_per_channel_native.h' 2025-06-01T21:23:37.0873231Z adding 'torch/include/ATen/ops/quantize_per_channel_ops.h' 2025-06-01T21:23:37.0876892Z adding 'torch/include/ATen/ops/quantize_per_tensor.h' 2025-06-01T21:23:37.0880035Z adding 'torch/include/ATen/ops/quantize_per_tensor_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.0883185Z adding 'torch/include/ATen/ops/quantize_per_tensor_cpu_dispatch.h' 2025-06-01T21:23:37.0886158Z adding 'torch/include/ATen/ops/quantize_per_tensor_cuda_dispatch.h' 2025-06-01T21:23:37.0889222Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic.h' 2025-06-01T21:23:37.0892527Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.0895513Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_cpu_dispatch.h' 2025-06-01T21:23:37.0898577Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_cuda_dispatch.h' 2025-06-01T21:23:37.0901551Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_native.h' 2025-06-01T21:23:37.0904830Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_ops.h' 2025-06-01T21:23:37.0907970Z adding 'torch/include/ATen/ops/quantize_per_tensor_native.h' 2025-06-01T21:23:37.0911497Z adding 'torch/include/ATen/ops/quantize_per_tensor_ops.h' 2025-06-01T21:23:37.0914806Z adding 'torch/include/ATen/ops/quantized_batch_norm.h' 2025-06-01T21:23:37.0918219Z adding 'torch/include/ATen/ops/quantized_batch_norm_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.0921090Z adding 'torch/include/ATen/ops/quantized_batch_norm_native.h' 2025-06-01T21:23:37.0924324Z adding 'torch/include/ATen/ops/quantized_batch_norm_ops.h' 2025-06-01T21:23:37.0927555Z adding 'torch/include/ATen/ops/quantized_gru_cell.h' 2025-06-01T21:23:37.0931152Z adding 'torch/include/ATen/ops/quantized_gru_cell_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.0933773Z adding 'torch/include/ATen/ops/quantized_gru_cell_native.h' 2025-06-01T21:23:37.0936972Z adding 'torch/include/ATen/ops/quantized_gru_cell_ops.h' 2025-06-01T21:23:37.0940274Z adding 'torch/include/ATen/ops/quantized_lstm_cell.h' 2025-06-01T21:23:37.0943671Z adding 'torch/include/ATen/ops/quantized_lstm_cell_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.0946646Z adding 'torch/include/ATen/ops/quantized_lstm_cell_native.h' 2025-06-01T21:23:37.0949888Z adding 'torch/include/ATen/ops/quantized_lstm_cell_ops.h' 2025-06-01T21:23:37.0953111Z adding 'torch/include/ATen/ops/quantized_max_pool1d.h' 2025-06-01T21:23:37.0956458Z adding 'torch/include/ATen/ops/quantized_max_pool1d_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.0959984Z adding 'torch/include/ATen/ops/quantized_max_pool1d_native.h' 2025-06-01T21:23:37.0962962Z adding 'torch/include/ATen/ops/quantized_max_pool1d_ops.h' 2025-06-01T21:23:37.0966161Z adding 'torch/include/ATen/ops/quantized_max_pool2d.h' 2025-06-01T21:23:37.0969470Z adding 'torch/include/ATen/ops/quantized_max_pool2d_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.0972388Z adding 'torch/include/ATen/ops/quantized_max_pool2d_native.h' 2025-06-01T21:23:37.0975652Z adding 'torch/include/ATen/ops/quantized_max_pool2d_ops.h' 2025-06-01T21:23:37.0978856Z adding 'torch/include/ATen/ops/quantized_max_pool3d.h' 2025-06-01T21:23:37.0982165Z adding 'torch/include/ATen/ops/quantized_max_pool3d_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.0985233Z adding 'torch/include/ATen/ops/quantized_max_pool3d_native.h' 2025-06-01T21:23:37.0988481Z adding 'torch/include/ATen/ops/quantized_max_pool3d_ops.h' 2025-06-01T21:23:37.0991664Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell.h' 2025-06-01T21:23:37.0995027Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.0997924Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell_native.h' 2025-06-01T21:23:37.1001127Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell_ops.h' 2025-06-01T21:23:37.1004259Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell.h' 2025-06-01T21:23:37.1007526Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.1010436Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell_native.h' 2025-06-01T21:23:37.1013637Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell_ops.h' 2025-06-01T21:23:37.1016664Z adding 'torch/include/ATen/ops/rad2deg.h' 2025-06-01T21:23:37.1020013Z adding 'torch/include/ATen/ops/rad2deg_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.1022835Z adding 'torch/include/ATen/ops/rad2deg_native.h' 2025-06-01T21:23:37.1026168Z adding 'torch/include/ATen/ops/rad2deg_ops.h' 2025-06-01T21:23:37.1030872Z adding 'torch/include/ATen/ops/rand.h' 2025-06-01T21:23:37.1035012Z adding 'torch/include/ATen/ops/rand_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.1038263Z adding 'torch/include/ATen/ops/rand_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.1041646Z adding 'torch/include/ATen/ops/rand_like.h' 2025-06-01T21:23:37.1044995Z adding 'torch/include/ATen/ops/rand_like_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.1047952Z adding 'torch/include/ATen/ops/rand_like_native.h' 2025-06-01T21:23:37.1051236Z adding 'torch/include/ATen/ops/rand_like_ops.h' 2025-06-01T21:23:37.1054438Z adding 'torch/include/ATen/ops/rand_native.h' 2025-06-01T21:23:37.1058109Z adding 'torch/include/ATen/ops/rand_ops.h' 2025-06-01T21:23:37.1063056Z adding 'torch/include/ATen/ops/randint.h' 2025-06-01T21:23:37.1067561Z adding 'torch/include/ATen/ops/randint_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.1071530Z adding 'torch/include/ATen/ops/randint_like.h' 2025-06-01T21:23:37.1075382Z adding 'torch/include/ATen/ops/randint_like_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.1078523Z adding 'torch/include/ATen/ops/randint_like_native.h' 2025-06-01T21:23:37.1081971Z adding 'torch/include/ATen/ops/randint_like_ops.h' 2025-06-01T21:23:37.1085213Z adding 'torch/include/ATen/ops/randint_native.h' 2025-06-01T21:23:37.1088913Z adding 'torch/include/ATen/ops/randint_ops.h' 2025-06-01T21:23:37.1093784Z adding 'torch/include/ATen/ops/randn.h' 2025-06-01T21:23:37.1097948Z adding 'torch/include/ATen/ops/randn_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.1101234Z adding 'torch/include/ATen/ops/randn_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.1104490Z adding 'torch/include/ATen/ops/randn_like.h' 2025-06-01T21:23:37.1107842Z adding 'torch/include/ATen/ops/randn_like_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.1111077Z adding 'torch/include/ATen/ops/randn_like_compositeimplicitautogradnestedtensor_dispatch.h' 2025-06-01T21:23:37.1113943Z adding 'torch/include/ATen/ops/randn_like_native.h' 2025-06-01T21:23:37.1117251Z adding 'torch/include/ATen/ops/randn_like_ops.h' 2025-06-01T21:23:37.1120430Z adding 'torch/include/ATen/ops/randn_native.h' 2025-06-01T21:23:37.1124083Z adding 'torch/include/ATen/ops/randn_ops.h' 2025-06-01T21:23:37.1127542Z adding 'torch/include/ATen/ops/random.h' 2025-06-01T21:23:37.1130928Z adding 'torch/include/ATen/ops/random_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.1133935Z adding 'torch/include/ATen/ops/random_cpu_dispatch.h' 2025-06-01T21:23:37.1136974Z adding 'torch/include/ATen/ops/random_cuda_dispatch.h' 2025-06-01T21:23:37.1140046Z adding 'torch/include/ATen/ops/random_meta_dispatch.h' 2025-06-01T21:23:37.1145379Z adding 'torch/include/ATen/ops/random_native.h' 2025-06-01T21:23:37.1147451Z adding 'torch/include/ATen/ops/random_ops.h' 2025-06-01T21:23:37.1188167Z adding 'torch/include/ATen/ops/randperm.h' 2025-06-01T21:23:37.1188480Z adding 'torch/include/ATen/ops/randperm_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.1188642Z adding 'torch/include/ATen/ops/randperm_cpu_dispatch.h' 2025-06-01T21:23:37.1188806Z adding 'torch/include/ATen/ops/randperm_cuda_dispatch.h' 2025-06-01T21:23:37.1188933Z adding 'torch/include/ATen/ops/randperm_native.h' 2025-06-01T21:23:37.1189047Z adding 'torch/include/ATen/ops/randperm_ops.h' 2025-06-01T21:23:37.1189149Z adding 'torch/include/ATen/ops/range.h' 2025-06-01T21:23:37.1189375Z adding 'torch/include/ATen/ops/range_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.1189504Z adding 'torch/include/ATen/ops/range_cpu_dispatch.h' 2025-06-01T21:23:37.1189637Z adding 'torch/include/ATen/ops/range_cuda_dispatch.h' 2025-06-01T21:23:37.1189868Z adding 'torch/include/ATen/ops/range_meta_dispatch.h' 2025-06-01T21:23:37.1192099Z adding 'torch/include/ATen/ops/range_native.h' 2025-06-01T21:23:37.1195702Z adding 'torch/include/ATen/ops/range_ops.h' 2025-06-01T21:23:37.1200124Z adding 'torch/include/ATen/ops/ravel.h' 2025-06-01T21:23:37.1202212Z adding 'torch/include/ATen/ops/ravel_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.1206303Z adding 'torch/include/ATen/ops/ravel_native.h' 2025-06-01T21:23:37.1208292Z adding 'torch/include/ATen/ops/ravel_ops.h' 2025-06-01T21:23:37.1212308Z adding 'torch/include/ATen/ops/real.h' 2025-06-01T21:23:37.1214671Z adding 'torch/include/ATen/ops/real_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.1217575Z adding 'torch/include/ATen/ops/real_native.h' 2025-06-01T21:23:37.1220635Z adding 'torch/include/ATen/ops/real_ops.h' 2025-06-01T21:23:37.1223988Z adding 'torch/include/ATen/ops/reciprocal.h' 2025-06-01T21:23:37.1227341Z adding 'torch/include/ATen/ops/reciprocal_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.1230303Z adding 'torch/include/ATen/ops/reciprocal_cpu_dispatch.h' 2025-06-01T21:23:37.1233255Z adding 'torch/include/ATen/ops/reciprocal_cuda_dispatch.h' 2025-06-01T21:23:37.1236209Z adding 'torch/include/ATen/ops/reciprocal_meta.h' 2025-06-01T21:23:37.1239462Z adding 'torch/include/ATen/ops/reciprocal_meta_dispatch.h' 2025-06-01T21:23:37.1242486Z adding 'torch/include/ATen/ops/reciprocal_native.h' 2025-06-01T21:23:37.1245684Z adding 'torch/include/ATen/ops/reciprocal_ops.h' 2025-06-01T21:23:37.1248695Z adding 'torch/include/ATen/ops/record_stream.h' 2025-06-01T21:23:37.1251730Z adding 'torch/include/ATen/ops/record_stream_cuda_dispatch.h' 2025-06-01T21:23:37.1254636Z adding 'torch/include/ATen/ops/record_stream_native.h' 2025-06-01T21:23:37.1257701Z adding 'torch/include/ATen/ops/record_stream_ops.h' 2025-06-01T21:23:37.1260642Z adding 'torch/include/ATen/ops/refine_names.h' 2025-06-01T21:23:37.1263908Z adding 'torch/include/ATen/ops/refine_names_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.1266789Z adding 'torch/include/ATen/ops/refine_names_native.h' 2025-06-01T21:23:37.1270115Z adding 'torch/include/ATen/ops/refine_names_ops.h' 2025-06-01T21:23:37.1273415Z adding 'torch/include/ATen/ops/reflection_pad1d.h' 2025-06-01T21:23:37.1276924Z adding 'torch/include/ATen/ops/reflection_pad1d_backward.h' 2025-06-01T21:23:37.1280511Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.1283492Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_cpu_dispatch.h' 2025-06-01T21:23:37.1286805Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_cuda_dispatch.h' 2025-06-01T21:23:37.1289827Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_meta.h' 2025-06-01T21:23:37.1292981Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_meta_dispatch.h' 2025-06-01T21:23:37.1296027Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_native.h' 2025-06-01T21:23:37.1299266Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_ops.h' 2025-06-01T21:23:37.1302552Z adding 'torch/include/ATen/ops/reflection_pad1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.1305604Z adding 'torch/include/ATen/ops/reflection_pad1d_cpu_dispatch.h' 2025-06-01T21:23:37.1308739Z adding 'torch/include/ATen/ops/reflection_pad1d_cuda_dispatch.h' 2025-06-01T21:23:37.1311756Z adding 'torch/include/ATen/ops/reflection_pad1d_meta.h' 2025-06-01T21:23:37.1314885Z adding 'torch/include/ATen/ops/reflection_pad1d_meta_dispatch.h' 2025-06-01T21:23:37.1317936Z adding 'torch/include/ATen/ops/reflection_pad1d_native.h' 2025-06-01T21:23:37.1321129Z adding 'torch/include/ATen/ops/reflection_pad1d_ops.h' 2025-06-01T21:23:37.1324501Z adding 'torch/include/ATen/ops/reflection_pad2d.h' 2025-06-01T21:23:37.1328192Z adding 'torch/include/ATen/ops/reflection_pad2d_backward.h' 2025-06-01T21:23:37.1331490Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_cpu_dispatch.h' 2025-06-01T21:23:37.1334729Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_cuda_dispatch.h' 2025-06-01T21:23:37.1337649Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_native.h' 2025-06-01T21:23:37.1340869Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_ops.h' 2025-06-01T21:23:37.1344156Z adding 'torch/include/ATen/ops/reflection_pad2d_cpu_dispatch.h' 2025-06-01T21:23:37.1347347Z adding 'torch/include/ATen/ops/reflection_pad2d_cuda_dispatch.h' 2025-06-01T21:23:37.1350370Z adding 'torch/include/ATen/ops/reflection_pad2d_native.h' 2025-06-01T21:23:37.1353604Z adding 'torch/include/ATen/ops/reflection_pad2d_ops.h' 2025-06-01T21:23:37.1356953Z adding 'torch/include/ATen/ops/reflection_pad3d.h' 2025-06-01T21:23:37.1360383Z adding 'torch/include/ATen/ops/reflection_pad3d_backward.h' 2025-06-01T21:23:37.1363933Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.1366933Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_cpu_dispatch.h' 2025-06-01T21:23:37.1370113Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_cuda_dispatch.h' 2025-06-01T21:23:37.1373022Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_meta.h' 2025-06-01T21:23:37.1376157Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_meta_dispatch.h' 2025-06-01T21:23:37.1379157Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_native.h' 2025-06-01T21:23:37.1383343Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_ops.h' 2025-06-01T21:23:37.1386954Z adding 'torch/include/ATen/ops/reflection_pad3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.1389995Z adding 'torch/include/ATen/ops/reflection_pad3d_cpu_dispatch.h' 2025-06-01T21:23:37.1393127Z adding 'torch/include/ATen/ops/reflection_pad3d_cuda_dispatch.h' 2025-06-01T21:23:37.1396133Z adding 'torch/include/ATen/ops/reflection_pad3d_meta.h' 2025-06-01T21:23:37.1399266Z adding 'torch/include/ATen/ops/reflection_pad3d_meta_dispatch.h' 2025-06-01T21:23:37.1402330Z adding 'torch/include/ATen/ops/reflection_pad3d_native.h' 2025-06-01T21:23:37.1405654Z adding 'torch/include/ATen/ops/reflection_pad3d_ops.h' 2025-06-01T21:23:37.1408877Z adding 'torch/include/ATen/ops/relu.h' 2025-06-01T21:23:37.1411995Z adding 'torch/include/ATen/ops/relu6.h' 2025-06-01T21:23:37.1415213Z adding 'torch/include/ATen/ops/relu6_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.1418101Z adding 'torch/include/ATen/ops/relu6_native.h' 2025-06-01T21:23:37.1421211Z adding 'torch/include/ATen/ops/relu6_ops.h' 2025-06-01T21:23:37.1424525Z adding 'torch/include/ATen/ops/relu_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.1427665Z adding 'torch/include/ATen/ops/relu_cpu_dispatch.h' 2025-06-01T21:23:37.1430800Z adding 'torch/include/ATen/ops/relu_cuda_dispatch.h' 2025-06-01T21:23:37.1433947Z adding 'torch/include/ATen/ops/relu_meta_dispatch.h' 2025-06-01T21:23:37.1437033Z adding 'torch/include/ATen/ops/relu_native.h' 2025-06-01T21:23:37.1440440Z adding 'torch/include/ATen/ops/relu_ops.h' 2025-06-01T21:23:37.1444689Z adding 'torch/include/ATen/ops/remainder.h' 2025-06-01T21:23:37.1447238Z adding 'torch/include/ATen/ops/remainder_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.1450677Z adding 'torch/include/ATen/ops/remainder_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.1453516Z adding 'torch/include/ATen/ops/remainder_cpu_dispatch.h' 2025-06-01T21:23:37.1456760Z adding 'torch/include/ATen/ops/remainder_cuda_dispatch.h' 2025-06-01T21:23:37.1459763Z adding 'torch/include/ATen/ops/remainder_meta.h' 2025-06-01T21:23:37.1463084Z adding 'torch/include/ATen/ops/remainder_meta_dispatch.h' 2025-06-01T21:23:37.1466329Z adding 'torch/include/ATen/ops/remainder_native.h' 2025-06-01T21:23:37.1470054Z adding 'torch/include/ATen/ops/remainder_ops.h' 2025-06-01T21:23:37.1473267Z adding 'torch/include/ATen/ops/rename.h' 2025-06-01T21:23:37.1476553Z adding 'torch/include/ATen/ops/rename_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.1479694Z adding 'torch/include/ATen/ops/rename_native.h' 2025-06-01T21:23:37.1482780Z adding 'torch/include/ATen/ops/rename_ops.h' 2025-06-01T21:23:37.1486060Z adding 'torch/include/ATen/ops/renorm.h' 2025-06-01T21:23:37.1490418Z adding 'torch/include/ATen/ops/renorm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.1492569Z adding 'torch/include/ATen/ops/renorm_cpu_dispatch.h' 2025-06-01T21:23:37.1496199Z adding 'torch/include/ATen/ops/renorm_cuda_dispatch.h' 2025-06-01T21:23:37.1498855Z adding 'torch/include/ATen/ops/renorm_meta.h' 2025-06-01T21:23:37.1502121Z adding 'torch/include/ATen/ops/renorm_meta_dispatch.h' 2025-06-01T21:23:37.1505307Z adding 'torch/include/ATen/ops/renorm_native.h' 2025-06-01T21:23:37.1508716Z adding 'torch/include/ATen/ops/renorm_ops.h' 2025-06-01T21:23:37.1512029Z adding 'torch/include/ATen/ops/repeat.h' 2025-06-01T21:23:37.1515584Z adding 'torch/include/ATen/ops/repeat_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.1519331Z adding 'torch/include/ATen/ops/repeat_interleave.h' 2025-06-01T21:23:37.1522909Z adding 'torch/include/ATen/ops/repeat_interleave_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.1526214Z adding 'torch/include/ATen/ops/repeat_interleave_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.1529818Z adding 'torch/include/ATen/ops/repeat_interleave_cpu_dispatch.h' 2025-06-01T21:23:37.1532485Z adding 'torch/include/ATen/ops/repeat_interleave_cuda_dispatch.h' 2025-06-01T21:23:37.1536175Z adding 'torch/include/ATen/ops/repeat_interleave_native.h' 2025-06-01T21:23:37.1539069Z adding 'torch/include/ATen/ops/repeat_interleave_ops.h' 2025-06-01T21:23:37.1548260Z adding 'torch/include/ATen/ops/repeat_native.h' 2025-06-01T21:23:37.1549722Z adding 'torch/include/ATen/ops/repeat_ops.h' 2025-06-01T21:23:37.1552480Z adding 'torch/include/ATen/ops/replication_pad1d.h' 2025-06-01T21:23:37.1556239Z adding 'torch/include/ATen/ops/replication_pad1d_backward.h' 2025-06-01T21:23:37.1560153Z adding 'torch/include/ATen/ops/replication_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.1563552Z adding 'torch/include/ATen/ops/replication_pad1d_backward_cpu_dispatch.h' 2025-06-01T21:23:37.1567004Z adding 'torch/include/ATen/ops/replication_pad1d_backward_cuda_dispatch.h' 2025-06-01T21:23:37.1570050Z adding 'torch/include/ATen/ops/replication_pad1d_backward_meta.h' 2025-06-01T21:23:37.1573432Z adding 'torch/include/ATen/ops/replication_pad1d_backward_meta_dispatch.h' 2025-06-01T21:23:37.1577109Z adding 'torch/include/ATen/ops/replication_pad1d_backward_native.h' 2025-06-01T21:23:37.1579795Z adding 'torch/include/ATen/ops/replication_pad1d_backward_ops.h' 2025-06-01T21:23:37.1583285Z adding 'torch/include/ATen/ops/replication_pad1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.1586407Z adding 'torch/include/ATen/ops/replication_pad1d_cpu_dispatch.h' 2025-06-01T21:23:37.1589694Z adding 'torch/include/ATen/ops/replication_pad1d_cuda_dispatch.h' 2025-06-01T21:23:37.1594031Z adding 'torch/include/ATen/ops/replication_pad1d_meta.h' 2025-06-01T21:23:37.1596395Z adding 'torch/include/ATen/ops/replication_pad1d_meta_dispatch.h' 2025-06-01T21:23:37.1599951Z adding 'torch/include/ATen/ops/replication_pad1d_native.h' 2025-06-01T21:23:37.1602739Z adding 'torch/include/ATen/ops/replication_pad1d_ops.h' 2025-06-01T21:23:37.1606221Z adding 'torch/include/ATen/ops/replication_pad2d.h' 2025-06-01T21:23:37.1609731Z adding 'torch/include/ATen/ops/replication_pad2d_backward.h' 2025-06-01T21:23:37.1613245Z adding 'torch/include/ATen/ops/replication_pad2d_backward_cpu_dispatch.h' 2025-06-01T21:23:37.1617160Z adding 'torch/include/ATen/ops/replication_pad2d_backward_cuda_dispatch.h' 2025-06-01T21:23:37.1619626Z adding 'torch/include/ATen/ops/replication_pad2d_backward_native.h' 2025-06-01T21:23:37.1622980Z adding 'torch/include/ATen/ops/replication_pad2d_backward_ops.h' 2025-06-01T21:23:37.1626564Z adding 'torch/include/ATen/ops/replication_pad2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.1629598Z adding 'torch/include/ATen/ops/replication_pad2d_cpu_dispatch.h' 2025-06-01T21:23:37.1632757Z adding 'torch/include/ATen/ops/replication_pad2d_cuda_dispatch.h' 2025-06-01T21:23:37.1645950Z adding 'torch/include/ATen/ops/replication_pad2d_meta.h' 2025-06-01T21:23:37.1646177Z adding 'torch/include/ATen/ops/replication_pad2d_meta_dispatch.h' 2025-06-01T21:23:37.1646335Z adding 'torch/include/ATen/ops/replication_pad2d_native.h' 2025-06-01T21:23:37.1646802Z adding 'torch/include/ATen/ops/replication_pad2d_ops.h' 2025-06-01T21:23:37.1650190Z adding 'torch/include/ATen/ops/replication_pad3d.h' 2025-06-01T21:23:37.1653912Z adding 'torch/include/ATen/ops/replication_pad3d_backward.h' 2025-06-01T21:23:37.1658022Z adding 'torch/include/ATen/ops/replication_pad3d_backward_cpu_dispatch.h' 2025-06-01T21:23:37.1660692Z adding 'torch/include/ATen/ops/replication_pad3d_backward_cuda_dispatch.h' 2025-06-01T21:23:37.1664080Z adding 'torch/include/ATen/ops/replication_pad3d_backward_native.h' 2025-06-01T21:23:37.1667284Z adding 'torch/include/ATen/ops/replication_pad3d_backward_ops.h' 2025-06-01T21:23:37.1670748Z adding 'torch/include/ATen/ops/replication_pad3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.1673715Z adding 'torch/include/ATen/ops/replication_pad3d_cpu_dispatch.h' 2025-06-01T21:23:37.1676862Z adding 'torch/include/ATen/ops/replication_pad3d_cuda_dispatch.h' 2025-06-01T21:23:37.1681055Z adding 'torch/include/ATen/ops/replication_pad3d_meta.h' 2025-06-01T21:23:37.1683257Z adding 'torch/include/ATen/ops/replication_pad3d_meta_dispatch.h' 2025-06-01T21:23:37.1686316Z adding 'torch/include/ATen/ops/replication_pad3d_native.h' 2025-06-01T21:23:37.1689577Z adding 'torch/include/ATen/ops/replication_pad3d_ops.h' 2025-06-01T21:23:37.1692500Z adding 'torch/include/ATen/ops/requires_grad.h' 2025-06-01T21:23:37.1697020Z adding 'torch/include/ATen/ops/requires_grad_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.1698781Z adding 'torch/include/ATen/ops/requires_grad_native.h' 2025-06-01T21:23:37.1701875Z adding 'torch/include/ATen/ops/requires_grad_ops.h' 2025-06-01T21:23:37.1705139Z adding 'torch/include/ATen/ops/reshape.h' 2025-06-01T21:23:37.1708129Z adding 'torch/include/ATen/ops/reshape_as.h' 2025-06-01T21:23:37.1711356Z adding 'torch/include/ATen/ops/reshape_as_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.1714538Z adding 'torch/include/ATen/ops/reshape_as_compositeimplicitautogradnestedtensor_dispatch.h' 2025-06-01T21:23:37.1717369Z adding 'torch/include/ATen/ops/reshape_as_native.h' 2025-06-01T21:23:37.1720477Z adding 'torch/include/ATen/ops/reshape_as_ops.h' 2025-06-01T21:23:37.1723693Z adding 'torch/include/ATen/ops/reshape_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.1728175Z adding 'torch/include/ATen/ops/reshape_compositeimplicitautogradnestedtensor_dispatch.h' 2025-06-01T21:23:37.1729861Z adding 'torch/include/ATen/ops/reshape_native.h' 2025-06-01T21:23:37.1732988Z adding 'torch/include/ATen/ops/reshape_ops.h' 2025-06-01T21:23:37.1736438Z adding 'torch/include/ATen/ops/resize.h' 2025-06-01T21:23:37.1739703Z adding 'torch/include/ATen/ops/resize_as.h' 2025-06-01T21:23:37.1742984Z adding 'torch/include/ATen/ops/resize_as_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.1746091Z adding 'torch/include/ATen/ops/resize_as_native.h' 2025-06-01T21:23:37.1749373Z adding 'torch/include/ATen/ops/resize_as_ops.h' 2025-06-01T21:23:37.1752570Z adding 'torch/include/ATen/ops/resize_as_sparse.h' 2025-06-01T21:23:37.1755863Z adding 'torch/include/ATen/ops/resize_as_sparse_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.1758845Z adding 'torch/include/ATen/ops/resize_as_sparse_meta_dispatch.h' 2025-06-01T21:23:37.1761824Z adding 'torch/include/ATen/ops/resize_as_sparse_native.h' 2025-06-01T21:23:37.1765070Z adding 'torch/include/ATen/ops/resize_as_sparse_ops.h' 2025-06-01T21:23:37.1768566Z adding 'torch/include/ATen/ops/resize_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.1771475Z adding 'torch/include/ATen/ops/resize_cpu_dispatch.h' 2025-06-01T21:23:37.1774559Z adding 'torch/include/ATen/ops/resize_cuda_dispatch.h' 2025-06-01T21:23:37.1777620Z adding 'torch/include/ATen/ops/resize_meta_dispatch.h' 2025-06-01T21:23:37.1780688Z adding 'torch/include/ATen/ops/resize_native.h' 2025-06-01T21:23:37.1784266Z adding 'torch/include/ATen/ops/resize_ops.h' 2025-06-01T21:23:37.1787402Z adding 'torch/include/ATen/ops/resolve_conj.h' 2025-06-01T21:23:37.1790820Z adding 'torch/include/ATen/ops/resolve_conj_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.1793660Z adding 'torch/include/ATen/ops/resolve_conj_native.h' 2025-06-01T21:23:37.1797212Z adding 'torch/include/ATen/ops/resolve_conj_ops.h' 2025-06-01T21:23:37.1800281Z adding 'torch/include/ATen/ops/resolve_neg.h' 2025-06-01T21:23:37.1803440Z adding 'torch/include/ATen/ops/resolve_neg_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.1806283Z adding 'torch/include/ATen/ops/resolve_neg_native.h' 2025-06-01T21:23:37.1809405Z adding 'torch/include/ATen/ops/resolve_neg_ops.h' 2025-06-01T21:23:37.1812494Z adding 'torch/include/ATen/ops/result_type.h' 2025-06-01T21:23:37.1815743Z adding 'torch/include/ATen/ops/result_type_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.1818611Z adding 'torch/include/ATen/ops/result_type_native.h' 2025-06-01T21:23:37.1821883Z adding 'torch/include/ATen/ops/result_type_ops.h' 2025-06-01T21:23:37.1825030Z adding 'torch/include/ATen/ops/retain_grad.h' 2025-06-01T21:23:37.1828245Z adding 'torch/include/ATen/ops/retain_grad_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.1831120Z adding 'torch/include/ATen/ops/retain_grad_native.h' 2025-06-01T21:23:37.1834239Z adding 'torch/include/ATen/ops/retain_grad_ops.h' 2025-06-01T21:23:37.1837196Z adding 'torch/include/ATen/ops/retains_grad.h' 2025-06-01T21:23:37.1840419Z adding 'torch/include/ATen/ops/retains_grad_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.1843246Z adding 'torch/include/ATen/ops/retains_grad_native.h' 2025-06-01T21:23:37.1846353Z adding 'torch/include/ATen/ops/retains_grad_ops.h' 2025-06-01T21:23:37.1849488Z adding 'torch/include/ATen/ops/rms_norm.h' 2025-06-01T21:23:37.1852748Z adding 'torch/include/ATen/ops/rms_norm_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.1855621Z adding 'torch/include/ATen/ops/rms_norm_native.h' 2025-06-01T21:23:37.1858747Z adding 'torch/include/ATen/ops/rms_norm_ops.h' 2025-06-01T21:23:37.1861904Z adding 'torch/include/ATen/ops/rnn_relu.h' 2025-06-01T21:23:37.1865183Z adding 'torch/include/ATen/ops/rnn_relu_cell.h' 2025-06-01T21:23:37.1868419Z adding 'torch/include/ATen/ops/rnn_relu_cell_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.1871288Z adding 'torch/include/ATen/ops/rnn_relu_cell_native.h' 2025-06-01T21:23:37.1874434Z adding 'torch/include/ATen/ops/rnn_relu_cell_ops.h' 2025-06-01T21:23:37.1877663Z adding 'torch/include/ATen/ops/rnn_relu_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.1880621Z adding 'torch/include/ATen/ops/rnn_relu_native.h' 2025-06-01T21:23:37.1883895Z adding 'torch/include/ATen/ops/rnn_relu_ops.h' 2025-06-01T21:23:37.1887273Z adding 'torch/include/ATen/ops/rnn_tanh.h' 2025-06-01T21:23:37.1891048Z adding 'torch/include/ATen/ops/rnn_tanh_cell.h' 2025-06-01T21:23:37.1893836Z adding 'torch/include/ATen/ops/rnn_tanh_cell_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.1896826Z adding 'torch/include/ATen/ops/rnn_tanh_cell_native.h' 2025-06-01T21:23:37.1900036Z adding 'torch/include/ATen/ops/rnn_tanh_cell_ops.h' 2025-06-01T21:23:37.1903466Z adding 'torch/include/ATen/ops/rnn_tanh_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.1906524Z adding 'torch/include/ATen/ops/rnn_tanh_native.h' 2025-06-01T21:23:37.1910013Z adding 'torch/include/ATen/ops/rnn_tanh_ops.h' 2025-06-01T21:23:37.1914144Z adding 'torch/include/ATen/ops/roll.h' 2025-06-01T21:23:37.1916866Z adding 'torch/include/ATen/ops/roll_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.1920136Z adding 'torch/include/ATen/ops/roll_cpu_dispatch.h' 2025-06-01T21:23:37.1923169Z adding 'torch/include/ATen/ops/roll_cuda_dispatch.h' 2025-06-01T21:23:37.1926310Z adding 'torch/include/ATen/ops/roll_native.h' 2025-06-01T21:23:37.1929499Z adding 'torch/include/ATen/ops/roll_ops.h' 2025-06-01T21:23:37.1932824Z adding 'torch/include/ATen/ops/rot90.h' 2025-06-01T21:23:37.1937010Z adding 'torch/include/ATen/ops/rot90_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.1939168Z adding 'torch/include/ATen/ops/rot90_native.h' 2025-06-01T21:23:37.1942831Z adding 'torch/include/ATen/ops/rot90_ops.h' 2025-06-01T21:23:37.1945864Z adding 'torch/include/ATen/ops/round.h' 2025-06-01T21:23:37.1949373Z adding 'torch/include/ATen/ops/round_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.1952378Z adding 'torch/include/ATen/ops/round_cpu_dispatch.h' 2025-06-01T21:23:37.1955876Z adding 'torch/include/ATen/ops/round_cuda_dispatch.h' 2025-06-01T21:23:37.1958679Z adding 'torch/include/ATen/ops/round_meta.h' 2025-06-01T21:23:37.1962321Z adding 'torch/include/ATen/ops/round_meta_dispatch.h' 2025-06-01T21:23:37.1965496Z adding 'torch/include/ATen/ops/round_native.h' 2025-06-01T21:23:37.1968963Z adding 'torch/include/ATen/ops/round_ops.h' 2025-06-01T21:23:37.1972178Z adding 'torch/include/ATen/ops/row_indices.h' 2025-06-01T21:23:37.1975411Z adding 'torch/include/ATen/ops/row_indices_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.1978496Z adding 'torch/include/ATen/ops/row_indices_copy.h' 2025-06-01T21:23:37.1981769Z adding 'torch/include/ATen/ops/row_indices_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.1985165Z adding 'torch/include/ATen/ops/row_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.1988002Z adding 'torch/include/ATen/ops/row_indices_copy_native.h' 2025-06-01T21:23:37.1991338Z adding 'torch/include/ATen/ops/row_indices_copy_ops.h' 2025-06-01T21:23:37.1994423Z adding 'torch/include/ATen/ops/row_indices_native.h' 2025-06-01T21:23:37.1998183Z adding 'torch/include/ATen/ops/row_indices_ops.h' 2025-06-01T21:23:37.2001446Z adding 'torch/include/ATen/ops/row_stack.h' 2025-06-01T21:23:37.2004701Z adding 'torch/include/ATen/ops/row_stack_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.2007740Z adding 'torch/include/ATen/ops/row_stack_native.h' 2025-06-01T21:23:37.2010940Z adding 'torch/include/ATen/ops/row_stack_ops.h' 2025-06-01T21:23:37.2014239Z adding 'torch/include/ATen/ops/rrelu.h' 2025-06-01T21:23:37.2017550Z adding 'torch/include/ATen/ops/rrelu_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.2020647Z adding 'torch/include/ATen/ops/rrelu_native.h' 2025-06-01T21:23:37.2024015Z adding 'torch/include/ATen/ops/rrelu_ops.h' 2025-06-01T21:23:37.2027449Z adding 'torch/include/ATen/ops/rrelu_with_noise.h' 2025-06-01T21:23:37.2030866Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward.h' 2025-06-01T21:23:37.2034192Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.2037304Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward_native.h' 2025-06-01T21:23:37.2040600Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward_ops.h' 2025-06-01T21:23:37.2044041Z adding 'torch/include/ATen/ops/rrelu_with_noise_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.2047187Z adding 'torch/include/ATen/ops/rrelu_with_noise_cpu_dispatch.h' 2025-06-01T21:23:37.2050464Z adding 'torch/include/ATen/ops/rrelu_with_noise_cuda_dispatch.h' 2025-06-01T21:23:37.2053674Z adding 'torch/include/ATen/ops/rrelu_with_noise_meta_dispatch.h' 2025-06-01T21:23:37.2056806Z adding 'torch/include/ATen/ops/rrelu_with_noise_native.h' 2025-06-01T21:23:37.2060442Z adding 'torch/include/ATen/ops/rrelu_with_noise_ops.h' 2025-06-01T21:23:37.2063766Z adding 'torch/include/ATen/ops/rshift.h' 2025-06-01T21:23:37.2067251Z adding 'torch/include/ATen/ops/rshift_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.2070349Z adding 'torch/include/ATen/ops/rshift_cpu_dispatch.h' 2025-06-01T21:23:37.2073514Z adding 'torch/include/ATen/ops/rshift_cuda_dispatch.h' 2025-06-01T21:23:37.2076607Z adding 'torch/include/ATen/ops/rshift_meta_dispatch.h' 2025-06-01T21:23:37.2079759Z adding 'torch/include/ATen/ops/rshift_native.h' 2025-06-01T21:23:37.2083330Z adding 'torch/include/ATen/ops/rshift_ops.h' 2025-06-01T21:23:37.2086550Z adding 'torch/include/ATen/ops/rsqrt.h' 2025-06-01T21:23:37.2090025Z adding 'torch/include/ATen/ops/rsqrt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.2092989Z adding 'torch/include/ATen/ops/rsqrt_cpu_dispatch.h' 2025-06-01T21:23:37.2096265Z adding 'torch/include/ATen/ops/rsqrt_cuda_dispatch.h' 2025-06-01T21:23:37.2099267Z adding 'torch/include/ATen/ops/rsqrt_meta.h' 2025-06-01T21:23:37.2102486Z adding 'torch/include/ATen/ops/rsqrt_meta_dispatch.h' 2025-06-01T21:23:37.2105627Z adding 'torch/include/ATen/ops/rsqrt_native.h' 2025-06-01T21:23:37.2108937Z adding 'torch/include/ATen/ops/rsqrt_ops.h' 2025-06-01T21:23:37.2112268Z adding 'torch/include/ATen/ops/rsub.h' 2025-06-01T21:23:37.2115648Z adding 'torch/include/ATen/ops/rsub_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.2118747Z adding 'torch/include/ATen/ops/rsub_cpu_dispatch.h' 2025-06-01T21:23:37.2121822Z adding 'torch/include/ATen/ops/rsub_cuda_dispatch.h' 2025-06-01T21:23:37.2124956Z adding 'torch/include/ATen/ops/rsub_native.h' 2025-06-01T21:23:37.2134969Z adding 'torch/include/ATen/ops/rsub_ops.h' 2025-06-01T21:23:37.2138903Z adding 'torch/include/ATen/ops/scalar_tensor.h' 2025-06-01T21:23:37.2142767Z adding 'torch/include/ATen/ops/scalar_tensor_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.2145924Z adding 'torch/include/ATen/ops/scalar_tensor_native.h' 2025-06-01T21:23:37.2149384Z adding 'torch/include/ATen/ops/scalar_tensor_ops.h' 2025-06-01T21:23:37.2152623Z adding 'torch/include/ATen/ops/scaled_dot_product_attention.h' 2025-06-01T21:23:37.2156149Z adding 'torch/include/ATen/ops/scaled_dot_product_attention_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.2159106Z adding 'torch/include/ATen/ops/scaled_dot_product_attention_native.h' 2025-06-01T21:23:37.2162471Z adding 'torch/include/ATen/ops/scaled_dot_product_attention_ops.h' 2025-06-01T21:23:37.2165870Z adding 'torch/include/ATen/ops/scatter.h' 2025-06-01T21:23:37.2169365Z adding 'torch/include/ATen/ops/scatter_add.h' 2025-06-01T21:23:37.2172742Z adding 'torch/include/ATen/ops/scatter_add_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.2175738Z adding 'torch/include/ATen/ops/scatter_add_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.2178899Z adding 'torch/include/ATen/ops/scatter_add_cpu_dispatch.h' 2025-06-01T21:23:37.2182041Z adding 'torch/include/ATen/ops/scatter_add_cuda_dispatch.h' 2025-06-01T21:23:37.2185186Z adding 'torch/include/ATen/ops/scatter_add_meta.h' 2025-06-01T21:23:37.2188324Z adding 'torch/include/ATen/ops/scatter_add_meta_dispatch.h' 2025-06-01T21:23:37.2191403Z adding 'torch/include/ATen/ops/scatter_add_native.h' 2025-06-01T21:23:37.2194917Z adding 'torch/include/ATen/ops/scatter_add_ops.h' 2025-06-01T21:23:37.2198406Z adding 'torch/include/ATen/ops/scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.2201467Z adding 'torch/include/ATen/ops/scatter_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.2204891Z adding 'torch/include/ATen/ops/scatter_cpu_dispatch.h' 2025-06-01T21:23:37.2207921Z adding 'torch/include/ATen/ops/scatter_cuda_dispatch.h' 2025-06-01T21:23:37.2211420Z adding 'torch/include/ATen/ops/scatter_meta.h' 2025-06-01T21:23:37.2214711Z adding 'torch/include/ATen/ops/scatter_meta_dispatch.h' 2025-06-01T21:23:37.2217914Z adding 'torch/include/ATen/ops/scatter_native.h' 2025-06-01T21:23:37.2221912Z adding 'torch/include/ATen/ops/scatter_ops.h' 2025-06-01T21:23:37.2225643Z adding 'torch/include/ATen/ops/scatter_reduce.h' 2025-06-01T21:23:37.2229196Z adding 'torch/include/ATen/ops/scatter_reduce_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.2232129Z adding 'torch/include/ATen/ops/scatter_reduce_cpu_dispatch.h' 2025-06-01T21:23:37.2235232Z adding 'torch/include/ATen/ops/scatter_reduce_cuda_dispatch.h' 2025-06-01T21:23:37.2238305Z adding 'torch/include/ATen/ops/scatter_reduce_meta.h' 2025-06-01T21:23:37.2241476Z adding 'torch/include/ATen/ops/scatter_reduce_meta_dispatch.h' 2025-06-01T21:23:37.2244480Z adding 'torch/include/ATen/ops/scatter_reduce_native.h' 2025-06-01T21:23:37.2247778Z adding 'torch/include/ATen/ops/scatter_reduce_ops.h' 2025-06-01T21:23:37.2251117Z adding 'torch/include/ATen/ops/searchsorted.h' 2025-06-01T21:23:37.2254394Z adding 'torch/include/ATen/ops/searchsorted_cpu_dispatch.h' 2025-06-01T21:23:37.2257603Z adding 'torch/include/ATen/ops/searchsorted_cuda_dispatch.h' 2025-06-01T21:23:37.2260769Z adding 'torch/include/ATen/ops/searchsorted_native.h' 2025-06-01T21:23:37.2264464Z adding 'torch/include/ATen/ops/searchsorted_ops.h' 2025-06-01T21:23:37.2267802Z adding 'torch/include/ATen/ops/segment_reduce.h' 2025-06-01T21:23:37.2271235Z adding 'torch/include/ATen/ops/segment_reduce_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.2274173Z adding 'torch/include/ATen/ops/segment_reduce_cpu_dispatch.h' 2025-06-01T21:23:37.2277229Z adding 'torch/include/ATen/ops/segment_reduce_cuda_dispatch.h' 2025-06-01T21:23:37.2280302Z adding 'torch/include/ATen/ops/segment_reduce_native.h' 2025-06-01T21:23:37.2285012Z adding 'torch/include/ATen/ops/segment_reduce_ops.h' 2025-06-01T21:23:37.2287503Z adding 'torch/include/ATen/ops/select.h' 2025-06-01T21:23:37.2291118Z adding 'torch/include/ATen/ops/select_backward.h' 2025-06-01T21:23:37.2294511Z adding 'torch/include/ATen/ops/select_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.2297883Z adding 'torch/include/ATen/ops/select_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.2301408Z adding 'torch/include/ATen/ops/select_backward_native.h' 2025-06-01T21:23:37.2304374Z adding 'torch/include/ATen/ops/select_backward_ops.h' 2025-06-01T21:23:37.2307968Z adding 'torch/include/ATen/ops/select_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.2311093Z adding 'torch/include/ATen/ops/select_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.2314222Z adding 'torch/include/ATen/ops/select_copy.h' 2025-06-01T21:23:37.2317615Z adding 'torch/include/ATen/ops/select_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.2320958Z adding 'torch/include/ATen/ops/select_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.2323841Z adding 'torch/include/ATen/ops/select_copy_native.h' 2025-06-01T21:23:37.2327226Z adding 'torch/include/ATen/ops/select_copy_ops.h' 2025-06-01T21:23:37.2330557Z adding 'torch/include/ATen/ops/select_native.h' 2025-06-01T21:23:37.2333808Z adding 'torch/include/ATen/ops/select_ops.h' 2025-06-01T21:23:37.2337196Z adding 'torch/include/ATen/ops/select_scatter.h' 2025-06-01T21:23:37.2340624Z adding 'torch/include/ATen/ops/select_scatter_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.2344039Z adding 'torch/include/ATen/ops/select_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.2347016Z adding 'torch/include/ATen/ops/select_scatter_native.h' 2025-06-01T21:23:37.2350377Z adding 'torch/include/ATen/ops/select_scatter_ops.h' 2025-06-01T21:23:37.2353873Z adding 'torch/include/ATen/ops/selu.h' 2025-06-01T21:23:37.2357132Z adding 'torch/include/ATen/ops/selu_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.2360195Z adding 'torch/include/ATen/ops/selu_native.h' 2025-06-01T21:23:37.2363345Z adding 'torch/include/ATen/ops/selu_ops.h' 2025-06-01T21:23:37.2367241Z adding 'torch/include/ATen/ops/set.h' 2025-06-01T21:23:37.2371015Z adding 'torch/include/ATen/ops/set_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.2374216Z adding 'torch/include/ATen/ops/set_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.2377424Z adding 'torch/include/ATen/ops/set_cpu_dispatch.h' 2025-06-01T21:23:37.2380691Z adding 'torch/include/ATen/ops/set_cuda_dispatch.h' 2025-06-01T21:23:37.2383788Z adding 'torch/include/ATen/ops/set_data.h' 2025-06-01T21:23:37.2387187Z adding 'torch/include/ATen/ops/set_data_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.2390133Z adding 'torch/include/ATen/ops/set_data_native.h' 2025-06-01T21:23:37.2393390Z adding 'torch/include/ATen/ops/set_data_ops.h' 2025-06-01T21:23:37.2396535Z adding 'torch/include/ATen/ops/set_meta_dispatch.h' 2025-06-01T21:23:37.2399835Z adding 'torch/include/ATen/ops/set_native.h' 2025-06-01T21:23:37.2403860Z adding 'torch/include/ATen/ops/set_ops.h' 2025-06-01T21:23:37.2407224Z adding 'torch/include/ATen/ops/sgn.h' 2025-06-01T21:23:37.2410664Z adding 'torch/include/ATen/ops/sgn_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.2413611Z adding 'torch/include/ATen/ops/sgn_cpu_dispatch.h' 2025-06-01T21:23:37.2416834Z adding 'torch/include/ATen/ops/sgn_cuda_dispatch.h' 2025-06-01T21:23:37.2420214Z adding 'torch/include/ATen/ops/sgn_meta.h' 2025-06-01T21:23:37.2423866Z adding 'torch/include/ATen/ops/sgn_meta_dispatch.h' 2025-06-01T21:23:37.2426840Z adding 'torch/include/ATen/ops/sgn_native.h' 2025-06-01T21:23:37.2430128Z adding 'torch/include/ATen/ops/sgn_ops.h' 2025-06-01T21:23:37.2433416Z adding 'torch/include/ATen/ops/sigmoid.h' 2025-06-01T21:23:37.2436599Z adding 'torch/include/ATen/ops/sigmoid_backward.h' 2025-06-01T21:23:37.2440125Z adding 'torch/include/ATen/ops/sigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.2443078Z adding 'torch/include/ATen/ops/sigmoid_backward_cpu_dispatch.h' 2025-06-01T21:23:37.2446509Z adding 'torch/include/ATen/ops/sigmoid_backward_cuda_dispatch.h' 2025-06-01T21:23:37.2449643Z adding 'torch/include/ATen/ops/sigmoid_backward_meta.h' 2025-06-01T21:23:37.2452682Z adding 'torch/include/ATen/ops/sigmoid_backward_meta_dispatch.h' 2025-06-01T21:23:37.2455655Z adding 'torch/include/ATen/ops/sigmoid_backward_native.h' 2025-06-01T21:23:37.2458973Z adding 'torch/include/ATen/ops/sigmoid_backward_ops.h' 2025-06-01T21:23:37.2462376Z adding 'torch/include/ATen/ops/sigmoid_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.2465431Z adding 'torch/include/ATen/ops/sigmoid_cpu_dispatch.h' 2025-06-01T21:23:37.2468638Z adding 'torch/include/ATen/ops/sigmoid_cuda_dispatch.h' 2025-06-01T21:23:37.2471632Z adding 'torch/include/ATen/ops/sigmoid_meta.h' 2025-06-01T21:23:37.2474892Z adding 'torch/include/ATen/ops/sigmoid_meta_dispatch.h' 2025-06-01T21:23:37.2477921Z adding 'torch/include/ATen/ops/sigmoid_native.h' 2025-06-01T21:23:37.2481340Z adding 'torch/include/ATen/ops/sigmoid_ops.h' 2025-06-01T21:23:37.2484597Z adding 'torch/include/ATen/ops/sign.h' 2025-06-01T21:23:37.2487905Z adding 'torch/include/ATen/ops/sign_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.2490936Z adding 'torch/include/ATen/ops/sign_cpu_dispatch.h' 2025-06-01T21:23:37.2494063Z adding 'torch/include/ATen/ops/sign_cuda_dispatch.h' 2025-06-01T21:23:37.2497192Z adding 'torch/include/ATen/ops/sign_meta.h' 2025-06-01T21:23:37.2500310Z adding 'torch/include/ATen/ops/sign_meta_dispatch.h' 2025-06-01T21:23:37.2503480Z adding 'torch/include/ATen/ops/sign_native.h' 2025-06-01T21:23:37.2506871Z adding 'torch/include/ATen/ops/sign_ops.h' 2025-06-01T21:23:37.2510428Z adding 'torch/include/ATen/ops/signbit.h' 2025-06-01T21:23:37.2514396Z adding 'torch/include/ATen/ops/signbit_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.2516628Z adding 'torch/include/ATen/ops/signbit_cpu_dispatch.h' 2025-06-01T21:23:37.2519958Z adding 'torch/include/ATen/ops/signbit_cuda_dispatch.h' 2025-06-01T21:23:37.2522867Z adding 'torch/include/ATen/ops/signbit_meta.h' 2025-06-01T21:23:37.2526068Z adding 'torch/include/ATen/ops/signbit_meta_dispatch.h' 2025-06-01T21:23:37.2529079Z adding 'torch/include/ATen/ops/signbit_native.h' 2025-06-01T21:23:37.2532400Z adding 'torch/include/ATen/ops/signbit_ops.h' 2025-06-01T21:23:37.2535629Z adding 'torch/include/ATen/ops/silu.h' 2025-06-01T21:23:37.2538879Z adding 'torch/include/ATen/ops/silu_backward.h' 2025-06-01T21:23:37.2542979Z adding 'torch/include/ATen/ops/silu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.2545516Z adding 'torch/include/ATen/ops/silu_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.2548904Z adding 'torch/include/ATen/ops/silu_backward_cpu_dispatch.h' 2025-06-01T21:23:37.2551722Z adding 'torch/include/ATen/ops/silu_backward_cuda_dispatch.h' 2025-06-01T21:23:37.2554818Z adding 'torch/include/ATen/ops/silu_backward_meta.h' 2025-06-01T21:23:37.2557970Z adding 'torch/include/ATen/ops/silu_backward_meta_dispatch.h' 2025-06-01T21:23:37.2561120Z adding 'torch/include/ATen/ops/silu_backward_native.h' 2025-06-01T21:23:37.2564326Z adding 'torch/include/ATen/ops/silu_backward_ops.h' 2025-06-01T21:23:37.2567797Z adding 'torch/include/ATen/ops/silu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.2571674Z adding 'torch/include/ATen/ops/silu_cpu_dispatch.h' 2025-06-01T21:23:37.2574047Z adding 'torch/include/ATen/ops/silu_cuda_dispatch.h' 2025-06-01T21:23:37.2577402Z adding 'torch/include/ATen/ops/silu_meta.h' 2025-06-01T21:23:37.2580181Z adding 'torch/include/ATen/ops/silu_meta_dispatch.h' 2025-06-01T21:23:37.2583317Z adding 'torch/include/ATen/ops/silu_native.h' 2025-06-01T21:23:37.2586645Z adding 'torch/include/ATen/ops/silu_ops.h' 2025-06-01T21:23:37.2589965Z adding 'torch/include/ATen/ops/sin.h' 2025-06-01T21:23:37.2593277Z adding 'torch/include/ATen/ops/sin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.2596397Z adding 'torch/include/ATen/ops/sin_cpu_dispatch.h' 2025-06-01T21:23:37.2600301Z adding 'torch/include/ATen/ops/sin_cuda_dispatch.h' 2025-06-01T21:23:37.2602639Z adding 'torch/include/ATen/ops/sin_meta.h' 2025-06-01T21:23:37.2606079Z adding 'torch/include/ATen/ops/sin_meta_dispatch.h' 2025-06-01T21:23:37.2608873Z adding 'torch/include/ATen/ops/sin_native.h' 2025-06-01T21:23:37.2612166Z adding 'torch/include/ATen/ops/sin_ops.h' 2025-06-01T21:23:37.2615306Z adding 'torch/include/ATen/ops/sinc.h' 2025-06-01T21:23:37.2618588Z adding 'torch/include/ATen/ops/sinc_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.2622451Z adding 'torch/include/ATen/ops/sinc_cpu_dispatch.h' 2025-06-01T21:23:37.2625252Z adding 'torch/include/ATen/ops/sinc_cuda_dispatch.h' 2025-06-01T21:23:37.2628242Z adding 'torch/include/ATen/ops/sinc_meta.h' 2025-06-01T21:23:37.2631342Z adding 'torch/include/ATen/ops/sinc_meta_dispatch.h' 2025-06-01T21:23:37.2634303Z adding 'torch/include/ATen/ops/sinc_native.h' 2025-06-01T21:23:37.2638542Z adding 'torch/include/ATen/ops/sinc_ops.h' 2025-06-01T21:23:37.2640780Z adding 'torch/include/ATen/ops/sinh.h' 2025-06-01T21:23:37.2644122Z adding 'torch/include/ATen/ops/sinh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.2647078Z adding 'torch/include/ATen/ops/sinh_cpu_dispatch.h' 2025-06-01T21:23:37.2650146Z adding 'torch/include/ATen/ops/sinh_cuda_dispatch.h' 2025-06-01T21:23:37.2653144Z adding 'torch/include/ATen/ops/sinh_meta.h' 2025-06-01T21:23:37.2656226Z adding 'torch/include/ATen/ops/sinh_meta_dispatch.h' 2025-06-01T21:23:37.2659244Z adding 'torch/include/ATen/ops/sinh_native.h' 2025-06-01T21:23:37.2662376Z adding 'torch/include/ATen/ops/sinh_ops.h' 2025-06-01T21:23:37.2665541Z adding 'torch/include/ATen/ops/size.h' 2025-06-01T21:23:37.2669725Z adding 'torch/include/ATen/ops/size_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.2671858Z adding 'torch/include/ATen/ops/size_native.h' 2025-06-01T21:23:37.2675028Z adding 'torch/include/ATen/ops/size_ops.h' 2025-06-01T21:23:37.2678220Z adding 'torch/include/ATen/ops/slice.h' 2025-06-01T21:23:37.2681718Z adding 'torch/include/ATen/ops/slice_backward.h' 2025-06-01T21:23:37.2685182Z adding 'torch/include/ATen/ops/slice_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.2688155Z adding 'torch/include/ATen/ops/slice_backward_native.h' 2025-06-01T21:23:37.2691479Z adding 'torch/include/ATen/ops/slice_backward_ops.h' 2025-06-01T21:23:37.2694653Z adding 'torch/include/ATen/ops/slice_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.2697951Z adding 'torch/include/ATen/ops/slice_copy.h' 2025-06-01T21:23:37.2701384Z adding 'torch/include/ATen/ops/slice_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.2704719Z adding 'torch/include/ATen/ops/slice_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.2707551Z adding 'torch/include/ATen/ops/slice_copy_native.h' 2025-06-01T21:23:37.2710805Z adding 'torch/include/ATen/ops/slice_copy_ops.h' 2025-06-01T21:23:37.2714085Z adding 'torch/include/ATen/ops/slice_inverse.h' 2025-06-01T21:23:37.2717408Z adding 'torch/include/ATen/ops/slice_inverse_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.2720315Z adding 'torch/include/ATen/ops/slice_inverse_native.h' 2025-06-01T21:23:37.2723496Z adding 'torch/include/ATen/ops/slice_inverse_ops.h' 2025-06-01T21:23:37.2726669Z adding 'torch/include/ATen/ops/slice_native.h' 2025-06-01T21:23:37.2729887Z adding 'torch/include/ATen/ops/slice_ops.h' 2025-06-01T21:23:37.2733336Z adding 'torch/include/ATen/ops/slice_scatter.h' 2025-06-01T21:23:37.2736784Z adding 'torch/include/ATen/ops/slice_scatter_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.2740015Z adding 'torch/include/ATen/ops/slice_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.2742900Z adding 'torch/include/ATen/ops/slice_scatter_native.h' 2025-06-01T21:23:37.2746324Z adding 'torch/include/ATen/ops/slice_scatter_ops.h' 2025-06-01T21:23:37.2749453Z adding 'torch/include/ATen/ops/slogdet.h' 2025-06-01T21:23:37.2752671Z adding 'torch/include/ATen/ops/slogdet_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.2755565Z adding 'torch/include/ATen/ops/slogdet_native.h' 2025-06-01T21:23:37.2759037Z adding 'torch/include/ATen/ops/slogdet_ops.h' 2025-06-01T21:23:37.2762623Z adding 'torch/include/ATen/ops/slow_conv3d.h' 2025-06-01T21:23:37.2766147Z adding 'torch/include/ATen/ops/slow_conv3d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.2769667Z adding 'torch/include/ATen/ops/slow_conv3d_forward.h' 2025-06-01T21:23:37.2773102Z adding 'torch/include/ATen/ops/slow_conv3d_forward_cpu_dispatch.h' 2025-06-01T21:23:37.2776098Z adding 'torch/include/ATen/ops/slow_conv3d_forward_native.h' 2025-06-01T21:23:37.2779333Z adding 'torch/include/ATen/ops/slow_conv3d_forward_ops.h' 2025-06-01T21:23:37.2782428Z adding 'torch/include/ATen/ops/slow_conv3d_native.h' 2025-06-01T21:23:37.2785815Z adding 'torch/include/ATen/ops/slow_conv3d_ops.h' 2025-06-01T21:23:37.2789438Z adding 'torch/include/ATen/ops/slow_conv_dilated2d.h' 2025-06-01T21:23:37.2793194Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.2796257Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_cpu_dispatch.h' 2025-06-01T21:23:37.2799408Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_cuda_dispatch.h' 2025-06-01T21:23:37.2802456Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_native.h' 2025-06-01T21:23:37.2805759Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_ops.h' 2025-06-01T21:23:37.2809366Z adding 'torch/include/ATen/ops/slow_conv_dilated3d.h' 2025-06-01T21:23:37.2812894Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.2815946Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_cpu_dispatch.h' 2025-06-01T21:23:37.2819070Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_cuda_dispatch.h' 2025-06-01T21:23:37.2822093Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_native.h' 2025-06-01T21:23:37.2826855Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_ops.h' 2025-06-01T21:23:37.2829941Z adding 'torch/include/ATen/ops/slow_conv_transpose2d.h' 2025-06-01T21:23:37.2833512Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.2836734Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_cpu_dispatch.h' 2025-06-01T21:23:37.2839951Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_cuda_dispatch.h' 2025-06-01T21:23:37.2843042Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_meta.h' 2025-06-01T21:23:37.2846341Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_meta_dispatch.h' 2025-06-01T21:23:37.2849408Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_native.h' 2025-06-01T21:23:37.2852720Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_ops.h' 2025-06-01T21:23:37.2856468Z adding 'torch/include/ATen/ops/slow_conv_transpose3d.h' 2025-06-01T21:23:37.2859972Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_cpu_dispatch.h' 2025-06-01T21:23:37.2863255Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_cuda_dispatch.h' 2025-06-01T21:23:37.2866534Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_native.h' 2025-06-01T21:23:37.2869868Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_ops.h' 2025-06-01T21:23:37.2872882Z adding 'torch/include/ATen/ops/smm.h' 2025-06-01T21:23:37.2876118Z adding 'torch/include/ATen/ops/smm_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.2878912Z adding 'torch/include/ATen/ops/smm_native.h' 2025-06-01T21:23:37.2882585Z adding 'torch/include/ATen/ops/smm_ops.h' 2025-06-01T21:23:37.2885842Z adding 'torch/include/ATen/ops/smooth_l1_loss.h' 2025-06-01T21:23:37.2889112Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward.h' 2025-06-01T21:23:37.2892379Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.2895383Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_cpu_dispatch.h' 2025-06-01T21:23:37.2898719Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_cuda_dispatch.h' 2025-06-01T21:23:37.2901624Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_native.h' 2025-06-01T21:23:37.2904757Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_ops.h' 2025-06-01T21:23:37.2908088Z adding 'torch/include/ATen/ops/smooth_l1_loss_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.2911024Z adding 'torch/include/ATen/ops/smooth_l1_loss_cpu_dispatch.h' 2025-06-01T21:23:37.2914132Z adding 'torch/include/ATen/ops/smooth_l1_loss_cuda_dispatch.h' 2025-06-01T21:23:37.2917135Z adding 'torch/include/ATen/ops/smooth_l1_loss_meta.h' 2025-06-01T21:23:37.2920230Z adding 'torch/include/ATen/ops/smooth_l1_loss_meta_dispatch.h' 2025-06-01T21:23:37.2923218Z adding 'torch/include/ATen/ops/smooth_l1_loss_native.h' 2025-06-01T21:23:37.2926445Z adding 'torch/include/ATen/ops/smooth_l1_loss_ops.h' 2025-06-01T21:23:37.2929756Z adding 'torch/include/ATen/ops/soft_margin_loss.h' 2025-06-01T21:23:37.2933123Z adding 'torch/include/ATen/ops/soft_margin_loss_backward.h' 2025-06-01T21:23:37.2936433Z adding 'torch/include/ATen/ops/soft_margin_loss_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.2939455Z adding 'torch/include/ATen/ops/soft_margin_loss_backward_native.h' 2025-06-01T21:23:37.2942664Z adding 'torch/include/ATen/ops/soft_margin_loss_backward_ops.h' 2025-06-01T21:23:37.2946201Z adding 'torch/include/ATen/ops/soft_margin_loss_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.2949103Z adding 'torch/include/ATen/ops/soft_margin_loss_native.h' 2025-06-01T21:23:37.2952455Z adding 'torch/include/ATen/ops/soft_margin_loss_ops.h' 2025-06-01T21:23:37.2955716Z adding 'torch/include/ATen/ops/softmax.h' 2025-06-01T21:23:37.2959026Z adding 'torch/include/ATen/ops/softmax_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.2962279Z adding 'torch/include/ATen/ops/softmax_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.2965203Z adding 'torch/include/ATen/ops/softmax_native.h' 2025-06-01T21:23:37.2968635Z adding 'torch/include/ATen/ops/softmax_ops.h' 2025-06-01T21:23:37.2971803Z adding 'torch/include/ATen/ops/softplus.h' 2025-06-01T21:23:37.2975142Z adding 'torch/include/ATen/ops/softplus_backward.h' 2025-06-01T21:23:37.2978650Z adding 'torch/include/ATen/ops/softplus_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.2981693Z adding 'torch/include/ATen/ops/softplus_backward_cpu_dispatch.h' 2025-06-01T21:23:37.2984926Z adding 'torch/include/ATen/ops/softplus_backward_cuda_dispatch.h' 2025-06-01T21:23:37.2987951Z adding 'torch/include/ATen/ops/softplus_backward_meta.h' 2025-06-01T21:23:37.2991193Z adding 'torch/include/ATen/ops/softplus_backward_meta_dispatch.h' 2025-06-01T21:23:37.2994199Z adding 'torch/include/ATen/ops/softplus_backward_native.h' 2025-06-01T21:23:37.2997569Z adding 'torch/include/ATen/ops/softplus_backward_ops.h' 2025-06-01T21:23:37.3000942Z adding 'torch/include/ATen/ops/softplus_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.3004042Z adding 'torch/include/ATen/ops/softplus_cpu_dispatch.h' 2025-06-01T21:23:37.3007300Z adding 'torch/include/ATen/ops/softplus_cuda_dispatch.h' 2025-06-01T21:23:37.3010369Z adding 'torch/include/ATen/ops/softplus_meta.h' 2025-06-01T21:23:37.3013617Z adding 'torch/include/ATen/ops/softplus_meta_dispatch.h' 2025-06-01T21:23:37.3016707Z adding 'torch/include/ATen/ops/softplus_native.h' 2025-06-01T21:23:37.3020006Z adding 'torch/include/ATen/ops/softplus_ops.h' 2025-06-01T21:23:37.3023122Z adding 'torch/include/ATen/ops/softshrink.h' 2025-06-01T21:23:37.3026566Z adding 'torch/include/ATen/ops/softshrink_backward.h' 2025-06-01T21:23:37.3030401Z adding 'torch/include/ATen/ops/softshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.3033371Z adding 'torch/include/ATen/ops/softshrink_backward_cpu_dispatch.h' 2025-06-01T21:23:37.3036602Z adding 'torch/include/ATen/ops/softshrink_backward_cuda_dispatch.h' 2025-06-01T21:23:37.3039598Z adding 'torch/include/ATen/ops/softshrink_backward_meta.h' 2025-06-01T21:23:37.3042846Z adding 'torch/include/ATen/ops/softshrink_backward_meta_dispatch.h' 2025-06-01T21:23:37.3045839Z adding 'torch/include/ATen/ops/softshrink_backward_native.h' 2025-06-01T21:23:37.3049195Z adding 'torch/include/ATen/ops/softshrink_backward_ops.h' 2025-06-01T21:23:37.3052559Z adding 'torch/include/ATen/ops/softshrink_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.3055565Z adding 'torch/include/ATen/ops/softshrink_cpu_dispatch.h' 2025-06-01T21:23:37.3058799Z adding 'torch/include/ATen/ops/softshrink_cuda_dispatch.h' 2025-06-01T21:23:37.3061845Z adding 'torch/include/ATen/ops/softshrink_meta.h' 2025-06-01T21:23:37.3065174Z adding 'torch/include/ATen/ops/softshrink_meta_dispatch.h' 2025-06-01T21:23:37.3068213Z adding 'torch/include/ATen/ops/softshrink_native.h' 2025-06-01T21:23:37.3071523Z adding 'torch/include/ATen/ops/softshrink_ops.h' 2025-06-01T21:23:37.3074990Z adding 'torch/include/ATen/ops/sort.h' 2025-06-01T21:23:37.3078492Z adding 'torch/include/ATen/ops/sort_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.3081775Z adding 'torch/include/ATen/ops/sort_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.3084890Z adding 'torch/include/ATen/ops/sort_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.3088108Z adding 'torch/include/ATen/ops/sort_cpu_dispatch.h' 2025-06-01T21:23:37.3091268Z adding 'torch/include/ATen/ops/sort_cuda_dispatch.h' 2025-06-01T21:23:37.3094434Z adding 'torch/include/ATen/ops/sort_meta.h' 2025-06-01T21:23:37.3097670Z adding 'torch/include/ATen/ops/sort_meta_dispatch.h' 2025-06-01T21:23:37.3101415Z adding 'torch/include/ATen/ops/sort_native.h' 2025-06-01T21:23:37.3105313Z adding 'torch/include/ATen/ops/sort_ops.h' 2025-06-01T21:23:37.3108906Z adding 'torch/include/ATen/ops/sparse_bsc_tensor.h' 2025-06-01T21:23:37.3112451Z adding 'torch/include/ATen/ops/sparse_bsc_tensor_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.3115475Z adding 'torch/include/ATen/ops/sparse_bsc_tensor_native.h' 2025-06-01T21:23:37.3118902Z adding 'torch/include/ATen/ops/sparse_bsc_tensor_ops.h' 2025-06-01T21:23:37.3122425Z adding 'torch/include/ATen/ops/sparse_bsr_tensor.h' 2025-06-01T21:23:37.3125911Z adding 'torch/include/ATen/ops/sparse_bsr_tensor_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.3129459Z adding 'torch/include/ATen/ops/sparse_bsr_tensor_native.h' 2025-06-01T21:23:37.3132916Z adding 'torch/include/ATen/ops/sparse_bsr_tensor_ops.h' 2025-06-01T21:23:37.3136609Z adding 'torch/include/ATen/ops/sparse_compressed_tensor.h' 2025-06-01T21:23:37.3140533Z adding 'torch/include/ATen/ops/sparse_compressed_tensor_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.3144044Z adding 'torch/include/ATen/ops/sparse_compressed_tensor_native.h' 2025-06-01T21:23:37.3147874Z adding 'torch/include/ATen/ops/sparse_compressed_tensor_ops.h' 2025-06-01T21:23:37.3151889Z adding 'torch/include/ATen/ops/sparse_coo_tensor.h' 2025-06-01T21:23:37.3155462Z adding 'torch/include/ATen/ops/sparse_coo_tensor_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.3158791Z adding 'torch/include/ATen/ops/sparse_coo_tensor_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.3161816Z adding 'torch/include/ATen/ops/sparse_coo_tensor_native.h' 2025-06-01T21:23:37.3165526Z adding 'torch/include/ATen/ops/sparse_coo_tensor_ops.h' 2025-06-01T21:23:37.3168889Z adding 'torch/include/ATen/ops/sparse_csc_tensor.h' 2025-06-01T21:23:37.3172477Z adding 'torch/include/ATen/ops/sparse_csc_tensor_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.3175449Z adding 'torch/include/ATen/ops/sparse_csc_tensor_native.h' 2025-06-01T21:23:37.3178943Z adding 'torch/include/ATen/ops/sparse_csc_tensor_ops.h' 2025-06-01T21:23:37.3182385Z adding 'torch/include/ATen/ops/sparse_csr_tensor.h' 2025-06-01T21:23:37.3185897Z adding 'torch/include/ATen/ops/sparse_csr_tensor_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.3188866Z adding 'torch/include/ATen/ops/sparse_csr_tensor_native.h' 2025-06-01T21:23:37.3192142Z adding 'torch/include/ATen/ops/sparse_csr_tensor_ops.h' 2025-06-01T21:23:37.3195407Z adding 'torch/include/ATen/ops/sparse_dim.h' 2025-06-01T21:23:37.3198618Z adding 'torch/include/ATen/ops/sparse_dim_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.3201466Z adding 'torch/include/ATen/ops/sparse_dim_native.h' 2025-06-01T21:23:37.3204557Z adding 'torch/include/ATen/ops/sparse_dim_ops.h' 2025-06-01T21:23:37.3207625Z adding 'torch/include/ATen/ops/sparse_mask.h' 2025-06-01T21:23:37.3211033Z adding 'torch/include/ATen/ops/sparse_mask_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.3213971Z adding 'torch/include/ATen/ops/sparse_mask_native.h' 2025-06-01T21:23:37.3217137Z adding 'torch/include/ATen/ops/sparse_mask_ops.h' 2025-06-01T21:23:37.3220278Z adding 'torch/include/ATen/ops/sparse_resize.h' 2025-06-01T21:23:37.3223460Z adding 'torch/include/ATen/ops/sparse_resize_and_clear.h' 2025-06-01T21:23:37.3226921Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.3229866Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_meta_dispatch.h' 2025-06-01T21:23:37.3232784Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_native.h' 2025-06-01T21:23:37.3236337Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_ops.h' 2025-06-01T21:23:37.3239700Z adding 'torch/include/ATen/ops/sparse_resize_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.3242839Z adding 'torch/include/ATen/ops/sparse_resize_meta_dispatch.h' 2025-06-01T21:23:37.3245862Z adding 'torch/include/ATen/ops/sparse_resize_native.h' 2025-06-01T21:23:37.3249166Z adding 'torch/include/ATen/ops/sparse_resize_ops.h' 2025-06-01T21:23:37.3252409Z adding 'torch/include/ATen/ops/sparse_sampled_addmm.h' 2025-06-01T21:23:37.3255460Z adding 'torch/include/ATen/ops/sparse_sampled_addmm_native.h' 2025-06-01T21:23:37.3258660Z adding 'torch/include/ATen/ops/sparse_sampled_addmm_ops.h' 2025-06-01T21:23:37.3261721Z adding 'torch/include/ATen/ops/special_airy_ai.h' 2025-06-01T21:23:37.3265163Z adding 'torch/include/ATen/ops/special_airy_ai_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.3268073Z adding 'torch/include/ATen/ops/special_airy_ai_cpu_dispatch.h' 2025-06-01T21:23:37.3271211Z adding 'torch/include/ATen/ops/special_airy_ai_cuda_dispatch.h' 2025-06-01T21:23:37.3274177Z adding 'torch/include/ATen/ops/special_airy_ai_meta.h' 2025-06-01T21:23:37.3277268Z adding 'torch/include/ATen/ops/special_airy_ai_meta_dispatch.h' 2025-06-01T21:23:37.3280212Z adding 'torch/include/ATen/ops/special_airy_ai_native.h' 2025-06-01T21:23:37.3283335Z adding 'torch/include/ATen/ops/special_airy_ai_ops.h' 2025-06-01T21:23:37.3286390Z adding 'torch/include/ATen/ops/special_bessel_j0.h' 2025-06-01T21:23:37.3289713Z adding 'torch/include/ATen/ops/special_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.3292622Z adding 'torch/include/ATen/ops/special_bessel_j0_cpu_dispatch.h' 2025-06-01T21:23:37.3295787Z adding 'torch/include/ATen/ops/special_bessel_j0_cuda_dispatch.h' 2025-06-01T21:23:37.3298817Z adding 'torch/include/ATen/ops/special_bessel_j0_meta.h' 2025-06-01T21:23:37.3302076Z adding 'torch/include/ATen/ops/special_bessel_j0_meta_dispatch.h' 2025-06-01T21:23:37.3305188Z adding 'torch/include/ATen/ops/special_bessel_j0_native.h' 2025-06-01T21:23:37.3308612Z adding 'torch/include/ATen/ops/special_bessel_j0_ops.h' 2025-06-01T21:23:37.3311710Z adding 'torch/include/ATen/ops/special_bessel_j1.h' 2025-06-01T21:23:37.3315176Z adding 'torch/include/ATen/ops/special_bessel_j1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.3318139Z adding 'torch/include/ATen/ops/special_bessel_j1_cpu_dispatch.h' 2025-06-01T21:23:37.3321336Z adding 'torch/include/ATen/ops/special_bessel_j1_cuda_dispatch.h' 2025-06-01T21:23:37.3324464Z adding 'torch/include/ATen/ops/special_bessel_j1_meta.h' 2025-06-01T21:23:37.3327586Z adding 'torch/include/ATen/ops/special_bessel_j1_meta_dispatch.h' 2025-06-01T21:23:37.3330672Z adding 'torch/include/ATen/ops/special_bessel_j1_native.h' 2025-06-01T21:23:37.3333849Z adding 'torch/include/ATen/ops/special_bessel_j1_ops.h' 2025-06-01T21:23:37.3337101Z adding 'torch/include/ATen/ops/special_bessel_y0.h' 2025-06-01T21:23:37.3340408Z adding 'torch/include/ATen/ops/special_bessel_y0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.3343437Z adding 'torch/include/ATen/ops/special_bessel_y0_cpu_dispatch.h' 2025-06-01T21:23:37.3346688Z adding 'torch/include/ATen/ops/special_bessel_y0_cuda_dispatch.h' 2025-06-01T21:23:37.3349844Z adding 'torch/include/ATen/ops/special_bessel_y0_meta.h' 2025-06-01T21:23:37.3352943Z adding 'torch/include/ATen/ops/special_bessel_y0_meta_dispatch.h' 2025-06-01T21:23:37.3356084Z adding 'torch/include/ATen/ops/special_bessel_y0_native.h' 2025-06-01T21:23:37.3359274Z adding 'torch/include/ATen/ops/special_bessel_y0_ops.h' 2025-06-01T21:23:37.3362493Z adding 'torch/include/ATen/ops/special_bessel_y1.h' 2025-06-01T21:23:37.3365956Z adding 'torch/include/ATen/ops/special_bessel_y1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.3368875Z adding 'torch/include/ATen/ops/special_bessel_y1_cpu_dispatch.h' 2025-06-01T21:23:37.3372073Z adding 'torch/include/ATen/ops/special_bessel_y1_cuda_dispatch.h' 2025-06-01T21:23:37.3375096Z adding 'torch/include/ATen/ops/special_bessel_y1_meta.h' 2025-06-01T21:23:37.3378313Z adding 'torch/include/ATen/ops/special_bessel_y1_meta_dispatch.h' 2025-06-01T21:23:37.3381297Z adding 'torch/include/ATen/ops/special_bessel_y1_native.h' 2025-06-01T21:23:37.3384714Z adding 'torch/include/ATen/ops/special_bessel_y1_ops.h' 2025-06-01T21:23:37.3388031Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t.h' 2025-06-01T21:23:37.3391559Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.3394889Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.3397813Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_cpu_dispatch.h' 2025-06-01T21:23:37.3401064Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_cuda_dispatch.h' 2025-06-01T21:23:37.3404177Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_meta.h' 2025-06-01T21:23:37.3407370Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_meta_dispatch.h' 2025-06-01T21:23:37.3410457Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_native.h' 2025-06-01T21:23:37.3413995Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_ops.h' 2025-06-01T21:23:37.3417341Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u.h' 2025-06-01T21:23:37.3420864Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.3424290Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.3427268Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_cpu_dispatch.h' 2025-06-01T21:23:37.3430484Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_cuda_dispatch.h' 2025-06-01T21:23:37.3433503Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_meta.h' 2025-06-01T21:23:37.3437065Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_meta_dispatch.h' 2025-06-01T21:23:37.3440070Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_native.h' 2025-06-01T21:23:37.3443586Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_ops.h' 2025-06-01T21:23:37.3446987Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v.h' 2025-06-01T21:23:37.3450463Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.3453783Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.3456710Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_cpu_dispatch.h' 2025-06-01T21:23:37.3459930Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_cuda_dispatch.h' 2025-06-01T21:23:37.3462913Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_meta.h' 2025-06-01T21:23:37.3466277Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_meta_dispatch.h' 2025-06-01T21:23:37.3469331Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_native.h' 2025-06-01T21:23:37.3472994Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_ops.h' 2025-06-01T21:23:37.3476437Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w.h' 2025-06-01T21:23:37.3479895Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.3483176Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.3486122Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_cpu_dispatch.h' 2025-06-01T21:23:37.3489415Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_cuda_dispatch.h' 2025-06-01T21:23:37.3492392Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_meta.h' 2025-06-01T21:23:37.3495633Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_meta_dispatch.h' 2025-06-01T21:23:37.3498706Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_native.h' 2025-06-01T21:23:37.3502231Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_ops.h' 2025-06-01T21:23:37.3505592Z adding 'torch/include/ATen/ops/special_digamma.h' 2025-06-01T21:23:37.3509218Z adding 'torch/include/ATen/ops/special_digamma_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.3512255Z adding 'torch/include/ATen/ops/special_digamma_native.h' 2025-06-01T21:23:37.3515230Z adding 'torch/include/ATen/ops/special_digamma_ops.h' 2025-06-01T21:23:37.3518415Z adding 'torch/include/ATen/ops/special_entr.h' 2025-06-01T21:23:37.3522028Z adding 'torch/include/ATen/ops/special_entr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.3525163Z adding 'torch/include/ATen/ops/special_entr_cpu_dispatch.h' 2025-06-01T21:23:37.3529266Z adding 'torch/include/ATen/ops/special_entr_cuda_dispatch.h' 2025-06-01T21:23:37.3531375Z adding 'torch/include/ATen/ops/special_entr_meta.h' 2025-06-01T21:23:37.3535061Z adding 'torch/include/ATen/ops/special_entr_meta_dispatch.h' 2025-06-01T21:23:37.3537566Z adding 'torch/include/ATen/ops/special_entr_native.h' 2025-06-01T21:23:37.3540898Z adding 'torch/include/ATen/ops/special_entr_ops.h' 2025-06-01T21:23:37.3544071Z adding 'torch/include/ATen/ops/special_erf.h' 2025-06-01T21:23:37.3547479Z adding 'torch/include/ATen/ops/special_erf_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.3550381Z adding 'torch/include/ATen/ops/special_erf_native.h' 2025-06-01T21:23:37.3553694Z adding 'torch/include/ATen/ops/special_erf_ops.h' 2025-06-01T21:23:37.3557753Z adding 'torch/include/ATen/ops/special_erfc.h' 2025-06-01T21:23:37.3560163Z adding 'torch/include/ATen/ops/special_erfc_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.3563649Z adding 'torch/include/ATen/ops/special_erfc_native.h' 2025-06-01T21:23:37.3566375Z adding 'torch/include/ATen/ops/special_erfc_ops.h' 2025-06-01T21:23:37.3569694Z adding 'torch/include/ATen/ops/special_erfcx.h' 2025-06-01T21:23:37.3572937Z adding 'torch/include/ATen/ops/special_erfcx_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.3575992Z adding 'torch/include/ATen/ops/special_erfcx_cpu_dispatch.h' 2025-06-01T21:23:37.3579088Z adding 'torch/include/ATen/ops/special_erfcx_cuda_dispatch.h' 2025-06-01T21:23:37.3582260Z adding 'torch/include/ATen/ops/special_erfcx_meta.h' 2025-06-01T21:23:37.3586041Z adding 'torch/include/ATen/ops/special_erfcx_meta_dispatch.h' 2025-06-01T21:23:37.3588611Z adding 'torch/include/ATen/ops/special_erfcx_native.h' 2025-06-01T21:23:37.3592429Z adding 'torch/include/ATen/ops/special_erfcx_ops.h' 2025-06-01T21:23:37.3595033Z adding 'torch/include/ATen/ops/special_erfinv.h' 2025-06-01T21:23:37.3598429Z adding 'torch/include/ATen/ops/special_erfinv_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.3601386Z adding 'torch/include/ATen/ops/special_erfinv_native.h' 2025-06-01T21:23:37.3604869Z adding 'torch/include/ATen/ops/special_erfinv_ops.h' 2025-06-01T21:23:37.3607710Z adding 'torch/include/ATen/ops/special_exp2.h' 2025-06-01T21:23:37.3611091Z adding 'torch/include/ATen/ops/special_exp2_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.3613978Z adding 'torch/include/ATen/ops/special_exp2_native.h' 2025-06-01T21:23:37.3617397Z adding 'torch/include/ATen/ops/special_exp2_ops.h' 2025-06-01T21:23:37.3620978Z adding 'torch/include/ATen/ops/special_expit.h' 2025-06-01T21:23:37.3624547Z adding 'torch/include/ATen/ops/special_expit_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.3627635Z adding 'torch/include/ATen/ops/special_expit_native.h' 2025-06-01T21:23:37.3630828Z adding 'torch/include/ATen/ops/special_expit_ops.h' 2025-06-01T21:23:37.3634105Z adding 'torch/include/ATen/ops/special_expm1.h' 2025-06-01T21:23:37.3637349Z adding 'torch/include/ATen/ops/special_expm1_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.3640559Z adding 'torch/include/ATen/ops/special_expm1_native.h' 2025-06-01T21:23:37.3643871Z adding 'torch/include/ATen/ops/special_expm1_ops.h' 2025-06-01T21:23:37.3647022Z adding 'torch/include/ATen/ops/special_gammainc.h' 2025-06-01T21:23:37.3650315Z adding 'torch/include/ATen/ops/special_gammainc_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.3653187Z adding 'torch/include/ATen/ops/special_gammainc_native.h' 2025-06-01T21:23:37.3656354Z adding 'torch/include/ATen/ops/special_gammainc_ops.h' 2025-06-01T21:23:37.3659682Z adding 'torch/include/ATen/ops/special_gammaincc.h' 2025-06-01T21:23:37.3662940Z adding 'torch/include/ATen/ops/special_gammaincc_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.3665947Z adding 'torch/include/ATen/ops/special_gammaincc_native.h' 2025-06-01T21:23:37.3669127Z adding 'torch/include/ATen/ops/special_gammaincc_ops.h' 2025-06-01T21:23:37.3672225Z adding 'torch/include/ATen/ops/special_gammaln.h' 2025-06-01T21:23:37.3675573Z adding 'torch/include/ATen/ops/special_gammaln_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.3678373Z adding 'torch/include/ATen/ops/special_gammaln_native.h' 2025-06-01T21:23:37.3681566Z adding 'torch/include/ATen/ops/special_gammaln_ops.h' 2025-06-01T21:23:37.3684785Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h.h' 2025-06-01T21:23:37.3688193Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.3691594Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.3694561Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_cpu_dispatch.h' 2025-06-01T21:23:37.3697592Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_cuda_dispatch.h' 2025-06-01T21:23:37.3700557Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_meta.h' 2025-06-01T21:23:37.3703738Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_meta_dispatch.h' 2025-06-01T21:23:37.3706877Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_native.h' 2025-06-01T21:23:37.3710373Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_ops.h' 2025-06-01T21:23:37.3713617Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he.h' 2025-06-01T21:23:37.3716963Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.3720161Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.3723142Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_cpu_dispatch.h' 2025-06-01T21:23:37.3726426Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_cuda_dispatch.h' 2025-06-01T21:23:37.3729157Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_meta.h' 2025-06-01T21:23:37.3732216Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_meta_dispatch.h' 2025-06-01T21:23:37.3735240Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_native.h' 2025-06-01T21:23:37.3738599Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_ops.h' 2025-06-01T21:23:37.3741664Z adding 'torch/include/ATen/ops/special_i0.h' 2025-06-01T21:23:37.3745041Z adding 'torch/include/ATen/ops/special_i0_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.3748045Z adding 'torch/include/ATen/ops/special_i0_native.h' 2025-06-01T21:23:37.3751243Z adding 'torch/include/ATen/ops/special_i0_ops.h' 2025-06-01T21:23:37.3754327Z adding 'torch/include/ATen/ops/special_i0e.h' 2025-06-01T21:23:37.3757646Z adding 'torch/include/ATen/ops/special_i0e_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.3760556Z adding 'torch/include/ATen/ops/special_i0e_cpu_dispatch.h' 2025-06-01T21:23:37.3763604Z adding 'torch/include/ATen/ops/special_i0e_cuda_dispatch.h' 2025-06-01T21:23:37.3766581Z adding 'torch/include/ATen/ops/special_i0e_meta.h' 2025-06-01T21:23:37.3769636Z adding 'torch/include/ATen/ops/special_i0e_meta_dispatch.h' 2025-06-01T21:23:37.3772573Z adding 'torch/include/ATen/ops/special_i0e_native.h' 2025-06-01T21:23:37.3775685Z adding 'torch/include/ATen/ops/special_i0e_ops.h' 2025-06-01T21:23:37.3778764Z adding 'torch/include/ATen/ops/special_i1.h' 2025-06-01T21:23:37.3782027Z adding 'torch/include/ATen/ops/special_i1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.3785032Z adding 'torch/include/ATen/ops/special_i1_cpu_dispatch.h' 2025-06-01T21:23:37.3788057Z adding 'torch/include/ATen/ops/special_i1_cuda_dispatch.h' 2025-06-01T21:23:37.3791001Z adding 'torch/include/ATen/ops/special_i1_meta.h' 2025-06-01T21:23:37.3794349Z adding 'torch/include/ATen/ops/special_i1_meta_dispatch.h' 2025-06-01T21:23:37.3797220Z adding 'torch/include/ATen/ops/special_i1_native.h' 2025-06-01T21:23:37.3800313Z adding 'torch/include/ATen/ops/special_i1_ops.h' 2025-06-01T21:23:37.3803404Z adding 'torch/include/ATen/ops/special_i1e.h' 2025-06-01T21:23:37.3806841Z adding 'torch/include/ATen/ops/special_i1e_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.3809611Z adding 'torch/include/ATen/ops/special_i1e_cpu_dispatch.h' 2025-06-01T21:23:37.3812688Z adding 'torch/include/ATen/ops/special_i1e_cuda_dispatch.h' 2025-06-01T21:23:37.3815684Z adding 'torch/include/ATen/ops/special_i1e_meta.h' 2025-06-01T21:23:37.3818777Z adding 'torch/include/ATen/ops/special_i1e_meta_dispatch.h' 2025-06-01T21:23:37.3821740Z adding 'torch/include/ATen/ops/special_i1e_native.h' 2025-06-01T21:23:37.3824995Z adding 'torch/include/ATen/ops/special_i1e_ops.h' 2025-06-01T21:23:37.3828293Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l.h' 2025-06-01T21:23:37.3831642Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.3834843Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.3838082Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_cpu_dispatch.h' 2025-06-01T21:23:37.3841203Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_cuda_dispatch.h' 2025-06-01T21:23:37.3844142Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_meta.h' 2025-06-01T21:23:37.3847192Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_meta_dispatch.h' 2025-06-01T21:23:37.3850191Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_native.h' 2025-06-01T21:23:37.3853626Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_ops.h' 2025-06-01T21:23:37.3856930Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p.h' 2025-06-01T21:23:37.3860299Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.3863448Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.3866517Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_cpu_dispatch.h' 2025-06-01T21:23:37.3869621Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_cuda_dispatch.h' 2025-06-01T21:23:37.3872606Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_meta.h' 2025-06-01T21:23:37.3875742Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_meta_dispatch.h' 2025-06-01T21:23:37.3878827Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_native.h' 2025-06-01T21:23:37.3882228Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_ops.h' 2025-06-01T21:23:37.3885334Z adding 'torch/include/ATen/ops/special_log1p.h' 2025-06-01T21:23:37.3888571Z adding 'torch/include/ATen/ops/special_log1p_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.3891411Z adding 'torch/include/ATen/ops/special_log1p_native.h' 2025-06-01T21:23:37.3894590Z adding 'torch/include/ATen/ops/special_log1p_ops.h' 2025-06-01T21:23:37.3897675Z adding 'torch/include/ATen/ops/special_log_ndtr.h' 2025-06-01T21:23:37.3901010Z adding 'torch/include/ATen/ops/special_log_ndtr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.3904017Z adding 'torch/include/ATen/ops/special_log_ndtr_cpu_dispatch.h' 2025-06-01T21:23:37.3907079Z adding 'torch/include/ATen/ops/special_log_ndtr_cuda_dispatch.h' 2025-06-01T21:23:37.3910060Z adding 'torch/include/ATen/ops/special_log_ndtr_meta.h' 2025-06-01T21:23:37.3913144Z adding 'torch/include/ATen/ops/special_log_ndtr_meta_dispatch.h' 2025-06-01T21:23:37.3916100Z adding 'torch/include/ATen/ops/special_log_ndtr_native.h' 2025-06-01T21:23:37.3919205Z adding 'torch/include/ATen/ops/special_log_ndtr_ops.h' 2025-06-01T21:23:37.3922244Z adding 'torch/include/ATen/ops/special_log_softmax.h' 2025-06-01T21:23:37.3925723Z adding 'torch/include/ATen/ops/special_log_softmax_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.3928663Z adding 'torch/include/ATen/ops/special_log_softmax_native.h' 2025-06-01T21:23:37.3931766Z adding 'torch/include/ATen/ops/special_log_softmax_ops.h' 2025-06-01T21:23:37.3934952Z adding 'torch/include/ATen/ops/special_logit.h' 2025-06-01T21:23:37.3938148Z adding 'torch/include/ATen/ops/special_logit_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.3940985Z adding 'torch/include/ATen/ops/special_logit_native.h' 2025-06-01T21:23:37.3944318Z adding 'torch/include/ATen/ops/special_logit_ops.h' 2025-06-01T21:23:37.3947431Z adding 'torch/include/ATen/ops/special_logsumexp.h' 2025-06-01T21:23:37.3950723Z adding 'torch/include/ATen/ops/special_logsumexp_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.3953967Z adding 'torch/include/ATen/ops/special_logsumexp_native.h' 2025-06-01T21:23:37.3957187Z adding 'torch/include/ATen/ops/special_logsumexp_ops.h' 2025-06-01T21:23:37.3960694Z adding 'torch/include/ATen/ops/special_modified_bessel_i0.h' 2025-06-01T21:23:37.3963981Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.3966913Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_cpu_dispatch.h' 2025-06-01T21:23:37.3970341Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_cuda_dispatch.h' 2025-06-01T21:23:37.3973450Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_meta.h' 2025-06-01T21:23:37.3976499Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_meta_dispatch.h' 2025-06-01T21:23:37.3979495Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_native.h' 2025-06-01T21:23:37.3982725Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_ops.h' 2025-06-01T21:23:37.3985873Z adding 'torch/include/ATen/ops/special_modified_bessel_i1.h' 2025-06-01T21:23:37.3989204Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.3992122Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_cpu_dispatch.h' 2025-06-01T21:23:37.3995163Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_cuda_dispatch.h' 2025-06-01T21:23:37.3998115Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_meta.h' 2025-06-01T21:23:37.4001187Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_meta_dispatch.h' 2025-06-01T21:23:37.4004181Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_native.h' 2025-06-01T21:23:37.4007328Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_ops.h' 2025-06-01T21:23:37.4010401Z adding 'torch/include/ATen/ops/special_modified_bessel_k0.h' 2025-06-01T21:23:37.4013993Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.4016648Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_cpu_dispatch.h' 2025-06-01T21:23:37.4019689Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_cuda_dispatch.h' 2025-06-01T21:23:37.4022629Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_meta.h' 2025-06-01T21:23:37.4025860Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_meta_dispatch.h' 2025-06-01T21:23:37.4028873Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_native.h' 2025-06-01T21:23:37.4032033Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_ops.h' 2025-06-01T21:23:37.4035080Z adding 'torch/include/ATen/ops/special_modified_bessel_k1.h' 2025-06-01T21:23:37.4039431Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.4046773Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_cpu_dispatch.h' 2025-06-01T21:23:37.4047484Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_cuda_dispatch.h' 2025-06-01T21:23:37.4050821Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_meta.h' 2025-06-01T21:23:37.4053700Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_meta_dispatch.h' 2025-06-01T21:23:37.4056969Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_native.h' 2025-06-01T21:23:37.4060145Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_ops.h' 2025-06-01T21:23:37.4063241Z adding 'torch/include/ATen/ops/special_multigammaln.h' 2025-06-01T21:23:37.4067189Z adding 'torch/include/ATen/ops/special_multigammaln_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.4069649Z adding 'torch/include/ATen/ops/special_multigammaln_native.h' 2025-06-01T21:23:37.4072781Z adding 'torch/include/ATen/ops/special_multigammaln_ops.h' 2025-06-01T21:23:37.4075895Z adding 'torch/include/ATen/ops/special_ndtr.h' 2025-06-01T21:23:37.4079330Z adding 'torch/include/ATen/ops/special_ndtr_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.4082019Z adding 'torch/include/ATen/ops/special_ndtr_native.h' 2025-06-01T21:23:37.4085169Z adding 'torch/include/ATen/ops/special_ndtr_ops.h' 2025-06-01T21:23:37.4088230Z adding 'torch/include/ATen/ops/special_ndtri.h' 2025-06-01T21:23:37.4091527Z adding 'torch/include/ATen/ops/special_ndtri_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.4094409Z adding 'torch/include/ATen/ops/special_ndtri_cpu_dispatch.h' 2025-06-01T21:23:37.4097487Z adding 'torch/include/ATen/ops/special_ndtri_cuda_dispatch.h' 2025-06-01T21:23:37.4100622Z adding 'torch/include/ATen/ops/special_ndtri_meta.h' 2025-06-01T21:23:37.4103707Z adding 'torch/include/ATen/ops/special_ndtri_meta_dispatch.h' 2025-06-01T21:23:37.4106775Z adding 'torch/include/ATen/ops/special_ndtri_native.h' 2025-06-01T21:23:37.4110023Z adding 'torch/include/ATen/ops/special_ndtri_ops.h' 2025-06-01T21:23:37.4113153Z adding 'torch/include/ATen/ops/special_polygamma.h' 2025-06-01T21:23:37.4116408Z adding 'torch/include/ATen/ops/special_polygamma_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.4119265Z adding 'torch/include/ATen/ops/special_polygamma_native.h' 2025-06-01T21:23:37.4122461Z adding 'torch/include/ATen/ops/special_polygamma_ops.h' 2025-06-01T21:23:37.4125565Z adding 'torch/include/ATen/ops/special_psi.h' 2025-06-01T21:23:37.4128799Z adding 'torch/include/ATen/ops/special_psi_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.4131697Z adding 'torch/include/ATen/ops/special_psi_native.h' 2025-06-01T21:23:37.4134871Z adding 'torch/include/ATen/ops/special_psi_ops.h' 2025-06-01T21:23:37.4137996Z adding 'torch/include/ATen/ops/special_round.h' 2025-06-01T21:23:37.4141250Z adding 'torch/include/ATen/ops/special_round_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.4144223Z adding 'torch/include/ATen/ops/special_round_native.h' 2025-06-01T21:23:37.4147455Z adding 'torch/include/ATen/ops/special_round_ops.h' 2025-06-01T21:23:37.4150673Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0.h' 2025-06-01T21:23:37.4154001Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.4157318Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_cpu_dispatch.h' 2025-06-01T21:23:37.4160426Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_cuda_dispatch.h' 2025-06-01T21:23:37.4163444Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_meta.h' 2025-06-01T21:23:37.4166528Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_meta_dispatch.h' 2025-06-01T21:23:37.4169500Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_native.h' 2025-06-01T21:23:37.4172662Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_ops.h' 2025-06-01T21:23:37.4175675Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1.h' 2025-06-01T21:23:37.4178959Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.4181870Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_cpu_dispatch.h' 2025-06-01T21:23:37.4185166Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_cuda_dispatch.h' 2025-06-01T21:23:37.4188475Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_meta.h' 2025-06-01T21:23:37.4191353Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_meta_dispatch.h' 2025-06-01T21:23:37.4194707Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_native.h' 2025-06-01T21:23:37.4197486Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_ops.h' 2025-06-01T21:23:37.4200688Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t.h' 2025-06-01T21:23:37.4204119Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.4207298Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.4210279Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_cpu_dispatch.h' 2025-06-01T21:23:37.4213669Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_cuda_dispatch.h' 2025-06-01T21:23:37.4216485Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_meta.h' 2025-06-01T21:23:37.4219593Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_meta_dispatch.h' 2025-06-01T21:23:37.4222685Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_native.h' 2025-06-01T21:23:37.4226245Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_ops.h' 2025-06-01T21:23:37.4229529Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u.h' 2025-06-01T21:23:37.4232931Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.4236127Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.4239441Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_cpu_dispatch.h' 2025-06-01T21:23:37.4242582Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_cuda_dispatch.h' 2025-06-01T21:23:37.4245558Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_meta.h' 2025-06-01T21:23:37.4248656Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_meta_dispatch.h' 2025-06-01T21:23:37.4251706Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_native.h' 2025-06-01T21:23:37.4255141Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_ops.h' 2025-06-01T21:23:37.4264490Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v.h' 2025-06-01T21:23:37.4265188Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.4266112Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.4292100Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_cpu_dispatch.h' 2025-06-01T21:23:37.4292756Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_cuda_dispatch.h' 2025-06-01T21:23:37.4293363Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_meta.h' 2025-06-01T21:23:37.4294063Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_meta_dispatch.h' 2025-06-01T21:23:37.4294678Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_native.h' 2025-06-01T21:23:37.4295247Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_ops.h' 2025-06-01T21:23:37.4295799Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w.h' 2025-06-01T21:23:37.4296466Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.4297784Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.4300713Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_cpu_dispatch.h' 2025-06-01T21:23:37.4304037Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_cuda_dispatch.h' 2025-06-01T21:23:37.4307090Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_meta.h' 2025-06-01T21:23:37.4310522Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_meta_dispatch.h' 2025-06-01T21:23:37.4314529Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_native.h' 2025-06-01T21:23:37.4318326Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_ops.h' 2025-06-01T21:23:37.4322489Z adding 'torch/include/ATen/ops/special_sinc.h' 2025-06-01T21:23:37.4327029Z adding 'torch/include/ATen/ops/special_sinc_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.4330228Z adding 'torch/include/ATen/ops/special_sinc_native.h' 2025-06-01T21:23:37.4333614Z adding 'torch/include/ATen/ops/special_sinc_ops.h' 2025-06-01T21:23:37.4337355Z adding 'torch/include/ATen/ops/special_softmax.h' 2025-06-01T21:23:37.4340054Z adding 'torch/include/ATen/ops/special_softmax_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.4343168Z adding 'torch/include/ATen/ops/special_softmax_native.h' 2025-06-01T21:23:37.4346494Z adding 'torch/include/ATen/ops/special_softmax_ops.h' 2025-06-01T21:23:37.4350341Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0.h' 2025-06-01T21:23:37.4353073Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.4356816Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_cpu_dispatch.h' 2025-06-01T21:23:37.4360434Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_cuda_dispatch.h' 2025-06-01T21:23:37.4363071Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_meta.h' 2025-06-01T21:23:37.4366314Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_meta_dispatch.h' 2025-06-01T21:23:37.4369291Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_native.h' 2025-06-01T21:23:37.4372599Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_ops.h' 2025-06-01T21:23:37.4375790Z adding 'torch/include/ATen/ops/special_xlog1py.h' 2025-06-01T21:23:37.4389318Z adding 'torch/include/ATen/ops/special_xlog1py_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.4390156Z adding 'torch/include/ATen/ops/special_xlog1py_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.4390793Z adding 'torch/include/ATen/ops/special_xlog1py_cpu_dispatch.h' 2025-06-01T21:23:37.4391245Z adding 'torch/include/ATen/ops/special_xlog1py_cuda_dispatch.h' 2025-06-01T21:23:37.4391771Z adding 'torch/include/ATen/ops/special_xlog1py_meta.h' 2025-06-01T21:23:37.4395151Z adding 'torch/include/ATen/ops/special_xlog1py_meta_dispatch.h' 2025-06-01T21:23:37.4398236Z adding 'torch/include/ATen/ops/special_xlog1py_native.h' 2025-06-01T21:23:37.4401745Z adding 'torch/include/ATen/ops/special_xlog1py_ops.h' 2025-06-01T21:23:37.4405153Z adding 'torch/include/ATen/ops/special_xlogy.h' 2025-06-01T21:23:37.4408721Z adding 'torch/include/ATen/ops/special_xlogy_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.4412202Z adding 'torch/include/ATen/ops/special_xlogy_native.h' 2025-06-01T21:23:37.4415228Z adding 'torch/include/ATen/ops/special_xlogy_ops.h' 2025-06-01T21:23:37.4418751Z adding 'torch/include/ATen/ops/special_zeta.h' 2025-06-01T21:23:37.4422084Z adding 'torch/include/ATen/ops/special_zeta_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.4425561Z adding 'torch/include/ATen/ops/special_zeta_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.4429386Z adding 'torch/include/ATen/ops/special_zeta_cpu_dispatch.h' 2025-06-01T21:23:37.4431769Z adding 'torch/include/ATen/ops/special_zeta_cuda_dispatch.h' 2025-06-01T21:23:37.4435125Z adding 'torch/include/ATen/ops/special_zeta_meta.h' 2025-06-01T21:23:37.4438008Z adding 'torch/include/ATen/ops/special_zeta_meta_dispatch.h' 2025-06-01T21:23:37.4441009Z adding 'torch/include/ATen/ops/special_zeta_native.h' 2025-06-01T21:23:37.4444419Z adding 'torch/include/ATen/ops/special_zeta_ops.h' 2025-06-01T21:23:37.4447858Z adding 'torch/include/ATen/ops/split.h' 2025-06-01T21:23:37.4451699Z adding 'torch/include/ATen/ops/split_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.4454716Z adding 'torch/include/ATen/ops/split_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.4457878Z adding 'torch/include/ATen/ops/split_copy.h' 2025-06-01T21:23:37.4461748Z adding 'torch/include/ATen/ops/split_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.4464783Z adding 'torch/include/ATen/ops/split_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.4467658Z adding 'torch/include/ATen/ops/split_copy_native.h' 2025-06-01T21:23:37.4470861Z adding 'torch/include/ATen/ops/split_copy_ops.h' 2025-06-01T21:23:37.4473881Z adding 'torch/include/ATen/ops/split_native.h' 2025-06-01T21:23:37.4477091Z adding 'torch/include/ATen/ops/split_ops.h' 2025-06-01T21:23:37.4480307Z adding 'torch/include/ATen/ops/split_with_sizes.h' 2025-06-01T21:23:37.4483625Z adding 'torch/include/ATen/ops/split_with_sizes_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.4486835Z adding 'torch/include/ATen/ops/split_with_sizes_copy.h' 2025-06-01T21:23:37.4490265Z adding 'torch/include/ATen/ops/split_with_sizes_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.4493598Z adding 'torch/include/ATen/ops/split_with_sizes_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.4496549Z adding 'torch/include/ATen/ops/split_with_sizes_copy_cuda_dispatch.h' 2025-06-01T21:23:37.4499586Z adding 'torch/include/ATen/ops/split_with_sizes_copy_native.h' 2025-06-01T21:23:37.4502809Z adding 'torch/include/ATen/ops/split_with_sizes_copy_ops.h' 2025-06-01T21:23:37.4505968Z adding 'torch/include/ATen/ops/split_with_sizes_native.h' 2025-06-01T21:23:37.4509107Z adding 'torch/include/ATen/ops/split_with_sizes_ops.h' 2025-06-01T21:23:37.4512163Z adding 'torch/include/ATen/ops/sqrt.h' 2025-06-01T21:23:37.4515446Z adding 'torch/include/ATen/ops/sqrt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.4518400Z adding 'torch/include/ATen/ops/sqrt_cpu_dispatch.h' 2025-06-01T21:23:37.4521458Z adding 'torch/include/ATen/ops/sqrt_cuda_dispatch.h' 2025-06-01T21:23:37.4524425Z adding 'torch/include/ATen/ops/sqrt_meta.h' 2025-06-01T21:23:37.4527499Z adding 'torch/include/ATen/ops/sqrt_meta_dispatch.h' 2025-06-01T21:23:37.4530585Z adding 'torch/include/ATen/ops/sqrt_native.h' 2025-06-01T21:23:37.4533766Z adding 'torch/include/ATen/ops/sqrt_ops.h' 2025-06-01T21:23:37.4536837Z adding 'torch/include/ATen/ops/square.h' 2025-06-01T21:23:37.4540068Z adding 'torch/include/ATen/ops/square_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.4542965Z adding 'torch/include/ATen/ops/square_native.h' 2025-06-01T21:23:37.4546310Z adding 'torch/include/ATen/ops/square_ops.h' 2025-06-01T21:23:37.4549600Z adding 'torch/include/ATen/ops/squeeze.h' 2025-06-01T21:23:37.4552864Z adding 'torch/include/ATen/ops/squeeze_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.4555932Z adding 'torch/include/ATen/ops/squeeze_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.4559038Z adding 'torch/include/ATen/ops/squeeze_copy.h' 2025-06-01T21:23:37.4562334Z adding 'torch/include/ATen/ops/squeeze_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.4565513Z adding 'torch/include/ATen/ops/squeeze_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.4568335Z adding 'torch/include/ATen/ops/squeeze_copy_native.h' 2025-06-01T21:23:37.4571719Z adding 'torch/include/ATen/ops/squeeze_copy_ops.h' 2025-06-01T21:23:37.4574919Z adding 'torch/include/ATen/ops/squeeze_native.h' 2025-06-01T21:23:37.4578375Z adding 'torch/include/ATen/ops/squeeze_ops.h' 2025-06-01T21:23:37.4581595Z adding 'torch/include/ATen/ops/sspaddmm.h' 2025-06-01T21:23:37.4584997Z adding 'torch/include/ATen/ops/sspaddmm_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.4588039Z adding 'torch/include/ATen/ops/sspaddmm_cpu_dispatch.h' 2025-06-01T21:23:37.4591144Z adding 'torch/include/ATen/ops/sspaddmm_cuda_dispatch.h' 2025-06-01T21:23:37.4594175Z adding 'torch/include/ATen/ops/sspaddmm_native.h' 2025-06-01T21:23:37.4597573Z adding 'torch/include/ATen/ops/sspaddmm_ops.h' 2025-06-01T21:23:37.4600564Z adding 'torch/include/ATen/ops/stack.h' 2025-06-01T21:23:37.4603802Z adding 'torch/include/ATen/ops/stack_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.4606706Z adding 'torch/include/ATen/ops/stack_native.h' 2025-06-01T21:23:37.4609841Z adding 'torch/include/ATen/ops/stack_ops.h' 2025-06-01T21:23:37.4613324Z adding 'torch/include/ATen/ops/std.h' 2025-06-01T21:23:37.4616740Z adding 'torch/include/ATen/ops/std_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.4619824Z adding 'torch/include/ATen/ops/std_cpu_dispatch.h' 2025-06-01T21:23:37.4622977Z adding 'torch/include/ATen/ops/std_cuda_dispatch.h' 2025-06-01T21:23:37.4626450Z adding 'torch/include/ATen/ops/std_mean.h' 2025-06-01T21:23:37.4629805Z adding 'torch/include/ATen/ops/std_mean_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.4632924Z adding 'torch/include/ATen/ops/std_mean_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.4635951Z adding 'torch/include/ATen/ops/std_mean_cpu_dispatch.h' 2025-06-01T21:23:37.4639100Z adding 'torch/include/ATen/ops/std_mean_cuda_dispatch.h' 2025-06-01T21:23:37.4642126Z adding 'torch/include/ATen/ops/std_mean_native.h' 2025-06-01T21:23:37.4645684Z adding 'torch/include/ATen/ops/std_mean_ops.h' 2025-06-01T21:23:37.4653321Z adding 'torch/include/ATen/ops/std_native.h' 2025-06-01T21:23:37.4653641Z adding 'torch/include/ATen/ops/std_ops.h' 2025-06-01T21:23:37.4656564Z adding 'torch/include/ATen/ops/stft.h' 2025-06-01T21:23:37.4696185Z adding 'torch/include/ATen/ops/stft_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.4696666Z adding 'torch/include/ATen/ops/stft_native.h' 2025-06-01T21:23:37.4696975Z adding 'torch/include/ATen/ops/stft_ops.h' 2025-06-01T21:23:37.4697275Z adding 'torch/include/ATen/ops/stride.h' 2025-06-01T21:23:37.4697696Z adding 'torch/include/ATen/ops/stride_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.4698161Z adding 'torch/include/ATen/ops/stride_native.h' 2025-06-01T21:23:37.4698484Z adding 'torch/include/ATen/ops/stride_ops.h' 2025-06-01T21:23:37.4698788Z adding 'torch/include/ATen/ops/sub.h' 2025-06-01T21:23:37.4699202Z adding 'torch/include/ATen/ops/sub_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.4699808Z adding 'torch/include/ATen/ops/sub_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.4700329Z adding 'torch/include/ATen/ops/sub_cpu_dispatch.h' 2025-06-01T21:23:37.4702049Z adding 'torch/include/ATen/ops/sub_cuda_dispatch.h' 2025-06-01T21:23:37.4702977Z adding 'torch/include/ATen/ops/sub_meta.h' 2025-06-01T21:23:37.4706282Z adding 'torch/include/ATen/ops/sub_meta_dispatch.h' 2025-06-01T21:23:37.4709608Z adding 'torch/include/ATen/ops/sub_native.h' 2025-06-01T21:23:37.4714175Z adding 'torch/include/ATen/ops/sub_ops.h' 2025-06-01T21:23:37.4716548Z adding 'torch/include/ATen/ops/subtract.h' 2025-06-01T21:23:37.4720514Z adding 'torch/include/ATen/ops/subtract_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.4723575Z adding 'torch/include/ATen/ops/subtract_native.h' 2025-06-01T21:23:37.4727001Z adding 'torch/include/ATen/ops/subtract_ops.h' 2025-06-01T21:23:37.4731250Z adding 'torch/include/ATen/ops/sum.h' 2025-06-01T21:23:37.4733882Z adding 'torch/include/ATen/ops/sum_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.4737037Z adding 'torch/include/ATen/ops/sum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.4740082Z adding 'torch/include/ATen/ops/sum_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.4743135Z adding 'torch/include/ATen/ops/sum_cpu_dispatch.h' 2025-06-01T21:23:37.4747349Z adding 'torch/include/ATen/ops/sum_cuda_dispatch.h' 2025-06-01T21:23:37.4749605Z adding 'torch/include/ATen/ops/sum_meta.h' 2025-06-01T21:23:37.4752713Z adding 'torch/include/ATen/ops/sum_meta_dispatch.h' 2025-06-01T21:23:37.4755900Z adding 'torch/include/ATen/ops/sum_native.h' 2025-06-01T21:23:37.4759342Z adding 'torch/include/ATen/ops/sum_ops.h' 2025-06-01T21:23:37.4762669Z adding 'torch/include/ATen/ops/sum_to_size.h' 2025-06-01T21:23:37.4765835Z adding 'torch/include/ATen/ops/sum_to_size_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.4768730Z adding 'torch/include/ATen/ops/sum_to_size_native.h' 2025-06-01T21:23:37.4771797Z adding 'torch/include/ATen/ops/sum_to_size_ops.h' 2025-06-01T21:23:37.4774899Z adding 'torch/include/ATen/ops/svd.h' 2025-06-01T21:23:37.4778311Z adding 'torch/include/ATen/ops/svd_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.4781224Z adding 'torch/include/ATen/ops/svd_native.h' 2025-06-01T21:23:37.4784533Z adding 'torch/include/ATen/ops/svd_ops.h' 2025-06-01T21:23:37.4787632Z adding 'torch/include/ATen/ops/swapaxes.h' 2025-06-01T21:23:37.4790884Z adding 'torch/include/ATen/ops/swapaxes_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.4793788Z adding 'torch/include/ATen/ops/swapaxes_native.h' 2025-06-01T21:23:37.4796952Z adding 'torch/include/ATen/ops/swapaxes_ops.h' 2025-06-01T21:23:37.4800030Z adding 'torch/include/ATen/ops/swapdims.h' 2025-06-01T21:23:37.4804080Z adding 'torch/include/ATen/ops/swapdims_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.4806279Z adding 'torch/include/ATen/ops/swapdims_native.h' 2025-06-01T21:23:37.4809470Z adding 'torch/include/ATen/ops/swapdims_ops.h' 2025-06-01T21:23:37.4812621Z adding 'torch/include/ATen/ops/sym_constrain_range.h' 2025-06-01T21:23:37.4815817Z adding 'torch/include/ATen/ops/sym_constrain_range_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.4818825Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size.h' 2025-06-01T21:23:37.4822011Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.4825005Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size_native.h' 2025-06-01T21:23:37.4828113Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size_ops.h' 2025-06-01T21:23:37.4831063Z adding 'torch/include/ATen/ops/sym_constrain_range_native.h' 2025-06-01T21:23:37.4834669Z adding 'torch/include/ATen/ops/sym_constrain_range_ops.h' 2025-06-01T21:23:37.4837295Z adding 'torch/include/ATen/ops/sym_numel.h' 2025-06-01T21:23:37.4840537Z adding 'torch/include/ATen/ops/sym_numel_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.4843350Z adding 'torch/include/ATen/ops/sym_numel_native.h' 2025-06-01T21:23:37.4846470Z adding 'torch/include/ATen/ops/sym_numel_ops.h' 2025-06-01T21:23:37.4849471Z adding 'torch/include/ATen/ops/sym_size.h' 2025-06-01T21:23:37.4852669Z adding 'torch/include/ATen/ops/sym_size_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.4855530Z adding 'torch/include/ATen/ops/sym_size_native.h' 2025-06-01T21:23:37.4858597Z adding 'torch/include/ATen/ops/sym_size_ops.h' 2025-06-01T21:23:37.4861654Z adding 'torch/include/ATen/ops/sym_storage_offset.h' 2025-06-01T21:23:37.4864963Z adding 'torch/include/ATen/ops/sym_storage_offset_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.4868170Z adding 'torch/include/ATen/ops/sym_storage_offset_native.h' 2025-06-01T21:23:37.4871336Z adding 'torch/include/ATen/ops/sym_storage_offset_ops.h' 2025-06-01T21:23:37.4874341Z adding 'torch/include/ATen/ops/sym_stride.h' 2025-06-01T21:23:37.4877553Z adding 'torch/include/ATen/ops/sym_stride_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.4880448Z adding 'torch/include/ATen/ops/sym_stride_native.h' 2025-06-01T21:23:37.4883528Z adding 'torch/include/ATen/ops/sym_stride_ops.h' 2025-06-01T21:23:37.4886513Z adding 'torch/include/ATen/ops/t.h' 2025-06-01T21:23:37.4889706Z adding 'torch/include/ATen/ops/t_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.4892649Z adding 'torch/include/ATen/ops/t_copy.h' 2025-06-01T21:23:37.4895867Z adding 'torch/include/ATen/ops/t_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.4898994Z adding 'torch/include/ATen/ops/t_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.4901858Z adding 'torch/include/ATen/ops/t_copy_native.h' 2025-06-01T21:23:37.4905182Z adding 'torch/include/ATen/ops/t_copy_ops.h' 2025-06-01T21:23:37.4908064Z adding 'torch/include/ATen/ops/t_native.h' 2025-06-01T21:23:37.4911178Z adding 'torch/include/ATen/ops/t_ops.h' 2025-06-01T21:23:37.4914223Z adding 'torch/include/ATen/ops/take.h' 2025-06-01T21:23:37.4917442Z adding 'torch/include/ATen/ops/take_along_dim.h' 2025-06-01T21:23:37.4920720Z adding 'torch/include/ATen/ops/take_along_dim_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.4923657Z adding 'torch/include/ATen/ops/take_along_dim_native.h' 2025-06-01T21:23:37.4926939Z adding 'torch/include/ATen/ops/take_along_dim_ops.h' 2025-06-01T21:23:37.4930061Z adding 'torch/include/ATen/ops/take_cpu_dispatch.h' 2025-06-01T21:23:37.4933162Z adding 'torch/include/ATen/ops/take_cuda_dispatch.h' 2025-06-01T21:23:37.4936267Z adding 'torch/include/ATen/ops/take_native.h' 2025-06-01T21:23:37.4939451Z adding 'torch/include/ATen/ops/take_ops.h' 2025-06-01T21:23:37.4942679Z adding 'torch/include/ATen/ops/tan.h' 2025-06-01T21:23:37.4947033Z adding 'torch/include/ATen/ops/tan_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.4949330Z adding 'torch/include/ATen/ops/tan_cpu_dispatch.h' 2025-06-01T21:23:37.4952779Z adding 'torch/include/ATen/ops/tan_cuda_dispatch.h' 2025-06-01T21:23:37.4955494Z adding 'torch/include/ATen/ops/tan_meta.h' 2025-06-01T21:23:37.4958736Z adding 'torch/include/ATen/ops/tan_meta_dispatch.h' 2025-06-01T21:23:37.4961756Z adding 'torch/include/ATen/ops/tan_native.h' 2025-06-01T21:23:37.4965068Z adding 'torch/include/ATen/ops/tan_ops.h' 2025-06-01T21:23:37.4968170Z adding 'torch/include/ATen/ops/tanh.h' 2025-06-01T21:23:37.4971490Z adding 'torch/include/ATen/ops/tanh_backward.h' 2025-06-01T21:23:37.4975781Z adding 'torch/include/ATen/ops/tanh_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.4977928Z adding 'torch/include/ATen/ops/tanh_backward_cpu_dispatch.h' 2025-06-01T21:23:37.4981608Z adding 'torch/include/ATen/ops/tanh_backward_cuda_dispatch.h' 2025-06-01T21:23:37.4984299Z adding 'torch/include/ATen/ops/tanh_backward_meta.h' 2025-06-01T21:23:37.4987560Z adding 'torch/include/ATen/ops/tanh_backward_meta_dispatch.h' 2025-06-01T21:23:37.4990598Z adding 'torch/include/ATen/ops/tanh_backward_native.h' 2025-06-01T21:23:37.4993876Z adding 'torch/include/ATen/ops/tanh_backward_ops.h' 2025-06-01T21:23:37.4997163Z adding 'torch/include/ATen/ops/tanh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.5000277Z adding 'torch/include/ATen/ops/tanh_cpu_dispatch.h' 2025-06-01T21:23:37.5004386Z adding 'torch/include/ATen/ops/tanh_cuda_dispatch.h' 2025-06-01T21:23:37.5006557Z adding 'torch/include/ATen/ops/tanh_meta.h' 2025-06-01T21:23:37.5010172Z adding 'torch/include/ATen/ops/tanh_meta_dispatch.h' 2025-06-01T21:23:37.5012872Z adding 'torch/include/ATen/ops/tanh_native.h' 2025-06-01T21:23:37.5016217Z adding 'torch/include/ATen/ops/tanh_ops.h' 2025-06-01T21:23:37.5019426Z adding 'torch/include/ATen/ops/tensor.h' 2025-06-01T21:23:37.5022982Z adding 'torch/include/ATen/ops/tensor_split.h' 2025-06-01T21:23:37.5027441Z adding 'torch/include/ATen/ops/tensor_split_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.5029672Z adding 'torch/include/ATen/ops/tensor_split_native.h' 2025-06-01T21:23:37.5033139Z adding 'torch/include/ATen/ops/tensor_split_ops.h' 2025-06-01T21:23:37.5036242Z adding 'torch/include/ATen/ops/tensordot.h' 2025-06-01T21:23:37.5039687Z adding 'torch/include/ATen/ops/tensordot_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.5042596Z adding 'torch/include/ATen/ops/tensordot_native.h' 2025-06-01T21:23:37.5045994Z adding 'torch/include/ATen/ops/tensordot_ops.h' 2025-06-01T21:23:37.5050225Z adding 'torch/include/ATen/ops/thnn_conv2d.h' 2025-06-01T21:23:37.5053225Z adding 'torch/include/ATen/ops/thnn_conv2d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.5056358Z adding 'torch/include/ATen/ops/thnn_conv2d_native.h' 2025-06-01T21:23:37.5059660Z adding 'torch/include/ATen/ops/thnn_conv2d_ops.h' 2025-06-01T21:23:37.5063062Z adding 'torch/include/ATen/ops/threshold.h' 2025-06-01T21:23:37.5066816Z adding 'torch/include/ATen/ops/threshold_backward.h' 2025-06-01T21:23:37.5069777Z adding 'torch/include/ATen/ops/threshold_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.5073312Z adding 'torch/include/ATen/ops/threshold_backward_cpu_dispatch.h' 2025-06-01T21:23:37.5076335Z adding 'torch/include/ATen/ops/threshold_backward_cuda_dispatch.h' 2025-06-01T21:23:37.5079507Z adding 'torch/include/ATen/ops/threshold_backward_meta.h' 2025-06-01T21:23:37.5082638Z adding 'torch/include/ATen/ops/threshold_backward_meta_dispatch.h' 2025-06-01T21:23:37.5085898Z adding 'torch/include/ATen/ops/threshold_backward_native.h' 2025-06-01T21:23:37.5089126Z adding 'torch/include/ATen/ops/threshold_backward_ops.h' 2025-06-01T21:23:37.5092630Z adding 'torch/include/ATen/ops/threshold_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.5096304Z adding 'torch/include/ATen/ops/threshold_cpu_dispatch.h' 2025-06-01T21:23:37.5099604Z adding 'torch/include/ATen/ops/threshold_cuda_dispatch.h' 2025-06-01T21:23:37.5102678Z adding 'torch/include/ATen/ops/threshold_meta.h' 2025-06-01T21:23:37.5105957Z adding 'torch/include/ATen/ops/threshold_meta_dispatch.h' 2025-06-01T21:23:37.5109165Z adding 'torch/include/ATen/ops/threshold_native.h' 2025-06-01T21:23:37.5112920Z adding 'torch/include/ATen/ops/threshold_ops.h' 2025-06-01T21:23:37.5115774Z adding 'torch/include/ATen/ops/tile.h' 2025-06-01T21:23:37.5119386Z adding 'torch/include/ATen/ops/tile_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.5122219Z adding 'torch/include/ATen/ops/tile_native.h' 2025-06-01T21:23:37.5125440Z adding 'torch/include/ATen/ops/tile_ops.h' 2025-06-01T21:23:37.5128179Z adding 'torch/include/ATen/ops/to.h' 2025-06-01T21:23:37.5131903Z adding 'torch/include/ATen/ops/to_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.5134845Z adding 'torch/include/ATen/ops/to_dense.h' 2025-06-01T21:23:37.5138127Z adding 'torch/include/ATen/ops/to_dense_backward.h' 2025-06-01T21:23:37.5141417Z adding 'torch/include/ATen/ops/to_dense_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.5144557Z adding 'torch/include/ATen/ops/to_dense_backward_native.h' 2025-06-01T21:23:37.5147838Z adding 'torch/include/ATen/ops/to_dense_backward_ops.h' 2025-06-01T21:23:37.5151128Z adding 'torch/include/ATen/ops/to_dense_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.5154299Z adding 'torch/include/ATen/ops/to_dense_native.h' 2025-06-01T21:23:37.5158019Z adding 'torch/include/ATen/ops/to_dense_ops.h' 2025-06-01T21:23:37.5161629Z adding 'torch/include/ATen/ops/to_mkldnn.h' 2025-06-01T21:23:37.5165332Z adding 'torch/include/ATen/ops/to_mkldnn_backward.h' 2025-06-01T21:23:37.5168767Z adding 'torch/include/ATen/ops/to_mkldnn_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.5171636Z adding 'torch/include/ATen/ops/to_mkldnn_backward_native.h' 2025-06-01T21:23:37.5174933Z adding 'torch/include/ATen/ops/to_mkldnn_backward_ops.h' 2025-06-01T21:23:37.5179539Z adding 'torch/include/ATen/ops/to_mkldnn_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.5181371Z adding 'torch/include/ATen/ops/to_mkldnn_cpu_dispatch.h' 2025-06-01T21:23:37.5185323Z adding 'torch/include/ATen/ops/to_mkldnn_native.h' 2025-06-01T21:23:37.5188026Z adding 'torch/include/ATen/ops/to_mkldnn_ops.h' 2025-06-01T21:23:37.5191336Z adding 'torch/include/ATen/ops/to_native.h' 2025-06-01T21:23:37.5194721Z adding 'torch/include/ATen/ops/to_ops.h' 2025-06-01T21:23:37.5198244Z adding 'torch/include/ATen/ops/to_padded_tensor.h' 2025-06-01T21:23:37.5202539Z adding 'torch/include/ATen/ops/to_padded_tensor_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.5204855Z adding 'torch/include/ATen/ops/to_padded_tensor_native.h' 2025-06-01T21:23:37.5208131Z adding 'torch/include/ATen/ops/to_padded_tensor_ops.h' 2025-06-01T21:23:37.5211035Z adding 'torch/include/ATen/ops/to_sparse.h' 2025-06-01T21:23:37.5214078Z adding 'torch/include/ATen/ops/to_sparse_bsc.h' 2025-06-01T21:23:37.5218571Z adding 'torch/include/ATen/ops/to_sparse_bsc_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.5220383Z adding 'torch/include/ATen/ops/to_sparse_bsc_native.h' 2025-06-01T21:23:37.5223580Z adding 'torch/include/ATen/ops/to_sparse_bsc_ops.h' 2025-06-01T21:23:37.5226678Z adding 'torch/include/ATen/ops/to_sparse_bsr.h' 2025-06-01T21:23:37.5229856Z adding 'torch/include/ATen/ops/to_sparse_bsr_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.5232770Z adding 'torch/include/ATen/ops/to_sparse_bsr_native.h' 2025-06-01T21:23:37.5235899Z adding 'torch/include/ATen/ops/to_sparse_bsr_ops.h' 2025-06-01T21:23:37.5239202Z adding 'torch/include/ATen/ops/to_sparse_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.5242068Z adding 'torch/include/ATen/ops/to_sparse_csc.h' 2025-06-01T21:23:37.5245323Z adding 'torch/include/ATen/ops/to_sparse_csc_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.5249510Z adding 'torch/include/ATen/ops/to_sparse_csc_native.h' 2025-06-01T21:23:37.5251577Z adding 'torch/include/ATen/ops/to_sparse_csc_ops.h' 2025-06-01T21:23:37.5254432Z adding 'torch/include/ATen/ops/to_sparse_csr.h' 2025-06-01T21:23:37.5257627Z adding 'torch/include/ATen/ops/to_sparse_csr_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.5260488Z adding 'torch/include/ATen/ops/to_sparse_csr_native.h' 2025-06-01T21:23:37.5263741Z adding 'torch/include/ATen/ops/to_sparse_csr_ops.h' 2025-06-01T21:23:37.5266898Z adding 'torch/include/ATen/ops/to_sparse_native.h' 2025-06-01T21:23:37.5270138Z adding 'torch/include/ATen/ops/to_sparse_ops.h' 2025-06-01T21:23:37.5273556Z adding 'torch/include/ATen/ops/topk.h' 2025-06-01T21:23:37.5277025Z adding 'torch/include/ATen/ops/topk_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.5280061Z adding 'torch/include/ATen/ops/topk_cpu_dispatch.h' 2025-06-01T21:23:37.5283276Z adding 'torch/include/ATen/ops/topk_cuda_dispatch.h' 2025-06-01T21:23:37.5286685Z adding 'torch/include/ATen/ops/topk_meta.h' 2025-06-01T21:23:37.5289908Z adding 'torch/include/ATen/ops/topk_meta_dispatch.h' 2025-06-01T21:23:37.5293106Z adding 'torch/include/ATen/ops/topk_native.h' 2025-06-01T21:23:37.5296318Z adding 'torch/include/ATen/ops/topk_ops.h' 2025-06-01T21:23:37.5299387Z adding 'torch/include/ATen/ops/trace.h' 2025-06-01T21:23:37.5302547Z adding 'torch/include/ATen/ops/trace_backward.h' 2025-06-01T21:23:37.5306071Z adding 'torch/include/ATen/ops/trace_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.5308954Z adding 'torch/include/ATen/ops/trace_backward_native.h' 2025-06-01T21:23:37.5312252Z adding 'torch/include/ATen/ops/trace_backward_ops.h' 2025-06-01T21:23:37.5315502Z adding 'torch/include/ATen/ops/trace_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.5318754Z adding 'torch/include/ATen/ops/trace_cpu_dispatch.h' 2025-06-01T21:23:37.5322149Z adding 'torch/include/ATen/ops/trace_cuda_dispatch.h' 2025-06-01T21:23:37.5324828Z adding 'torch/include/ATen/ops/trace_native.h' 2025-06-01T21:23:37.5328083Z adding 'torch/include/ATen/ops/trace_ops.h' 2025-06-01T21:23:37.5331184Z adding 'torch/include/ATen/ops/transpose.h' 2025-06-01T21:23:37.5334558Z adding 'torch/include/ATen/ops/transpose_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.5337704Z adding 'torch/include/ATen/ops/transpose_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.5340898Z adding 'torch/include/ATen/ops/transpose_copy.h' 2025-06-01T21:23:37.5345078Z adding 'torch/include/ATen/ops/transpose_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.5347616Z adding 'torch/include/ATen/ops/transpose_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.5350744Z adding 'torch/include/ATen/ops/transpose_copy_native.h' 2025-06-01T21:23:37.5353812Z adding 'torch/include/ATen/ops/transpose_copy_ops.h' 2025-06-01T21:23:37.5356948Z adding 'torch/include/ATen/ops/transpose_native.h' 2025-06-01T21:23:37.5360339Z adding 'torch/include/ATen/ops/transpose_ops.h' 2025-06-01T21:23:37.5363562Z adding 'torch/include/ATen/ops/trapezoid.h' 2025-06-01T21:23:37.5366781Z adding 'torch/include/ATen/ops/trapezoid_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.5369899Z adding 'torch/include/ATen/ops/trapezoid_native.h' 2025-06-01T21:23:37.5373835Z adding 'torch/include/ATen/ops/trapezoid_ops.h' 2025-06-01T21:23:37.5376259Z adding 'torch/include/ATen/ops/trapz.h' 2025-06-01T21:23:37.5379729Z adding 'torch/include/ATen/ops/trapz_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.5382574Z adding 'torch/include/ATen/ops/trapz_native.h' 2025-06-01T21:23:37.5386044Z adding 'torch/include/ATen/ops/trapz_ops.h' 2025-06-01T21:23:37.5389393Z adding 'torch/include/ATen/ops/triangular_solve.h' 2025-06-01T21:23:37.5392911Z adding 'torch/include/ATen/ops/triangular_solve_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.5396777Z adding 'torch/include/ATen/ops/triangular_solve_cpu_dispatch.h' 2025-06-01T21:23:37.5399188Z adding 'torch/include/ATen/ops/triangular_solve_cuda_dispatch.h' 2025-06-01T21:23:37.5402624Z adding 'torch/include/ATen/ops/triangular_solve_meta.h' 2025-06-01T21:23:37.5405411Z adding 'torch/include/ATen/ops/triangular_solve_meta_dispatch.h' 2025-06-01T21:23:37.5408526Z adding 'torch/include/ATen/ops/triangular_solve_native.h' 2025-06-01T21:23:37.5411736Z adding 'torch/include/ATen/ops/triangular_solve_ops.h' 2025-06-01T21:23:37.5414987Z adding 'torch/include/ATen/ops/tril.h' 2025-06-01T21:23:37.5418260Z adding 'torch/include/ATen/ops/tril_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.5421352Z adding 'torch/include/ATen/ops/tril_cpu_dispatch.h' 2025-06-01T21:23:37.5425354Z adding 'torch/include/ATen/ops/tril_cuda_dispatch.h' 2025-06-01T21:23:37.5427955Z adding 'torch/include/ATen/ops/tril_indices.h' 2025-06-01T21:23:37.5431358Z adding 'torch/include/ATen/ops/tril_indices_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.5434385Z adding 'torch/include/ATen/ops/tril_indices_cpu_dispatch.h' 2025-06-01T21:23:37.5437661Z adding 'torch/include/ATen/ops/tril_indices_cuda_dispatch.h' 2025-06-01T21:23:37.5440711Z adding 'torch/include/ATen/ops/tril_indices_native.h' 2025-06-01T21:23:37.5444176Z adding 'torch/include/ATen/ops/tril_indices_ops.h' 2025-06-01T21:23:37.5448199Z adding 'torch/include/ATen/ops/tril_meta.h' 2025-06-01T21:23:37.5450536Z adding 'torch/include/ATen/ops/tril_meta_dispatch.h' 2025-06-01T21:23:37.5453925Z adding 'torch/include/ATen/ops/tril_native.h' 2025-06-01T21:23:37.5457070Z adding 'torch/include/ATen/ops/tril_ops.h' 2025-06-01T21:23:37.5460237Z adding 'torch/include/ATen/ops/triplet_margin_loss.h' 2025-06-01T21:23:37.5463601Z adding 'torch/include/ATen/ops/triplet_margin_loss_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.5466712Z adding 'torch/include/ATen/ops/triplet_margin_loss_native.h' 2025-06-01T21:23:37.5469903Z adding 'torch/include/ATen/ops/triplet_margin_loss_ops.h' 2025-06-01T21:23:37.5473467Z adding 'torch/include/ATen/ops/triu.h' 2025-06-01T21:23:37.5476621Z adding 'torch/include/ATen/ops/triu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.5479676Z adding 'torch/include/ATen/ops/triu_cpu_dispatch.h' 2025-06-01T21:23:37.5482875Z adding 'torch/include/ATen/ops/triu_cuda_dispatch.h' 2025-06-01T21:23:37.5486403Z adding 'torch/include/ATen/ops/triu_indices.h' 2025-06-01T21:23:37.5489605Z adding 'torch/include/ATen/ops/triu_indices_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.5492609Z adding 'torch/include/ATen/ops/triu_indices_cpu_dispatch.h' 2025-06-01T21:23:37.5496118Z adding 'torch/include/ATen/ops/triu_indices_cuda_dispatch.h' 2025-06-01T21:23:37.5499150Z adding 'torch/include/ATen/ops/triu_indices_native.h' 2025-06-01T21:23:37.5502591Z adding 'torch/include/ATen/ops/triu_indices_ops.h' 2025-06-01T21:23:37.5506129Z adding 'torch/include/ATen/ops/triu_meta.h' 2025-06-01T21:23:37.5509072Z adding 'torch/include/ATen/ops/triu_meta_dispatch.h' 2025-06-01T21:23:37.5512354Z adding 'torch/include/ATen/ops/triu_native.h' 2025-06-01T21:23:37.5515569Z adding 'torch/include/ATen/ops/triu_ops.h' 2025-06-01T21:23:37.5518846Z adding 'torch/include/ATen/ops/true_divide.h' 2025-06-01T21:23:37.5523163Z adding 'torch/include/ATen/ops/true_divide_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.5525239Z adding 'torch/include/ATen/ops/true_divide_native.h' 2025-06-01T21:23:37.5529019Z adding 'torch/include/ATen/ops/true_divide_ops.h' 2025-06-01T21:23:37.5531838Z adding 'torch/include/ATen/ops/trunc.h' 2025-06-01T21:23:37.5535556Z adding 'torch/include/ATen/ops/trunc_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.5538535Z adding 'torch/include/ATen/ops/trunc_cpu_dispatch.h' 2025-06-01T21:23:37.5541790Z adding 'torch/include/ATen/ops/trunc_cuda_dispatch.h' 2025-06-01T21:23:37.5544871Z adding 'torch/include/ATen/ops/trunc_meta.h' 2025-06-01T21:23:37.5548123Z adding 'torch/include/ATen/ops/trunc_meta_dispatch.h' 2025-06-01T21:23:37.5551903Z adding 'torch/include/ATen/ops/trunc_native.h' 2025-06-01T21:23:37.5554639Z adding 'torch/include/ATen/ops/trunc_ops.h' 2025-06-01T21:23:37.5557691Z adding 'torch/include/ATen/ops/type_as.h' 2025-06-01T21:23:37.5560891Z adding 'torch/include/ATen/ops/type_as_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.5563893Z adding 'torch/include/ATen/ops/type_as_native.h' 2025-06-01T21:23:37.5567039Z adding 'torch/include/ATen/ops/type_as_ops.h' 2025-06-01T21:23:37.5570315Z adding 'torch/include/ATen/ops/unbind.h' 2025-06-01T21:23:37.5573549Z adding 'torch/include/ATen/ops/unbind_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.5576758Z adding 'torch/include/ATen/ops/unbind_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.5580477Z adding 'torch/include/ATen/ops/unbind_copy.h' 2025-06-01T21:23:37.5583177Z adding 'torch/include/ATen/ops/unbind_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.5586620Z adding 'torch/include/ATen/ops/unbind_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.5589477Z adding 'torch/include/ATen/ops/unbind_copy_native.h' 2025-06-01T21:23:37.5592871Z adding 'torch/include/ATen/ops/unbind_copy_ops.h' 2025-06-01T21:23:37.5595952Z adding 'torch/include/ATen/ops/unbind_native.h' 2025-06-01T21:23:37.5599352Z adding 'torch/include/ATen/ops/unbind_ops.h' 2025-06-01T21:23:37.5603556Z adding 'torch/include/ATen/ops/unflatten.h' 2025-06-01T21:23:37.5606087Z adding 'torch/include/ATen/ops/unflatten_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.5609368Z adding 'torch/include/ATen/ops/unflatten_dense_tensors.h' 2025-06-01T21:23:37.5612422Z adding 'torch/include/ATen/ops/unflatten_dense_tensors_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.5615447Z adding 'torch/include/ATen/ops/unflatten_dense_tensors_native.h' 2025-06-01T21:23:37.5618582Z adding 'torch/include/ATen/ops/unflatten_dense_tensors_ops.h' 2025-06-01T21:23:37.5621785Z adding 'torch/include/ATen/ops/unflatten_native.h' 2025-06-01T21:23:37.5625153Z adding 'torch/include/ATen/ops/unflatten_ops.h' 2025-06-01T21:23:37.5628275Z adding 'torch/include/ATen/ops/unfold.h' 2025-06-01T21:23:37.5632187Z adding 'torch/include/ATen/ops/unfold_backward.h' 2025-06-01T21:23:37.5635205Z adding 'torch/include/ATen/ops/unfold_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.5638341Z adding 'torch/include/ATen/ops/unfold_backward_cpu_dispatch.h' 2025-06-01T21:23:37.5641545Z adding 'torch/include/ATen/ops/unfold_backward_cuda_dispatch.h' 2025-06-01T21:23:37.5644724Z adding 'torch/include/ATen/ops/unfold_backward_native.h' 2025-06-01T21:23:37.5647939Z adding 'torch/include/ATen/ops/unfold_backward_ops.h' 2025-06-01T21:23:37.5651297Z adding 'torch/include/ATen/ops/unfold_copy.h' 2025-06-01T21:23:37.5655573Z adding 'torch/include/ATen/ops/unfold_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.5657917Z adding 'torch/include/ATen/ops/unfold_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.5661582Z adding 'torch/include/ATen/ops/unfold_copy_native.h' 2025-06-01T21:23:37.5664341Z adding 'torch/include/ATen/ops/unfold_copy_ops.h' 2025-06-01T21:23:37.5667677Z adding 'torch/include/ATen/ops/unfold_cpu_dispatch.h' 2025-06-01T21:23:37.5670804Z adding 'torch/include/ATen/ops/unfold_cuda_dispatch.h' 2025-06-01T21:23:37.5673997Z adding 'torch/include/ATen/ops/unfold_meta_dispatch.h' 2025-06-01T21:23:37.5676973Z adding 'torch/include/ATen/ops/unfold_native.h' 2025-06-01T21:23:37.5680101Z adding 'torch/include/ATen/ops/unfold_ops.h' 2025-06-01T21:23:37.5684567Z adding 'torch/include/ATen/ops/uniform.h' 2025-06-01T21:23:37.5686720Z adding 'torch/include/ATen/ops/uniform_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.5689729Z adding 'torch/include/ATen/ops/uniform_cpu_dispatch.h' 2025-06-01T21:23:37.5692846Z adding 'torch/include/ATen/ops/uniform_cuda_dispatch.h' 2025-06-01T21:23:37.5695921Z adding 'torch/include/ATen/ops/uniform_meta_dispatch.h' 2025-06-01T21:23:37.5698954Z adding 'torch/include/ATen/ops/uniform_native.h' 2025-06-01T21:23:37.5702474Z adding 'torch/include/ATen/ops/uniform_ops.h' 2025-06-01T21:23:37.5706016Z adding 'torch/include/ATen/ops/unique_consecutive.h' 2025-06-01T21:23:37.5709500Z adding 'torch/include/ATen/ops/unique_consecutive_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.5712522Z adding 'torch/include/ATen/ops/unique_consecutive_cpu_dispatch.h' 2025-06-01T21:23:37.5715612Z adding 'torch/include/ATen/ops/unique_consecutive_cuda_dispatch.h' 2025-06-01T21:23:37.5718646Z adding 'torch/include/ATen/ops/unique_consecutive_native.h' 2025-06-01T21:23:37.5721907Z adding 'torch/include/ATen/ops/unique_consecutive_ops.h' 2025-06-01T21:23:37.5725112Z adding 'torch/include/ATen/ops/unique_dim.h' 2025-06-01T21:23:37.5728398Z adding 'torch/include/ATen/ops/unique_dim_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.5731750Z adding 'torch/include/ATen/ops/unique_dim_consecutive.h' 2025-06-01T21:23:37.5735033Z adding 'torch/include/ATen/ops/unique_dim_consecutive_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.5738051Z adding 'torch/include/ATen/ops/unique_dim_consecutive_cpu_dispatch.h' 2025-06-01T21:23:37.5741137Z adding 'torch/include/ATen/ops/unique_dim_consecutive_cuda_dispatch.h' 2025-06-01T21:23:37.5744266Z adding 'torch/include/ATen/ops/unique_dim_consecutive_native.h' 2025-06-01T21:23:37.5747561Z adding 'torch/include/ATen/ops/unique_dim_consecutive_ops.h' 2025-06-01T21:23:37.5750671Z adding 'torch/include/ATen/ops/unique_dim_cpu_dispatch.h' 2025-06-01T21:23:37.5753761Z adding 'torch/include/ATen/ops/unique_dim_cuda_dispatch.h' 2025-06-01T21:23:37.5756781Z adding 'torch/include/ATen/ops/unique_dim_native.h' 2025-06-01T21:23:37.5760052Z adding 'torch/include/ATen/ops/unique_dim_ops.h' 2025-06-01T21:23:37.5763198Z adding 'torch/include/ATen/ops/unsafe_chunk.h' 2025-06-01T21:23:37.5766432Z adding 'torch/include/ATen/ops/unsafe_chunk_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.5769299Z adding 'torch/include/ATen/ops/unsafe_chunk_native.h' 2025-06-01T21:23:37.5772440Z adding 'torch/include/ATen/ops/unsafe_chunk_ops.h' 2025-06-01T21:23:37.5775738Z adding 'torch/include/ATen/ops/unsafe_split.h' 2025-06-01T21:23:37.5779085Z adding 'torch/include/ATen/ops/unsafe_split_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.5781990Z adding 'torch/include/ATen/ops/unsafe_split_native.h' 2025-06-01T21:23:37.5785363Z adding 'torch/include/ATen/ops/unsafe_split_ops.h' 2025-06-01T21:23:37.5788960Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes.h' 2025-06-01T21:23:37.5792395Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.5795328Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes_native.h' 2025-06-01T21:23:37.5798544Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes_ops.h' 2025-06-01T21:23:37.5801564Z adding 'torch/include/ATen/ops/unsqueeze.h' 2025-06-01T21:23:37.5804759Z adding 'torch/include/ATen/ops/unsqueeze_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.5807906Z adding 'torch/include/ATen/ops/unsqueeze_copy.h' 2025-06-01T21:23:37.5811111Z adding 'torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.5814269Z adding 'torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.5817060Z adding 'torch/include/ATen/ops/unsqueeze_copy_native.h' 2025-06-01T21:23:37.5820230Z adding 'torch/include/ATen/ops/unsqueeze_copy_ops.h' 2025-06-01T21:23:37.5823247Z adding 'torch/include/ATen/ops/unsqueeze_native.h' 2025-06-01T21:23:37.5826550Z adding 'torch/include/ATen/ops/unsqueeze_ops.h' 2025-06-01T21:23:37.5830243Z adding 'torch/include/ATen/ops/upsample_bicubic2d.h' 2025-06-01T21:23:37.5834636Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward.h' 2025-06-01T21:23:37.5838322Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.5841426Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_cpu_dispatch.h' 2025-06-01T21:23:37.5844702Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_cuda_dispatch.h' 2025-06-01T21:23:37.5847697Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_meta.h' 2025-06-01T21:23:37.5850931Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_meta_dispatch.h' 2025-06-01T21:23:37.5854018Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_native.h' 2025-06-01T21:23:37.5857284Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_ops.h' 2025-06-01T21:23:37.5860634Z adding 'torch/include/ATen/ops/upsample_bicubic2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.5863767Z adding 'torch/include/ATen/ops/upsample_bicubic2d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.5866954Z adding 'torch/include/ATen/ops/upsample_bicubic2d_cpu_dispatch.h' 2025-06-01T21:23:37.5870132Z adding 'torch/include/ATen/ops/upsample_bicubic2d_cuda_dispatch.h' 2025-06-01T21:23:37.5873214Z adding 'torch/include/ATen/ops/upsample_bicubic2d_meta.h' 2025-06-01T21:23:37.5876453Z adding 'torch/include/ATen/ops/upsample_bicubic2d_meta_dispatch.h' 2025-06-01T21:23:37.5879521Z adding 'torch/include/ATen/ops/upsample_bicubic2d_native.h' 2025-06-01T21:23:37.5882944Z adding 'torch/include/ATen/ops/upsample_bicubic2d_ops.h' 2025-06-01T21:23:37.5886855Z adding 'torch/include/ATen/ops/upsample_bilinear2d.h' 2025-06-01T21:23:37.5890728Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward.h' 2025-06-01T21:23:37.5894353Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.5897442Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_cpu_dispatch.h' 2025-06-01T21:23:37.5900656Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_cuda_dispatch.h' 2025-06-01T21:23:37.5903777Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_meta.h' 2025-06-01T21:23:37.5907123Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_meta_dispatch.h' 2025-06-01T21:23:37.5910207Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_native.h' 2025-06-01T21:23:37.5913779Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_ops.h' 2025-06-01T21:23:37.5917194Z adding 'torch/include/ATen/ops/upsample_bilinear2d_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.5920669Z adding 'torch/include/ATen/ops/upsample_bilinear2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.5923738Z adding 'torch/include/ATen/ops/upsample_bilinear2d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.5926831Z adding 'torch/include/ATen/ops/upsample_bilinear2d_cpu_dispatch.h' 2025-06-01T21:23:37.5930006Z adding 'torch/include/ATen/ops/upsample_bilinear2d_cuda_dispatch.h' 2025-06-01T21:23:37.5933040Z adding 'torch/include/ATen/ops/upsample_bilinear2d_meta.h' 2025-06-01T21:23:37.5936281Z adding 'torch/include/ATen/ops/upsample_bilinear2d_meta_dispatch.h' 2025-06-01T21:23:37.5939516Z adding 'torch/include/ATen/ops/upsample_bilinear2d_native.h' 2025-06-01T21:23:37.5942948Z adding 'torch/include/ATen/ops/upsample_bilinear2d_ops.h' 2025-06-01T21:23:37.5946726Z adding 'torch/include/ATen/ops/upsample_linear1d.h' 2025-06-01T21:23:37.5950431Z adding 'torch/include/ATen/ops/upsample_linear1d_backward.h' 2025-06-01T21:23:37.5953983Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.5957060Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_cpu_dispatch.h' 2025-06-01T21:23:37.5960279Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_cuda_dispatch.h' 2025-06-01T21:23:37.5963991Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_meta.h' 2025-06-01T21:23:37.5966767Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_meta_dispatch.h' 2025-06-01T21:23:37.5969819Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_native.h' 2025-06-01T21:23:37.5973069Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_ops.h' 2025-06-01T21:23:37.5976509Z adding 'torch/include/ATen/ops/upsample_linear1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.5979511Z adding 'torch/include/ATen/ops/upsample_linear1d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.5982585Z adding 'torch/include/ATen/ops/upsample_linear1d_cpu_dispatch.h' 2025-06-01T21:23:37.5985872Z adding 'torch/include/ATen/ops/upsample_linear1d_cuda_dispatch.h' 2025-06-01T21:23:37.5988928Z adding 'torch/include/ATen/ops/upsample_linear1d_meta.h' 2025-06-01T21:23:37.5992138Z adding 'torch/include/ATen/ops/upsample_linear1d_meta_dispatch.h' 2025-06-01T21:23:37.5995209Z adding 'torch/include/ATen/ops/upsample_linear1d_native.h' 2025-06-01T21:23:37.5998544Z adding 'torch/include/ATen/ops/upsample_linear1d_ops.h' 2025-06-01T21:23:37.6002155Z adding 'torch/include/ATen/ops/upsample_nearest1d.h' 2025-06-01T21:23:37.6005815Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward.h' 2025-06-01T21:23:37.6009333Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.6012361Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_cpu_dispatch.h' 2025-06-01T21:23:37.6015538Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_cuda_dispatch.h' 2025-06-01T21:23:37.6018579Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_meta.h' 2025-06-01T21:23:37.6021799Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_meta_dispatch.h' 2025-06-01T21:23:37.6024965Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_native.h' 2025-06-01T21:23:37.6028201Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_ops.h' 2025-06-01T21:23:37.6031539Z adding 'torch/include/ATen/ops/upsample_nearest1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.6034583Z adding 'torch/include/ATen/ops/upsample_nearest1d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.6037649Z adding 'torch/include/ATen/ops/upsample_nearest1d_cpu_dispatch.h' 2025-06-01T21:23:37.6040824Z adding 'torch/include/ATen/ops/upsample_nearest1d_cuda_dispatch.h' 2025-06-01T21:23:37.6043815Z adding 'torch/include/ATen/ops/upsample_nearest1d_meta.h' 2025-06-01T21:23:37.6046989Z adding 'torch/include/ATen/ops/upsample_nearest1d_meta_dispatch.h' 2025-06-01T21:23:37.6050061Z adding 'torch/include/ATen/ops/upsample_nearest1d_native.h' 2025-06-01T21:23:37.6053345Z adding 'torch/include/ATen/ops/upsample_nearest1d_ops.h' 2025-06-01T21:23:37.6057140Z adding 'torch/include/ATen/ops/upsample_nearest2d.h' 2025-06-01T21:23:37.6060975Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward.h' 2025-06-01T21:23:37.6065696Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.6067851Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_cpu_dispatch.h' 2025-06-01T21:23:37.6071322Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_cuda_dispatch.h' 2025-06-01T21:23:37.6074362Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_meta.h' 2025-06-01T21:23:37.6077669Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_meta_dispatch.h' 2025-06-01T21:23:37.6080707Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_native.h' 2025-06-01T21:23:37.6084133Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_ops.h' 2025-06-01T21:23:37.6088430Z adding 'torch/include/ATen/ops/upsample_nearest2d_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.6090820Z adding 'torch/include/ATen/ops/upsample_nearest2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.6094248Z adding 'torch/include/ATen/ops/upsample_nearest2d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.6097025Z adding 'torch/include/ATen/ops/upsample_nearest2d_cpu_dispatch.h' 2025-06-01T21:23:37.6100377Z adding 'torch/include/ATen/ops/upsample_nearest2d_cuda_dispatch.h' 2025-06-01T21:23:37.6103408Z adding 'torch/include/ATen/ops/upsample_nearest2d_meta.h' 2025-06-01T21:23:37.6107023Z adding 'torch/include/ATen/ops/upsample_nearest2d_meta_dispatch.h' 2025-06-01T21:23:37.6111034Z adding 'torch/include/ATen/ops/upsample_nearest2d_native.h' 2025-06-01T21:23:37.6113653Z adding 'torch/include/ATen/ops/upsample_nearest2d_ops.h' 2025-06-01T21:23:37.6117587Z adding 'torch/include/ATen/ops/upsample_nearest3d.h' 2025-06-01T21:23:37.6121398Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward.h' 2025-06-01T21:23:37.6125245Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.6128507Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_cpu_dispatch.h' 2025-06-01T21:23:37.6131772Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_cuda_dispatch.h' 2025-06-01T21:23:37.6135282Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_meta.h' 2025-06-01T21:23:37.6139137Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_meta_dispatch.h' 2025-06-01T21:23:37.6141855Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_native.h' 2025-06-01T21:23:37.6145582Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_ops.h' 2025-06-01T21:23:37.6148832Z adding 'torch/include/ATen/ops/upsample_nearest3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.6152053Z adding 'torch/include/ATen/ops/upsample_nearest3d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.6155190Z adding 'torch/include/ATen/ops/upsample_nearest3d_cpu_dispatch.h' 2025-06-01T21:23:37.6158733Z adding 'torch/include/ATen/ops/upsample_nearest3d_cuda_dispatch.h' 2025-06-01T21:23:37.6161782Z adding 'torch/include/ATen/ops/upsample_nearest3d_meta.h' 2025-06-01T21:23:37.6200768Z adding 'torch/include/ATen/ops/upsample_nearest3d_meta_dispatch.h' 2025-06-01T21:23:37.6200965Z adding 'torch/include/ATen/ops/upsample_nearest3d_native.h' 2025-06-01T21:23:37.6201126Z adding 'torch/include/ATen/ops/upsample_nearest3d_ops.h' 2025-06-01T21:23:37.6201278Z adding 'torch/include/ATen/ops/upsample_trilinear3d.h' 2025-06-01T21:23:37.6201465Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward.h' 2025-06-01T21:23:37.6201865Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.6202096Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_cpu_dispatch.h' 2025-06-01T21:23:37.6202334Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_cuda_dispatch.h' 2025-06-01T21:23:37.6202530Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_meta.h' 2025-06-01T21:23:37.6202758Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_meta_dispatch.h' 2025-06-01T21:23:37.6203316Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_native.h' 2025-06-01T21:23:37.6206818Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_ops.h' 2025-06-01T21:23:37.6210312Z adding 'torch/include/ATen/ops/upsample_trilinear3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.6213530Z adding 'torch/include/ATen/ops/upsample_trilinear3d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.6216674Z adding 'torch/include/ATen/ops/upsample_trilinear3d_cpu_dispatch.h' 2025-06-01T21:23:37.6220195Z adding 'torch/include/ATen/ops/upsample_trilinear3d_cuda_dispatch.h' 2025-06-01T21:23:37.6224679Z adding 'torch/include/ATen/ops/upsample_trilinear3d_meta.h' 2025-06-01T21:23:37.6226846Z adding 'torch/include/ATen/ops/upsample_trilinear3d_meta_dispatch.h' 2025-06-01T21:23:37.6229965Z adding 'torch/include/ATen/ops/upsample_trilinear3d_native.h' 2025-06-01T21:23:37.6233344Z adding 'torch/include/ATen/ops/upsample_trilinear3d_ops.h' 2025-06-01T21:23:37.6236854Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward.h' 2025-06-01T21:23:37.6240223Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.6243153Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward_native.h' 2025-06-01T21:23:37.6246344Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward_ops.h' 2025-06-01T21:23:37.6249184Z adding 'torch/include/ATen/ops/values.h' 2025-06-01T21:23:37.6252564Z adding 'torch/include/ATen/ops/values_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.6255495Z adding 'torch/include/ATen/ops/values_copy.h' 2025-06-01T21:23:37.6258709Z adding 'torch/include/ATen/ops/values_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.6263138Z adding 'torch/include/ATen/ops/values_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.6266279Z adding 'torch/include/ATen/ops/values_copy_native.h' 2025-06-01T21:23:37.6269510Z adding 'torch/include/ATen/ops/values_copy_ops.h' 2025-06-01T21:23:37.6272547Z adding 'torch/include/ATen/ops/values_native.h' 2025-06-01T21:23:37.6275663Z adding 'torch/include/ATen/ops/values_ops.h' 2025-06-01T21:23:37.6278738Z adding 'torch/include/ATen/ops/vander.h' 2025-06-01T21:23:37.6282780Z adding 'torch/include/ATen/ops/vander_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.6285008Z adding 'torch/include/ATen/ops/vander_native.h' 2025-06-01T21:23:37.6288106Z adding 'torch/include/ATen/ops/vander_ops.h' 2025-06-01T21:23:37.6291560Z adding 'torch/include/ATen/ops/var.h' 2025-06-01T21:23:37.6294931Z adding 'torch/include/ATen/ops/var_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.6298000Z adding 'torch/include/ATen/ops/var_cpu_dispatch.h' 2025-06-01T21:23:37.6301100Z adding 'torch/include/ATen/ops/var_cuda_dispatch.h' 2025-06-01T21:23:37.6304475Z adding 'torch/include/ATen/ops/var_mean.h' 2025-06-01T21:23:37.6307794Z adding 'torch/include/ATen/ops/var_mean_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.6310939Z adding 'torch/include/ATen/ops/var_mean_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.6314066Z adding 'torch/include/ATen/ops/var_mean_cpu_dispatch.h' 2025-06-01T21:23:37.6317204Z adding 'torch/include/ATen/ops/var_mean_cuda_dispatch.h' 2025-06-01T21:23:37.6320234Z adding 'torch/include/ATen/ops/var_mean_native.h' 2025-06-01T21:23:37.6323835Z adding 'torch/include/ATen/ops/var_mean_ops.h' 2025-06-01T21:23:37.6327062Z adding 'torch/include/ATen/ops/var_native.h' 2025-06-01T21:23:37.6330714Z adding 'torch/include/ATen/ops/var_ops.h' 2025-06-01T21:23:37.6333982Z adding 'torch/include/ATen/ops/vdot.h' 2025-06-01T21:23:37.6337255Z adding 'torch/include/ATen/ops/vdot_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.6340219Z adding 'torch/include/ATen/ops/vdot_cpu_dispatch.h' 2025-06-01T21:23:37.6343297Z adding 'torch/include/ATen/ops/vdot_cuda_dispatch.h' 2025-06-01T21:23:37.6346431Z adding 'torch/include/ATen/ops/vdot_native.h' 2025-06-01T21:23:37.6349618Z adding 'torch/include/ATen/ops/vdot_ops.h' 2025-06-01T21:23:37.6352894Z adding 'torch/include/ATen/ops/view.h' 2025-06-01T21:23:37.6355879Z adding 'torch/include/ATen/ops/view_as.h' 2025-06-01T21:23:37.6358887Z adding 'torch/include/ATen/ops/view_as_complex.h' 2025-06-01T21:23:37.6362073Z adding 'torch/include/ATen/ops/view_as_complex_copy.h' 2025-06-01T21:23:37.6365292Z adding 'torch/include/ATen/ops/view_as_complex_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.6375186Z adding 'torch/include/ATen/ops/view_as_complex_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.6375488Z adding 'torch/include/ATen/ops/view_as_complex_copy_native.h' 2025-06-01T21:23:37.6376583Z adding 'torch/include/ATen/ops/view_as_complex_copy_ops.h' 2025-06-01T21:23:37.6379627Z adding 'torch/include/ATen/ops/view_as_complex_cpu_dispatch.h' 2025-06-01T21:23:37.6382755Z adding 'torch/include/ATen/ops/view_as_complex_cuda_dispatch.h' 2025-06-01T21:23:37.6385960Z adding 'torch/include/ATen/ops/view_as_complex_meta_dispatch.h' 2025-06-01T21:23:37.6388904Z adding 'torch/include/ATen/ops/view_as_complex_native.h' 2025-06-01T21:23:37.6391989Z adding 'torch/include/ATen/ops/view_as_complex_ops.h' 2025-06-01T21:23:37.6395172Z adding 'torch/include/ATen/ops/view_as_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.6398062Z adding 'torch/include/ATen/ops/view_as_native.h' 2025-06-01T21:23:37.6401101Z adding 'torch/include/ATen/ops/view_as_ops.h' 2025-06-01T21:23:37.6404129Z adding 'torch/include/ATen/ops/view_as_real.h' 2025-06-01T21:23:37.6407193Z adding 'torch/include/ATen/ops/view_as_real_copy.h' 2025-06-01T21:23:37.6410437Z adding 'torch/include/ATen/ops/view_as_real_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.6413597Z adding 'torch/include/ATen/ops/view_as_real_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.6416385Z adding 'torch/include/ATen/ops/view_as_real_copy_native.h' 2025-06-01T21:23:37.6419538Z adding 'torch/include/ATen/ops/view_as_real_copy_ops.h' 2025-06-01T21:23:37.6422610Z adding 'torch/include/ATen/ops/view_as_real_cpu_dispatch.h' 2025-06-01T21:23:37.6425753Z adding 'torch/include/ATen/ops/view_as_real_cuda_dispatch.h' 2025-06-01T21:23:37.6428798Z adding 'torch/include/ATen/ops/view_as_real_meta_dispatch.h' 2025-06-01T21:23:37.6431732Z adding 'torch/include/ATen/ops/view_as_real_native.h' 2025-06-01T21:23:37.6434831Z adding 'torch/include/ATen/ops/view_as_real_ops.h' 2025-06-01T21:23:37.6438007Z adding 'torch/include/ATen/ops/view_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.6441270Z adding 'torch/include/ATen/ops/view_copy.h' 2025-06-01T21:23:37.6444634Z adding 'torch/include/ATen/ops/view_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.6447802Z adding 'torch/include/ATen/ops/view_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.6450645Z adding 'torch/include/ATen/ops/view_copy_native.h' 2025-06-01T21:23:37.6453906Z adding 'torch/include/ATen/ops/view_copy_ops.h' 2025-06-01T21:23:37.6457077Z adding 'torch/include/ATen/ops/view_cpu_dispatch.h' 2025-06-01T21:23:37.6460141Z adding 'torch/include/ATen/ops/view_cuda_dispatch.h' 2025-06-01T21:23:37.6463244Z adding 'torch/include/ATen/ops/view_meta_dispatch.h' 2025-06-01T21:23:37.6466404Z adding 'torch/include/ATen/ops/view_native.h' 2025-06-01T21:23:37.6469662Z adding 'torch/include/ATen/ops/view_ops.h' 2025-06-01T21:23:37.6472847Z adding 'torch/include/ATen/ops/vsplit.h' 2025-06-01T21:23:37.6476017Z adding 'torch/include/ATen/ops/vsplit_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.6478886Z adding 'torch/include/ATen/ops/vsplit_native.h' 2025-06-01T21:23:37.6482055Z adding 'torch/include/ATen/ops/vsplit_ops.h' 2025-06-01T21:23:37.6485139Z adding 'torch/include/ATen/ops/vstack.h' 2025-06-01T21:23:37.6488355Z adding 'torch/include/ATen/ops/vstack_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.6491266Z adding 'torch/include/ATen/ops/vstack_native.h' 2025-06-01T21:23:37.6494393Z adding 'torch/include/ATen/ops/vstack_ops.h' 2025-06-01T21:23:37.6497595Z adding 'torch/include/ATen/ops/where.h' 2025-06-01T21:23:37.6500855Z adding 'torch/include/ATen/ops/where_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.6504058Z adding 'torch/include/ATen/ops/where_cpu_dispatch.h' 2025-06-01T21:23:37.6507138Z adding 'torch/include/ATen/ops/where_cuda_dispatch.h' 2025-06-01T21:23:37.6510215Z adding 'torch/include/ATen/ops/where_native.h' 2025-06-01T21:23:37.6513655Z adding 'torch/include/ATen/ops/where_ops.h' 2025-06-01T21:23:37.6517011Z adding 'torch/include/ATen/ops/xlogy.h' 2025-06-01T21:23:37.6520337Z adding 'torch/include/ATen/ops/xlogy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.6523518Z adding 'torch/include/ATen/ops/xlogy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:23:37.6526442Z adding 'torch/include/ATen/ops/xlogy_cpu_dispatch.h' 2025-06-01T21:23:37.6529543Z adding 'torch/include/ATen/ops/xlogy_cuda_dispatch.h' 2025-06-01T21:23:37.6532490Z adding 'torch/include/ATen/ops/xlogy_meta.h' 2025-06-01T21:23:37.6535598Z adding 'torch/include/ATen/ops/xlogy_meta_dispatch.h' 2025-06-01T21:23:37.6538664Z adding 'torch/include/ATen/ops/xlogy_native.h' 2025-06-01T21:23:37.6542200Z adding 'torch/include/ATen/ops/xlogy_ops.h' 2025-06-01T21:23:37.6545452Z adding 'torch/include/ATen/ops/xor.h' 2025-06-01T21:23:37.6548739Z adding 'torch/include/ATen/ops/xor_compositeimplicitautograd_dispatch.h' 2025-06-01T21:23:37.6551564Z adding 'torch/include/ATen/ops/xor_native.h' 2025-06-01T21:23:37.6554795Z adding 'torch/include/ATen/ops/xor_ops.h' 2025-06-01T21:23:37.6558084Z adding 'torch/include/ATen/ops/zero.h' 2025-06-01T21:23:37.6561302Z adding 'torch/include/ATen/ops/zero_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.6564313Z adding 'torch/include/ATen/ops/zero_cpu_dispatch.h' 2025-06-01T21:23:37.6567416Z adding 'torch/include/ATen/ops/zero_cuda_dispatch.h' 2025-06-01T21:23:37.6570600Z adding 'torch/include/ATen/ops/zero_meta_dispatch.h' 2025-06-01T21:23:37.6573613Z adding 'torch/include/ATen/ops/zero_native.h' 2025-06-01T21:23:37.6576918Z adding 'torch/include/ATen/ops/zero_ops.h' 2025-06-01T21:23:37.6580517Z adding 'torch/include/ATen/ops/zeros.h' 2025-06-01T21:23:37.6584938Z adding 'torch/include/ATen/ops/zeros_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.6588340Z adding 'torch/include/ATen/ops/zeros_like.h' 2025-06-01T21:23:37.6591701Z adding 'torch/include/ATen/ops/zeros_like_compositeexplicitautograd_dispatch.h' 2025-06-01T21:23:37.6595080Z adding 'torch/include/ATen/ops/zeros_like_compositeimplicitautogradnestedtensor_dispatch.h' 2025-06-01T21:23:37.6597974Z adding 'torch/include/ATen/ops/zeros_like_native.h' 2025-06-01T21:23:37.6601413Z adding 'torch/include/ATen/ops/zeros_like_ops.h' 2025-06-01T21:23:37.6604673Z adding 'torch/include/ATen/ops/zeros_native.h' 2025-06-01T21:23:37.6608107Z adding 'torch/include/ATen/ops/zeros_ops.h' 2025-06-01T21:23:37.6614901Z adding 'torch/include/ATen/quantized/QTensorImpl.h' 2025-06-01T21:23:37.6619995Z adding 'torch/include/ATen/quantized/Quantizer.h' 2025-06-01T21:23:37.6624622Z adding 'torch/include/ATen/xpu/CachingHostAllocator.h' 2025-06-01T21:23:37.6627716Z adding 'torch/include/ATen/xpu/PinnedMemoryAllocator.h' 2025-06-01T21:23:37.6630698Z adding 'torch/include/ATen/xpu/XPUContext.h' 2025-06-01T21:23:37.6633715Z adding 'torch/include/ATen/xpu/XPUDevice.h' 2025-06-01T21:23:37.6637821Z adding 'torch/include/ATen/xpu/XPUEvent.h' 2025-06-01T21:23:37.6641369Z adding 'torch/include/ATen/xpu/XPUGeneratorImpl.h' 2025-06-01T21:23:37.6645383Z adding 'torch/include/ATen/xpu/detail/XPUHooks.h' 2025-06-01T21:23:37.6650057Z adding 'torch/include/asmjit/a64.h' 2025-06-01T21:23:37.6653819Z adding 'torch/include/asmjit/arm.h' 2025-06-01T21:23:37.6657089Z adding 'torch/include/asmjit/asmjit-scope-begin.h' 2025-06-01T21:23:37.6660000Z adding 'torch/include/asmjit/asmjit-scope-end.h' 2025-06-01T21:23:37.6663496Z adding 'torch/include/asmjit/asmjit.h' 2025-06-01T21:23:37.6710042Z adding 'torch/include/asmjit/core.h' 2025-06-01T21:23:37.6716242Z adding 'torch/include/asmjit/x86.h' 2025-06-01T21:23:37.6720495Z adding 'torch/include/asmjit/arm/a64assembler.h' 2025-06-01T21:23:37.6723729Z adding 'torch/include/asmjit/arm/a64builder.h' 2025-06-01T21:23:37.6728608Z adding 'torch/include/asmjit/arm/a64compiler.h' 2025-06-01T21:23:37.6742456Z adding 'torch/include/asmjit/arm/a64emitter.h' 2025-06-01T21:23:37.6770647Z adding 'torch/include/asmjit/arm/a64globals.h' 2025-06-01T21:23:37.6777131Z adding 'torch/include/asmjit/arm/a64instdb.h' 2025-06-01T21:23:37.6784712Z adding 'torch/include/asmjit/arm/a64operand.h' 2025-06-01T21:23:37.6788478Z adding 'torch/include/asmjit/arm/armglobals.h' 2025-06-01T21:23:37.6795395Z adding 'torch/include/asmjit/arm/armoperand.h' 2025-06-01T21:23:37.6800824Z adding 'torch/include/asmjit/arm/armutils.h' 2025-06-01T21:23:37.6810002Z adding 'torch/include/asmjit/core/api-config.h' 2025-06-01T21:23:37.6815947Z adding 'torch/include/asmjit/core/archcommons.h' 2025-06-01T21:23:37.6821511Z adding 'torch/include/asmjit/core/archtraits.h' 2025-06-01T21:23:37.6825760Z adding 'torch/include/asmjit/core/assembler.h' 2025-06-01T21:23:37.6843536Z adding 'torch/include/asmjit/core/builder.h' 2025-06-01T21:23:37.6848449Z adding 'torch/include/asmjit/core/codebuffer.h' 2025-06-01T21:23:37.6865726Z adding 'torch/include/asmjit/core/codeholder.h' 2025-06-01T21:23:37.6875803Z adding 'torch/include/asmjit/core/compiler.h' 2025-06-01T21:23:37.6880888Z adding 'torch/include/asmjit/core/compilerdefs.h' 2025-06-01T21:23:37.6885831Z adding 'torch/include/asmjit/core/constpool.h' 2025-06-01T21:23:37.6902388Z adding 'torch/include/asmjit/core/cpuinfo.h' 2025-06-01T21:23:37.6917509Z adding 'torch/include/asmjit/core/emitter.h' 2025-06-01T21:23:37.6924994Z adding 'torch/include/asmjit/core/environment.h' 2025-06-01T21:23:37.6930315Z adding 'torch/include/asmjit/core/errorhandler.h' 2025-06-01T21:23:37.6935140Z adding 'torch/include/asmjit/core/formatter.h' 2025-06-01T21:23:37.6957410Z adding 'torch/include/asmjit/core/func.h' 2025-06-01T21:23:37.6965773Z adding 'torch/include/asmjit/core/globals.h' 2025-06-01T21:23:37.6977525Z adding 'torch/include/asmjit/core/inst.h' 2025-06-01T21:23:37.6987869Z adding 'torch/include/asmjit/core/jitallocator.h' 2025-06-01T21:23:37.6992198Z adding 'torch/include/asmjit/core/jitruntime.h' 2025-06-01T21:23:37.6996817Z adding 'torch/include/asmjit/core/logger.h' 2025-06-01T21:23:37.7022652Z adding 'torch/include/asmjit/core/operand.h' 2025-06-01T21:23:37.7028146Z adding 'torch/include/asmjit/core/osutils.h' 2025-06-01T21:23:37.7034043Z adding 'torch/include/asmjit/core/string.h' 2025-06-01T21:23:37.7054433Z adding 'torch/include/asmjit/core/support.h' 2025-06-01T21:23:37.7059589Z adding 'torch/include/asmjit/core/target.h' 2025-06-01T21:23:37.7066254Z adding 'torch/include/asmjit/core/type.h' 2025-06-01T21:23:37.7073116Z adding 'torch/include/asmjit/core/virtmem.h' 2025-06-01T21:23:37.7081783Z adding 'torch/include/asmjit/core/zone.h' 2025-06-01T21:23:37.7086588Z adding 'torch/include/asmjit/core/zonehash.h' 2025-06-01T21:23:37.7090773Z adding 'torch/include/asmjit/core/zonelist.h' 2025-06-01T21:23:37.7095131Z adding 'torch/include/asmjit/core/zonestack.h' 2025-06-01T21:23:37.7099157Z adding 'torch/include/asmjit/core/zonestring.h' 2025-06-01T21:23:37.7104946Z adding 'torch/include/asmjit/core/zonetree.h' 2025-06-01T21:23:37.7112998Z adding 'torch/include/asmjit/core/zonevector.h' 2025-06-01T21:23:37.7125956Z adding 'torch/include/asmjit/x86/x86assembler.h' 2025-06-01T21:23:37.7133455Z adding 'torch/include/asmjit/x86/x86builder.h' 2025-06-01T21:23:37.7143566Z adding 'torch/include/asmjit/x86/x86compiler.h' 2025-06-01T21:23:37.7209295Z adding 'torch/include/asmjit/x86/x86emitter.h' 2025-06-01T21:23:37.7247993Z adding 'torch/include/asmjit/x86/x86globals.h' 2025-06-01T21:23:37.7260400Z adding 'torch/include/asmjit/x86/x86instdb.h' 2025-06-01T21:23:37.7274911Z adding 'torch/include/asmjit/x86/x86operand.h' 2025-06-01T21:23:37.7285253Z adding 'torch/include/c10/core/Allocator.h' 2025-06-01T21:23:37.7288897Z adding 'torch/include/c10/core/AutogradState.h' 2025-06-01T21:23:37.7293556Z adding 'torch/include/c10/core/Backend.h' 2025-06-01T21:23:37.7297298Z adding 'torch/include/c10/core/CPUAllocator.h' 2025-06-01T21:23:37.7300641Z adding 'torch/include/c10/core/CachingDeviceAllocator.h' 2025-06-01T21:23:37.7304113Z adding 'torch/include/c10/core/CompileTimeFunctionPointer.h' 2025-06-01T21:23:37.7307646Z adding 'torch/include/c10/core/ConstantSymNodeImpl.h' 2025-06-01T21:23:37.7311374Z adding 'torch/include/c10/core/Contiguity.h' 2025-06-01T21:23:37.7314861Z adding 'torch/include/c10/core/CopyBytes.h' 2025-06-01T21:23:37.7317848Z adding 'torch/include/c10/core/DefaultDtype.h' 2025-06-01T21:23:37.7321144Z adding 'torch/include/c10/core/DefaultTensorOptions.h' 2025-06-01T21:23:37.7325744Z adding 'torch/include/c10/core/Device.h' 2025-06-01T21:23:37.7329112Z adding 'torch/include/c10/core/DeviceArray.h' 2025-06-01T21:23:37.7333995Z adding 'torch/include/c10/core/DeviceGuard.h' 2025-06-01T21:23:37.7338327Z adding 'torch/include/c10/core/DeviceType.h' 2025-06-01T21:23:37.7351778Z adding 'torch/include/c10/core/DispatchKey.h' 2025-06-01T21:23:37.7368812Z adding 'torch/include/c10/core/DispatchKeySet.h' 2025-06-01T21:23:37.7374495Z adding 'torch/include/c10/core/DynamicCast.h' 2025-06-01T21:23:37.7378396Z adding 'torch/include/c10/core/Event.h' 2025-06-01T21:23:37.7382742Z adding 'torch/include/c10/core/GeneratorImpl.h' 2025-06-01T21:23:37.7386644Z adding 'torch/include/c10/core/GradMode.h' 2025-06-01T21:23:37.7391008Z adding 'torch/include/c10/core/InferenceMode.h' 2025-06-01T21:23:37.7394865Z adding 'torch/include/c10/core/Layout.h' 2025-06-01T21:23:37.7400785Z adding 'torch/include/c10/core/MemoryFormat.h' 2025-06-01T21:23:37.7404580Z adding 'torch/include/c10/core/OptionalRef.h' 2025-06-01T21:23:37.7408892Z adding 'torch/include/c10/core/PyHandleCache.h' 2025-06-01T21:23:37.7412488Z adding 'torch/include/c10/core/QEngine.h' 2025-06-01T21:23:37.7415746Z adding 'torch/include/c10/core/QScheme.h' 2025-06-01T21:23:37.7419763Z adding 'torch/include/c10/core/RefcountedDeleter.h' 2025-06-01T21:23:37.7423704Z adding 'torch/include/c10/core/SafePyObject.h' 2025-06-01T21:23:37.7430181Z adding 'torch/include/c10/core/Scalar.h' 2025-06-01T21:23:37.7438916Z adding 'torch/include/c10/core/ScalarType.h' 2025-06-01T21:23:37.7442819Z adding 'torch/include/c10/core/ScalarTypeToTypeMeta.h' 2025-06-01T21:23:37.7447341Z adding 'torch/include/c10/core/Storage.h' 2025-06-01T21:23:37.7453094Z adding 'torch/include/c10/core/StorageImpl.h' 2025-06-01T21:23:37.7458195Z adding 'torch/include/c10/core/Stream.h' 2025-06-01T21:23:37.7462791Z adding 'torch/include/c10/core/StreamGuard.h' 2025-06-01T21:23:37.7466858Z adding 'torch/include/c10/core/SymBool.h' 2025-06-01T21:23:37.7470668Z adding 'torch/include/c10/core/SymFloat.h' 2025-06-01T21:23:37.7477070Z adding 'torch/include/c10/core/SymInt.h' 2025-06-01T21:23:37.7481016Z adding 'torch/include/c10/core/SymIntArrayRef.h' 2025-06-01T21:23:37.7485045Z adding 'torch/include/c10/core/SymNodeImpl.h' 2025-06-01T21:23:37.7489464Z adding 'torch/include/c10/core/SymbolicShapeMeta.h' 2025-06-01T21:23:37.7531667Z adding 'torch/include/c10/core/TensorImpl.h' 2025-06-01T21:23:37.7544879Z adding 'torch/include/c10/core/TensorOptions.h' 2025-06-01T21:23:37.7548856Z adding 'torch/include/c10/core/UndefinedTensorImpl.h' 2025-06-01T21:23:37.7552527Z adding 'torch/include/c10/core/WrapDimMinimal.h' 2025-06-01T21:23:37.7555717Z adding 'torch/include/c10/core/alignment.h' 2025-06-01T21:23:37.7559392Z adding 'torch/include/c10/core/thread_pool.h' 2025-06-01T21:23:37.7563813Z adding 'torch/include/c10/core/impl/COW.h' 2025-06-01T21:23:37.7567429Z adding 'torch/include/c10/core/impl/COWDeleter.h' 2025-06-01T21:23:37.7574095Z adding 'torch/include/c10/core/impl/DeviceGuardImplInterface.h' 2025-06-01T21:23:37.7578063Z adding 'torch/include/c10/core/impl/FakeGuardImpl.h' 2025-06-01T21:23:37.7581454Z adding 'torch/include/c10/core/impl/GPUTrace.h' 2025-06-01T21:23:37.7585337Z adding 'torch/include/c10/core/impl/HermeticPyObjectTLS.h' 2025-06-01T21:23:37.7592257Z adding 'torch/include/c10/core/impl/InlineDeviceGuard.h' 2025-06-01T21:23:37.7596798Z adding 'torch/include/c10/core/impl/InlineEvent.h' 2025-06-01T21:23:37.7602216Z adding 'torch/include/c10/core/impl/InlineStreamGuard.h' 2025-06-01T21:23:37.7606904Z adding 'torch/include/c10/core/impl/LocalDispatchKeySet.h' 2025-06-01T21:23:37.7613319Z adding 'torch/include/c10/core/impl/PyInterpreter.h' 2025-06-01T21:23:37.7618881Z adding 'torch/include/c10/core/impl/PyObjectSlot.h' 2025-06-01T21:23:37.7621995Z adding 'torch/include/c10/core/impl/PythonDispatcherTLS.h' 2025-06-01T21:23:37.7626716Z adding 'torch/include/c10/core/impl/SizesAndStrides.h' 2025-06-01T21:23:37.7630583Z adding 'torch/include/c10/core/impl/TorchDispatchModeTLS.h' 2025-06-01T21:23:37.7634196Z adding 'torch/include/c10/core/impl/VirtualGuardImpl.h' 2025-06-01T21:23:37.7637511Z adding 'torch/include/c10/core/impl/alloc_cpu.h' 2025-06-01T21:23:37.7641808Z adding 'torch/include/c10/cuda/CUDAAlgorithm.h' 2025-06-01T21:23:37.7645692Z adding 'torch/include/c10/cuda/CUDAAllocatorConfig.h' 2025-06-01T21:23:37.7653241Z adding 'torch/include/c10/cuda/CUDACachingAllocator.h' 2025-06-01T21:23:37.7659220Z adding 'torch/include/c10/cuda/CUDADeviceAssertion.h' 2025-06-01T21:23:37.7662657Z adding 'torch/include/c10/cuda/CUDADeviceAssertionHost.h' 2025-06-01T21:23:37.7669453Z adding 'torch/include/c10/cuda/CUDAException.h' 2025-06-01T21:23:37.7671495Z adding 'torch/include/c10/cuda/CUDAFunctions.h' 2025-06-01T21:23:37.7694166Z adding 'torch/include/c10/cuda/CUDAGraphsC10Utils.h' 2025-06-01T21:23:37.7694295Z adding 'torch/include/c10/cuda/CUDAGuard.h' 2025-06-01T21:23:37.7694415Z adding 'torch/include/c10/cuda/CUDAMacros.h' 2025-06-01T21:23:37.7694548Z adding 'torch/include/c10/cuda/CUDAMathCompat.h' 2025-06-01T21:23:37.7694672Z adding 'torch/include/c10/cuda/CUDAMiscFunctions.h' 2025-06-01T21:23:37.7698520Z adding 'torch/include/c10/cuda/CUDAStream.h' 2025-06-01T21:23:37.7702522Z adding 'torch/include/c10/cuda/driver_api.h' 2025-06-01T21:23:37.7708498Z adding 'torch/include/c10/cuda/impl/CUDAGuardImpl.h' 2025-06-01T21:23:37.7712237Z adding 'torch/include/c10/cuda/impl/CUDATest.h' 2025-06-01T21:23:37.7718258Z adding 'torch/include/c10/macros/Export.h' 2025-06-01T21:23:37.7724815Z adding 'torch/include/c10/macros/Macros.h' 2025-06-01T21:23:37.7729348Z adding 'torch/include/c10/macros/cmake_macros.h' 2025-06-01T21:23:37.7732652Z adding 'torch/include/c10/metal/atomic.h' 2025-06-01T21:23:37.7735839Z adding 'torch/include/c10/metal/common.h' 2025-06-01T21:23:37.7741468Z adding 'torch/include/c10/metal/indexing.h' 2025-06-01T21:23:37.7745760Z adding 'torch/include/c10/metal/random.h' 2025-06-01T21:23:37.7749884Z adding 'torch/include/c10/metal/reduction_utils.h' 2025-06-01T21:23:37.7764187Z adding 'torch/include/c10/metal/special_math.h' 2025-06-01T21:23:37.7769291Z adding 'torch/include/c10/metal/utils.h' 2025-06-01T21:23:37.7774388Z adding 'torch/include/c10/mobile/CPUCachingAllocator.h' 2025-06-01T21:23:37.7778702Z adding 'torch/include/c10/mobile/CPUProfilingAllocator.h' 2025-06-01T21:23:37.7783051Z adding 'torch/include/c10/test/util/Macros.h' 2025-06-01T21:23:37.7788537Z adding 'torch/include/c10/test/util/complex_math_test_common.h' 2025-06-01T21:23:37.7795431Z adding 'torch/include/c10/test/util/complex_test_common.h' 2025-06-01T21:23:37.7802024Z adding 'torch/include/c10/util/AbortHandler.h' 2025-06-01T21:23:37.7806112Z adding 'torch/include/c10/util/AlignOf.h' 2025-06-01T21:23:37.7810109Z adding 'torch/include/c10/util/ApproximateClock.h' 2025-06-01T21:23:37.7813192Z adding 'torch/include/c10/util/Array.h' 2025-06-01T21:23:37.7818417Z adding 'torch/include/c10/util/ArrayRef.h' 2025-06-01T21:23:37.7823226Z adding 'torch/include/c10/util/BFloat16-inl.h' 2025-06-01T21:23:37.7828084Z adding 'torch/include/c10/util/BFloat16-math.h' 2025-06-01T21:23:37.7832314Z adding 'torch/include/c10/util/BFloat16.h' 2025-06-01T21:23:37.7835270Z adding 'torch/include/c10/util/Backtrace.h' 2025-06-01T21:23:37.7838988Z adding 'torch/include/c10/util/Bitset.h' 2025-06-01T21:23:37.7842462Z adding 'torch/include/c10/util/C++17.h' 2025-06-01T21:23:37.7846029Z adding 'torch/include/c10/util/CallOnce.h' 2025-06-01T21:23:37.7850921Z adding 'torch/include/c10/util/ConstexprCrc.h' 2025-06-01T21:23:37.7854573Z adding 'torch/include/c10/util/DeadlockDetection.h' 2025-06-01T21:23:37.7858492Z adding 'torch/include/c10/util/Deprecated.h' 2025-06-01T21:23:37.7861564Z adding 'torch/include/c10/util/DimVector.h' 2025-06-01T21:23:37.7864876Z adding 'torch/include/c10/util/DynamicCounter.h' 2025-06-01T21:23:37.7868666Z adding 'torch/include/c10/util/Enumerate.h' 2025-06-01T21:23:37.7879400Z adding 'torch/include/c10/util/Exception.h' 2025-06-01T21:23:37.7884399Z adding 'torch/include/c10/util/ExclusivelyOwned.h' 2025-06-01T21:23:37.7887989Z adding 'torch/include/c10/util/ExclusivelyOwnedTensorTraits.h' 2025-06-01T21:23:37.7890992Z adding 'torch/include/c10/util/FbcodeMaps.h' 2025-06-01T21:23:37.7896208Z adding 'torch/include/c10/util/Flags.h' 2025-06-01T21:23:37.7899718Z adding 'torch/include/c10/util/Float4_e2m1fn_x2.h' 2025-06-01T21:23:37.7903862Z adding 'torch/include/c10/util/Float8_e4m3fn-inl.h' 2025-06-01T21:23:37.7909619Z adding 'torch/include/c10/util/Float8_e4m3fn.h' 2025-06-01T21:23:37.7913495Z adding 'torch/include/c10/util/Float8_e4m3fnuz-inl.h' 2025-06-01T21:23:37.7917663Z adding 'torch/include/c10/util/Float8_e4m3fnuz.h' 2025-06-01T21:23:37.7921811Z adding 'torch/include/c10/util/Float8_e5m2-inl.h' 2025-06-01T21:23:37.7926048Z adding 'torch/include/c10/util/Float8_e5m2.h' 2025-06-01T21:23:37.7930361Z adding 'torch/include/c10/util/Float8_e5m2fnuz-inl.h' 2025-06-01T21:23:37.7934638Z adding 'torch/include/c10/util/Float8_e5m2fnuz.h' 2025-06-01T21:23:37.7938550Z adding 'torch/include/c10/util/Float8_e8m0fnu-inl.h' 2025-06-01T21:23:37.7942415Z adding 'torch/include/c10/util/Float8_e8m0fnu.h' 2025-06-01T21:23:37.7946120Z adding 'torch/include/c10/util/Float8_fnuz_cvt.h' 2025-06-01T21:23:37.7949728Z adding 'torch/include/c10/util/FunctionRef.h' 2025-06-01T21:23:37.7953064Z adding 'torch/include/c10/util/Gauge.h' 2025-06-01T21:23:37.7957608Z adding 'torch/include/c10/util/Half-inl.h' 2025-06-01T21:23:37.7964903Z adding 'torch/include/c10/util/Half.h' 2025-06-01T21:23:37.7968957Z adding 'torch/include/c10/util/IdWrapper.h' 2025-06-01T21:23:37.7973002Z adding 'torch/include/c10/util/IntrusiveList.h' 2025-06-01T21:23:37.7976639Z adding 'torch/include/c10/util/Lazy.h' 2025-06-01T21:23:37.7981514Z adding 'torch/include/c10/util/LeftRight.h' 2025-06-01T21:23:37.7985077Z adding 'torch/include/c10/util/Load.h' 2025-06-01T21:23:37.7991296Z adding 'torch/include/c10/util/Logging.h' 2025-06-01T21:23:37.7996071Z adding 'torch/include/c10/util/MathConstants.h' 2025-06-01T21:23:37.7999681Z adding 'torch/include/c10/util/MaybeOwned.h' 2025-06-01T21:23:37.8004569Z adding 'torch/include/c10/util/Metaprogramming.h' 2025-06-01T21:23:37.8008151Z adding 'torch/include/c10/util/NetworkFlow.h' 2025-06-01T21:23:37.8011489Z adding 'torch/include/c10/util/Optional.h' 2025-06-01T21:23:37.8015801Z adding 'torch/include/c10/util/OptionalArrayRef.h' 2025-06-01T21:23:37.8019153Z adding 'torch/include/c10/util/ParallelGuard.h' 2025-06-01T21:23:37.8024830Z adding 'torch/include/c10/util/Registry.h' 2025-06-01T21:23:37.8028492Z adding 'torch/include/c10/util/ScopeExit.h' 2025-06-01T21:23:37.8031847Z adding 'torch/include/c10/util/Semaphore.h' 2025-06-01T21:23:37.8036129Z adding 'torch/include/c10/util/SmallBuffer.h' 2025-06-01T21:23:37.8053828Z adding 'torch/include/c10/util/SmallVector.h' 2025-06-01T21:23:37.8059719Z adding 'torch/include/c10/util/StringUtil.h' 2025-06-01T21:23:37.8063276Z adding 'torch/include/c10/util/Synchronized.h' 2025-06-01T21:23:37.8067456Z adding 'torch/include/c10/util/ThreadLocal.h' 2025-06-01T21:23:37.8071256Z adding 'torch/include/c10/util/ThreadLocalDebugInfo.h' 2025-06-01T21:23:37.8074375Z adding 'torch/include/c10/util/Type.h' 2025-06-01T21:23:37.8078657Z adding 'torch/include/c10/util/TypeCast.h' 2025-06-01T21:23:37.8082726Z adding 'torch/include/c10/util/TypeIndex.h' 2025-06-01T21:23:37.8089256Z adding 'torch/include/c10/util/TypeList.h' 2025-06-01T21:23:37.8093411Z adding 'torch/include/c10/util/TypeSafeSignMath.h' 2025-06-01T21:23:37.8097439Z adding 'torch/include/c10/util/TypeTraits.h' 2025-06-01T21:23:37.8100715Z adding 'torch/include/c10/util/Unicode.h' 2025-06-01T21:23:37.8104974Z adding 'torch/include/c10/util/UniqueVoidPtr.h' 2025-06-01T21:23:37.8108156Z adding 'torch/include/c10/util/Unroll.h' 2025-06-01T21:23:37.8111849Z adding 'torch/include/c10/util/WaitCounter.h' 2025-06-01T21:23:37.8115027Z adding 'torch/include/c10/util/WaitCounterDynamicBackend.h' 2025-06-01T21:23:37.8118725Z adding 'torch/include/c10/util/accumulate.h' 2025-06-01T21:23:37.8122165Z adding 'torch/include/c10/util/bit_cast.h' 2025-06-01T21:23:37.8125290Z adding 'torch/include/c10/util/bits.h' 2025-06-01T21:23:37.8132785Z adding 'torch/include/c10/util/complex.h' 2025-06-01T21:23:37.8138116Z adding 'torch/include/c10/util/complex_math.h' 2025-06-01T21:23:37.8141717Z adding 'torch/include/c10/util/complex_utils.h' 2025-06-01T21:23:37.8145074Z adding 'torch/include/c10/util/copysign.h' 2025-06-01T21:23:37.8149100Z adding 'torch/include/c10/util/env.h' 2025-06-01T21:23:37.8151654Z adding 'torch/include/c10/util/error.h' 2025-06-01T21:23:37.8167816Z adding 'torch/include/c10/util/flat_hash_map.h' 2025-06-01T21:23:37.8172383Z adding 'torch/include/c10/util/floating_point_utils.h' 2025-06-01T21:23:37.8176496Z adding 'torch/include/c10/util/generic_math.h' 2025-06-01T21:23:37.8182798Z adding 'torch/include/c10/util/hash.h' 2025-06-01T21:23:37.8189189Z adding 'torch/include/c10/util/int128.h' 2025-06-01T21:23:37.8202596Z adding 'torch/include/c10/util/intrusive_ptr.h' 2025-06-01T21:23:37.8207444Z adding 'torch/include/c10/util/irange.h' 2025-06-01T21:23:37.8218535Z adding 'torch/include/c10/util/llvmMathExtras.h' 2025-06-01T21:23:37.8223036Z adding 'torch/include/c10/util/logging_is_google_glog.h' 2025-06-01T21:23:37.8228009Z adding 'torch/include/c10/util/logging_is_not_google_glog.h' 2025-06-01T21:23:37.8231301Z adding 'torch/include/c10/util/numa.h' 2025-06-01T21:23:37.8249376Z adding 'torch/include/c10/util/order_preserving_flat_hash_map.h' 2025-06-01T21:23:37.8254581Z adding 'torch/include/c10/util/overflows.h' 2025-06-01T21:23:37.8257714Z adding 'torch/include/c10/util/overloaded.h' 2025-06-01T21:23:37.8260544Z adding 'torch/include/c10/util/python_stub.h' 2025-06-01T21:23:37.8263651Z adding 'torch/include/c10/util/qint32.h' 2025-06-01T21:23:37.8266749Z adding 'torch/include/c10/util/qint8.h' 2025-06-01T21:23:37.8269670Z adding 'torch/include/c10/util/quint2x4.h' 2025-06-01T21:23:37.8272561Z adding 'torch/include/c10/util/quint4x2.h' 2025-06-01T21:23:37.8275437Z adding 'torch/include/c10/util/quint8.h' 2025-06-01T21:23:37.8278829Z adding 'torch/include/c10/util/safe_numerics.h' 2025-06-01T21:23:37.8282696Z adding 'torch/include/c10/util/signal_handler.h' 2025-06-01T21:23:37.8291809Z adding 'torch/include/c10/util/sparse_bitset.h' 2025-06-01T21:23:37.8295740Z adding 'torch/include/c10/util/ssize.h' 2025-06-01T21:23:37.8298954Z adding 'torch/include/c10/util/static_tracepoint.h' 2025-06-01T21:23:37.8303727Z adding 'torch/include/c10/util/static_tracepoint_elfx86.h' 2025-06-01T21:23:37.8306724Z adding 'torch/include/c10/util/strides.h' 2025-06-01T21:23:37.8309684Z adding 'torch/include/c10/util/string_utils.h' 2025-06-01T21:23:37.8316284Z adding 'torch/include/c10/util/string_view.h' 2025-06-01T21:23:37.8326031Z adding 'torch/include/c10/util/strong_type.h' 2025-06-01T21:23:37.8330682Z adding 'torch/include/c10/util/tempfile.h' 2025-06-01T21:23:37.8333476Z adding 'torch/include/c10/util/thread_name.h' 2025-06-01T21:23:37.8342539Z adding 'torch/include/c10/util/typeid.h' 2025-06-01T21:23:37.8346412Z adding 'torch/include/c10/util/win32-headers.h' 2025-06-01T21:23:37.8350468Z adding 'torch/include/c10/xpu/XPUCachingAllocator.h' 2025-06-01T21:23:37.8355325Z adding 'torch/include/c10/xpu/XPUDeviceProp.h' 2025-06-01T21:23:37.8358696Z adding 'torch/include/c10/xpu/XPUException.h' 2025-06-01T21:23:37.8362051Z adding 'torch/include/c10/xpu/XPUFunctions.h' 2025-06-01T21:23:37.8364995Z adding 'torch/include/c10/xpu/XPUMacros.h' 2025-06-01T21:23:37.8369635Z adding 'torch/include/c10/xpu/XPUStream.h' 2025-06-01T21:23:37.8375036Z adding 'torch/include/c10/xpu/impl/XPUGuardImpl.h' 2025-06-01T21:23:37.8379585Z adding 'torch/include/c10/xpu/test/impl/XPUTest.h' 2025-06-01T21:23:37.8384280Z adding 'torch/include/caffe2/core/common.h' 2025-06-01T21:23:37.8387749Z adding 'torch/include/caffe2/core/macros.h' 2025-06-01T21:23:37.8391027Z adding 'torch/include/caffe2/core/timer.h' 2025-06-01T21:23:37.8396829Z adding 'torch/include/caffe2/perfkernels/batch_box_cox_vec.h' 2025-06-01T21:23:37.8401047Z adding 'torch/include/caffe2/perfkernels/common.h' 2025-06-01T21:23:37.8404593Z adding 'torch/include/caffe2/perfkernels/embedding_lookup_idx.h' 2025-06-01T21:23:37.8444155Z adding 'torch/include/caffe2/serialize/crc_alt.h' 2025-06-01T21:23:37.8449169Z adding 'torch/include/caffe2/serialize/file_adapter.h' 2025-06-01T21:23:37.8452235Z adding 'torch/include/caffe2/serialize/in_memory_adapter.h' 2025-06-01T21:23:37.8458272Z adding 'torch/include/caffe2/serialize/inline_container.h' 2025-06-01T21:23:37.8461164Z adding 'torch/include/caffe2/serialize/istream_adapter.h' 2025-06-01T21:23:37.8464315Z adding 'torch/include/caffe2/serialize/read_adapter_interface.h' 2025-06-01T21:23:37.8468913Z adding 'torch/include/caffe2/serialize/versions.h' 2025-06-01T21:23:37.8473657Z adding 'torch/include/caffe2/utils/fixed_divisor.h' 2025-06-01T21:23:37.8476915Z adding 'torch/include/caffe2/utils/proto_wrap.h' 2025-06-01T21:23:37.8480093Z adding 'torch/include/caffe2/utils/string_utils.h' 2025-06-01T21:23:37.8484678Z adding 'torch/include/caffe2/utils/threadpool/ThreadPool.h' 2025-06-01T21:23:37.8488257Z adding 'torch/include/caffe2/utils/threadpool/ThreadPoolCommon.h' 2025-06-01T21:23:37.8494097Z adding 'torch/include/caffe2/utils/threadpool/WorkersPool.h' 2025-06-01T21:23:37.8497746Z adding 'torch/include/caffe2/utils/threadpool/pthreadpool-cpp.h' 2025-06-01T21:23:37.8501945Z adding 'torch/include/caffe2/utils/threadpool/pthreadpool.h' 2025-06-01T21:23:37.8505843Z adding 'torch/include/caffe2/utils/threadpool/thread_pool_guard.h' 2025-06-01T21:23:37.8511377Z adding 'torch/include/fbgemm/ConvUtils.h' 2025-06-01T21:23:37.8524263Z adding 'torch/include/fbgemm/Fbgemm.h' 2025-06-01T21:23:37.8529029Z adding 'torch/include/fbgemm/FbgemmBuild.h' 2025-06-01T21:23:37.8532762Z adding 'torch/include/fbgemm/FbgemmConvert.h' 2025-06-01T21:23:37.8538199Z adding 'torch/include/fbgemm/FbgemmEmbedding.h' 2025-06-01T21:23:37.8541948Z adding 'torch/include/fbgemm/FbgemmFP16.h' 2025-06-01T21:23:37.8545541Z adding 'torch/include/fbgemm/FbgemmFP32.h' 2025-06-01T21:23:37.8551200Z adding 'torch/include/fbgemm/FbgemmFPCommon.h' 2025-06-01T21:23:37.8554207Z adding 'torch/include/fbgemm/FbgemmI64.h' 2025-06-01T21:23:37.8558008Z adding 'torch/include/fbgemm/FbgemmI8DepthwiseAvx2.h' 2025-06-01T21:23:37.8561403Z adding 'torch/include/fbgemm/FbgemmI8DirectconvAvx2.h' 2025-06-01T21:23:37.8565276Z adding 'torch/include/fbgemm/FbgemmI8Spmdm.h' 2025-06-01T21:23:37.8570598Z adding 'torch/include/fbgemm/FbgemmPackMatrixB.h' 2025-06-01T21:23:37.8575144Z adding 'torch/include/fbgemm/FbgemmSparse.h' 2025-06-01T21:23:37.8581026Z adding 'torch/include/fbgemm/FloatConversion.h' 2025-06-01T21:23:37.8586025Z adding 'torch/include/fbgemm/OutputProcessing-inl.h' 2025-06-01T21:23:37.8591570Z adding 'torch/include/fbgemm/PackingTraits-inl.h' 2025-06-01T21:23:37.8597556Z adding 'torch/include/fbgemm/QuantUtils.h' 2025-06-01T21:23:37.8601534Z adding 'torch/include/fbgemm/QuantUtilsAvx2.h' 2025-06-01T21:23:37.8604939Z adding 'torch/include/fbgemm/QuantUtilsAvx512.h' 2025-06-01T21:23:37.8608052Z adding 'torch/include/fbgemm/QuantUtilsNeon.h' 2025-06-01T21:23:37.8611233Z adding 'torch/include/fbgemm/SimdUtils.h' 2025-06-01T21:23:37.8614387Z adding 'torch/include/fbgemm/Types.h' 2025-06-01T21:23:37.8620724Z adding 'torch/include/fbgemm/Utils.h' 2025-06-01T21:23:37.8624791Z adding 'torch/include/fbgemm/UtilsAvx2.h' 2025-06-01T21:23:37.8628094Z adding 'torch/include/fbgemm/spmmUtils.h' 2025-06-01T21:23:37.8631443Z adding 'torch/include/fbgemm/spmmUtilsAvx2.h' 2025-06-01T21:23:37.8637098Z adding 'torch/include/fmt/args.h' 2025-06-01T21:23:37.8675988Z adding 'torch/include/fmt/base.h' 2025-06-01T21:23:37.8704517Z adding 'torch/include/fmt/chrono.h' 2025-06-01T21:23:37.8715934Z adding 'torch/include/fmt/color.h' 2025-06-01T21:23:37.8723797Z adding 'torch/include/fmt/compile.h' 2025-06-01T21:23:37.8727181Z adding 'torch/include/fmt/core.h' 2025-06-01T21:23:37.8759305Z adding 'torch/include/fmt/format-inl.h' 2025-06-01T21:23:37.8818933Z adding 'torch/include/fmt/format.h' 2025-06-01T21:23:37.8828989Z adding 'torch/include/fmt/os.h' 2025-06-01T21:23:37.8833687Z adding 'torch/include/fmt/ostream.h' 2025-06-01T21:23:37.8842032Z adding 'torch/include/fmt/printf.h' 2025-06-01T21:23:37.8851788Z adding 'torch/include/fmt/ranges.h' 2025-06-01T21:23:37.8860445Z adding 'torch/include/fmt/std.h' 2025-06-01T21:23:37.8866408Z adding 'torch/include/fmt/xchar.h' 2025-06-01T21:23:37.8871502Z adding 'torch/include/fp16/bitcasts.h' 2025-06-01T21:23:37.8877520Z adding 'torch/include/fp16/fp16.h' 2025-06-01T21:23:37.8881896Z adding 'torch/include/fp16/psimd.h' 2025-06-01T21:23:37.8888660Z adding 'torch/include/google/protobuf/any.h' 2025-06-01T21:23:37.8894474Z adding 'torch/include/google/protobuf/any.pb.h' 2025-06-01T21:23:37.8906506Z adding 'torch/include/google/protobuf/api.pb.h' 2025-06-01T21:23:37.8919725Z adding 'torch/include/google/protobuf/arena.h' 2025-06-01T21:23:37.8927512Z adding 'torch/include/google/protobuf/arena_impl.h' 2025-06-01T21:23:37.8934339Z adding 'torch/include/google/protobuf/arenastring.h' 2025-06-01T21:23:37.8968255Z adding 'torch/include/google/protobuf/descriptor.h' 2025-06-01T21:23:37.9052035Z adding 'torch/include/google/protobuf/descriptor.pb.h' 2025-06-01T21:23:37.9071952Z adding 'torch/include/google/protobuf/descriptor_database.h' 2025-06-01T21:23:37.9077337Z adding 'torch/include/google/protobuf/duration.pb.h' 2025-06-01T21:23:37.9083106Z adding 'torch/include/google/protobuf/dynamic_message.h' 2025-06-01T21:23:37.9087893Z adding 'torch/include/google/protobuf/empty.pb.h' 2025-06-01T21:23:37.9111280Z adding 'torch/include/google/protobuf/extension_set.h' 2025-06-01T21:23:37.9118492Z adding 'torch/include/google/protobuf/extension_set_inl.h' 2025-06-01T21:23:37.9123921Z adding 'torch/include/google/protobuf/field_mask.pb.h' 2025-06-01T21:23:37.9128382Z adding 'torch/include/google/protobuf/generated_enum_reflection.h' 2025-06-01T21:23:37.9132194Z adding 'torch/include/google/protobuf/generated_enum_util.h' 2025-06-01T21:23:37.9138823Z adding 'torch/include/google/protobuf/generated_message_reflection.h' 2025-06-01T21:23:37.9145424Z adding 'torch/include/google/protobuf/generated_message_table_driven.h' 2025-06-01T21:23:37.9151393Z adding 'torch/include/google/protobuf/generated_message_util.h' 2025-06-01T21:23:37.9155824Z adding 'torch/include/google/protobuf/has_bits.h' 2025-06-01T21:23:37.9160603Z adding 'torch/include/google/protobuf/implicit_weak_message.h' 2025-06-01T21:23:37.9165470Z adding 'torch/include/google/protobuf/inlined_string_field.h' 2025-06-01T21:23:37.9183227Z adding 'torch/include/google/protobuf/map.h' 2025-06-01T21:23:37.9189717Z adding 'torch/include/google/protobuf/map_entry.h' 2025-06-01T21:23:37.9200909Z adding 'torch/include/google/protobuf/map_entry_lite.h' 2025-06-01T21:23:37.9212814Z adding 'torch/include/google/protobuf/map_field.h' 2025-06-01T21:23:37.9219750Z adding 'torch/include/google/protobuf/map_field_inl.h' 2025-06-01T21:23:37.9225068Z adding 'torch/include/google/protobuf/map_field_lite.h' 2025-06-01T21:23:37.9234773Z adding 'torch/include/google/protobuf/map_type_handler.h' 2025-06-01T21:23:37.9258189Z adding 'torch/include/google/protobuf/message.h' 2025-06-01T21:23:37.9270712Z adding 'torch/include/google/protobuf/message_lite.h' 2025-06-01T21:23:37.9274927Z adding 'torch/include/google/protobuf/metadata.h' 2025-06-01T21:23:37.9279803Z adding 'torch/include/google/protobuf/metadata_lite.h' 2025-06-01T21:23:37.9291410Z adding 'torch/include/google/protobuf/parse_context.h' 2025-06-01T21:23:37.9295664Z adding 'torch/include/google/protobuf/port.h' 2025-06-01T21:23:37.9303651Z adding 'torch/include/google/protobuf/reflection.h' 2025-06-01T21:23:37.9308210Z adding 'torch/include/google/protobuf/reflection_ops.h' 2025-06-01T21:23:37.9342278Z adding 'torch/include/google/protobuf/repeated_field.h' 2025-06-01T21:23:37.9351389Z adding 'torch/include/google/protobuf/service.h' 2025-06-01T21:23:37.9356828Z adding 'torch/include/google/protobuf/source_context.pb.h' 2025-06-01T21:23:37.9367873Z adding 'torch/include/google/protobuf/struct.pb.h' 2025-06-01T21:23:37.9379820Z adding 'torch/include/google/protobuf/text_format.h' 2025-06-01T21:23:37.9385426Z adding 'torch/include/google/protobuf/timestamp.pb.h' 2025-06-01T21:23:37.9404454Z adding 'torch/include/google/protobuf/type.pb.h' 2025-06-01T21:23:37.9413061Z adding 'torch/include/google/protobuf/unknown_field_set.h' 2025-06-01T21:23:37.9420820Z adding 'torch/include/google/protobuf/wire_format.h' 2025-06-01T21:23:37.9441900Z adding 'torch/include/google/protobuf/wire_format_lite.h' 2025-06-01T21:23:37.9453937Z adding 'torch/include/google/protobuf/wrappers.pb.h' 2025-06-01T21:23:37.9461365Z adding 'torch/include/google/protobuf/compiler/code_generator.h' 2025-06-01T21:23:37.9470839Z adding 'torch/include/google/protobuf/compiler/command_line_interface.h' 2025-06-01T21:23:37.9478063Z adding 'torch/include/google/protobuf/compiler/importer.h' 2025-06-01T21:23:37.9489562Z adding 'torch/include/google/protobuf/compiler/parser.h' 2025-06-01T21:23:37.9494517Z adding 'torch/include/google/protobuf/compiler/plugin.h' 2025-06-01T21:23:37.9509828Z adding 'torch/include/google/protobuf/compiler/plugin.pb.h' 2025-06-01T21:23:37.9516575Z adding 'torch/include/google/protobuf/compiler/cpp/cpp_generator.h' 2025-06-01T21:23:37.9521299Z adding 'torch/include/google/protobuf/compiler/csharp/csharp_generator.h' 2025-06-01T21:23:37.9525390Z adding 'torch/include/google/protobuf/compiler/csharp/csharp_names.h' 2025-06-01T21:23:37.9530029Z adding 'torch/include/google/protobuf/compiler/java/java_generator.h' 2025-06-01T21:23:37.9533985Z adding 'torch/include/google/protobuf/compiler/java/java_names.h' 2025-06-01T21:23:37.9540808Z adding 'torch/include/google/protobuf/compiler/js/js_generator.h' 2025-06-01T21:23:37.9545017Z adding 'torch/include/google/protobuf/compiler/js/well_known_types_embed.h' 2025-06-01T21:23:37.9549771Z adding 'torch/include/google/protobuf/compiler/objectivec/objectivec_generator.h' 2025-06-01T21:23:37.9555995Z adding 'torch/include/google/protobuf/compiler/objectivec/objectivec_helpers.h' 2025-06-01T21:23:37.9560984Z adding 'torch/include/google/protobuf/compiler/php/php_generator.h' 2025-06-01T21:23:37.9566515Z adding 'torch/include/google/protobuf/compiler/python/python_generator.h' 2025-06-01T21:23:37.9571257Z adding 'torch/include/google/protobuf/compiler/ruby/ruby_generator.h' 2025-06-01T21:23:37.9599794Z adding 'torch/include/google/protobuf/io/coded_stream.h' 2025-06-01T21:23:37.9606162Z adding 'torch/include/google/protobuf/io/gzip_stream.h' 2025-06-01T21:23:37.9610708Z adding 'torch/include/google/protobuf/io/io_win32.h' 2025-06-01T21:23:37.9618545Z adding 'torch/include/google/protobuf/io/printer.h' 2025-06-01T21:23:37.9622694Z adding 'torch/include/google/protobuf/io/strtod.h' 2025-06-01T21:23:37.9631050Z adding 'torch/include/google/protobuf/io/tokenizer.h' 2025-06-01T21:23:37.9637194Z adding 'torch/include/google/protobuf/io/zero_copy_stream.h' 2025-06-01T21:23:37.9643120Z adding 'torch/include/google/protobuf/io/zero_copy_stream_impl.h' 2025-06-01T21:23:37.9650773Z adding 'torch/include/google/protobuf/io/zero_copy_stream_impl_lite.h' 2025-06-01T21:23:37.9658076Z adding 'torch/include/google/protobuf/stubs/bytestream.h' 2025-06-01T21:23:37.9664204Z adding 'torch/include/google/protobuf/stubs/callback.h' 2025-06-01T21:23:37.9669143Z adding 'torch/include/google/protobuf/stubs/casts.h' 2025-06-01T21:23:37.9674235Z adding 'torch/include/google/protobuf/stubs/common.h' 2025-06-01T21:23:37.9678859Z adding 'torch/include/google/protobuf/stubs/fastmem.h' 2025-06-01T21:23:37.9683519Z adding 'torch/include/google/protobuf/stubs/hash.h' 2025-06-01T21:23:37.9689432Z adding 'torch/include/google/protobuf/stubs/logging.h' 2025-06-01T21:23:37.9694620Z adding 'torch/include/google/protobuf/stubs/macros.h' 2025-06-01T21:23:37.9705822Z adding 'torch/include/google/protobuf/stubs/map_util.h' 2025-06-01T21:23:37.9711168Z adding 'torch/include/google/protobuf/stubs/mutex.h' 2025-06-01T21:23:37.9714864Z adding 'torch/include/google/protobuf/stubs/once.h' 2025-06-01T21:23:37.9719230Z adding 'torch/include/google/protobuf/stubs/platform_macros.h' 2025-06-01T21:23:37.9725280Z adding 'torch/include/google/protobuf/stubs/port.h' 2025-06-01T21:23:37.9729637Z adding 'torch/include/google/protobuf/stubs/status.h' 2025-06-01T21:23:37.9733842Z adding 'torch/include/google/protobuf/stubs/stl_util.h' 2025-06-01T21:23:37.9742731Z adding 'torch/include/google/protobuf/stubs/stringpiece.h' 2025-06-01T21:23:37.9756374Z adding 'torch/include/google/protobuf/stubs/strutil.h' 2025-06-01T21:23:37.9761560Z adding 'torch/include/google/protobuf/stubs/template_util.h' 2025-06-01T21:23:37.9766825Z adding 'torch/include/google/protobuf/util/delimited_message_util.h' 2025-06-01T21:23:37.9772346Z adding 'torch/include/google/protobuf/util/field_comparator.h' 2025-06-01T21:23:37.9778944Z adding 'torch/include/google/protobuf/util/field_mask_util.h' 2025-06-01T21:23:37.9784248Z adding 'torch/include/google/protobuf/util/json_util.h' 2025-06-01T21:23:37.9802444Z adding 'torch/include/google/protobuf/util/message_differencer.h' 2025-06-01T21:23:37.9808988Z adding 'torch/include/google/protobuf/util/time_util.h' 2025-06-01T21:23:37.9812990Z adding 'torch/include/google/protobuf/util/type_resolver.h' 2025-06-01T21:23:37.9816604Z adding 'torch/include/google/protobuf/util/type_resolver_util.h' 2025-06-01T21:23:37.9821500Z adding 'torch/include/kineto/AbstractConfig.h' 2025-06-01T21:23:37.9825541Z adding 'torch/include/kineto/ActivityProfilerInterface.h' 2025-06-01T21:23:37.9828669Z adding 'torch/include/kineto/ActivityTraceInterface.h' 2025-06-01T21:23:37.9832092Z adding 'torch/include/kineto/ActivityType.h' 2025-06-01T21:23:37.9835195Z adding 'torch/include/kineto/ClientInterface.h' 2025-06-01T21:23:37.9841967Z adding 'torch/include/kineto/Config.h' 2025-06-01T21:23:37.9846299Z adding 'torch/include/kineto/GenericTraceActivity.h' 2025-06-01T21:23:37.9850568Z adding 'torch/include/kineto/IActivityProfiler.h' 2025-06-01T21:23:37.9854072Z adding 'torch/include/kineto/ILoggerObserver.h' 2025-06-01T21:23:37.9857510Z adding 'torch/include/kineto/ITraceActivity.h' 2025-06-01T21:23:37.9860481Z adding 'torch/include/kineto/LoggingAPI.h' 2025-06-01T21:23:37.9863567Z adding 'torch/include/kineto/ThreadUtil.h' 2025-06-01T21:23:37.9866747Z adding 'torch/include/kineto/TraceSpan.h' 2025-06-01T21:23:37.9870539Z adding 'torch/include/kineto/libkineto.h' 2025-06-01T21:23:37.9873994Z adding 'torch/include/kineto/output_base.h' 2025-06-01T21:23:37.9877080Z adding 'torch/include/kineto/time_since_epoch.h' 2025-06-01T21:23:37.9887191Z adding 'torch/include/legacy/ittnotify.h' 2025-06-01T21:23:37.9892488Z adding 'torch/include/mimalloc-2.2/mimalloc-new-delete.h' 2025-06-01T21:23:37.9896113Z adding 'torch/include/mimalloc-2.2/mimalloc-override.h' 2025-06-01T21:23:37.9899914Z adding 'torch/include/mimalloc-2.2/mimalloc-stats.h' 2025-06-01T21:23:37.9911629Z adding 'torch/include/mimalloc-2.2/mimalloc.h' 2025-06-01T21:23:37.9951263Z adding 'torch/include/oneapi/dnnl/dnnl.h' 2025-06-01T21:23:38.0065961Z adding 'torch/include/oneapi/dnnl/dnnl.hpp' 2025-06-01T21:23:38.0084404Z adding 'torch/include/oneapi/dnnl/dnnl_common.h' 2025-06-01T21:23:38.0091205Z adding 'torch/include/oneapi/dnnl/dnnl_common.hpp' 2025-06-01T21:23:38.0096535Z adding 'torch/include/oneapi/dnnl/dnnl_common_types.h' 2025-06-01T21:23:38.0100805Z adding 'torch/include/oneapi/dnnl/dnnl_config.h' 2025-06-01T21:23:38.0104841Z adding 'torch/include/oneapi/dnnl/dnnl_debug.h' 2025-06-01T21:23:38.0114939Z adding 'torch/include/oneapi/dnnl/dnnl_graph.h' 2025-06-01T21:23:38.0136955Z adding 'torch/include/oneapi/dnnl/dnnl_graph.hpp' 2025-06-01T21:23:38.0142730Z adding 'torch/include/oneapi/dnnl/dnnl_graph_ocl.h' 2025-06-01T21:23:38.0147224Z adding 'torch/include/oneapi/dnnl/dnnl_graph_ocl.hpp' 2025-06-01T21:23:38.0151182Z adding 'torch/include/oneapi/dnnl/dnnl_graph_sycl.h' 2025-06-01T21:23:38.0163750Z adding 'torch/include/oneapi/dnnl/dnnl_graph_sycl.hpp' 2025-06-01T21:23:38.0164248Z adding 'torch/include/oneapi/dnnl/dnnl_graph_types.h' 2025-06-01T21:23:38.0167549Z adding 'torch/include/oneapi/dnnl/dnnl_ocl.h' 2025-06-01T21:23:38.0174258Z adding 'torch/include/oneapi/dnnl/dnnl_ocl.hpp' 2025-06-01T21:23:38.0177999Z adding 'torch/include/oneapi/dnnl/dnnl_ocl_types.h' 2025-06-01T21:23:38.0182666Z adding 'torch/include/oneapi/dnnl/dnnl_sycl.h' 2025-06-01T21:23:38.0190835Z adding 'torch/include/oneapi/dnnl/dnnl_sycl.hpp' 2025-06-01T21:23:38.0193916Z adding 'torch/include/oneapi/dnnl/dnnl_sycl_types.h' 2025-06-01T21:23:38.0198166Z adding 'torch/include/oneapi/dnnl/dnnl_threadpool.h' 2025-06-01T21:23:38.0202472Z adding 'torch/include/oneapi/dnnl/dnnl_threadpool.hpp' 2025-06-01T21:23:38.0206608Z adding 'torch/include/oneapi/dnnl/dnnl_threadpool_iface.hpp' 2025-06-01T21:23:38.0235912Z adding 'torch/include/oneapi/dnnl/dnnl_types.h' 2025-06-01T21:23:38.0243438Z adding 'torch/include/oneapi/dnnl/dnnl_ukernel.h' 2025-06-01T21:23:38.0250024Z adding 'torch/include/oneapi/dnnl/dnnl_ukernel.hpp' 2025-06-01T21:23:38.0254012Z adding 'torch/include/oneapi/dnnl/dnnl_ukernel_types.h' 2025-06-01T21:23:38.0257402Z adding 'torch/include/oneapi/dnnl/dnnl_version.h' 2025-06-01T21:23:38.0260683Z adding 'torch/include/oneapi/dnnl/dnnl_version_hash.h' 2025-06-01T21:23:38.0270455Z adding 'torch/include/pybind11/attr.h' 2025-06-01T21:23:38.0275751Z adding 'torch/include/pybind11/buffer_info.h' 2025-06-01T21:23:38.0299624Z adding 'torch/include/pybind11/cast.h' 2025-06-01T21:23:38.0306188Z adding 'torch/include/pybind11/chrono.h' 2025-06-01T21:23:38.0309300Z adding 'torch/include/pybind11/common.h' 2025-06-01T21:23:38.0312623Z adding 'torch/include/pybind11/complex.h' 2025-06-01T21:23:38.0315648Z adding 'torch/include/pybind11/eigen.h' 2025-06-01T21:23:38.0321510Z adding 'torch/include/pybind11/embed.h' 2025-06-01T21:23:38.0325671Z adding 'torch/include/pybind11/eval.h' 2025-06-01T21:23:38.0329955Z adding 'torch/include/pybind11/functional.h' 2025-06-01T21:23:38.0334591Z adding 'torch/include/pybind11/gil.h' 2025-06-01T21:23:38.0338929Z adding 'torch/include/pybind11/gil_safe_call_once.h' 2025-06-01T21:23:38.0344106Z adding 'torch/include/pybind11/iostream.h' 2025-06-01T21:23:38.0371330Z adding 'torch/include/pybind11/numpy.h' 2025-06-01T21:23:38.0377644Z adding 'torch/include/pybind11/operators.h' 2025-06-01T21:23:38.0381230Z adding 'torch/include/pybind11/options.h' 2025-06-01T21:23:38.0422967Z adding 'torch/include/pybind11/pybind11.h' 2025-06-01T21:23:38.0456251Z adding 'torch/include/pybind11/pytypes.h' 2025-06-01T21:23:38.0464605Z adding 'torch/include/pybind11/stl.h' 2025-06-01T21:23:38.0474333Z adding 'torch/include/pybind11/stl_bind.h' 2025-06-01T21:23:38.0478483Z adding 'torch/include/pybind11/type_caster_pyobject_ptr.h' 2025-06-01T21:23:38.0482507Z adding 'torch/include/pybind11/typing.h' 2025-06-01T21:23:38.0494583Z adding 'torch/include/pybind11/detail/class.h' 2025-06-01T21:23:38.0514723Z adding 'torch/include/pybind11/detail/common.h' 2025-06-01T21:23:38.0519600Z adding 'torch/include/pybind11/detail/cpp_conduit.h' 2025-06-01T21:23:38.0523917Z adding 'torch/include/pybind11/detail/descr.h' 2025-06-01T21:23:38.0527726Z adding 'torch/include/pybind11/detail/exception_translation.h' 2025-06-01T21:23:38.0535030Z adding 'torch/include/pybind11/detail/init.h' 2025-06-01T21:23:38.0547480Z adding 'torch/include/pybind11/detail/internals.h' 2025-06-01T21:23:38.0566178Z adding 'torch/include/pybind11/detail/type_caster_base.h' 2025-06-01T21:23:38.0570855Z adding 'torch/include/pybind11/detail/typeid.h' 2025-06-01T21:23:38.0574547Z adding 'torch/include/pybind11/detail/value_and_holder.h' 2025-06-01T21:23:38.0578350Z adding 'torch/include/pybind11/eigen/common.h' 2025-06-01T21:23:38.0590125Z adding 'torch/include/pybind11/eigen/matrix.h' 2025-06-01T21:23:38.0597309Z adding 'torch/include/pybind11/eigen/tensor.h' 2025-06-01T21:23:38.0602528Z adding 'torch/include/pybind11/stl/filesystem.h' 2025-06-01T21:23:38.0611444Z adding 'torch/include/torch/custom_class.h' 2025-06-01T21:23:38.0616967Z adding 'torch/include/torch/custom_class_detail.h' 2025-06-01T21:23:38.0620224Z adding 'torch/include/torch/extension.h' 2025-06-01T21:23:38.0636016Z adding 'torch/include/torch/library.h' 2025-06-01T21:23:38.0640143Z adding 'torch/include/torch/script.h' 2025-06-01T21:23:38.0645474Z adding 'torch/include/torch/csrc/CudaIPCTypes.h' 2025-06-01T21:23:38.0648736Z adding 'torch/include/torch/csrc/DataLoader.h' 2025-06-01T21:23:38.0651671Z adding 'torch/include/torch/csrc/Device.h' 2025-06-01T21:23:38.0654767Z adding 'torch/include/torch/csrc/DeviceAccelerator.h' 2025-06-01T21:23:38.0657831Z adding 'torch/include/torch/csrc/Dtype.h' 2025-06-01T21:23:38.0661150Z adding 'torch/include/torch/csrc/DynamicTypes.h' 2025-06-01T21:23:38.0664290Z adding 'torch/include/torch/csrc/Event.h' 2025-06-01T21:23:38.0670939Z adding 'torch/include/torch/csrc/Exceptions.h' 2025-06-01T21:23:38.0674237Z adding 'torch/include/torch/csrc/Export.h' 2025-06-01T21:23:38.0677503Z adding 'torch/include/torch/csrc/Generator.h' 2025-06-01T21:23:38.0680552Z adding 'torch/include/torch/csrc/Layout.h' 2025-06-01T21:23:38.0683807Z adding 'torch/include/torch/csrc/MemoryFormat.h' 2025-06-01T21:23:38.0686631Z adding 'torch/include/torch/csrc/Module.h' 2025-06-01T21:23:38.0690017Z adding 'torch/include/torch/csrc/PyInterpreter.h' 2025-06-01T21:23:38.0693470Z adding 'torch/include/torch/csrc/QScheme.h' 2025-06-01T21:23:38.0696914Z adding 'torch/include/torch/csrc/Size.h' 2025-06-01T21:23:38.0700623Z adding 'torch/include/torch/csrc/Storage.h' 2025-06-01T21:23:38.0703834Z adding 'torch/include/torch/csrc/StorageMethods.h' 2025-06-01T21:23:38.0706689Z adding 'torch/include/torch/csrc/StorageSharing.h' 2025-06-01T21:23:38.0709859Z adding 'torch/include/torch/csrc/Stream.h' 2025-06-01T21:23:38.0712769Z adding 'torch/include/torch/csrc/THConcat.h' 2025-06-01T21:23:38.0715954Z adding 'torch/include/torch/csrc/THP.h' 2025-06-01T21:23:38.0718975Z adding 'torch/include/torch/csrc/TypeInfo.h' 2025-06-01T21:23:38.0722031Z adding 'torch/include/torch/csrc/Types.h' 2025-06-01T21:23:38.0725285Z adding 'torch/include/torch/csrc/copy_utils.h' 2025-06-01T21:23:38.0728368Z adding 'torch/include/torch/csrc/itt.h' 2025-06-01T21:23:38.0731285Z adding 'torch/include/torch/csrc/itt_wrapper.h' 2025-06-01T21:23:38.0734171Z adding 'torch/include/torch/csrc/python_dimname.h' 2025-06-01T21:23:38.0737310Z adding 'torch/include/torch/csrc/python_headers.h' 2025-06-01T21:23:38.0740319Z adding 'torch/include/torch/csrc/serialization.h' 2025-06-01T21:23:38.0744815Z adding 'torch/include/torch/csrc/utils.h' 2025-06-01T21:23:38.0750296Z adding 'torch/include/torch/csrc/api/include/torch/all.h' 2025-06-01T21:23:38.0753693Z adding 'torch/include/torch/csrc/api/include/torch/arg.h' 2025-06-01T21:23:38.0756654Z adding 'torch/include/torch/csrc/api/include/torch/autograd.h' 2025-06-01T21:23:38.0759674Z adding 'torch/include/torch/csrc/api/include/torch/cuda.h' 2025-06-01T21:23:38.0762613Z adding 'torch/include/torch/csrc/api/include/torch/data.h' 2025-06-01T21:23:38.0766846Z adding 'torch/include/torch/csrc/api/include/torch/enum.h' 2025-06-01T21:23:38.0771205Z adding 'torch/include/torch/csrc/api/include/torch/expanding_array.h' 2025-06-01T21:23:38.0775725Z adding 'torch/include/torch/csrc/api/include/torch/fft.h' 2025-06-01T21:23:38.0779523Z adding 'torch/include/torch/csrc/api/include/torch/imethod.h' 2025-06-01T21:23:38.0782661Z adding 'torch/include/torch/csrc/api/include/torch/jit.h' 2025-06-01T21:23:38.0786128Z adding 'torch/include/torch/csrc/api/include/torch/mps.h' 2025-06-01T21:23:38.0789707Z adding 'torch/include/torch/csrc/api/include/torch/nested.h' 2025-06-01T21:23:38.0792676Z adding 'torch/include/torch/csrc/api/include/torch/nn.h' 2025-06-01T21:23:38.0795584Z adding 'torch/include/torch/csrc/api/include/torch/optim.h' 2025-06-01T21:23:38.0801945Z adding 'torch/include/torch/csrc/api/include/torch/ordered_dict.h' 2025-06-01T21:23:38.0807327Z adding 'torch/include/torch/csrc/api/include/torch/python.h' 2025-06-01T21:23:38.0811537Z adding 'torch/include/torch/csrc/api/include/torch/serialize.h' 2025-06-01T21:23:38.0814555Z adding 'torch/include/torch/csrc/api/include/torch/sparse.h' 2025-06-01T21:23:38.0821441Z adding 'torch/include/torch/csrc/api/include/torch/special.h' 2025-06-01T21:23:38.0825413Z adding 'torch/include/torch/csrc/api/include/torch/torch.h' 2025-06-01T21:23:38.0828926Z adding 'torch/include/torch/csrc/api/include/torch/types.h' 2025-06-01T21:23:38.0832621Z adding 'torch/include/torch/csrc/api/include/torch/utils.h' 2025-06-01T21:23:38.0835803Z adding 'torch/include/torch/csrc/api/include/torch/version.h' 2025-06-01T21:23:38.0838944Z adding 'torch/include/torch/csrc/api/include/torch/xpu.h' 2025-06-01T21:23:38.0843410Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader.h' 2025-06-01T21:23:38.0847152Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader_options.h' 2025-06-01T21:23:38.0850158Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets.h' 2025-06-01T21:23:38.0853569Z adding 'torch/include/torch/csrc/api/include/torch/data/example.h' 2025-06-01T21:23:38.0857806Z adding 'torch/include/torch/csrc/api/include/torch/data/iterator.h' 2025-06-01T21:23:38.0860911Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers.h' 2025-06-01T21:23:38.0864053Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms.h' 2025-06-01T21:23:38.0867337Z adding 'torch/include/torch/csrc/api/include/torch/data/worker_exception.h' 2025-06-01T21:23:38.0873541Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader/base.h' 2025-06-01T21:23:38.0877560Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader/stateful.h' 2025-06-01T21:23:38.0881481Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader/stateless.h' 2025-06-01T21:23:38.0886277Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/base.h' 2025-06-01T21:23:38.0896044Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/chunk.h' 2025-06-01T21:23:38.0900623Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/map.h' 2025-06-01T21:23:38.0904278Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/mnist.h' 2025-06-01T21:23:38.0907975Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/shared.h' 2025-06-01T21:23:38.0911568Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/stateful.h' 2025-06-01T21:23:38.0914977Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/tensor.h' 2025-06-01T21:23:38.0919537Z adding 'torch/include/torch/csrc/api/include/torch/data/detail/data_shuttle.h' 2025-06-01T21:23:38.0923270Z adding 'torch/include/torch/csrc/api/include/torch/data/detail/queue.h' 2025-06-01T21:23:38.0927601Z adding 'torch/include/torch/csrc/api/include/torch/data/detail/sequencers.h' 2025-06-01T21:23:38.0931957Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/base.h' 2025-06-01T21:23:38.0935176Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/custom_batch_request.h' 2025-06-01T21:23:38.0938964Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/distributed.h' 2025-06-01T21:23:38.0942464Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/random.h' 2025-06-01T21:23:38.0945945Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/sequential.h' 2025-06-01T21:23:38.0949131Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/serialize.h' 2025-06-01T21:23:38.0952581Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/stream.h' 2025-06-01T21:23:38.0956910Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/base.h' 2025-06-01T21:23:38.0960307Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/collate.h' 2025-06-01T21:23:38.0963561Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/lambda.h' 2025-06-01T21:23:38.0966974Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/stack.h' 2025-06-01T21:23:38.0970625Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/tensor.h' 2025-06-01T21:23:38.0977639Z adding 'torch/include/torch/csrc/api/include/torch/detail/TensorDataContainer.h' 2025-06-01T21:23:38.0981515Z adding 'torch/include/torch/csrc/api/include/torch/detail/static.h' 2025-06-01T21:23:38.0986601Z adding 'torch/include/torch/csrc/api/include/torch/nn/cloneable.h' 2025-06-01T21:23:38.0989959Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional.h' 2025-06-01T21:23:38.0993846Z adding 'torch/include/torch/csrc/api/include/torch/nn/init.h' 2025-06-01T21:23:38.1003234Z adding 'torch/include/torch/csrc/api/include/torch/nn/module.h' 2025-06-01T21:23:38.1007146Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules.h' 2025-06-01T21:23:38.1010199Z adding 'torch/include/torch/csrc/api/include/torch/nn/options.h' 2025-06-01T21:23:38.1013970Z adding 'torch/include/torch/csrc/api/include/torch/nn/pimpl-inl.h' 2025-06-01T21:23:38.1018716Z adding 'torch/include/torch/csrc/api/include/torch/nn/pimpl.h' 2025-06-01T21:23:38.1021952Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils.h' 2025-06-01T21:23:38.1030877Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/activation.h' 2025-06-01T21:23:38.1035273Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/batchnorm.h' 2025-06-01T21:23:38.1039234Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/conv.h' 2025-06-01T21:23:38.1042954Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/distance.h' 2025-06-01T21:23:38.1046981Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/dropout.h' 2025-06-01T21:23:38.1051471Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/embedding.h' 2025-06-01T21:23:38.1055066Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/fold.h' 2025-06-01T21:23:38.1058676Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/instancenorm.h' 2025-06-01T21:23:38.1061898Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/linear.h' 2025-06-01T21:23:38.1069308Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/loss.h' 2025-06-01T21:23:38.1074242Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/normalization.h' 2025-06-01T21:23:38.1077785Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/padding.h' 2025-06-01T21:23:38.1081249Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/pixelshuffle.h' 2025-06-01T21:23:38.1088422Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/pooling.h' 2025-06-01T21:23:38.1094164Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/upsampling.h' 2025-06-01T21:23:38.1098368Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/vision.h' 2025-06-01T21:23:38.1102793Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/_functions.h' 2025-06-01T21:23:38.1109620Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/activation.h' 2025-06-01T21:23:38.1114366Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/adaptive.h' 2025-06-01T21:23:38.1118939Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/batchnorm.h' 2025-06-01T21:23:38.1123184Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/common.h' 2025-06-01T21:23:38.1128946Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/conv.h' 2025-06-01T21:23:38.1133113Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/distance.h' 2025-06-01T21:23:38.1137192Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/dropout.h' 2025-06-01T21:23:38.1141451Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/embedding.h' 2025-06-01T21:23:38.1145383Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/fold.h' 2025-06-01T21:23:38.1149547Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/instancenorm.h' 2025-06-01T21:23:38.1153902Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/linear.h' 2025-06-01T21:23:38.1161882Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/loss.h' 2025-06-01T21:23:38.1167653Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/normalization.h' 2025-06-01T21:23:38.1172788Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/padding.h' 2025-06-01T21:23:38.1176640Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/pixelshuffle.h' 2025-06-01T21:23:38.1183226Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/pooling.h' 2025-06-01T21:23:38.1189041Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/rnn.h' 2025-06-01T21:23:38.1193665Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/transformer.h' 2025-06-01T21:23:38.1197839Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/transformercoder.h' 2025-06-01T21:23:38.1202124Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/transformerlayer.h' 2025-06-01T21:23:38.1205692Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/upsampling.h' 2025-06-01T21:23:38.1209010Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/utils.h' 2025-06-01T21:23:38.1216667Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/any.h' 2025-06-01T21:23:38.1221026Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/any_module_holder.h' 2025-06-01T21:23:38.1225213Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/any_value.h' 2025-06-01T21:23:38.1229264Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/functional.h' 2025-06-01T21:23:38.1234210Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/moduledict.h' 2025-06-01T21:23:38.1239512Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/modulelist.h' 2025-06-01T21:23:38.1243335Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/named_any.h' 2025-06-01T21:23:38.1247343Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/parameterdict.h' 2025-06-01T21:23:38.1251575Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/parameterlist.h' 2025-06-01T21:23:38.1258050Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/sequential.h' 2025-06-01T21:23:38.1265217Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/activation.h' 2025-06-01T21:23:38.1269162Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/adaptive.h' 2025-06-01T21:23:38.1272670Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/batchnorm.h' 2025-06-01T21:23:38.1277235Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/conv.h' 2025-06-01T21:23:38.1281262Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/distance.h' 2025-06-01T21:23:38.1284798Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/dropout.h' 2025-06-01T21:23:38.1289340Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/embedding.h' 2025-06-01T21:23:38.1293156Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/fold.h' 2025-06-01T21:23:38.1296703Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/instancenorm.h' 2025-06-01T21:23:38.1300257Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/linear.h' 2025-06-01T21:23:38.1307490Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/loss.h' 2025-06-01T21:23:38.1311978Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/normalization.h' 2025-06-01T21:23:38.1315812Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/padding.h' 2025-06-01T21:23:38.1319356Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/pixelshuffle.h' 2025-06-01T21:23:38.1324517Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/pooling.h' 2025-06-01T21:23:38.1329057Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/rnn.h' 2025-06-01T21:23:38.1332795Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/transformer.h' 2025-06-01T21:23:38.1336292Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/transformercoder.h' 2025-06-01T21:23:38.1339702Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/transformerlayer.h' 2025-06-01T21:23:38.1343751Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/upsampling.h' 2025-06-01T21:23:38.1347217Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/vision.h' 2025-06-01T21:23:38.1353851Z adding 'torch/include/torch/csrc/api/include/torch/nn/parallel/data_parallel.h' 2025-06-01T21:23:38.1358843Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils/clip_grad.h' 2025-06-01T21:23:38.1362605Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils/convert_parameters.h' 2025-06-01T21:23:38.1368631Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils/rnn.h' 2025-06-01T21:23:38.1373510Z adding 'torch/include/torch/csrc/api/include/torch/optim/adagrad.h' 2025-06-01T21:23:38.1377206Z adding 'torch/include/torch/csrc/api/include/torch/optim/adam.h' 2025-06-01T21:23:38.1380862Z adding 'torch/include/torch/csrc/api/include/torch/optim/adamw.h' 2025-06-01T21:23:38.1384789Z adding 'torch/include/torch/csrc/api/include/torch/optim/lbfgs.h' 2025-06-01T21:23:38.1389559Z adding 'torch/include/torch/csrc/api/include/torch/optim/optimizer.h' 2025-06-01T21:23:38.1393363Z adding 'torch/include/torch/csrc/api/include/torch/optim/rmsprop.h' 2025-06-01T21:23:38.1398706Z adding 'torch/include/torch/csrc/api/include/torch/optim/serialize.h' 2025-06-01T21:23:38.1407052Z adding 'torch/include/torch/csrc/api/include/torch/optim/sgd.h' 2025-06-01T21:23:38.1410821Z adding 'torch/include/torch/csrc/api/include/torch/optim/schedulers/lr_scheduler.h' 2025-06-01T21:23:38.1414786Z adding 'torch/include/torch/csrc/api/include/torch/optim/schedulers/reduce_on_plateau_scheduler.h' 2025-06-01T21:23:38.1417714Z adding 'torch/include/torch/csrc/api/include/torch/optim/schedulers/step_lr.h' 2025-06-01T21:23:38.1421398Z adding 'torch/include/torch/csrc/api/include/torch/python/init.h' 2025-06-01T21:23:38.1425198Z adding 'torch/include/torch/csrc/api/include/torch/serialize/archive.h' 2025-06-01T21:23:38.1428966Z adding 'torch/include/torch/csrc/api/include/torch/serialize/input-archive.h' 2025-06-01T21:23:38.1432624Z adding 'torch/include/torch/csrc/api/include/torch/serialize/output-archive.h' 2025-06-01T21:23:38.1435655Z adding 'torch/include/torch/csrc/api/include/torch/serialize/tensor.h' 2025-06-01T21:23:38.1446577Z adding 'torch/include/torch/csrc/autograd/FunctionsManual.h' 2025-06-01T21:23:38.1450328Z adding 'torch/include/torch/csrc/autograd/InferenceMode.h' 2025-06-01T21:23:38.1456540Z adding 'torch/include/torch/csrc/autograd/VariableTypeUtils.h' 2025-06-01T21:23:38.1460346Z adding 'torch/include/torch/csrc/autograd/anomaly_mode.h' 2025-06-01T21:23:38.1464698Z adding 'torch/include/torch/csrc/autograd/autograd.h' 2025-06-01T21:23:38.1468171Z adding 'torch/include/torch/csrc/autograd/autograd_not_implemented_fallback.h' 2025-06-01T21:23:38.1471200Z adding 'torch/include/torch/csrc/autograd/cpp_hook.h' 2025-06-01T21:23:38.1479821Z adding 'torch/include/torch/csrc/autograd/custom_function.h' 2025-06-01T21:23:38.1483976Z adding 'torch/include/torch/csrc/autograd/edge.h' 2025-06-01T21:23:38.1490285Z adding 'torch/include/torch/csrc/autograd/engine.h' 2025-06-01T21:23:38.1495626Z adding 'torch/include/torch/csrc/autograd/forward_grad.h' 2025-06-01T21:23:38.1508967Z adding 'torch/include/torch/csrc/autograd/function.h' 2025-06-01T21:23:38.1513089Z adding 'torch/include/torch/csrc/autograd/function_hook.h' 2025-06-01T21:23:38.1516084Z adding 'torch/include/torch/csrc/autograd/grad_mode.h' 2025-06-01T21:23:38.1521551Z adding 'torch/include/torch/csrc/autograd/graph_task.h' 2025-06-01T21:23:38.1525260Z adding 'torch/include/torch/csrc/autograd/input_buffer.h' 2025-06-01T21:23:38.1528902Z adding 'torch/include/torch/csrc/autograd/input_metadata.h' 2025-06-01T21:23:38.1532380Z adding 'torch/include/torch/csrc/autograd/jit_decomp_interface.h' 2025-06-01T21:23:38.1535245Z adding 'torch/include/torch/csrc/autograd/profiler.h' 2025-06-01T21:23:38.1540067Z adding 'torch/include/torch/csrc/autograd/profiler_kineto.h' 2025-06-01T21:23:38.1545996Z adding 'torch/include/torch/csrc/autograd/profiler_legacy.h' 2025-06-01T21:23:38.1549219Z adding 'torch/include/torch/csrc/autograd/profiler_python.h' 2025-06-01T21:23:38.1552432Z adding 'torch/include/torch/csrc/autograd/python_anomaly_mode.h' 2025-06-01T21:23:38.1555366Z adding 'torch/include/torch/csrc/autograd/python_autograd.h' 2025-06-01T21:23:38.1559072Z adding 'torch/include/torch/csrc/autograd/python_cpp_function.h' 2025-06-01T21:23:38.1562407Z adding 'torch/include/torch/csrc/autograd/python_engine.h' 2025-06-01T21:23:38.1565295Z adding 'torch/include/torch/csrc/autograd/python_enum_tag.h' 2025-06-01T21:23:38.1568082Z adding 'torch/include/torch/csrc/autograd/python_fft_functions.h' 2025-06-01T21:23:38.1572226Z adding 'torch/include/torch/csrc/autograd/python_function.h' 2025-06-01T21:23:38.1575609Z adding 'torch/include/torch/csrc/autograd/python_hook.h' 2025-06-01T21:23:38.1578656Z adding 'torch/include/torch/csrc/autograd/python_legacy_variable.h' 2025-06-01T21:23:38.1581477Z adding 'torch/include/torch/csrc/autograd/python_linalg_functions.h' 2025-06-01T21:23:38.1584377Z adding 'torch/include/torch/csrc/autograd/python_nested_functions.h' 2025-06-01T21:23:38.1587166Z adding 'torch/include/torch/csrc/autograd/python_nn_functions.h' 2025-06-01T21:23:38.1590245Z adding 'torch/include/torch/csrc/autograd/python_saved_variable_hooks.h' 2025-06-01T21:23:38.1593063Z adding 'torch/include/torch/csrc/autograd/python_sparse_functions.h' 2025-06-01T21:23:38.1595867Z adding 'torch/include/torch/csrc/autograd/python_special_functions.h' 2025-06-01T21:23:38.1598870Z adding 'torch/include/torch/csrc/autograd/python_torch_functions.h' 2025-06-01T21:23:38.1602845Z adding 'torch/include/torch/csrc/autograd/python_variable.h' 2025-06-01T21:23:38.1606527Z adding 'torch/include/torch/csrc/autograd/python_variable_indexing.h' 2025-06-01T21:23:38.1609710Z adding 'torch/include/torch/csrc/autograd/record_function_ops.h' 2025-06-01T21:23:38.1614066Z adding 'torch/include/torch/csrc/autograd/saved_variable.h' 2025-06-01T21:23:38.1617474Z adding 'torch/include/torch/csrc/autograd/saved_variable_hooks.h' 2025-06-01T21:23:38.1620361Z adding 'torch/include/torch/csrc/autograd/symbolic.h' 2025-06-01T21:23:38.1636560Z adding 'torch/include/torch/csrc/autograd/variable.h' 2025-06-01T21:23:38.1640829Z adding 'torch/include/torch/csrc/autograd/variable_info.h' 2025-06-01T21:23:38.1648288Z adding 'torch/include/torch/csrc/autograd/functions/accumulate_grad.h' 2025-06-01T21:23:38.1652367Z adding 'torch/include/torch/csrc/autograd/functions/basic_ops.h' 2025-06-01T21:23:38.1655659Z adding 'torch/include/torch/csrc/autograd/functions/comm.h' 2025-06-01T21:23:38.1658864Z adding 'torch/include/torch/csrc/autograd/functions/pybind.h' 2025-06-01T21:23:38.1664569Z adding 'torch/include/torch/csrc/autograd/functions/tensor.h' 2025-06-01T21:23:38.1668634Z adding 'torch/include/torch/csrc/autograd/functions/utils.h' 2025-06-01T21:23:38.1721417Z adding 'torch/include/torch/csrc/autograd/generated/Functions.h' 2025-06-01T21:23:38.1742643Z adding 'torch/include/torch/csrc/autograd/generated/VariableType.h' 2025-06-01T21:23:38.1744835Z adding 'torch/include/torch/csrc/autograd/generated/ViewFuncs.h' 2025-06-01T21:23:38.1748798Z adding 'torch/include/torch/csrc/autograd/generated/python_functions.h' 2025-06-01T21:23:38.1752033Z adding 'torch/include/torch/csrc/autograd/generated/python_return_types.h' 2025-06-01T21:23:38.1760924Z adding 'torch/include/torch/csrc/autograd/generated/variable_factories.h' 2025-06-01T21:23:38.1766828Z adding 'torch/include/torch/csrc/autograd/utils/error_messages.h' 2025-06-01T21:23:38.1769315Z adding 'torch/include/torch/csrc/autograd/utils/grad_layout_contract.h' 2025-06-01T21:23:38.1772628Z adding 'torch/include/torch/csrc/autograd/utils/lambda_post_hook.h' 2025-06-01T21:23:38.1775883Z adding 'torch/include/torch/csrc/autograd/utils/python_arg_parsing.h' 2025-06-01T21:23:38.1779113Z adding 'torch/include/torch/csrc/autograd/utils/warnings.h' 2025-06-01T21:23:38.1782805Z adding 'torch/include/torch/csrc/autograd/utils/wrap_outputs.h' 2025-06-01T21:23:38.1786708Z adding 'torch/include/torch/csrc/cpu/Module.h' 2025-06-01T21:23:38.1792150Z adding 'torch/include/torch/csrc/cuda/CUDAPluggableAllocator.h' 2025-06-01T21:23:38.1795347Z adding 'torch/include/torch/csrc/cuda/Event.h' 2025-06-01T21:23:38.1798320Z adding 'torch/include/torch/csrc/cuda/GdsFile.h' 2025-06-01T21:23:38.1801227Z adding 'torch/include/torch/csrc/cuda/Module.h' 2025-06-01T21:23:38.1804222Z adding 'torch/include/torch/csrc/cuda/Stream.h' 2025-06-01T21:23:38.1807069Z adding 'torch/include/torch/csrc/cuda/THCP.h' 2025-06-01T21:23:38.1810229Z adding 'torch/include/torch/csrc/cuda/comm.h' 2025-06-01T21:23:38.1813207Z adding 'torch/include/torch/csrc/cuda/device_set.h' 2025-06-01T21:23:38.1816262Z adding 'torch/include/torch/csrc/cuda/memory_snapshot.h' 2025-06-01T21:23:38.1820294Z adding 'torch/include/torch/csrc/cuda/nccl.h' 2025-06-01T21:23:38.1824517Z adding 'torch/include/torch/csrc/cuda/python_comm.h' 2025-06-01T21:23:38.1826643Z adding 'torch/include/torch/csrc/cuda/python_nccl.h' 2025-06-01T21:23:38.1829554Z adding 'torch/include/torch/csrc/cuda/utils.h' 2025-06-01T21:23:38.1834362Z adding 'torch/include/torch/csrc/distributed/autograd/autograd.h' 2025-06-01T21:23:38.1837381Z adding 'torch/include/torch/csrc/distributed/autograd/python_autograd.h' 2025-06-01T21:23:38.1840804Z adding 'torch/include/torch/csrc/distributed/autograd/utils.h' 2025-06-01T21:23:38.1846283Z adding 'torch/include/torch/csrc/distributed/autograd/context/container.h' 2025-06-01T21:23:38.1851074Z adding 'torch/include/torch/csrc/distributed/autograd/context/context.h' 2025-06-01T21:23:38.1856829Z adding 'torch/include/torch/csrc/distributed/autograd/engine/dist_engine.h' 2025-06-01T21:23:38.1861238Z adding 'torch/include/torch/csrc/distributed/autograd/functions/recvrpc_backward.h' 2025-06-01T21:23:38.1864777Z adding 'torch/include/torch/csrc/distributed/autograd/functions/sendrpc_backward.h' 2025-06-01T21:23:38.1868740Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/autograd_metadata.h' 2025-06-01T21:23:38.1872020Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_req.h' 2025-06-01T21:23:38.1875108Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_resp.h' 2025-06-01T21:23:38.1878290Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_req.h' 2025-06-01T21:23:38.1881492Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_resp.h' 2025-06-01T21:23:38.1885127Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_autograd.h' 2025-06-01T21:23:38.1888670Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_req.h' 2025-06-01T21:23:38.1892175Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_resp.h' 2025-06-01T21:23:38.1895408Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rref_backward_req.h' 2025-06-01T21:23:38.1898890Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rref_backward_resp.h' 2025-06-01T21:23:38.1905798Z adding 'torch/include/torch/csrc/distributed/c10d/Backend.hpp' 2025-06-01T21:23:38.1909394Z adding 'torch/include/torch/csrc/distributed/c10d/Backoff.hpp' 2025-06-01T21:23:38.1914974Z adding 'torch/include/torch/csrc/distributed/c10d/CUDASymmetricMemory-inl.h' 2025-06-01T21:23:38.1918965Z adding 'torch/include/torch/csrc/distributed/c10d/CUDASymmetricMemory.hpp' 2025-06-01T21:23:38.1922150Z adding 'torch/include/torch/csrc/distributed/c10d/CUDASymmetricMemoryTypes.hpp' 2025-06-01T21:23:38.1925880Z adding 'torch/include/torch/csrc/distributed/c10d/CUDASymmetricMemoryUtils.hpp' 2025-06-01T21:23:38.1929121Z adding 'torch/include/torch/csrc/distributed/c10d/DMAConnectivity.hpp' 2025-06-01T21:23:38.1933074Z adding 'torch/include/torch/csrc/distributed/c10d/FakeProcessGroup.hpp' 2025-06-01T21:23:38.1936443Z adding 'torch/include/torch/csrc/distributed/c10d/FileStore.hpp' 2025-06-01T21:23:38.1941731Z adding 'torch/include/torch/csrc/distributed/c10d/FlightRecorder.hpp' 2025-06-01T21:23:38.1945072Z adding 'torch/include/torch/csrc/distributed/c10d/Functional.hpp' 2025-06-01T21:23:38.1948134Z adding 'torch/include/torch/csrc/distributed/c10d/GlooDeviceFactory.hpp' 2025-06-01T21:23:38.1951118Z adding 'torch/include/torch/csrc/distributed/c10d/GroupRegistry.hpp' 2025-06-01T21:23:38.1954397Z adding 'torch/include/torch/csrc/distributed/c10d/HashStore.hpp' 2025-06-01T21:23:38.1960812Z adding 'torch/include/torch/csrc/distributed/c10d/NCCLUtils.hpp' 2025-06-01T21:23:38.1964285Z adding 'torch/include/torch/csrc/distributed/c10d/NanCheck.hpp' 2025-06-01T21:23:38.1968432Z adding 'torch/include/torch/csrc/distributed/c10d/ParamCommsUtils.hpp' 2025-06-01T21:23:38.1971945Z adding 'torch/include/torch/csrc/distributed/c10d/PrefixStore.hpp' 2025-06-01T21:23:38.1981344Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroup.hpp' 2025-06-01T21:23:38.1988748Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupGloo.hpp' 2025-06-01T21:23:38.1996680Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupGlooDetail.hpp' 2025-06-01T21:23:38.2002346Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupMPI.hpp' 2025-06-01T21:23:38.2023633Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupNCCL.hpp' 2025-06-01T21:23:38.2030146Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupUCC.hpp' 2025-06-01T21:23:38.2034375Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupWrapper.hpp' 2025-06-01T21:23:38.2039285Z adding 'torch/include/torch/csrc/distributed/c10d/PyProcessGroup.hpp' 2025-06-01T21:23:38.2043046Z adding 'torch/include/torch/csrc/distributed/c10d/RankLocal.hpp' 2025-06-01T21:23:38.2046880Z adding 'torch/include/torch/csrc/distributed/c10d/Store.hpp' 2025-06-01T21:23:38.2051652Z adding 'torch/include/torch/csrc/distributed/c10d/SymmetricMemory.hpp' 2025-06-01T21:23:38.2055960Z adding 'torch/include/torch/csrc/distributed/c10d/TCPStore.hpp' 2025-06-01T21:23:38.2059810Z adding 'torch/include/torch/csrc/distributed/c10d/TCPStoreBackend.hpp' 2025-06-01T21:23:38.2065392Z adding 'torch/include/torch/csrc/distributed/c10d/TraceUtils.h' 2025-06-01T21:23:38.2069809Z adding 'torch/include/torch/csrc/distributed/c10d/Types.hpp' 2025-06-01T21:23:38.2073567Z adding 'torch/include/torch/csrc/distributed/c10d/UCCTracing.hpp' 2025-06-01T21:23:38.2077876Z adding 'torch/include/torch/csrc/distributed/c10d/UCCUtils.hpp' 2025-06-01T21:23:38.2081163Z adding 'torch/include/torch/csrc/distributed/c10d/UnixSockUtils.hpp' 2025-06-01T21:23:38.2089569Z adding 'torch/include/torch/csrc/distributed/c10d/Utils.hpp' 2025-06-01T21:23:38.2093291Z adding 'torch/include/torch/csrc/distributed/c10d/WinSockUtils.hpp' 2025-06-01T21:23:38.2097598Z adding 'torch/include/torch/csrc/distributed/c10d/Work.hpp' 2025-06-01T21:23:38.2100701Z adding 'torch/include/torch/csrc/distributed/c10d/c10d.h' 2025-06-01T21:23:38.2104968Z adding 'torch/include/torch/csrc/distributed/c10d/comm.hpp' 2025-06-01T21:23:38.2108629Z adding 'torch/include/torch/csrc/distributed/c10d/debug.h' 2025-06-01T21:23:38.2111567Z adding 'torch/include/torch/csrc/distributed/c10d/default_comm_hooks.hpp' 2025-06-01T21:23:38.2114767Z adding 'torch/include/torch/csrc/distributed/c10d/error.h' 2025-06-01T21:23:38.2118095Z adding 'torch/include/torch/csrc/distributed/c10d/exception.h' 2025-06-01T21:23:38.2121622Z adding 'torch/include/torch/csrc/distributed/c10d/intra_node_comm.hpp' 2025-06-01T21:23:38.2126004Z adding 'torch/include/torch/csrc/distributed/c10d/logger.hpp' 2025-06-01T21:23:38.2129431Z adding 'torch/include/torch/csrc/distributed/c10d/logging.h' 2025-06-01T21:23:38.2132740Z adding 'torch/include/torch/csrc/distributed/c10d/python_comm_hook.h' 2025-06-01T21:23:38.2143990Z adding 'torch/include/torch/csrc/distributed/c10d/reducer.hpp' 2025-06-01T21:23:38.2148196Z adding 'torch/include/torch/csrc/distributed/c10d/reducer_timer.hpp' 2025-06-01T21:23:38.2151659Z adding 'torch/include/torch/csrc/distributed/c10d/sequence_num.hpp' 2025-06-01T21:23:38.2155163Z adding 'torch/include/torch/csrc/distributed/c10d/socket.h' 2025-06-01T21:23:38.2158302Z adding 'torch/include/torch/csrc/distributed/c10d/socket_fmt.h' 2025-06-01T21:23:38.2162438Z adding 'torch/include/torch/csrc/distributed/c10d/control_collectives/ControlCollectives.hpp' 2025-06-01T21:23:38.2165719Z adding 'torch/include/torch/csrc/distributed/c10d/control_collectives/StoreCollectives.hpp' 2025-06-01T21:23:38.2169970Z adding 'torch/include/torch/csrc/distributed/c10d/control_plane/Handlers.hpp' 2025-06-01T21:23:38.2173071Z adding 'torch/include/torch/csrc/distributed/c10d/control_plane/WorkerServer.hpp' 2025-06-01T21:23:38.2176643Z adding 'torch/include/torch/csrc/distributed/c10d/cuda/utils.hpp' 2025-06-01T21:23:38.2180487Z adding 'torch/include/torch/csrc/distributed/c10d/quantization/quantization.h' 2025-06-01T21:23:38.2183565Z adding 'torch/include/torch/csrc/distributed/c10d/quantization/quantization_gpu.h' 2025-06-01T21:23:38.2186888Z adding 'torch/include/torch/csrc/distributed/c10d/quantization/quantization_utils.h' 2025-06-01T21:23:38.2191498Z adding 'torch/include/torch/csrc/distributed/rpc/agent_utils.h' 2025-06-01T21:23:38.2196286Z adding 'torch/include/torch/csrc/distributed/rpc/message.h' 2025-06-01T21:23:38.2200156Z adding 'torch/include/torch/csrc/distributed/rpc/py_rref.h' 2025-06-01T21:23:38.2213231Z adding 'torch/include/torch/csrc/distributed/rpc/python_call.h' 2025-06-01T21:23:38.2213481Z adding 'torch/include/torch/csrc/distributed/rpc/python_functions.h' 2025-06-01T21:23:38.2213694Z adding 'torch/include/torch/csrc/distributed/rpc/python_remote_call.h' 2025-06-01T21:23:38.2214970Z adding 'torch/include/torch/csrc/distributed/rpc/python_resp.h' 2025-06-01T21:23:38.2219508Z adding 'torch/include/torch/csrc/distributed/rpc/python_rpc_handler.h' 2025-06-01T21:23:38.2223026Z adding 'torch/include/torch/csrc/distributed/rpc/request_callback.h' 2025-06-01T21:23:38.2226741Z adding 'torch/include/torch/csrc/distributed/rpc/request_callback_impl.h' 2025-06-01T21:23:38.2230661Z adding 'torch/include/torch/csrc/distributed/rpc/request_callback_no_python.h' 2025-06-01T21:23:38.2267375Z adding 'torch/include/torch/csrc/distributed/rpc/rpc.h' 2025-06-01T21:23:38.2267579Z adding 'torch/include/torch/csrc/distributed/rpc/rpc_agent.h' 2025-06-01T21:23:38.2267783Z adding 'torch/include/torch/csrc/distributed/rpc/rpc_command_base.h' 2025-06-01T21:23:38.2267965Z adding 'torch/include/torch/csrc/distributed/rpc/rref_context.h' 2025-06-01T21:23:38.2273251Z adding 'torch/include/torch/csrc/distributed/rpc/rref_impl.h' 2025-06-01T21:23:38.2279296Z adding 'torch/include/torch/csrc/distributed/rpc/rref_proto.h' 2025-06-01T21:23:38.2283720Z adding 'torch/include/torch/csrc/distributed/rpc/script_call.h' 2025-06-01T21:23:38.2288662Z adding 'torch/include/torch/csrc/distributed/rpc/script_remote_call.h' 2025-06-01T21:23:38.2292970Z adding 'torch/include/torch/csrc/distributed/rpc/script_resp.h' 2025-06-01T21:23:38.2304096Z adding 'torch/include/torch/csrc/distributed/rpc/tensorpipe_agent.h' 2025-06-01T21:23:38.2309828Z adding 'torch/include/torch/csrc/distributed/rpc/tensorpipe_utils.h' 2025-06-01T21:23:38.2314572Z adding 'torch/include/torch/csrc/distributed/rpc/torchscript_functions.h' 2025-06-01T21:23:38.2318816Z adding 'torch/include/torch/csrc/distributed/rpc/types.h' 2025-06-01T21:23:38.2322347Z adding 'torch/include/torch/csrc/distributed/rpc/unpickled_python_call.h' 2025-06-01T21:23:38.2325660Z adding 'torch/include/torch/csrc/distributed/rpc/unpickled_python_remote_call.h' 2025-06-01T21:23:38.2329510Z adding 'torch/include/torch/csrc/distributed/rpc/utils.h' 2025-06-01T21:23:38.2333998Z adding 'torch/include/torch/csrc/distributed/rpc/metrics/RpcMetricsHandler.h' 2025-06-01T21:23:38.2338367Z adding 'torch/include/torch/csrc/distributed/rpc/profiler/remote_profiler_manager.h' 2025-06-01T21:23:38.2342597Z adding 'torch/include/torch/csrc/distributed/rpc/profiler/server_process_global_profiler.h' 2025-06-01T21:23:38.2347498Z adding 'torch/include/torch/csrc/distributed/rpc/testing/faulty_tensorpipe_agent.h' 2025-06-01T21:23:38.2350743Z adding 'torch/include/torch/csrc/distributed/rpc/testing/testing.h' 2025-06-01T21:23:38.2355244Z adding 'torch/include/torch/csrc/dynamo/cache_entry.h' 2025-06-01T21:23:38.2372296Z adding 'torch/include/torch/csrc/dynamo/compiled_autograd.h' 2025-06-01T21:23:38.2376481Z adding 'torch/include/torch/csrc/dynamo/cpp_shim.h' 2025-06-01T21:23:38.2379633Z adding 'torch/include/torch/csrc/dynamo/cpython_defs.h' 2025-06-01T21:23:38.2382877Z adding 'torch/include/torch/csrc/dynamo/cpython_includes.h' 2025-06-01T21:23:38.2386711Z adding 'torch/include/torch/csrc/dynamo/debug_macros.h' 2025-06-01T21:23:38.2390052Z adding 'torch/include/torch/csrc/dynamo/eval_frame.h' 2025-06-01T21:23:38.2393105Z adding 'torch/include/torch/csrc/dynamo/eval_frame_cpp.h' 2025-06-01T21:23:38.2397442Z adding 'torch/include/torch/csrc/dynamo/extra_state.h' 2025-06-01T21:23:38.2401284Z adding 'torch/include/torch/csrc/dynamo/framelocals_mapping.h' 2025-06-01T21:23:38.2405027Z adding 'torch/include/torch/csrc/dynamo/guards.h' 2025-06-01T21:23:38.2408052Z adding 'torch/include/torch/csrc/dynamo/init.h' 2025-06-01T21:23:38.2411014Z adding 'torch/include/torch/csrc/dynamo/python_compiled_autograd.h' 2025-06-01T21:23:38.2413954Z adding 'torch/include/torch/csrc/dynamo/utils.h' 2025-06-01T21:23:38.2418433Z adding 'torch/include/torch/csrc/export/pt2_archive_constants.h' 2025-06-01T21:23:38.2421403Z adding 'torch/include/torch/csrc/export/pybind.h' 2025-06-01T21:23:38.2425128Z adding 'torch/include/torch/csrc/functorch/init.h' 2025-06-01T21:23:38.2428584Z adding 'torch/include/torch/csrc/fx/node.h' 2025-06-01T21:23:38.2432952Z adding 'torch/include/torch/csrc/inductor/array_ref_impl.h' 2025-06-01T21:23:38.2444836Z adding 'torch/include/torch/csrc/inductor/cpp_prefix.h' 2025-06-01T21:23:38.2448891Z adding 'torch/include/torch/csrc/inductor/inductor_ops.h' 2025-06-01T21:23:38.2451879Z adding 'torch/include/torch/csrc/inductor/static_cuda_launcher.h' 2025-06-01T21:23:38.2456519Z adding 'torch/include/torch/csrc/inductor/aoti_eager/kernel_holder.h' 2025-06-01T21:23:38.2461017Z adding 'torch/include/torch/csrc/inductor/aoti_eager/kernel_meta_info.h' 2025-06-01T21:23:38.2465001Z adding 'torch/include/torch/csrc/inductor/aoti_include/array_ref.h' 2025-06-01T21:23:38.2467957Z adding 'torch/include/torch/csrc/inductor/aoti_include/common.h' 2025-06-01T21:23:38.2470781Z adding 'torch/include/torch/csrc/inductor/aoti_include/cpu.h' 2025-06-01T21:23:38.2473571Z adding 'torch/include/torch/csrc/inductor/aoti_include/cuda.h' 2025-06-01T21:23:38.2476330Z adding 'torch/include/torch/csrc/inductor/aoti_include/mps.h' 2025-06-01T21:23:38.2479099Z adding 'torch/include/torch/csrc/inductor/aoti_include/xpu.h' 2025-06-01T21:23:38.2483151Z adding 'torch/include/torch/csrc/inductor/aoti_package/model_package_loader.h' 2025-06-01T21:23:38.2486031Z adding 'torch/include/torch/csrc/inductor/aoti_package/pybind.h' 2025-06-01T21:23:38.2491220Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner.h' 2025-06-01T21:23:38.2494092Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_cpu.h' 2025-06-01T21:23:38.2497264Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_cuda.h' 2025-06-01T21:23:38.2500262Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_mps.h' 2025-06-01T21:23:38.2503987Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_xpu.h' 2025-06-01T21:23:38.2507106Z adding 'torch/include/torch/csrc/inductor/aoti_runner/pybind.h' 2025-06-01T21:23:38.2512357Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/arrayref_tensor.h' 2025-06-01T21:23:38.2515653Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/constant_type.h' 2025-06-01T21:23:38.2519218Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/device_utils.h' 2025-06-01T21:23:38.2523962Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/interface.h' 2025-06-01T21:23:38.2528389Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/mini_array_ref.h' 2025-06-01T21:23:38.2537049Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/model.h' 2025-06-01T21:23:38.2547276Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/model_container.h' 2025-06-01T21:23:38.2551357Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/scalar_to_tensor.h' 2025-06-01T21:23:38.2555863Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/sycl_runtime_wrappers.h' 2025-06-01T21:23:38.2559757Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/thread_local.h' 2025-06-01T21:23:38.2564955Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/utils.h' 2025-06-01T21:23:38.2568728Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/utils_cuda.h' 2025-06-01T21:23:38.2572065Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/utils_xpu.h' 2025-06-01T21:23:38.2576145Z adding 'torch/include/torch/csrc/inductor/aoti_torch/mkldnn_tensor.h' 2025-06-01T21:23:38.2580255Z adding 'torch/include/torch/csrc/inductor/aoti_torch/oss_proxy_executor.h' 2025-06-01T21:23:38.2583454Z adding 'torch/include/torch/csrc/inductor/aoti_torch/proxy_executor.h' 2025-06-01T21:23:38.2586905Z adding 'torch/include/torch/csrc/inductor/aoti_torch/tensor_converter.h' 2025-06-01T21:23:38.2591199Z adding 'torch/include/torch/csrc/inductor/aoti_torch/utils.h' 2025-06-01T21:23:38.2601058Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim.h' 2025-06-01T21:23:38.2605686Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim_cpu.h' 2025-06-01T21:23:38.2609082Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim_mps.h' 2025-06-01T21:23:38.2612284Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim_xpu.h' 2025-06-01T21:23:38.2620056Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_cpu.h' 2025-06-01T21:23:38.2628159Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_cuda.h' 2025-06-01T21:23:38.2634561Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_mps.h' 2025-06-01T21:23:38.2639531Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_xpu.h' 2025-06-01T21:23:38.2643719Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/array_ref.h' 2025-06-01T21:23:38.2647209Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/common.h' 2025-06-01T21:23:38.2650178Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/cpu.h' 2025-06-01T21:23:38.2653115Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/cuda.h' 2025-06-01T21:23:38.2655948Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/mps.h' 2025-06-01T21:23:38.2658798Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/xpu.h' 2025-06-01T21:23:38.2662500Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/cpu.h' 2025-06-01T21:23:38.2665572Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/cuda.h' 2025-06-01T21:23:38.2668429Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/mps.h' 2025-06-01T21:23:38.2671350Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/xpu.h' 2025-06-01T21:23:38.2674919Z adding 'torch/include/torch/csrc/instruction_counter/Module.h' 2025-06-01T21:23:38.2679852Z adding 'torch/include/torch/csrc/jit/jit_log.h' 2025-06-01T21:23:38.2683464Z adding 'torch/include/torch/csrc/jit/jit_opt_limit.h' 2025-06-01T21:23:38.2686515Z adding 'torch/include/torch/csrc/jit/resource_guard.h' 2025-06-01T21:23:38.2693433Z adding 'torch/include/torch/csrc/jit/api/compilation_unit.h' 2025-06-01T21:23:38.2698193Z adding 'torch/include/torch/csrc/jit/api/function_impl.h' 2025-06-01T21:23:38.2702253Z adding 'torch/include/torch/csrc/jit/api/method.h' 2025-06-01T21:23:38.2713173Z adding 'torch/include/torch/csrc/jit/api/module.h' 2025-06-01T21:23:38.2718828Z adding 'torch/include/torch/csrc/jit/api/object.h' 2025-06-01T21:23:38.2724064Z adding 'torch/include/torch/csrc/jit/backends/backend.h' 2025-06-01T21:23:38.2729130Z adding 'torch/include/torch/csrc/jit/backends/backend_debug_handler.h' 2025-06-01T21:23:38.2733015Z adding 'torch/include/torch/csrc/jit/backends/backend_debug_info.h' 2025-06-01T21:23:38.2736258Z adding 'torch/include/torch/csrc/jit/backends/backend_detail.h' 2025-06-01T21:23:38.2739921Z adding 'torch/include/torch/csrc/jit/backends/backend_exception.h' 2025-06-01T21:23:38.2742941Z adding 'torch/include/torch/csrc/jit/backends/backend_init.h' 2025-06-01T21:23:38.2746457Z adding 'torch/include/torch/csrc/jit/backends/backend_interface.h' 2025-06-01T21:23:38.2749505Z adding 'torch/include/torch/csrc/jit/backends/backend_preprocess.h' 2025-06-01T21:23:38.2752460Z adding 'torch/include/torch/csrc/jit/backends/backend_resolver.h' 2025-06-01T21:23:38.2756935Z adding 'torch/include/torch/csrc/jit/backends/coreml/cpp/context.h' 2025-06-01T21:23:38.2760886Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLCompiler.h' 2025-06-01T21:23:38.2763976Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLExecutor.h' 2025-06-01T21:23:38.2767036Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLFeatureProvider.h' 2025-06-01T21:23:38.2770076Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLModelWrapper.h' 2025-06-01T21:23:38.2773265Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLTensorSpec.h' 2025-06-01T21:23:38.2777729Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/xnnpack_graph_builder.h' 2025-06-01T21:23:38.2781713Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/compiler/xnn_compiler.h' 2025-06-01T21:23:38.2785849Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/executor/xnn_executor.h' 2025-06-01T21:23:38.2790262Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/serialization/serializer.h' 2025-06-01T21:23:38.2794911Z adding 'torch/include/torch/csrc/jit/codegen/cuda/interface.h' 2025-06-01T21:23:38.2799183Z adding 'torch/include/torch/csrc/jit/codegen/fuser/arg_spec.h' 2025-06-01T21:23:38.2802416Z adding 'torch/include/torch/csrc/jit/codegen/fuser/codegen.h' 2025-06-01T21:23:38.2805886Z adding 'torch/include/torch/csrc/jit/codegen/fuser/compiler.h' 2025-06-01T21:23:38.2808990Z adding 'torch/include/torch/csrc/jit/codegen/fuser/executor.h' 2025-06-01T21:23:38.2811888Z adding 'torch/include/torch/csrc/jit/codegen/fuser/fallback.h' 2025-06-01T21:23:38.2815430Z adding 'torch/include/torch/csrc/jit/codegen/fuser/fused_kernel.h' 2025-06-01T21:23:38.2818847Z adding 'torch/include/torch/csrc/jit/codegen/fuser/interface.h' 2025-06-01T21:23:38.2822119Z adding 'torch/include/torch/csrc/jit/codegen/fuser/kernel_cache.h' 2025-06-01T21:23:38.2826235Z adding 'torch/include/torch/csrc/jit/codegen/fuser/kernel_spec.h' 2025-06-01T21:23:38.2829728Z adding 'torch/include/torch/csrc/jit/codegen/fuser/partition_desc.h' 2025-06-01T21:23:38.2833311Z adding 'torch/include/torch/csrc/jit/codegen/fuser/tensor_desc.h' 2025-06-01T21:23:38.2836445Z adding 'torch/include/torch/csrc/jit/codegen/fuser/tensor_info.h' 2025-06-01T21:23:38.2840486Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cpu/fused_kernel.h' 2025-06-01T21:23:38.2843969Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cpu/resource_strings.h' 2025-06-01T21:23:38.2847654Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cpu/temp_file.h' 2025-06-01T21:23:38.2851910Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cuda/fused_kernel.h' 2025-06-01T21:23:38.2857544Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cuda/resource_strings.h' 2025-06-01T21:23:38.2863869Z adding 'torch/include/torch/csrc/jit/codegen/onednn/LlgaTensorImpl.h' 2025-06-01T21:23:38.2867132Z adding 'torch/include/torch/csrc/jit/codegen/onednn/decompose_silu.h' 2025-06-01T21:23:38.2870034Z adding 'torch/include/torch/csrc/jit/codegen/onednn/defer_size_check.h' 2025-06-01T21:23:38.2873204Z adding 'torch/include/torch/csrc/jit/codegen/onednn/graph_fuser.h' 2025-06-01T21:23:38.2876688Z adding 'torch/include/torch/csrc/jit/codegen/onednn/graph_helper.h' 2025-06-01T21:23:38.2879636Z adding 'torch/include/torch/csrc/jit/codegen/onednn/guard_shape.h' 2025-06-01T21:23:38.2882951Z adding 'torch/include/torch/csrc/jit/codegen/onednn/interface.h' 2025-06-01T21:23:38.2886520Z adding 'torch/include/torch/csrc/jit/codegen/onednn/kernel.h' 2025-06-01T21:23:38.2889526Z adding 'torch/include/torch/csrc/jit/codegen/onednn/layout_propagation.h' 2025-06-01T21:23:38.2893199Z adding 'torch/include/torch/csrc/jit/codegen/onednn/operator.h' 2025-06-01T21:23:38.2896399Z adding 'torch/include/torch/csrc/jit/codegen/onednn/prepare_binary.h' 2025-06-01T21:23:38.2901104Z adding 'torch/include/torch/csrc/jit/cuda/cuda.h' 2025-06-01T21:23:38.2905579Z adding 'torch/include/torch/csrc/jit/frontend/builtin_functions.h' 2025-06-01T21:23:38.2908634Z adding 'torch/include/torch/csrc/jit/frontend/canonicalize_modified_loop.h' 2025-06-01T21:23:38.2913815Z adding 'torch/include/torch/csrc/jit/frontend/concrete_module_type.h' 2025-06-01T21:23:38.2917087Z adding 'torch/include/torch/csrc/jit/frontend/convert_to_ssa.h' 2025-06-01T21:23:38.2920008Z adding 'torch/include/torch/csrc/jit/frontend/edit_distance.h' 2025-06-01T21:23:38.2923230Z adding 'torch/include/torch/csrc/jit/frontend/error_report.h' 2025-06-01T21:23:38.2926164Z adding 'torch/include/torch/csrc/jit/frontend/exit_transforms.h' 2025-06-01T21:23:38.2929275Z adding 'torch/include/torch/csrc/jit/frontend/function_schema_parser.h' 2025-06-01T21:23:38.2932201Z adding 'torch/include/torch/csrc/jit/frontend/inline_loop_condition.h' 2025-06-01T21:23:38.2935095Z adding 'torch/include/torch/csrc/jit/frontend/ir_emitter.h' 2025-06-01T21:23:38.2943266Z adding 'torch/include/torch/csrc/jit/frontend/lexer.h' 2025-06-01T21:23:38.2947204Z adding 'torch/include/torch/csrc/jit/frontend/mini_environment.h' 2025-06-01T21:23:38.2950334Z adding 'torch/include/torch/csrc/jit/frontend/name_mangler.h' 2025-06-01T21:23:38.2953841Z adding 'torch/include/torch/csrc/jit/frontend/parse_string_literal.h' 2025-06-01T21:23:38.2957011Z adding 'torch/include/torch/csrc/jit/frontend/parser.h' 2025-06-01T21:23:38.2960051Z adding 'torch/include/torch/csrc/jit/frontend/parser_constants.h' 2025-06-01T21:23:38.2963439Z adding 'torch/include/torch/csrc/jit/frontend/resolver.h' 2025-06-01T21:23:38.2967048Z adding 'torch/include/torch/csrc/jit/frontend/schema_matching.h' 2025-06-01T21:23:38.2970350Z adding 'torch/include/torch/csrc/jit/frontend/schema_type_parser.h' 2025-06-01T21:23:38.2973799Z adding 'torch/include/torch/csrc/jit/frontend/script_type_parser.h' 2025-06-01T21:23:38.2981510Z adding 'torch/include/torch/csrc/jit/frontend/source_range.h' 2025-06-01T21:23:38.2985423Z adding 'torch/include/torch/csrc/jit/frontend/source_ref.h' 2025-06-01T21:23:38.2988539Z adding 'torch/include/torch/csrc/jit/frontend/strtod.h' 2025-06-01T21:23:38.2998484Z adding 'torch/include/torch/csrc/jit/frontend/sugared_value.h' 2025-06-01T21:23:38.3004847Z adding 'torch/include/torch/csrc/jit/frontend/tracer.h' 2025-06-01T21:23:38.3010024Z adding 'torch/include/torch/csrc/jit/frontend/tree.h' 2025-06-01T21:23:38.3021910Z adding 'torch/include/torch/csrc/jit/frontend/tree_views.h' 2025-06-01T21:23:38.3026303Z adding 'torch/include/torch/csrc/jit/frontend/versioned_symbols.h' 2025-06-01T21:23:38.3034343Z adding 'torch/include/torch/csrc/jit/ir/alias_analysis.h' 2025-06-01T21:23:38.3038746Z adding 'torch/include/torch/csrc/jit/ir/attributes.h' 2025-06-01T21:23:38.3042483Z adding 'torch/include/torch/csrc/jit/ir/constants.h' 2025-06-01T21:23:38.3046797Z adding 'torch/include/torch/csrc/jit/ir/graph_node_list.h' 2025-06-01T21:23:38.3050092Z adding 'torch/include/torch/csrc/jit/ir/graph_utils.h' 2025-06-01T21:23:38.3071231Z adding 'torch/include/torch/csrc/jit/ir/ir.h' 2025-06-01T21:23:38.3076698Z adding 'torch/include/torch/csrc/jit/ir/ir_views.h' 2025-06-01T21:23:38.3080192Z adding 'torch/include/torch/csrc/jit/ir/irparser.h' 2025-06-01T21:23:38.3083802Z adding 'torch/include/torch/csrc/jit/ir/named_value.h' 2025-06-01T21:23:38.3087009Z adding 'torch/include/torch/csrc/jit/ir/node_hashing.h' 2025-06-01T21:23:38.3091754Z adding 'torch/include/torch/csrc/jit/ir/scope.h' 2025-06-01T21:23:38.3095878Z adding 'torch/include/torch/csrc/jit/ir/subgraph_matcher.h' 2025-06-01T21:23:38.3099182Z adding 'torch/include/torch/csrc/jit/ir/type_hashing.h' 2025-06-01T21:23:38.3103516Z adding 'torch/include/torch/csrc/jit/mobile/code.h' 2025-06-01T21:23:38.3107074Z adding 'torch/include/torch/csrc/jit/mobile/debug_info.h' 2025-06-01T21:23:38.3111773Z adding 'torch/include/torch/csrc/jit/mobile/file_format.h' 2025-06-01T21:23:38.3116148Z adding 'torch/include/torch/csrc/jit/mobile/flatbuffer_loader.h' 2025-06-01T21:23:38.3119435Z adding 'torch/include/torch/csrc/jit/mobile/frame.h' 2025-06-01T21:23:38.3123162Z adding 'torch/include/torch/csrc/jit/mobile/function.h' 2025-06-01T21:23:38.3127190Z adding 'torch/include/torch/csrc/jit/mobile/import.h' 2025-06-01T21:23:38.3130536Z adding 'torch/include/torch/csrc/jit/mobile/import_data.h' 2025-06-01T21:23:38.3133782Z adding 'torch/include/torch/csrc/jit/mobile/import_export_common.h' 2025-06-01T21:23:38.3136888Z adding 'torch/include/torch/csrc/jit/mobile/interpreter.h' 2025-06-01T21:23:38.3140017Z adding 'torch/include/torch/csrc/jit/mobile/method.h' 2025-06-01T21:23:38.3144809Z adding 'torch/include/torch/csrc/jit/mobile/module.h' 2025-06-01T21:23:38.3148893Z adding 'torch/include/torch/csrc/jit/mobile/observer.h' 2025-06-01T21:23:38.3152144Z adding 'torch/include/torch/csrc/jit/mobile/parse_bytecode.h' 2025-06-01T21:23:38.3155407Z adding 'torch/include/torch/csrc/jit/mobile/parse_operators.h' 2025-06-01T21:23:38.3158482Z adding 'torch/include/torch/csrc/jit/mobile/prim_ops_registery.h' 2025-06-01T21:23:38.3162546Z adding 'torch/include/torch/csrc/jit/mobile/profiler_edge.h' 2025-06-01T21:23:38.3165904Z adding 'torch/include/torch/csrc/jit/mobile/promoted_prim_ops.h' 2025-06-01T21:23:38.3169170Z adding 'torch/include/torch/csrc/jit/mobile/quantization.h' 2025-06-01T21:23:38.3172756Z adding 'torch/include/torch/csrc/jit/mobile/register_ops_common_utils.h' 2025-06-01T21:23:38.3176010Z adding 'torch/include/torch/csrc/jit/mobile/type_parser.h' 2025-06-01T21:23:38.3179319Z adding 'torch/include/torch/csrc/jit/mobile/upgrader_mobile.h' 2025-06-01T21:23:38.3183507Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/backport.h' 2025-06-01T21:23:38.3186921Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/backport_manager.h' 2025-06-01T21:23:38.3190684Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/model_compatibility.h' 2025-06-01T21:23:38.3194057Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/runtime_compatibility.h' 2025-06-01T21:23:38.3198143Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/BuildFeatureTracer.h' 2025-06-01T21:23:38.3201758Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/CustomClassTracer.h' 2025-06-01T21:23:38.3205498Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/KernelDTypeTracer.h' 2025-06-01T21:23:38.3209846Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/MobileModelRunner.h' 2025-06-01T21:23:38.3213307Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/OperatorCallTracer.h' 2025-06-01T21:23:38.3216328Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/TensorUtils.h' 2025-06-01T21:23:38.3219622Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/TracerRunner.h' 2025-06-01T21:23:38.3223425Z adding 'torch/include/torch/csrc/jit/mobile/nnc/aot_compiler.h' 2025-06-01T21:23:38.3227998Z adding 'torch/include/torch/csrc/jit/mobile/nnc/context.h' 2025-06-01T21:23:38.3232270Z adding 'torch/include/torch/csrc/jit/mobile/nnc/registry.h' 2025-06-01T21:23:38.3236395Z adding 'torch/include/torch/csrc/jit/mobile/train/export_data.h' 2025-06-01T21:23:38.3239726Z adding 'torch/include/torch/csrc/jit/mobile/train/random.h' 2025-06-01T21:23:38.3243192Z adding 'torch/include/torch/csrc/jit/mobile/train/sequential.h' 2025-06-01T21:23:38.3247748Z adding 'torch/include/torch/csrc/jit/mobile/train/optim/sgd.h' 2025-06-01T21:23:38.3251907Z adding 'torch/include/torch/csrc/jit/operator_upgraders/upgraders.h' 2025-06-01T21:23:38.3255019Z adding 'torch/include/torch/csrc/jit/operator_upgraders/upgraders_entry.h' 2025-06-01T21:23:38.3258404Z adding 'torch/include/torch/csrc/jit/operator_upgraders/utils.h' 2025-06-01T21:23:38.3261670Z adding 'torch/include/torch/csrc/jit/operator_upgraders/version_map.h' 2025-06-01T21:23:38.3267098Z adding 'torch/include/torch/csrc/jit/passes/add_if_then_else.h' 2025-06-01T21:23:38.3270018Z adding 'torch/include/torch/csrc/jit/passes/annotate_warns.h' 2025-06-01T21:23:38.3272903Z adding 'torch/include/torch/csrc/jit/passes/autocast.h' 2025-06-01T21:23:38.3276206Z adding 'torch/include/torch/csrc/jit/passes/bailout_graph.h' 2025-06-01T21:23:38.3279135Z adding 'torch/include/torch/csrc/jit/passes/batch_mm.h' 2025-06-01T21:23:38.3282105Z adding 'torch/include/torch/csrc/jit/passes/canonicalize.h' 2025-06-01T21:23:38.3285076Z adding 'torch/include/torch/csrc/jit/passes/canonicalize_graph_fuser_ops.h' 2025-06-01T21:23:38.3287899Z adding 'torch/include/torch/csrc/jit/passes/check_strict_fusion.h' 2025-06-01T21:23:38.3291026Z adding 'torch/include/torch/csrc/jit/passes/clear_profiling.h' 2025-06-01T21:23:38.3294183Z adding 'torch/include/torch/csrc/jit/passes/clear_undefinedness.h' 2025-06-01T21:23:38.3297154Z adding 'torch/include/torch/csrc/jit/passes/common_subexpression_elimination.h' 2025-06-01T21:23:38.3300007Z adding 'torch/include/torch/csrc/jit/passes/concat_opt.h' 2025-06-01T21:23:38.3302887Z adding 'torch/include/torch/csrc/jit/passes/constant_pooling.h' 2025-06-01T21:23:38.3306221Z adding 'torch/include/torch/csrc/jit/passes/constant_propagation.h' 2025-06-01T21:23:38.3309278Z adding 'torch/include/torch/csrc/jit/passes/create_autodiff_subgraphs.h' 2025-06-01T21:23:38.3312191Z adding 'torch/include/torch/csrc/jit/passes/create_functional_graphs.h' 2025-06-01T21:23:38.3315374Z adding 'torch/include/torch/csrc/jit/passes/dead_code_elimination.h' 2025-06-01T21:23:38.3318252Z adding 'torch/include/torch/csrc/jit/passes/decompose_ops.h' 2025-06-01T21:23:38.3321146Z adding 'torch/include/torch/csrc/jit/passes/device_type_analysis.h' 2025-06-01T21:23:38.3324110Z adding 'torch/include/torch/csrc/jit/passes/dtype_analysis.h' 2025-06-01T21:23:38.3327024Z adding 'torch/include/torch/csrc/jit/passes/eliminate_no_ops.h' 2025-06-01T21:23:38.3330101Z adding 'torch/include/torch/csrc/jit/passes/erase_number_types.h' 2025-06-01T21:23:38.3333520Z adding 'torch/include/torch/csrc/jit/passes/fixup_trace_scope_blocks.h' 2025-06-01T21:23:38.3336629Z adding 'torch/include/torch/csrc/jit/passes/fold_conv_bn.h' 2025-06-01T21:23:38.3339764Z adding 'torch/include/torch/csrc/jit/passes/fold_linear_bn.h' 2025-06-01T21:23:38.3343010Z adding 'torch/include/torch/csrc/jit/passes/freeze_module.h' 2025-06-01T21:23:38.3346291Z adding 'torch/include/torch/csrc/jit/passes/frozen_concat_linear.h' 2025-06-01T21:23:38.3349266Z adding 'torch/include/torch/csrc/jit/passes/frozen_conv_add_relu_fusion.h' 2025-06-01T21:23:38.3352310Z adding 'torch/include/torch/csrc/jit/passes/frozen_conv_folding.h' 2025-06-01T21:23:38.3355407Z adding 'torch/include/torch/csrc/jit/passes/frozen_graph_optimizations.h' 2025-06-01T21:23:38.3358383Z adding 'torch/include/torch/csrc/jit/passes/frozen_linear_folding.h' 2025-06-01T21:23:38.3361418Z adding 'torch/include/torch/csrc/jit/passes/frozen_linear_transpose.h' 2025-06-01T21:23:38.3364252Z adding 'torch/include/torch/csrc/jit/passes/frozen_ops_to_mkldnn.h' 2025-06-01T21:23:38.3367231Z adding 'torch/include/torch/csrc/jit/passes/fuse_linear.h' 2025-06-01T21:23:38.3370136Z adding 'torch/include/torch/csrc/jit/passes/fuse_relu.h' 2025-06-01T21:23:38.3373342Z adding 'torch/include/torch/csrc/jit/passes/graph_fuser.h' 2025-06-01T21:23:38.3376725Z adding 'torch/include/torch/csrc/jit/passes/graph_rewrite_helper.h' 2025-06-01T21:23:38.3379681Z adding 'torch/include/torch/csrc/jit/passes/guard_elimination.h' 2025-06-01T21:23:38.3382841Z adding 'torch/include/torch/csrc/jit/passes/hoist_conv_packed_params.h' 2025-06-01T21:23:38.3385943Z adding 'torch/include/torch/csrc/jit/passes/inline_autodiff_subgraphs.h' 2025-06-01T21:23:38.3388842Z adding 'torch/include/torch/csrc/jit/passes/inline_fork_wait.h' 2025-06-01T21:23:38.3391817Z adding 'torch/include/torch/csrc/jit/passes/inline_forked_closures.h' 2025-06-01T21:23:38.3394725Z adding 'torch/include/torch/csrc/jit/passes/inliner.h' 2025-06-01T21:23:38.3397586Z adding 'torch/include/torch/csrc/jit/passes/inplace_check.h' 2025-06-01T21:23:38.3400487Z adding 'torch/include/torch/csrc/jit/passes/insert_guards.h' 2025-06-01T21:23:38.3403438Z adding 'torch/include/torch/csrc/jit/passes/integer_value_refinement.h' 2025-06-01T21:23:38.3406262Z adding 'torch/include/torch/csrc/jit/passes/lift_closures.h' 2025-06-01T21:23:38.3409374Z adding 'torch/include/torch/csrc/jit/passes/liveness.h' 2025-06-01T21:23:38.3412494Z adding 'torch/include/torch/csrc/jit/passes/loop_unrolling.h' 2025-06-01T21:23:38.3415438Z adding 'torch/include/torch/csrc/jit/passes/lower_grad_of.h' 2025-06-01T21:23:38.3418487Z adding 'torch/include/torch/csrc/jit/passes/lower_graph.h' 2025-06-01T21:23:38.3421495Z adding 'torch/include/torch/csrc/jit/passes/lower_tuples.h' 2025-06-01T21:23:38.3424554Z adding 'torch/include/torch/csrc/jit/passes/metal_rewrite.h' 2025-06-01T21:23:38.3427600Z adding 'torch/include/torch/csrc/jit/passes/mkldnn_rewrite.h' 2025-06-01T21:23:38.3430528Z adding 'torch/include/torch/csrc/jit/passes/mobile_optimizer_type.h' 2025-06-01T21:23:38.3433459Z adding 'torch/include/torch/csrc/jit/passes/normalize_ops.h' 2025-06-01T21:23:38.3436692Z adding 'torch/include/torch/csrc/jit/passes/onednn_graph_fuser.h' 2025-06-01T21:23:38.3439758Z adding 'torch/include/torch/csrc/jit/passes/onnx.h' 2025-06-01T21:23:38.3443937Z adding 'torch/include/torch/csrc/jit/passes/pass_manager.h' 2025-06-01T21:23:38.3447208Z adding 'torch/include/torch/csrc/jit/passes/peephole.h' 2025-06-01T21:23:38.3450354Z adding 'torch/include/torch/csrc/jit/passes/peephole_alias_sensitive.h' 2025-06-01T21:23:38.3453625Z adding 'torch/include/torch/csrc/jit/passes/peephole_dict_idioms.h' 2025-06-01T21:23:38.3457110Z adding 'torch/include/torch/csrc/jit/passes/peephole_list_idioms.h' 2025-06-01T21:23:38.3460207Z adding 'torch/include/torch/csrc/jit/passes/peephole_non_tensor.h' 2025-06-01T21:23:38.3463247Z adding 'torch/include/torch/csrc/jit/passes/prepack_folding.h' 2025-06-01T21:23:38.3466357Z adding 'torch/include/torch/csrc/jit/passes/refine_tuple_types.h' 2025-06-01T21:23:38.3469438Z adding 'torch/include/torch/csrc/jit/passes/remove_dropout.h' 2025-06-01T21:23:38.3472572Z adding 'torch/include/torch/csrc/jit/passes/remove_exceptions.h' 2025-06-01T21:23:38.3475602Z adding 'torch/include/torch/csrc/jit/passes/remove_expands.h' 2025-06-01T21:23:38.3478574Z adding 'torch/include/torch/csrc/jit/passes/remove_inplace_ops.h' 2025-06-01T21:23:38.3482168Z adding 'torch/include/torch/csrc/jit/passes/remove_mutation.h' 2025-06-01T21:23:38.3485339Z adding 'torch/include/torch/csrc/jit/passes/remove_redundant_profiles.h' 2025-06-01T21:23:38.3488418Z adding 'torch/include/torch/csrc/jit/passes/replacement_of_old_operators.h' 2025-06-01T21:23:38.3491412Z adding 'torch/include/torch/csrc/jit/passes/requires_grad_analysis.h' 2025-06-01T21:23:38.3494731Z adding 'torch/include/torch/csrc/jit/passes/restore_mutation.h' 2025-06-01T21:23:38.3498029Z adding 'torch/include/torch/csrc/jit/passes/shape_analysis.h' 2025-06-01T21:23:38.3501167Z adding 'torch/include/torch/csrc/jit/passes/specialize_autogradzero.h' 2025-06-01T21:23:38.3505354Z adding 'torch/include/torch/csrc/jit/passes/subgraph_rewrite.h' 2025-06-01T21:23:38.3509094Z adding 'torch/include/torch/csrc/jit/passes/symbolic_shape_analysis.h' 2025-06-01T21:23:38.3512339Z adding 'torch/include/torch/csrc/jit/passes/symbolic_shape_cache.h' 2025-06-01T21:23:38.3516129Z adding 'torch/include/torch/csrc/jit/passes/symbolic_shape_runtime_fusion.h' 2025-06-01T21:23:38.3519812Z adding 'torch/include/torch/csrc/jit/passes/tensorexpr_fuser.h' 2025-06-01T21:23:38.3523303Z adding 'torch/include/torch/csrc/jit/passes/update_differentiable_graph_requires_grad.h' 2025-06-01T21:23:38.3526722Z adding 'torch/include/torch/csrc/jit/passes/value_refinement_utils.h' 2025-06-01T21:23:38.3529827Z adding 'torch/include/torch/csrc/jit/passes/variadic_ops.h' 2025-06-01T21:23:38.3533098Z adding 'torch/include/torch/csrc/jit/passes/vulkan_rewrite.h' 2025-06-01T21:23:38.3536217Z adding 'torch/include/torch/csrc/jit/passes/xnnpack_rewrite.h' 2025-06-01T21:23:38.3540262Z adding 'torch/include/torch/csrc/jit/passes/dbr_quantization/remove_redundant_aliases.h' 2025-06-01T21:23:38.3544565Z adding 'torch/include/torch/csrc/jit/passes/onnx/cast_all_constant_to_floating.h' 2025-06-01T21:23:38.3547678Z adding 'torch/include/torch/csrc/jit/passes/onnx/constant_fold.h' 2025-06-01T21:23:38.3552112Z adding 'torch/include/torch/csrc/jit/passes/onnx/constant_map.h' 2025-06-01T21:23:38.3555509Z adding 'torch/include/torch/csrc/jit/passes/onnx/deduplicate_initializers.h' 2025-06-01T21:23:38.3558498Z adding 'torch/include/torch/csrc/jit/passes/onnx/eliminate_unused_items.h' 2025-06-01T21:23:38.3561508Z adding 'torch/include/torch/csrc/jit/passes/onnx/eval_peephole.h' 2025-06-01T21:23:38.3564526Z adding 'torch/include/torch/csrc/jit/passes/onnx/fixup_onnx_controlflow.h' 2025-06-01T21:23:38.3568129Z adding 'torch/include/torch/csrc/jit/passes/onnx/function_extraction.h' 2025-06-01T21:23:38.3571141Z adding 'torch/include/torch/csrc/jit/passes/onnx/function_substitution.h' 2025-06-01T21:23:38.3574578Z adding 'torch/include/torch/csrc/jit/passes/onnx/helper.h' 2025-06-01T21:23:38.3577797Z adding 'torch/include/torch/csrc/jit/passes/onnx/list_model_parameters.h' 2025-06-01T21:23:38.3580787Z adding 'torch/include/torch/csrc/jit/passes/onnx/naming.h' 2025-06-01T21:23:38.3584066Z adding 'torch/include/torch/csrc/jit/passes/onnx/onnx_log.h' 2025-06-01T21:23:38.3587059Z adding 'torch/include/torch/csrc/jit/passes/onnx/peephole.h' 2025-06-01T21:23:38.3590306Z adding 'torch/include/torch/csrc/jit/passes/onnx/prepare_division_for_onnx.h' 2025-06-01T21:23:38.3593203Z adding 'torch/include/torch/csrc/jit/passes/onnx/preprocess_for_onnx.h' 2025-06-01T21:23:38.3596306Z adding 'torch/include/torch/csrc/jit/passes/onnx/remove_inplace_ops_for_onnx.h' 2025-06-01T21:23:38.3599251Z adding 'torch/include/torch/csrc/jit/passes/onnx/scalar_type_analysis.h' 2025-06-01T21:23:38.3603526Z adding 'torch/include/torch/csrc/jit/passes/onnx/shape_type_inference.h' 2025-06-01T21:23:38.3606609Z adding 'torch/include/torch/csrc/jit/passes/onnx/unpack_quantized_weights.h' 2025-06-01T21:23:38.3610483Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/autograd_function_process.h' 2025-06-01T21:23:38.3613547Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/common.h' 2025-06-01T21:23:38.3617160Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_conversion.h' 2025-06-01T21:23:38.3620742Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_encapsulation.h' 2025-06-01T21:23:38.3624917Z adding 'torch/include/torch/csrc/jit/passes/quantization/dedup_module_uses.h' 2025-06-01T21:23:38.3628370Z adding 'torch/include/torch/csrc/jit/passes/quantization/finalize.h' 2025-06-01T21:23:38.3631575Z adding 'torch/include/torch/csrc/jit/passes/quantization/fusion_passes.h' 2025-06-01T21:23:38.3636099Z adding 'torch/include/torch/csrc/jit/passes/quantization/helper.h' 2025-06-01T21:23:38.3640107Z adding 'torch/include/torch/csrc/jit/passes/quantization/insert_observers.h' 2025-06-01T21:23:38.3643900Z adding 'torch/include/torch/csrc/jit/passes/quantization/insert_quant_dequant.h' 2025-06-01T21:23:38.3654449Z adding 'torch/include/torch/csrc/jit/passes/quantization/quantization_patterns.h' 2025-06-01T21:23:38.3658725Z adding 'torch/include/torch/csrc/jit/passes/quantization/quantization_type.h' 2025-06-01T21:23:38.3662225Z adding 'torch/include/torch/csrc/jit/passes/quantization/register_packed_params.h' 2025-06-01T21:23:38.3666222Z adding 'torch/include/torch/csrc/jit/passes/utils/check_alias_annotation.h' 2025-06-01T21:23:38.3670992Z adding 'torch/include/torch/csrc/jit/passes/utils/memory_dag.h' 2025-06-01T21:23:38.3674201Z adding 'torch/include/torch/csrc/jit/passes/utils/op_registry.h' 2025-06-01T21:23:38.3677366Z adding 'torch/include/torch/csrc/jit/passes/utils/optimization_utils.h' 2025-06-01T21:23:38.3687361Z adding 'torch/include/torch/csrc/jit/passes/utils/subgraph_utils.h' 2025-06-01T21:23:38.3688942Z adding 'torch/include/torch/csrc/jit/python/init.h' 2025-06-01T21:23:38.3692552Z adding 'torch/include/torch/csrc/jit/python/module_python.h' 2025-06-01T21:23:38.3697083Z adding 'torch/include/torch/csrc/jit/python/pybind.h' 2025-06-01T21:23:38.3714870Z adding 'torch/include/torch/csrc/jit/python/pybind_utils.h' 2025-06-01T21:23:38.3720332Z adding 'torch/include/torch/csrc/jit/python/python_arg_flatten.h' 2025-06-01T21:23:38.3723701Z adding 'torch/include/torch/csrc/jit/python/python_custom_class.h' 2025-06-01T21:23:38.3727409Z adding 'torch/include/torch/csrc/jit/python/python_dict.h' 2025-06-01T21:23:38.3731059Z adding 'torch/include/torch/csrc/jit/python/python_ir.h' 2025-06-01T21:23:38.3735009Z adding 'torch/include/torch/csrc/jit/python/python_ivalue.h' 2025-06-01T21:23:38.3739643Z adding 'torch/include/torch/csrc/jit/python/python_list.h' 2025-06-01T21:23:38.3745116Z adding 'torch/include/torch/csrc/jit/python/python_sugared_value.h' 2025-06-01T21:23:38.3748636Z adding 'torch/include/torch/csrc/jit/python/python_tracer.h' 2025-06-01T21:23:38.3751597Z adding 'torch/include/torch/csrc/jit/python/python_tree_views.h' 2025-06-01T21:23:38.3754656Z adding 'torch/include/torch/csrc/jit/python/script_init.h' 2025-06-01T21:23:38.3757594Z adding 'torch/include/torch/csrc/jit/python/update_graph_executor_opt.h' 2025-06-01T21:23:38.3760390Z adding 'torch/include/torch/csrc/jit/python/utf8_decoding_ignore.h' 2025-06-01T21:23:38.3769044Z adding 'torch/include/torch/csrc/jit/runtime/argument_spec.h' 2025-06-01T21:23:38.3773545Z adding 'torch/include/torch/csrc/jit/runtime/autodiff.h' 2025-06-01T21:23:38.3777252Z adding 'torch/include/torch/csrc/jit/runtime/calculate_necessary_args.h' 2025-06-01T21:23:38.3780504Z adding 'torch/include/torch/csrc/jit/runtime/custom_operator.h' 2025-06-01T21:23:38.3783722Z adding 'torch/include/torch/csrc/jit/runtime/decomposition_registry.h' 2025-06-01T21:23:38.3786847Z adding 'torch/include/torch/csrc/jit/runtime/decomposition_registry_util.h' 2025-06-01T21:23:38.3789823Z adding 'torch/include/torch/csrc/jit/runtime/exception_message.h' 2025-06-01T21:23:38.3793965Z adding 'torch/include/torch/csrc/jit/runtime/graph_executor.h' 2025-06-01T21:23:38.3798006Z adding 'torch/include/torch/csrc/jit/runtime/graph_executor_impl.h' 2025-06-01T21:23:38.3802711Z adding 'torch/include/torch/csrc/jit/runtime/graph_iterator.h' 2025-06-01T21:23:38.3807136Z adding 'torch/include/torch/csrc/jit/runtime/instruction.h' 2025-06-01T21:23:38.3811467Z adding 'torch/include/torch/csrc/jit/runtime/interpreter.h' 2025-06-01T21:23:38.3814974Z adding 'torch/include/torch/csrc/jit/runtime/jit_exception.h' 2025-06-01T21:23:38.3817813Z adding 'torch/include/torch/csrc/jit/runtime/jit_trace.h' 2025-06-01T21:23:38.3821318Z adding 'torch/include/torch/csrc/jit/runtime/logging.h' 2025-06-01T21:23:38.3826966Z adding 'torch/include/torch/csrc/jit/runtime/operator.h' 2025-06-01T21:23:38.3830266Z adding 'torch/include/torch/csrc/jit/runtime/operator_options.h' 2025-06-01T21:23:38.3833215Z adding 'torch/include/torch/csrc/jit/runtime/print_handler.h' 2025-06-01T21:23:38.3836884Z adding 'torch/include/torch/csrc/jit/runtime/profiling_graph_executor_impl.h' 2025-06-01T21:23:38.3842296Z adding 'torch/include/torch/csrc/jit/runtime/profiling_record.h' 2025-06-01T21:23:38.3852130Z adding 'torch/include/torch/csrc/jit/runtime/register_ops_utils.h' 2025-06-01T21:23:38.3856884Z adding 'torch/include/torch/csrc/jit/runtime/script_profile.h' 2025-06-01T21:23:38.3860112Z adding 'torch/include/torch/csrc/jit/runtime/serialized_shape_function_registry.h' 2025-06-01T21:23:38.3863196Z adding 'torch/include/torch/csrc/jit/runtime/shape_function_registry.h' 2025-06-01T21:23:38.3866378Z adding 'torch/include/torch/csrc/jit/runtime/simple_graph_executor_impl.h' 2025-06-01T21:23:38.3869606Z adding 'torch/include/torch/csrc/jit/runtime/slice_indices_adjust.h' 2025-06-01T21:23:38.3872681Z adding 'torch/include/torch/csrc/jit/runtime/symbolic_script.h' 2025-06-01T21:23:38.3876539Z adding 'torch/include/torch/csrc/jit/runtime/symbolic_shape_registry.h' 2025-06-01T21:23:38.3879726Z adding 'torch/include/torch/csrc/jit/runtime/symbolic_shape_registry_util.h' 2025-06-01T21:23:38.3882858Z adding 'torch/include/torch/csrc/jit/runtime/vararg_functions.h' 2025-06-01T21:23:38.3885981Z adding 'torch/include/torch/csrc/jit/runtime/variable_tensor_list.h' 2025-06-01T21:23:38.3890849Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/can_emit_inline.h' 2025-06-01T21:23:38.3902836Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/code_impl.h' 2025-06-01T21:23:38.3907083Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/frame.h' 2025-06-01T21:23:38.3910330Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/preprocess_graph.h' 2025-06-01T21:23:38.3915706Z adding 'torch/include/torch/csrc/jit/runtime/static/ProcessedNodeInputs.h' 2025-06-01T21:23:38.3918857Z adding 'torch/include/torch/csrc/jit/runtime/static/fusion.h' 2025-06-01T21:23:38.3932750Z adding 'torch/include/torch/csrc/jit/runtime/static/impl.h' 2025-06-01T21:23:38.3936580Z adding 'torch/include/torch/csrc/jit/runtime/static/init.h' 2025-06-01T21:23:38.3942462Z adding 'torch/include/torch/csrc/jit/runtime/static/memory_planner.h' 2025-06-01T21:23:38.3947110Z adding 'torch/include/torch/csrc/jit/runtime/static/ops.h' 2025-06-01T21:23:38.3951214Z adding 'torch/include/torch/csrc/jit/runtime/static/passes.h' 2025-06-01T21:23:38.3956004Z adding 'torch/include/torch/csrc/jit/runtime/static/processed_node_wrapper.h' 2025-06-01T21:23:38.3959766Z adding 'torch/include/torch/csrc/jit/runtime/static/static_method.h' 2025-06-01T21:23:38.3963117Z adding 'torch/include/torch/csrc/jit/runtime/static/te_wrapper.h' 2025-06-01T21:23:38.3968116Z adding 'torch/include/torch/csrc/jit/serialization/callstack_debug_info_serialization.h' 2025-06-01T21:23:38.3974156Z adding 'torch/include/torch/csrc/jit/serialization/export.h' 2025-06-01T21:23:38.3977889Z adding 'torch/include/torch/csrc/jit/serialization/export_bytecode.h' 2025-06-01T21:23:38.3981605Z adding 'torch/include/torch/csrc/jit/serialization/flatbuffer_serializer.h' 2025-06-01T21:23:38.3984905Z adding 'torch/include/torch/csrc/jit/serialization/flatbuffer_serializer_jit.h' 2025-06-01T21:23:38.3988744Z adding 'torch/include/torch/csrc/jit/serialization/import.h' 2025-06-01T21:23:38.3992216Z adding 'torch/include/torch/csrc/jit/serialization/import_export_constants.h' 2025-06-01T21:23:38.3995338Z adding 'torch/include/torch/csrc/jit/serialization/import_export_functions.h' 2025-06-01T21:23:38.3998486Z adding 'torch/include/torch/csrc/jit/serialization/import_export_helpers.h' 2025-06-01T21:23:38.4001583Z adding 'torch/include/torch/csrc/jit/serialization/import_read.h' 2025-06-01T21:23:38.4005234Z adding 'torch/include/torch/csrc/jit/serialization/import_source.h' 2025-06-01T21:23:38.4025716Z adding 'torch/include/torch/csrc/jit/serialization/mobile_bytecode_generated.h' 2025-06-01T21:23:38.4031129Z adding 'torch/include/torch/csrc/jit/serialization/onnx.h' 2025-06-01T21:23:38.4035236Z adding 'torch/include/torch/csrc/jit/serialization/pickle.h' 2025-06-01T21:23:38.4042230Z adding 'torch/include/torch/csrc/jit/serialization/pickler.h' 2025-06-01T21:23:38.4046037Z adding 'torch/include/torch/csrc/jit/serialization/python_print.h' 2025-06-01T21:23:38.4049489Z adding 'torch/include/torch/csrc/jit/serialization/source_range_serialization.h' 2025-06-01T21:23:38.4052779Z adding 'torch/include/torch/csrc/jit/serialization/source_range_serialization_impl.h' 2025-06-01T21:23:38.4056115Z adding 'torch/include/torch/csrc/jit/serialization/storage_context.h' 2025-06-01T21:23:38.4059685Z adding 'torch/include/torch/csrc/jit/serialization/type_name_uniquer.h' 2025-06-01T21:23:38.4064677Z adding 'torch/include/torch/csrc/jit/serialization/unpickler.h' 2025-06-01T21:23:38.4071046Z adding 'torch/include/torch/csrc/jit/tensorexpr/analysis.h' 2025-06-01T21:23:38.4075498Z adding 'torch/include/torch/csrc/jit/tensorexpr/block_codegen.h' 2025-06-01T21:23:38.4078931Z adding 'torch/include/torch/csrc/jit/tensorexpr/bounds_inference.h' 2025-06-01T21:23:38.4083194Z adding 'torch/include/torch/csrc/jit/tensorexpr/bounds_overlap.h' 2025-06-01T21:23:38.4088172Z adding 'torch/include/torch/csrc/jit/tensorexpr/codegen.h' 2025-06-01T21:23:38.4092037Z adding 'torch/include/torch/csrc/jit/tensorexpr/cpp_codegen.h' 2025-06-01T21:23:38.4095270Z adding 'torch/include/torch/csrc/jit/tensorexpr/cpp_intrinsics.h' 2025-06-01T21:23:38.4100062Z adding 'torch/include/torch/csrc/jit/tensorexpr/cuda_codegen.h' 2025-06-01T21:23:38.4104149Z adding 'torch/include/torch/csrc/jit/tensorexpr/cuda_random.h' 2025-06-01T21:23:38.4109289Z adding 'torch/include/torch/csrc/jit/tensorexpr/eval.h' 2025-06-01T21:23:38.4112999Z adding 'torch/include/torch/csrc/jit/tensorexpr/exceptions.h' 2025-06-01T21:23:38.4119124Z adding 'torch/include/torch/csrc/jit/tensorexpr/expr.h' 2025-06-01T21:23:38.4130075Z adding 'torch/include/torch/csrc/jit/tensorexpr/external_functions.h' 2025-06-01T21:23:38.4133491Z adding 'torch/include/torch/csrc/jit/tensorexpr/external_functions_core.h' 2025-06-01T21:23:38.4137163Z adding 'torch/include/torch/csrc/jit/tensorexpr/external_functions_registry.h' 2025-06-01T21:23:38.4140932Z adding 'torch/include/torch/csrc/jit/tensorexpr/fwd_decls.h' 2025-06-01T21:23:38.4145221Z adding 'torch/include/torch/csrc/jit/tensorexpr/graph_opt.h' 2025-06-01T21:23:38.4149632Z adding 'torch/include/torch/csrc/jit/tensorexpr/half_support.h' 2025-06-01T21:23:38.4154449Z adding 'torch/include/torch/csrc/jit/tensorexpr/hash_provider.h' 2025-06-01T21:23:38.4157743Z adding 'torch/include/torch/csrc/jit/tensorexpr/intrinsic_symbols.h' 2025-06-01T21:23:38.4165609Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir.h' 2025-06-01T21:23:38.4169659Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_cloner.h' 2025-06-01T21:23:38.4173182Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_mutator.h' 2025-06-01T21:23:38.4176956Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_printer.h' 2025-06-01T21:23:38.4183943Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_simplifier.h' 2025-06-01T21:23:38.4187518Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_verifier.h' 2025-06-01T21:23:38.4190959Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_visitor.h' 2025-06-01T21:23:38.4197430Z adding 'torch/include/torch/csrc/jit/tensorexpr/kernel.h' 2025-06-01T21:23:38.4201761Z adding 'torch/include/torch/csrc/jit/tensorexpr/llvm_codegen.h' 2025-06-01T21:23:38.4205770Z adding 'torch/include/torch/csrc/jit/tensorexpr/llvm_jit.h' 2025-06-01T21:23:38.4215226Z adding 'torch/include/torch/csrc/jit/tensorexpr/loopnest.h' 2025-06-01T21:23:38.4218697Z adding 'torch/include/torch/csrc/jit/tensorexpr/loopnest_randomization.h' 2025-06-01T21:23:38.4221839Z adding 'torch/include/torch/csrc/jit/tensorexpr/lowerings.h' 2025-06-01T21:23:38.4228681Z adding 'torch/include/torch/csrc/jit/tensorexpr/mem_dependency_checker.h' 2025-06-01T21:23:38.4233781Z adding 'torch/include/torch/csrc/jit/tensorexpr/reduction.h' 2025-06-01T21:23:38.4240617Z adding 'torch/include/torch/csrc/jit/tensorexpr/registerizer.h' 2025-06-01T21:23:38.4249303Z adding 'torch/include/torch/csrc/jit/tensorexpr/stmt.h' 2025-06-01T21:23:38.4254508Z adding 'torch/include/torch/csrc/jit/tensorexpr/tensor.h' 2025-06-01T21:23:38.4257844Z adding 'torch/include/torch/csrc/jit/tensorexpr/tensorexpr_init.h' 2025-06-01T21:23:38.4261767Z adding 'torch/include/torch/csrc/jit/tensorexpr/types.h' 2025-06-01T21:23:38.4265228Z adding 'torch/include/torch/csrc/jit/tensorexpr/unique_name_manager.h' 2025-06-01T21:23:38.4268560Z adding 'torch/include/torch/csrc/jit/tensorexpr/var_substitutor.h' 2025-06-01T21:23:38.4273052Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/conv2d.h' 2025-06-01T21:23:38.4276099Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/matmul.h' 2025-06-01T21:23:38.4279457Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/misc.h' 2025-06-01T21:23:38.4282534Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/norm.h' 2025-06-01T21:23:38.4285451Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/operators.h' 2025-06-01T21:23:38.4288657Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/pointwise.h' 2025-06-01T21:23:38.4292071Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/quantization.h' 2025-06-01T21:23:38.4295209Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/reduction.h' 2025-06-01T21:23:38.4298109Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/softmax.h' 2025-06-01T21:23:38.4301823Z adding 'torch/include/torch/csrc/jit/testing/catch_utils.hpp' 2025-06-01T21:23:38.4305392Z adding 'torch/include/torch/csrc/jit/testing/file_check.h' 2025-06-01T21:23:38.4308527Z adding 'torch/include/torch/csrc/jit/testing/hooks_for_testing.h' 2025-06-01T21:23:38.4313262Z adding 'torch/include/torch/csrc/lazy/backend/backend_data.h' 2025-06-01T21:23:38.4316912Z adding 'torch/include/torch/csrc/lazy/backend/backend_device.h' 2025-06-01T21:23:38.4321062Z adding 'torch/include/torch/csrc/lazy/backend/backend_interface.h' 2025-06-01T21:23:38.4324874Z adding 'torch/include/torch/csrc/lazy/backend/lowering_context.h' 2025-06-01T21:23:38.4331413Z adding 'torch/include/torch/csrc/lazy/core/cache.h' 2025-06-01T21:23:38.4335825Z adding 'torch/include/torch/csrc/lazy/core/config.h' 2025-06-01T21:23:38.4339913Z adding 'torch/include/torch/csrc/lazy/core/debug_util.h' 2025-06-01T21:23:38.4343234Z adding 'torch/include/torch/csrc/lazy/core/dynamic_ir.h' 2025-06-01T21:23:38.4347849Z adding 'torch/include/torch/csrc/lazy/core/hash.h' 2025-06-01T21:23:38.4351604Z adding 'torch/include/torch/csrc/lazy/core/helpers.h' 2025-06-01T21:23:38.4356666Z adding 'torch/include/torch/csrc/lazy/core/ir.h' 2025-06-01T21:23:38.4360780Z adding 'torch/include/torch/csrc/lazy/core/ir_builder.h' 2025-06-01T21:23:38.4364069Z adding 'torch/include/torch/csrc/lazy/core/ir_dump_util.h' 2025-06-01T21:23:38.4367282Z adding 'torch/include/torch/csrc/lazy/core/ir_metadata.h' 2025-06-01T21:23:38.4370551Z adding 'torch/include/torch/csrc/lazy/core/ir_util.h' 2025-06-01T21:23:38.4377010Z adding 'torch/include/torch/csrc/lazy/core/lazy_graph_executor.h' 2025-06-01T21:23:38.4382220Z adding 'torch/include/torch/csrc/lazy/core/metrics.h' 2025-06-01T21:23:38.4386043Z adding 'torch/include/torch/csrc/lazy/core/multi_wait.h' 2025-06-01T21:23:38.4390444Z adding 'torch/include/torch/csrc/lazy/core/permutation_util.h' 2025-06-01T21:23:38.4393995Z adding 'torch/include/torch/csrc/lazy/core/shape.h' 2025-06-01T21:23:38.4399058Z adding 'torch/include/torch/csrc/lazy/core/shape_inference.h' 2025-06-01T21:23:38.4404829Z adding 'torch/include/torch/csrc/lazy/core/tensor.h' 2025-06-01T21:23:38.4408444Z adding 'torch/include/torch/csrc/lazy/core/tensor_impl.h' 2025-06-01T21:23:38.4412023Z adding 'torch/include/torch/csrc/lazy/core/tensor_util.h' 2025-06-01T21:23:38.4415248Z adding 'torch/include/torch/csrc/lazy/core/thread_pool.h' 2025-06-01T21:23:38.4418799Z adding 'torch/include/torch/csrc/lazy/core/trie.h' 2025-06-01T21:23:38.4422070Z adding 'torch/include/torch/csrc/lazy/core/unique.h' 2025-06-01T21:23:38.4425842Z adding 'torch/include/torch/csrc/lazy/core/util.h' 2025-06-01T21:23:38.4429926Z adding 'torch/include/torch/csrc/lazy/core/internal_ops/ltc_ops.h' 2025-06-01T21:23:38.4433683Z adding 'torch/include/torch/csrc/lazy/core/ops/arithmetic_ir_ops.h' 2025-06-01T21:23:38.4437153Z adding 'torch/include/torch/csrc/lazy/core/ops/utils.h' 2025-06-01T21:23:38.4472048Z adding 'torch/include/torch/csrc/lazy/generated/LazyIr.h' 2025-06-01T21:23:38.4484806Z adding 'torch/include/torch/csrc/lazy/generated/LazyNativeFunctions.h' 2025-06-01T21:23:38.4489063Z adding 'torch/include/torch/csrc/lazy/generated/LazyNonNativeIr.h' 2025-06-01T21:23:38.4492832Z adding 'torch/include/torch/csrc/lazy/python/init.h' 2025-06-01T21:23:38.4495851Z adding 'torch/include/torch/csrc/lazy/python/python_util.h' 2025-06-01T21:23:38.4499651Z adding 'torch/include/torch/csrc/lazy/ts_backend/config.h' 2025-06-01T21:23:38.4503065Z adding 'torch/include/torch/csrc/lazy/ts_backend/dynamic_ir.h' 2025-06-01T21:23:38.4506641Z adding 'torch/include/torch/csrc/lazy/ts_backend/ir_builder.h' 2025-06-01T21:23:38.4509706Z adding 'torch/include/torch/csrc/lazy/ts_backend/tensor_aten_ops.h' 2025-06-01T21:23:38.4512768Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_autograd_functions.h' 2025-06-01T21:23:38.4515937Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_backend_impl.h' 2025-06-01T21:23:38.4519174Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_eager_fallback.h' 2025-06-01T21:23:38.4523225Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_lowering_context.h' 2025-06-01T21:23:38.4527183Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_node.h' 2025-06-01T21:23:38.4530530Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_node_lowering.h' 2025-06-01T21:23:38.4534589Z adding 'torch/include/torch/csrc/lazy/ts_backend/ops/device_data.h' 2025-06-01T21:23:38.4538019Z adding 'torch/include/torch/csrc/lazy/ts_backend/ops/generic.h' 2025-06-01T21:23:38.4541961Z adding 'torch/include/torch/csrc/lazy/ts_backend/ops/to_copy.h' 2025-06-01T21:23:38.4547853Z adding 'torch/include/torch/csrc/monitor/counters.h' 2025-06-01T21:23:38.4551807Z adding 'torch/include/torch/csrc/monitor/events.h' 2025-06-01T21:23:38.4554947Z adding 'torch/include/torch/csrc/monitor/python_init.h' 2025-06-01T21:23:38.4558655Z adding 'torch/include/torch/csrc/mps/Module.h' 2025-06-01T21:23:38.4562300Z adding 'torch/include/torch/csrc/mtia/Module.h' 2025-06-01T21:23:38.4566376Z adding 'torch/include/torch/csrc/mtia/profiler/MTIAMemoryProfiler.h' 2025-06-01T21:23:38.4570096Z adding 'torch/include/torch/csrc/multiprocessing/init.h' 2025-06-01T21:23:38.4573931Z adding 'torch/include/torch/csrc/onnx/back_compat.h' 2025-06-01T21:23:38.4577004Z adding 'torch/include/torch/csrc/onnx/init.h' 2025-06-01T21:23:38.4580065Z adding 'torch/include/torch/csrc/onnx/onnx.h' 2025-06-01T21:23:38.4584300Z adding 'torch/include/torch/csrc/profiler/api.h' 2025-06-01T21:23:38.4592560Z adding 'torch/include/torch/csrc/profiler/collection.h' 2025-06-01T21:23:38.4596655Z adding 'torch/include/torch/csrc/profiler/combined_traceback.h' 2025-06-01T21:23:38.4601387Z adding 'torch/include/torch/csrc/profiler/containers.h' 2025-06-01T21:23:38.4605611Z adding 'torch/include/torch/csrc/profiler/data_flow.h' 2025-06-01T21:23:38.4608933Z adding 'torch/include/torch/csrc/profiler/events.h' 2025-06-01T21:23:38.4612110Z adding 'torch/include/torch/csrc/profiler/kineto_client_interface.h' 2025-06-01T21:23:38.4616028Z adding 'torch/include/torch/csrc/profiler/kineto_shim.h' 2025-06-01T21:23:38.4619275Z adding 'torch/include/torch/csrc/profiler/perf-inl.h' 2025-06-01T21:23:38.4623011Z adding 'torch/include/torch/csrc/profiler/perf.h' 2025-06-01T21:23:38.4628091Z adding 'torch/include/torch/csrc/profiler/util.h' 2025-06-01T21:23:38.4633780Z adding 'torch/include/torch/csrc/profiler/orchestration/observer.h' 2025-06-01T21:23:38.4637638Z adding 'torch/include/torch/csrc/profiler/orchestration/python_tracer.h' 2025-06-01T21:23:38.4640865Z adding 'torch/include/torch/csrc/profiler/orchestration/vulkan.h' 2025-06-01T21:23:38.4644981Z adding 'torch/include/torch/csrc/profiler/python/combined_traceback.h' 2025-06-01T21:23:38.4648104Z adding 'torch/include/torch/csrc/profiler/python/init.h' 2025-06-01T21:23:38.4651505Z adding 'torch/include/torch/csrc/profiler/python/pybind.h' 2025-06-01T21:23:38.4655595Z adding 'torch/include/torch/csrc/profiler/standalone/execution_trace_observer.h' 2025-06-01T21:23:38.4658479Z adding 'torch/include/torch/csrc/profiler/standalone/itt_observer.h' 2025-06-01T21:23:38.4662078Z adding 'torch/include/torch/csrc/profiler/standalone/nvtx_observer.h' 2025-06-01T21:23:38.4664858Z adding 'torch/include/torch/csrc/profiler/standalone/privateuse1_observer.h' 2025-06-01T21:23:38.4668984Z adding 'torch/include/torch/csrc/profiler/stubs/base.h' 2025-06-01T21:23:38.4673418Z adding 'torch/include/torch/csrc/profiler/unwind/action.h' 2025-06-01T21:23:38.4676884Z adding 'torch/include/torch/csrc/profiler/unwind/communicate.h' 2025-06-01T21:23:38.4681805Z adding 'torch/include/torch/csrc/profiler/unwind/debug_info.h' 2025-06-01T21:23:38.4685450Z adding 'torch/include/torch/csrc/profiler/unwind/dwarf_enums.h' 2025-06-01T21:23:38.4689579Z adding 'torch/include/torch/csrc/profiler/unwind/dwarf_symbolize_enums.h' 2025-06-01T21:23:38.4693203Z adding 'torch/include/torch/csrc/profiler/unwind/eh_frame_hdr.h' 2025-06-01T21:23:38.4697145Z adding 'torch/include/torch/csrc/profiler/unwind/fast_symbolizer.h' 2025-06-01T21:23:38.4702870Z adding 'torch/include/torch/csrc/profiler/unwind/fde.h' 2025-06-01T21:23:38.4707901Z adding 'torch/include/torch/csrc/profiler/unwind/lexer.h' 2025-06-01T21:23:38.4713644Z adding 'torch/include/torch/csrc/profiler/unwind/line_number_program.h' 2025-06-01T21:23:38.4718622Z adding 'torch/include/torch/csrc/profiler/unwind/mem_file.h' 2025-06-01T21:23:38.4722697Z adding 'torch/include/torch/csrc/profiler/unwind/range_table.h' 2025-06-01T21:23:38.4726862Z adding 'torch/include/torch/csrc/profiler/unwind/sections.h' 2025-06-01T21:23:38.4730318Z adding 'torch/include/torch/csrc/profiler/unwind/unwind.h' 2025-06-01T21:23:38.4733632Z adding 'torch/include/torch/csrc/profiler/unwind/unwind_error.h' 2025-06-01T21:23:38.4737314Z adding 'torch/include/torch/csrc/profiler/unwind/unwinder.h' 2025-06-01T21:23:38.4743712Z adding 'torch/include/torch/csrc/stable/library.h' 2025-06-01T21:23:38.4748137Z adding 'torch/include/torch/csrc/tensor/python_tensor.h' 2025-06-01T21:23:38.4753441Z adding 'torch/include/torch/csrc/utils/byte_order.h' 2025-06-01T21:23:38.4756488Z adding 'torch/include/torch/csrc/utils/cpp_stacktraces.h' 2025-06-01T21:23:38.4759443Z adding 'torch/include/torch/csrc/utils/cuda_enabled.h' 2025-06-01T21:23:38.4763018Z adding 'torch/include/torch/csrc/utils/device_lazy_init.h' 2025-06-01T21:23:38.4766396Z adding 'torch/include/torch/csrc/utils/disable_torch_function.h' 2025-06-01T21:23:38.4788854Z adding 'torch/include/torch/csrc/utils/generated_serialization_types.h' 2025-06-01T21:23:38.4794449Z adding 'torch/include/torch/csrc/utils/init.h' 2025-06-01T21:23:38.4797524Z adding 'torch/include/torch/csrc/utils/invalid_arguments.h' 2025-06-01T21:23:38.4800448Z adding 'torch/include/torch/csrc/utils/nested.h' 2025-06-01T21:23:38.4803807Z adding 'torch/include/torch/csrc/utils/numpy_stub.h' 2025-06-01T21:23:38.4806997Z adding 'torch/include/torch/csrc/utils/object_ptr.h' 2025-06-01T21:23:38.4810041Z adding 'torch/include/torch/csrc/utils/out_types.h' 2025-06-01T21:23:38.4815677Z adding 'torch/include/torch/csrc/utils/pybind.h' 2025-06-01T21:23:38.4818996Z adding 'torch/include/torch/csrc/utils/pycfunction_helpers.h' 2025-06-01T21:23:38.4821893Z adding 'torch/include/torch/csrc/utils/pyobject_preservation.h' 2025-06-01T21:23:38.4835326Z adding 'torch/include/torch/csrc/utils/python_arg_parser.h' 2025-06-01T21:23:38.4839554Z adding 'torch/include/torch/csrc/utils/python_compat.h' 2025-06-01T21:23:38.4842567Z adding 'torch/include/torch/csrc/utils/python_dispatch.h' 2025-06-01T21:23:38.4846961Z adding 'torch/include/torch/csrc/utils/python_numbers.h' 2025-06-01T21:23:38.4850353Z adding 'torch/include/torch/csrc/utils/python_raii.h' 2025-06-01T21:23:38.4854346Z adding 'torch/include/torch/csrc/utils/python_scalars.h' 2025-06-01T21:23:38.4858424Z adding 'torch/include/torch/csrc/utils/python_strings.h' 2025-06-01T21:23:38.4861410Z adding 'torch/include/torch/csrc/utils/python_stub.h' 2025-06-01T21:23:38.4865932Z adding 'torch/include/torch/csrc/utils/python_symnode.h' 2025-06-01T21:23:38.4869374Z adding 'torch/include/torch/csrc/utils/python_torch_function_mode.h' 2025-06-01T21:23:38.4873024Z adding 'torch/include/torch/csrc/utils/python_tuples.h' 2025-06-01T21:23:38.4885338Z adding 'torch/include/torch/csrc/utils/pythoncapi_compat.h' 2025-06-01T21:23:38.4890062Z adding 'torch/include/torch/csrc/utils/schema_info.h' 2025-06-01T21:23:38.4893469Z adding 'torch/include/torch/csrc/utils/six.h' 2025-06-01T21:23:38.4896427Z adding 'torch/include/torch/csrc/utils/structseq.h' 2025-06-01T21:23:38.4899382Z adding 'torch/include/torch/csrc/utils/tensor_apply.h' 2025-06-01T21:23:38.4902253Z adding 'torch/include/torch/csrc/utils/tensor_dtypes.h' 2025-06-01T21:23:38.4905847Z adding 'torch/include/torch/csrc/utils/tensor_flatten.h' 2025-06-01T21:23:38.4908750Z adding 'torch/include/torch/csrc/utils/tensor_layouts.h' 2025-06-01T21:23:38.4911607Z adding 'torch/include/torch/csrc/utils/tensor_list.h' 2025-06-01T21:23:38.4914527Z adding 'torch/include/torch/csrc/utils/tensor_memoryformats.h' 2025-06-01T21:23:38.4917991Z adding 'torch/include/torch/csrc/utils/tensor_new.h' 2025-06-01T21:23:38.4921169Z adding 'torch/include/torch/csrc/utils/tensor_numpy.h' 2025-06-01T21:23:38.4924056Z adding 'torch/include/torch/csrc/utils/tensor_qschemes.h' 2025-06-01T21:23:38.4927067Z adding 'torch/include/torch/csrc/utils/tensor_types.h' 2025-06-01T21:23:38.4931568Z adding 'torch/include/torch/csrc/utils/throughput_benchmark-inl.h' 2025-06-01T21:23:38.4936722Z adding 'torch/include/torch/csrc/utils/throughput_benchmark.h' 2025-06-01T21:23:38.4939942Z adding 'torch/include/torch/csrc/utils/torch_dispatch_mode.h' 2025-06-01T21:23:38.4943721Z adding 'torch/include/torch/csrc/utils/variadic.h' 2025-06-01T21:23:38.4946795Z adding 'torch/include/torch/csrc/utils/verbose.h' 2025-06-01T21:23:38.4950542Z adding 'torch/include/torch/csrc/xpu/Event.h' 2025-06-01T21:23:38.4953455Z adding 'torch/include/torch/csrc/xpu/Module.h' 2025-06-01T21:23:38.4956421Z adding 'torch/include/torch/csrc/xpu/Stream.h' 2025-06-01T21:23:38.4962967Z adding 'torch/jit/__init__.py' 2025-06-01T21:23:38.4967072Z adding 'torch/jit/_async.py' 2025-06-01T21:23:38.4970829Z adding 'torch/jit/_await.py' 2025-06-01T21:23:38.4975328Z adding 'torch/jit/_builtins.py' 2025-06-01T21:23:38.4980705Z adding 'torch/jit/_check.py' 2025-06-01T21:23:38.4985723Z adding 'torch/jit/_dataclass_impls.py' 2025-06-01T21:23:38.4988902Z adding 'torch/jit/_decomposition_utils.py' 2025-06-01T21:23:38.4992960Z adding 'torch/jit/_decompositions.py' 2025-06-01T21:23:38.5006891Z adding 'torch/jit/_freeze.py' 2025-06-01T21:23:38.5007245Z adding 'torch/jit/_fuser.py' 2025-06-01T21:23:38.5007503Z adding 'torch/jit/_ir_utils.py' 2025-06-01T21:23:38.5009419Z adding 'torch/jit/_logging.py' 2025-06-01T21:23:38.5014145Z adding 'torch/jit/_monkeytype_config.py' 2025-06-01T21:23:38.5017515Z adding 'torch/jit/_pickle.py' 2025-06-01T21:23:38.5034018Z adding 'torch/jit/_recursive.py' 2025-06-01T21:23:38.5060447Z adding 'torch/jit/_script.py' 2025-06-01T21:23:38.5067021Z adding 'torch/jit/_script.pyi' 2025-06-01T21:23:38.5072448Z adding 'torch/jit/_serialization.py' 2025-06-01T21:23:38.5088364Z adding 'torch/jit/_shape_functions.py' 2025-06-01T21:23:38.5093298Z adding 'torch/jit/_state.py' 2025-06-01T21:23:38.5113977Z adding 'torch/jit/_trace.py' 2025-06-01T21:23:38.5123510Z adding 'torch/jit/annotations.py' 2025-06-01T21:23:38.5140417Z adding 'torch/jit/frontend.py' 2025-06-01T21:23:38.5144526Z adding 'torch/jit/generate_bytecode.py' 2025-06-01T21:23:38.5147891Z adding 'torch/jit/quantized.py' 2025-06-01T21:23:38.5153553Z adding 'torch/jit/supported_ops.py' 2025-06-01T21:23:38.5157441Z adding 'torch/jit/unsupported_tensor_ops.py' 2025-06-01T21:23:38.5161071Z adding 'torch/jit/_passes/__init__.py' 2025-06-01T21:23:38.5164493Z adding 'torch/jit/_passes/_property_propagation.py' 2025-06-01T21:23:38.5169666Z adding 'torch/jit/mobile/__init__.py' 2025-06-01T21:23:38.6086365Z adding 'torch/lib/XNNPACK.lib' 2025-06-01T21:23:38.6150539Z adding 'torch/lib/_C.lib' 2025-06-01T21:23:38.6260142Z adding 'torch/lib/aoti_custom_ops.dll' 2025-06-01T21:23:38.6274127Z adding 'torch/lib/aoti_custom_ops.lib' 2025-06-01T21:23:38.6492416Z adding 'torch/lib/asmjit.dll' 2025-06-01T21:23:38.6527454Z adding 'torch/lib/asmjit.lib' 2025-06-01T21:23:38.6634361Z adding 'torch/lib/backend_with_compiler.dll' 2025-06-01T21:23:38.6647894Z adding 'torch/lib/backend_with_compiler.lib' 2025-06-01T21:23:38.7114084Z adding 'torch/lib/c10.dll' 2025-06-01T21:23:38.7293058Z adding 'torch/lib/c10.lib' 2025-06-01T21:23:38.7357674Z adding 'torch/lib/cpuinfo.lib' 2025-06-01T21:23:54.6516725Z adding 'torch/lib/dnnl.lib' 2025-06-01T21:23:56.4001567Z adding 'torch/lib/fbgemm.dll' 2025-06-01T21:23:56.4517702Z adding 'torch/lib/fbgemm.lib' 2025-06-01T21:23:56.4949196Z adding 'torch/lib/fmt.lib' 2025-06-01T21:23:56.5062723Z adding 'torch/lib/jitbackend_test.dll' 2025-06-01T21:23:56.5074828Z adding 'torch/lib/jitbackend_test.lib' 2025-06-01T21:23:57.0233681Z adding 'torch/lib/kineto.lib' 2025-06-01T21:23:57.0798989Z adding 'torch/lib/libittnotify.lib' 2025-06-01T21:23:57.2221443Z adding 'torch/lib/libprotobuf-lite.lib' 2025-06-01T21:23:58.0881398Z adding 'torch/lib/libprotobuf.lib' 2025-06-01T21:23:59.0877023Z adding 'torch/lib/libprotoc.lib' 2025-06-01T21:23:59.2715656Z adding 'torch/lib/microkernels-prod.lib' 2025-06-01T21:23:59.2855521Z adding 'torch/lib/pthreadpool.lib' 2025-06-01T21:23:59.2868132Z adding 'torch/lib/shm.dll' 2025-06-01T21:23:59.2872564Z adding 'torch/lib/shm.lib' 2025-06-01T21:23:59.6499056Z adding 'torch/lib/sleef.lib' 2025-06-01T21:23:59.6704287Z adding 'torch/lib/torch.dll' 2025-06-01T21:23:59.6708179Z adding 'torch/lib/torch.lib' 2025-06-01T21:24:05.4079428Z adding 'torch/lib/torch_cpu.dll' 2025-06-01T21:24:06.2254654Z adding 'torch/lib/torch_cpu.lib' 2025-06-01T21:24:06.2910388Z adding 'torch/lib/torch_global_deps.dll' 2025-06-01T21:24:07.0012648Z adding 'torch/lib/torch_python.dll' 2025-06-01T21:24:07.0432077Z adding 'torch/lib/torch_python.lib' 2025-06-01T21:24:07.0647918Z adding 'torch/lib/torchbind_test.dll' 2025-06-01T21:24:07.0668005Z adding 'torch/lib/torchbind_test.lib' 2025-06-01T21:24:07.0672987Z adding 'torch/lib/libshm/alloc_info.h' 2025-06-01T21:24:07.0676283Z adding 'torch/lib/libshm/err.h' 2025-06-01T21:24:07.0679482Z adding 'torch/lib/libshm/libshm.h' 2025-06-01T21:24:07.0683383Z adding 'torch/lib/libshm/socket.h' 2025-06-01T21:24:07.0687445Z adding 'torch/lib/libshm_windows/libshm.h' 2025-06-01T21:24:07.0723015Z adding 'torch/linalg/__init__.py' 2025-06-01T21:24:07.0729604Z adding 'torch/masked/__init__.py' 2025-06-01T21:24:07.0736953Z adding 'torch/masked/_docs.py' 2025-06-01T21:24:07.0758834Z adding 'torch/masked/_ops.py' 2025-06-01T21:24:07.0764308Z adding 'torch/masked/maskedtensor/__init__.py' 2025-06-01T21:24:07.0770365Z adding 'torch/masked/maskedtensor/_ops_refs.py' 2025-06-01T21:24:07.0774974Z adding 'torch/masked/maskedtensor/binary.py' 2025-06-01T21:24:07.0781131Z adding 'torch/masked/maskedtensor/core.py' 2025-06-01T21:24:07.0784899Z adding 'torch/masked/maskedtensor/creation.py' 2025-06-01T21:24:07.0788061Z adding 'torch/masked/maskedtensor/passthrough.py' 2025-06-01T21:24:07.0792319Z adding 'torch/masked/maskedtensor/reductions.py' 2025-06-01T21:24:07.0796806Z adding 'torch/masked/maskedtensor/unary.py' 2025-06-01T21:24:07.0800657Z adding 'torch/monitor/__init__.py' 2025-06-01T21:24:07.0805854Z adding 'torch/mps/__init__.py' 2025-06-01T21:24:07.0809364Z adding 'torch/mps/event.py' 2025-06-01T21:24:07.0812957Z adding 'torch/mps/profiler.py' 2025-06-01T21:24:07.0820430Z adding 'torch/mtia/__init__.py' 2025-06-01T21:24:07.0823881Z adding 'torch/mtia/_utils.py' 2025-06-01T21:24:07.0827286Z adding 'torch/mtia/memory.py' 2025-06-01T21:24:07.0831835Z adding 'torch/multiprocessing/__init__.py' 2025-06-01T21:24:07.0835070Z adding 'torch/multiprocessing/_atfork.py' 2025-06-01T21:24:07.0838348Z adding 'torch/multiprocessing/pool.py' 2025-06-01T21:24:07.0841630Z adding 'torch/multiprocessing/queue.py' 2025-06-01T21:24:07.0850437Z adding 'torch/multiprocessing/reductions.py' 2025-06-01T21:24:07.0858125Z adding 'torch/multiprocessing/spawn.py' 2025-06-01T21:24:07.0867012Z adding 'torch/nested/__init__.py' 2025-06-01T21:24:07.0871364Z adding 'torch/nested/_internal/__init__.py' 2025-06-01T21:24:07.0874911Z adding 'torch/nested/_internal/nested_int.py' 2025-06-01T21:24:07.0884268Z adding 'torch/nested/_internal/nested_tensor.py' 2025-06-01T21:24:07.0913886Z adding 'torch/nested/_internal/ops.py' 2025-06-01T21:24:07.0928110Z adding 'torch/nested/_internal/sdpa.py' 2025-06-01T21:24:07.0933738Z adding 'torch/nn/__init__.py' 2025-06-01T21:24:07.0937175Z adding 'torch/nn/_reduction.py' 2025-06-01T21:24:07.0940643Z adding 'torch/nn/common_types.py' 2025-06-01T21:24:07.0944280Z adding 'torch/nn/cpp.py' 2025-06-01T21:24:07.1015888Z adding 'torch/nn/functional.py' 2025-06-01T21:24:07.1029405Z adding 'torch/nn/functional.pyi' 2025-06-01T21:24:07.1034438Z adding 'torch/nn/grad.py' 2025-06-01T21:24:07.1049693Z adding 'torch/nn/init.py' 2025-06-01T21:24:07.1056594Z adding 'torch/nn/parameter.py' 2025-06-01T21:24:07.1069597Z adding 'torch/nn/parameter.pyi' 2025-06-01T21:24:07.1069941Z adding 'torch/nn/attention/__init__.py' 2025-06-01T21:24:07.1070238Z adding 'torch/nn/attention/_utils.py' 2025-06-01T21:24:07.1075931Z adding 'torch/nn/attention/bias.py' 2025-06-01T21:24:07.1096212Z adding 'torch/nn/attention/flex_attention.py' 2025-06-01T21:24:07.1101398Z adding 'torch/nn/attention/experimental/__init__.py' 2025-06-01T21:24:07.1107161Z adding 'torch/nn/attention/experimental/_paged_attention.py' 2025-06-01T21:24:07.1111135Z adding 'torch/nn/backends/__init__.py' 2025-06-01T21:24:07.1114951Z adding 'torch/nn/backends/thnn.py' 2025-06-01T21:24:07.1117913Z adding 'torch/nn/intrinsic/__init__.py' 2025-06-01T21:24:07.1121802Z adding 'torch/nn/intrinsic/modules/__init__.py' 2025-06-01T21:24:07.1124772Z adding 'torch/nn/intrinsic/modules/fused.py' 2025-06-01T21:24:07.1128464Z adding 'torch/nn/intrinsic/qat/__init__.py' 2025-06-01T21:24:07.1132388Z adding 'torch/nn/intrinsic/qat/modules/__init__.py' 2025-06-01T21:24:07.1135526Z adding 'torch/nn/intrinsic/qat/modules/conv_fused.py' 2025-06-01T21:24:07.1138653Z adding 'torch/nn/intrinsic/qat/modules/linear_fused.py' 2025-06-01T21:24:07.1141623Z adding 'torch/nn/intrinsic/qat/modules/linear_relu.py' 2025-06-01T21:24:07.1145574Z adding 'torch/nn/intrinsic/quantized/__init__.py' 2025-06-01T21:24:07.1149402Z adding 'torch/nn/intrinsic/quantized/dynamic/__init__.py' 2025-06-01T21:24:07.1152926Z adding 'torch/nn/intrinsic/quantized/dynamic/modules/__init__.py' 2025-06-01T21:24:07.1155968Z adding 'torch/nn/intrinsic/quantized/dynamic/modules/linear_relu.py' 2025-06-01T21:24:07.1160565Z adding 'torch/nn/intrinsic/quantized/modules/__init__.py' 2025-06-01T21:24:07.1162621Z adding 'torch/nn/intrinsic/quantized/modules/bn_relu.py' 2025-06-01T21:24:07.1166409Z adding 'torch/nn/intrinsic/quantized/modules/conv_relu.py' 2025-06-01T21:24:07.1168497Z adding 'torch/nn/intrinsic/quantized/modules/linear_relu.py' 2025-06-01T21:24:07.1173723Z adding 'torch/nn/modules/__init__.py' 2025-06-01T21:24:07.1179644Z adding 'torch/nn/modules/_functions.py' 2025-06-01T21:24:07.1196819Z adding 'torch/nn/modules/activation.py' 2025-06-01T21:24:07.1204279Z adding 'torch/nn/modules/adaptive.py' 2025-06-01T21:24:07.1214706Z adding 'torch/nn/modules/batchnorm.py' 2025-06-01T21:24:07.1219073Z adding 'torch/nn/modules/channelshuffle.py' 2025-06-01T21:24:07.1231085Z adding 'torch/nn/modules/container.py' 2025-06-01T21:24:07.1248072Z adding 'torch/nn/modules/conv.py' 2025-06-01T21:24:07.1253611Z adding 'torch/nn/modules/distance.py' 2025-06-01T21:24:07.1258477Z adding 'torch/nn/modules/dropout.py' 2025-06-01T21:24:07.1263480Z adding 'torch/nn/modules/flatten.py' 2025-06-01T21:24:07.1269213Z adding 'torch/nn/modules/fold.py' 2025-06-01T21:24:07.1274962Z adding 'torch/nn/modules/instancenorm.py' 2025-06-01T21:24:07.1281363Z adding 'torch/nn/modules/lazy.py' 2025-06-01T21:24:07.1286915Z adding 'torch/nn/modules/linear.py' 2025-06-01T21:24:07.1312915Z adding 'torch/nn/modules/loss.py' 2025-06-01T21:24:07.1355590Z adding 'torch/nn/modules/module.py' 2025-06-01T21:24:07.1363060Z adding 'torch/nn/modules/normalization.py' 2025-06-01T21:24:07.1369485Z adding 'torch/nn/modules/padding.py' 2025-06-01T21:24:07.1373842Z adding 'torch/nn/modules/pixelshuffle.py' 2025-06-01T21:24:07.1386235Z adding 'torch/nn/modules/pooling.py' 2025-06-01T21:24:07.1405695Z adding 'torch/nn/modules/rnn.py' 2025-06-01T21:24:07.1415002Z adding 'torch/nn/modules/sparse.py' 2025-06-01T21:24:07.1429593Z adding 'torch/nn/modules/transformer.py' 2025-06-01T21:24:07.1436163Z adding 'torch/nn/modules/upsampling.py' 2025-06-01T21:24:07.1440413Z adding 'torch/nn/modules/utils.py' 2025-06-01T21:24:07.1444252Z adding 'torch/nn/parallel/__init__.py' 2025-06-01T21:24:07.1448415Z adding 'torch/nn/parallel/_functions.py' 2025-06-01T21:24:07.1453994Z adding 'torch/nn/parallel/comm.py' 2025-06-01T21:24:07.1460332Z adding 'torch/nn/parallel/data_parallel.py' 2025-06-01T21:24:07.1505212Z adding 'torch/nn/parallel/distributed.py' 2025-06-01T21:24:07.1519938Z adding 'torch/nn/parallel/parallel_apply.py' 2025-06-01T21:24:07.1520301Z adding 'torch/nn/parallel/replicate.py' 2025-06-01T21:24:07.1520599Z adding 'torch/nn/parallel/scatter_gather.py' 2025-06-01T21:24:07.1524240Z adding 'torch/nn/qat/__init__.py' 2025-06-01T21:24:07.1527746Z adding 'torch/nn/qat/dynamic/__init__.py' 2025-06-01T21:24:07.1531311Z adding 'torch/nn/qat/dynamic/modules/__init__.py' 2025-06-01T21:24:07.1534725Z adding 'torch/nn/qat/dynamic/modules/linear.py' 2025-06-01T21:24:07.1538407Z adding 'torch/nn/qat/modules/__init__.py' 2025-06-01T21:24:07.1541348Z adding 'torch/nn/qat/modules/conv.py' 2025-06-01T21:24:07.1544522Z adding 'torch/nn/qat/modules/embedding_ops.py' 2025-06-01T21:24:07.1547438Z adding 'torch/nn/qat/modules/linear.py' 2025-06-01T21:24:07.1551184Z adding 'torch/nn/quantizable/__init__.py' 2025-06-01T21:24:07.1554848Z adding 'torch/nn/quantizable/modules/__init__.py' 2025-06-01T21:24:07.1557972Z adding 'torch/nn/quantizable/modules/activation.py' 2025-06-01T21:24:07.1560867Z adding 'torch/nn/quantizable/modules/rnn.py' 2025-06-01T21:24:07.1564669Z adding 'torch/nn/quantized/__init__.py' 2025-06-01T21:24:07.1567774Z adding 'torch/nn/quantized/functional.py' 2025-06-01T21:24:07.1571262Z adding 'torch/nn/quantized/_reference/__init__.py' 2025-06-01T21:24:07.1575148Z adding 'torch/nn/quantized/_reference/modules/__init__.py' 2025-06-01T21:24:07.1578180Z adding 'torch/nn/quantized/_reference/modules/conv.py' 2025-06-01T21:24:07.1581139Z adding 'torch/nn/quantized/_reference/modules/linear.py' 2025-06-01T21:24:07.1584299Z adding 'torch/nn/quantized/_reference/modules/rnn.py' 2025-06-01T21:24:07.1587399Z adding 'torch/nn/quantized/_reference/modules/sparse.py' 2025-06-01T21:24:07.1590542Z adding 'torch/nn/quantized/_reference/modules/utils.py' 2025-06-01T21:24:07.1594092Z adding 'torch/nn/quantized/dynamic/__init__.py' 2025-06-01T21:24:07.1598052Z adding 'torch/nn/quantized/dynamic/modules/__init__.py' 2025-06-01T21:24:07.1601054Z adding 'torch/nn/quantized/dynamic/modules/conv.py' 2025-06-01T21:24:07.1604010Z adding 'torch/nn/quantized/dynamic/modules/linear.py' 2025-06-01T21:24:07.1607044Z adding 'torch/nn/quantized/dynamic/modules/rnn.py' 2025-06-01T21:24:07.1611240Z adding 'torch/nn/quantized/modules/__init__.py' 2025-06-01T21:24:07.1614712Z adding 'torch/nn/quantized/modules/activation.py' 2025-06-01T21:24:07.1617782Z adding 'torch/nn/quantized/modules/batchnorm.py' 2025-06-01T21:24:07.1620659Z adding 'torch/nn/quantized/modules/conv.py' 2025-06-01T21:24:07.1623704Z adding 'torch/nn/quantized/modules/dropout.py' 2025-06-01T21:24:07.1626855Z adding 'torch/nn/quantized/modules/embedding_ops.py' 2025-06-01T21:24:07.1629892Z adding 'torch/nn/quantized/modules/functional_modules.py' 2025-06-01T21:24:07.1632801Z adding 'torch/nn/quantized/modules/linear.py' 2025-06-01T21:24:07.1635805Z adding 'torch/nn/quantized/modules/normalization.py' 2025-06-01T21:24:07.1638696Z adding 'torch/nn/quantized/modules/rnn.py' 2025-06-01T21:24:07.1642270Z adding 'torch/nn/quantized/modules/utils.py' 2025-06-01T21:24:07.1645665Z adding 'torch/nn/utils/__init__.py' 2025-06-01T21:24:07.1649002Z adding 'torch/nn/utils/_deprecation_utils.py' 2025-06-01T21:24:07.1654478Z adding 'torch/nn/utils/_named_member_accessor.py' 2025-06-01T21:24:07.1659045Z adding 'torch/nn/utils/_per_sample_grad.py' 2025-06-01T21:24:07.1664389Z adding 'torch/nn/utils/clip_grad.py' 2025-06-01T21:24:07.1668437Z adding 'torch/nn/utils/convert_parameters.py' 2025-06-01T21:24:07.1672853Z adding 'torch/nn/utils/fusion.py' 2025-06-01T21:24:07.1676503Z adding 'torch/nn/utils/init.py' 2025-06-01T21:24:07.1680825Z adding 'torch/nn/utils/memory_format.py' 2025-06-01T21:24:07.1691111Z adding 'torch/nn/utils/parametrizations.py' 2025-06-01T21:24:07.1704938Z adding 'torch/nn/utils/parametrize.py' 2025-06-01T21:24:07.1722891Z adding 'torch/nn/utils/prune.py' 2025-06-01T21:24:07.1732824Z adding 'torch/nn/utils/rnn.py' 2025-06-01T21:24:07.1740062Z adding 'torch/nn/utils/spectral_norm.py' 2025-06-01T21:24:07.1746159Z adding 'torch/nn/utils/stateless.py' 2025-06-01T21:24:07.1750809Z adding 'torch/nn/utils/weight_norm.py' 2025-06-01T21:24:07.1754876Z adding 'torch/nn/utils/_expanded_weights/__init__.py' 2025-06-01T21:24:07.1763102Z adding 'torch/nn/utils/_expanded_weights/conv_expanded_weights.py' 2025-06-01T21:24:07.1764095Z adding 'torch/nn/utils/_expanded_weights/conv_utils.py' 2025-06-01T21:24:07.1767945Z adding 'torch/nn/utils/_expanded_weights/embedding_expanded_weights.py' 2025-06-01T21:24:07.1772408Z adding 'torch/nn/utils/_expanded_weights/expanded_weights_impl.py' 2025-06-01T21:24:07.1777338Z adding 'torch/nn/utils/_expanded_weights/expanded_weights_utils.py' 2025-06-01T21:24:07.1781260Z adding 'torch/nn/utils/_expanded_weights/group_norm_expanded_weights.py' 2025-06-01T21:24:07.1785335Z adding 'torch/nn/utils/_expanded_weights/instance_norm_expanded_weights.py' 2025-06-01T21:24:07.1789376Z adding 'torch/nn/utils/_expanded_weights/layer_norm_expanded_weights.py' 2025-06-01T21:24:07.1792694Z adding 'torch/nn/utils/_expanded_weights/linear_expanded_weights.py' 2025-06-01T21:24:07.1802782Z adding 'torch/onnx/__init__.py' 2025-06-01T21:24:07.1806627Z adding 'torch/onnx/_constants.py' 2025-06-01T21:24:07.1809761Z adding 'torch/onnx/_experimental.py' 2025-06-01T21:24:07.1813119Z adding 'torch/onnx/_flags.py' 2025-06-01T21:24:07.1816653Z adding 'torch/onnx/_globals.py' 2025-06-01T21:24:07.1820420Z adding 'torch/onnx/_onnx_supported_ops.py' 2025-06-01T21:24:07.1826376Z adding 'torch/onnx/_type_utils.py' 2025-06-01T21:24:07.1830466Z adding 'torch/onnx/errors.py' 2025-06-01T21:24:07.1833797Z adding 'torch/onnx/operators.py' 2025-06-01T21:24:07.1838468Z adding 'torch/onnx/symbolic_caffe2.py' 2025-06-01T21:24:07.1866431Z adding 'torch/onnx/symbolic_helper.py' 2025-06-01T21:24:07.1878442Z adding 'torch/onnx/symbolic_opset10.py' 2025-06-01T21:24:07.1896209Z adding 'torch/onnx/symbolic_opset11.py' 2025-06-01T21:24:07.1903747Z adding 'torch/onnx/symbolic_opset12.py' 2025-06-01T21:24:07.1916885Z adding 'torch/onnx/symbolic_opset13.py' 2025-06-01T21:24:07.1923057Z adding 'torch/onnx/symbolic_opset14.py' 2025-06-01T21:24:07.1927000Z adding 'torch/onnx/symbolic_opset15.py' 2025-06-01T21:24:07.1931589Z adding 'torch/onnx/symbolic_opset16.py' 2025-06-01T21:24:07.1936752Z adding 'torch/onnx/symbolic_opset17.py' 2025-06-01T21:24:07.1942107Z adding 'torch/onnx/symbolic_opset18.py' 2025-06-01T21:24:07.1945915Z adding 'torch/onnx/symbolic_opset19.py' 2025-06-01T21:24:07.1949750Z adding 'torch/onnx/symbolic_opset20.py' 2025-06-01T21:24:07.1953581Z adding 'torch/onnx/symbolic_opset7.py' 2025-06-01T21:24:07.1959842Z adding 'torch/onnx/symbolic_opset8.py' 2025-06-01T21:24:07.2028553Z adding 'torch/onnx/symbolic_opset9.py' 2025-06-01T21:24:07.2062315Z adding 'torch/onnx/utils.py' 2025-06-01T21:24:07.2088538Z adding 'torch/onnx/verification.py' 2025-06-01T21:24:07.2094095Z adding 'torch/onnx/_internal/__init__.py' 2025-06-01T21:24:07.2102125Z adding 'torch/onnx/_internal/_exporter_legacy.py' 2025-06-01T21:24:07.2109104Z adding 'torch/onnx/_internal/_lazy_import.py' 2025-06-01T21:24:07.2117003Z adding 'torch/onnx/_internal/io_adapter.py' 2025-06-01T21:24:07.2123810Z adding 'torch/onnx/_internal/jit_utils.py' 2025-06-01T21:24:07.2129214Z adding 'torch/onnx/_internal/onnx_proto_utils.py' 2025-06-01T21:24:07.2148970Z adding 'torch/onnx/_internal/onnxruntime.py' 2025-06-01T21:24:07.2155815Z adding 'torch/onnx/_internal/registration.py' 2025-06-01T21:24:07.2160141Z adding 'torch/onnx/_internal/exporter/__init__.py' 2025-06-01T21:24:07.2165057Z adding 'torch/onnx/_internal/exporter/_analysis.py' 2025-06-01T21:24:07.2176235Z adding 'torch/onnx/_internal/exporter/_building.py' 2025-06-01T21:24:07.2181765Z adding 'torch/onnx/_internal/exporter/_capture_strategies.py' 2025-06-01T21:24:07.2186657Z adding 'torch/onnx/_internal/exporter/_compat.py' 2025-06-01T21:24:07.2189917Z adding 'torch/onnx/_internal/exporter/_constants.py' 2025-06-01T21:24:07.2213320Z adding 'torch/onnx/_internal/exporter/_core.py' 2025-06-01T21:24:07.2218635Z adding 'torch/onnx/_internal/exporter/_decomp.py' 2025-06-01T21:24:07.2225231Z adding 'torch/onnx/_internal/exporter/_dispatching.py' 2025-06-01T21:24:07.2231827Z adding 'torch/onnx/_internal/exporter/_dynamic_shapes.py' 2025-06-01T21:24:07.2236323Z adding 'torch/onnx/_internal/exporter/_errors.py' 2025-06-01T21:24:07.2238860Z adding 'torch/onnx/_internal/exporter/_flags.py' 2025-06-01T21:24:07.2242091Z adding 'torch/onnx/_internal/exporter/_fx_passes.py' 2025-06-01T21:24:07.2246443Z adding 'torch/onnx/_internal/exporter/_ir_passes.py' 2025-06-01T21:24:07.2250032Z adding 'torch/onnx/_internal/exporter/_isolated.py' 2025-06-01T21:24:07.2258082Z adding 'torch/onnx/_internal/exporter/_onnx_program.py' 2025-06-01T21:24:07.2264624Z adding 'torch/onnx/_internal/exporter/_registration.py' 2025-06-01T21:24:07.2269558Z adding 'torch/onnx/_internal/exporter/_reporting.py' 2025-06-01T21:24:07.2278393Z adding 'torch/onnx/_internal/exporter/_schemas.py' 2025-06-01T21:24:07.2282439Z adding 'torch/onnx/_internal/exporter/_tensors.py' 2025-06-01T21:24:07.2286355Z adding 'torch/onnx/_internal/exporter/_testing.py' 2025-06-01T21:24:07.2289772Z adding 'torch/onnx/_internal/exporter/_type_casting.py' 2025-06-01T21:24:07.2295911Z adding 'torch/onnx/_internal/exporter/_verification.py' 2025-06-01T21:24:07.2299981Z adding 'torch/onnx/_internal/exporter/_torchlib/__init__.py' 2025-06-01T21:24:07.2303528Z adding 'torch/onnx/_internal/exporter/_torchlib/_tensor_typing.py' 2025-06-01T21:24:07.2307431Z adding 'torch/onnx/_internal/exporter/_torchlib/_torchlib_registry.py' 2025-06-01T21:24:07.2311238Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/__init__.py' 2025-06-01T21:24:07.2314638Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/core.py' 2025-06-01T21:24:07.2318444Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/hop.py' 2025-06-01T21:24:07.2321868Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/nn.py' 2025-06-01T21:24:07.2325951Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/symbolic.py' 2025-06-01T21:24:07.2329234Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/symops.py' 2025-06-01T21:24:07.2333133Z adding 'torch/onnx/_internal/fx/__init__.py' 2025-06-01T21:24:07.2338368Z adding 'torch/onnx/_internal/fx/_pass.py' 2025-06-01T21:24:07.2342831Z adding 'torch/onnx/_internal/fx/decomposition_table.py' 2025-06-01T21:24:07.2348087Z adding 'torch/onnx/_internal/fx/dynamo_graph_extractor.py' 2025-06-01T21:24:07.2359649Z adding 'torch/onnx/_internal/fx/fx_onnx_interpreter.py' 2025-06-01T21:24:07.2371710Z adding 'torch/onnx/_internal/fx/onnxfunction_dispatcher.py' 2025-06-01T21:24:07.2378046Z adding 'torch/onnx/_internal/fx/patcher.py' 2025-06-01T21:24:07.2385731Z adding 'torch/onnx/_internal/fx/registration.py' 2025-06-01T21:24:07.2392019Z adding 'torch/onnx/_internal/fx/serialization.py' 2025-06-01T21:24:07.2396731Z adding 'torch/onnx/_internal/fx/type_utils.py' 2025-06-01T21:24:07.2401079Z adding 'torch/onnx/_internal/fx/passes/__init__.py' 2025-06-01T21:24:07.2405302Z adding 'torch/onnx/_internal/fx/passes/_utils.py' 2025-06-01T21:24:07.2409176Z adding 'torch/onnx/_internal/fx/passes/decomp.py' 2025-06-01T21:24:07.2413872Z adding 'torch/onnx/_internal/fx/passes/functionalization.py' 2025-06-01T21:24:07.2427464Z adding 'torch/onnx/_internal/fx/passes/modularization.py' 2025-06-01T21:24:07.2432620Z adding 'torch/onnx/_internal/fx/passes/readability.py' 2025-06-01T21:24:07.2449750Z adding 'torch/onnx/_internal/fx/passes/type_promotion.py' 2025-06-01T21:24:07.2455206Z adding 'torch/onnx/_internal/fx/passes/virtualization.py' 2025-06-01T21:24:07.2461202Z adding 'torch/onnx/ops/__init__.py' 2025-06-01T21:24:07.2466579Z adding 'torch/onnx/ops/_symbolic_impl.py' 2025-06-01T21:24:07.2471305Z adding 'torch/optim/__init__.py' 2025-06-01T21:24:07.2480779Z adding 'torch/optim/_adafactor.py' 2025-06-01T21:24:07.2485357Z adding 'torch/optim/_functional.py' 2025-06-01T21:24:07.2491785Z adding 'torch/optim/adadelta.py' 2025-06-01T21:24:07.2499739Z adding 'torch/optim/adagrad.py' 2025-06-01T21:24:07.2512692Z adding 'torch/optim/adam.py' 2025-06-01T21:24:07.2520308Z adding 'torch/optim/adamax.py' 2025-06-01T21:24:07.2525265Z adding 'torch/optim/adamw.py' 2025-06-01T21:24:07.2531964Z adding 'torch/optim/asgd.py' 2025-06-01T21:24:07.2540113Z adding 'torch/optim/lbfgs.py' 2025-06-01T21:24:07.2563601Z adding 'torch/optim/lr_scheduler.py' 2025-06-01T21:24:07.2573995Z adding 'torch/optim/nadam.py' 2025-06-01T21:24:07.2592061Z adding 'torch/optim/optimizer.py' 2025-06-01T21:24:07.2601648Z adding 'torch/optim/radam.py' 2025-06-01T21:24:07.2609656Z adding 'torch/optim/rmsprop.py' 2025-06-01T21:24:07.2617158Z adding 'torch/optim/rprop.py' 2025-06-01T21:24:07.2625091Z adding 'torch/optim/sgd.py' 2025-06-01T21:24:07.2630723Z adding 'torch/optim/sparse_adam.py' 2025-06-01T21:24:07.2638526Z adding 'torch/optim/swa_utils.py' 2025-06-01T21:24:07.2643023Z adding 'torch/optim/_multi_tensor/__init__.py' 2025-06-01T21:24:07.2646123Z adding 'torch/optim/_multi_tensor/__init__.pyi' 2025-06-01T21:24:07.2650003Z adding 'torch/package/__init__.py' 2025-06-01T21:24:07.2654242Z adding 'torch/package/_digraph.py' 2025-06-01T21:24:07.2657864Z adding 'torch/package/_directory_reader.py' 2025-06-01T21:24:07.2661541Z adding 'torch/package/_importlib.py' 2025-06-01T21:24:07.2665401Z adding 'torch/package/_mangling.py' 2025-06-01T21:24:07.2668824Z adding 'torch/package/_mock.py' 2025-06-01T21:24:07.2672919Z adding 'torch/package/_package_pickler.py' 2025-06-01T21:24:07.2676285Z adding 'torch/package/_package_unpickler.py' 2025-06-01T21:24:07.2680260Z adding 'torch/package/_stdlib.py' 2025-06-01T21:24:07.2684512Z adding 'torch/package/file_structure_representation.py' 2025-06-01T21:24:07.2688407Z adding 'torch/package/find_file_dependencies.py' 2025-06-01T21:24:07.2692705Z adding 'torch/package/glob_group.py' 2025-06-01T21:24:07.2698058Z adding 'torch/package/importer.py' 2025-06-01T21:24:07.2716208Z adding 'torch/package/package_exporter.py' 2025-06-01T21:24:07.2730267Z adding 'torch/package/package_importer.py' 2025-06-01T21:24:07.2734605Z adding 'torch/package/analyze/__init__.py' 2025-06-01T21:24:07.2737936Z adding 'torch/package/analyze/find_first_use_of_broken_modules.py' 2025-06-01T21:24:07.2740824Z adding 'torch/package/analyze/is_from_package.py' 2025-06-01T21:24:07.2744480Z adding 'torch/package/analyze/trace_dependencies.py' 2025-06-01T21:24:07.2748693Z adding 'torch/profiler/__init__.py' 2025-06-01T21:24:07.2766443Z adding 'torch/profiler/_memory_profiler.py' 2025-06-01T21:24:07.2776197Z adding 'torch/profiler/_pattern_matcher.py' 2025-06-01T21:24:07.2783155Z adding 'torch/profiler/_utils.py' 2025-06-01T21:24:07.2787063Z adding 'torch/profiler/itt.py' 2025-06-01T21:24:07.2802547Z adding 'torch/profiler/profiler.py' 2025-06-01T21:24:07.2806597Z adding 'torch/profiler/python_tracer.py' 2025-06-01T21:24:07.2811063Z adding 'torch/quantization/__init__.py' 2025-06-01T21:24:07.2814317Z adding 'torch/quantization/_numeric_suite.py' 2025-06-01T21:24:07.2817569Z adding 'torch/quantization/_numeric_suite_fx.py' 2025-06-01T21:24:07.2821357Z adding 'torch/quantization/_quantized_conversions.py' 2025-06-01T21:24:07.2824685Z adding 'torch/quantization/fake_quantize.py' 2025-06-01T21:24:07.2827706Z adding 'torch/quantization/fuse_modules.py' 2025-06-01T21:24:07.2830844Z adding 'torch/quantization/fuser_method_mappings.py' 2025-06-01T21:24:07.2833842Z adding 'torch/quantization/observer.py' 2025-06-01T21:24:07.2836935Z adding 'torch/quantization/qconfig.py' 2025-06-01T21:24:07.2839814Z adding 'torch/quantization/quant_type.py' 2025-06-01T21:24:07.2843032Z adding 'torch/quantization/quantization_mappings.py' 2025-06-01T21:24:07.2846057Z adding 'torch/quantization/quantize.py' 2025-06-01T21:24:07.2849155Z adding 'torch/quantization/quantize_fx.py' 2025-06-01T21:24:07.2852121Z adding 'torch/quantization/quantize_jit.py' 2025-06-01T21:24:07.2855127Z adding 'torch/quantization/stubs.py' 2025-06-01T21:24:07.2858106Z adding 'torch/quantization/utils.py' 2025-06-01T21:24:07.2862079Z adding 'torch/quantization/fx/__init__.py' 2025-06-01T21:24:07.2865419Z adding 'torch/quantization/fx/_equalize.py' 2025-06-01T21:24:07.2868332Z adding 'torch/quantization/fx/convert.py' 2025-06-01T21:24:07.2871348Z adding 'torch/quantization/fx/fuse.py' 2025-06-01T21:24:07.2874355Z adding 'torch/quantization/fx/fusion_patterns.py' 2025-06-01T21:24:07.2877348Z adding 'torch/quantization/fx/graph_module.py' 2025-06-01T21:24:07.2880289Z adding 'torch/quantization/fx/match_utils.py' 2025-06-01T21:24:07.2883476Z adding 'torch/quantization/fx/pattern_utils.py' 2025-06-01T21:24:07.2886382Z adding 'torch/quantization/fx/prepare.py' 2025-06-01T21:24:07.2889614Z adding 'torch/quantization/fx/quantization_patterns.py' 2025-06-01T21:24:07.2892568Z adding 'torch/quantization/fx/quantization_types.py' 2025-06-01T21:24:07.2895628Z adding 'torch/quantization/fx/utils.py' 2025-06-01T21:24:07.2900653Z adding 'torch/share/cmake/ATen/ATenConfig.cmake' 2025-06-01T21:24:07.2905725Z adding 'torch/share/cmake/Caffe2/Caffe2Config.cmake' 2025-06-01T21:24:07.2909105Z adding 'torch/share/cmake/Caffe2/Caffe2Targets-release.cmake' 2025-06-01T21:24:07.2913445Z adding 'torch/share/cmake/Caffe2/Caffe2Targets.cmake' 2025-06-01T21:24:07.2926636Z adding 'torch/share/cmake/Caffe2/FindCUDAToolkit.cmake' 2025-06-01T21:24:07.2931214Z adding 'torch/share/cmake/Caffe2/FindCUDSS.cmake' 2025-06-01T21:24:07.2934946Z adding 'torch/share/cmake/Caffe2/FindCUSPARSELT.cmake' 2025-06-01T21:24:07.2939041Z adding 'torch/share/cmake/Caffe2/FindSYCLToolkit.cmake' 2025-06-01T21:24:07.2943446Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/FindCUDA.cmake' 2025-06-01T21:24:07.2947217Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/FindCUDNN.cmake' 2025-06-01T21:24:07.2951821Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/CMakeInitializeConfigs.cmake' 2025-06-01T21:24:07.2982760Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA.cmake' 2025-06-01T21:24:07.2991597Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindPackageHandleStandardArgs.cmake' 2025-06-01T21:24:07.2995480Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindPackageMessage.cmake' 2025-06-01T21:24:07.3000362Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/make2cmake.cmake' 2025-06-01T21:24:07.3004279Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/parse_cubin.cmake' 2025-06-01T21:24:07.3010122Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/run_nvcc.cmake' 2025-06-01T21:24:07.3015771Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/select_compute_arch.cmake' 2025-06-01T21:24:07.3021679Z adding 'torch/share/cmake/Caffe2/public/LoadHIP.cmake' 2025-06-01T21:24:07.3028397Z adding 'torch/share/cmake/Caffe2/public/cuda.cmake' 2025-06-01T21:24:07.3032314Z adding 'torch/share/cmake/Caffe2/public/gflags.cmake' 2025-06-01T21:24:07.3035872Z adding 'torch/share/cmake/Caffe2/public/glog.cmake' 2025-06-01T21:24:07.3039199Z adding 'torch/share/cmake/Caffe2/public/mkl.cmake' 2025-06-01T21:24:07.3042164Z adding 'torch/share/cmake/Caffe2/public/mkldnn.cmake' 2025-06-01T21:24:07.3046104Z adding 'torch/share/cmake/Caffe2/public/protobuf.cmake' 2025-06-01T21:24:07.3054491Z adding 'torch/share/cmake/Caffe2/public/utils.cmake' 2025-06-01T21:24:07.3058336Z adding 'torch/share/cmake/Caffe2/public/xpu.cmake' 2025-06-01T21:24:07.3063203Z adding 'torch/share/cmake/Torch/TorchConfig.cmake' 2025-06-01T21:24:07.3066451Z adding 'torch/share/cmake/Torch/TorchConfigVersion.cmake' 2025-06-01T21:24:07.3069887Z adding 'torch/signal/__init__.py' 2025-06-01T21:24:07.3073441Z adding 'torch/signal/windows/__init__.py' 2025-06-01T21:24:07.3081002Z adding 'torch/signal/windows/windows.py' 2025-06-01T21:24:07.3092073Z adding 'torch/sparse/__init__.py' 2025-06-01T21:24:07.3099267Z adding 'torch/sparse/_semi_structured_conversions.py' 2025-06-01T21:24:07.3103800Z adding 'torch/sparse/_semi_structured_ops.py' 2025-06-01T21:24:07.3128754Z adding 'torch/sparse/_triton_ops.py' 2025-06-01T21:24:07.3248152Z adding 'torch/sparse/_triton_ops_meta.py' 2025-06-01T21:24:07.3268577Z adding 'torch/sparse/semi_structured.py' 2025-06-01T21:24:07.3278688Z adding 'torch/special/__init__.py' 2025-06-01T21:24:07.3453057Z adding 'torch/test/CppSignature_test.exe' 2025-06-01T21:24:07.3716364Z adding 'torch/test/Dict_test.exe' 2025-06-01T21:24:07.3900899Z adding 'torch/test/Dimname_test.exe' 2025-06-01T21:24:07.4133302Z adding 'torch/test/IListRef_test.exe' 2025-06-01T21:24:07.4372885Z adding 'torch/test/KernelFunction_test.exe' 2025-06-01T21:24:07.4716457Z adding 'torch/test/List_test.exe' 2025-06-01T21:24:07.4969453Z adding 'torch/test/MaybeOwned_test.exe' 2025-06-01T21:24:07.5243956Z adding 'torch/test/NamedTensor_test.exe' 2025-06-01T21:24:07.5454834Z adding 'torch/test/StorageUtils_test.exe' 2025-06-01T21:24:07.5671907Z adding 'torch/test/apply_utils_test.exe' 2025-06-01T21:24:07.5903871Z adding 'torch/test/atest.exe' 2025-06-01T21:24:07.6117467Z adding 'torch/test/backend_fallback_test.exe' 2025-06-01T21:24:07.6362279Z adding 'torch/test/basic.exe' 2025-06-01T21:24:07.6572148Z adding 'torch/test/broadcast_test.exe' 2025-06-01T21:24:07.6740802Z adding 'torch/test/c10_ArrayRef_test.exe' 2025-06-01T21:24:07.6916030Z adding 'torch/test/c10_Bitset_test.exe' 2025-06-01T21:24:07.7077991Z adding 'torch/test/c10_CompileTimeFunctionPointer_test.exe' 2025-06-01T21:24:07.7235431Z adding 'torch/test/c10_ConstexprCrc_test.exe' 2025-06-01T21:24:07.7397967Z adding 'torch/test/c10_DeadlockDetection_test.exe' 2025-06-01T21:24:07.7574010Z adding 'torch/test/c10_DeviceGuard_test.exe' 2025-06-01T21:24:07.7753376Z adding 'torch/test/c10_Device_test.exe' 2025-06-01T21:24:07.7956880Z adding 'torch/test/c10_DispatchKeySet_test.exe' 2025-06-01T21:24:07.8157376Z adding 'torch/test/c10_Enumerate_test.exe' 2025-06-01T21:24:07.8330435Z adding 'torch/test/c10_Half_test.exe' 2025-06-01T21:24:07.8516515Z adding 'torch/test/c10_InlineDeviceGuard_test.exe' 2025-06-01T21:24:07.8708276Z adding 'torch/test/c10_InlineStreamGuard_test.exe' 2025-06-01T21:24:07.8887954Z adding 'torch/test/c10_IntrusiveList_test.exe' 2025-06-01T21:24:07.9081478Z adding 'torch/test/c10_LeftRight_test.exe' 2025-06-01T21:24:07.9260000Z adding 'torch/test/c10_Metaprogramming_test.exe' 2025-06-01T21:24:07.9441028Z adding 'torch/test/c10_NetworkFlow_test.exe' 2025-06-01T21:24:07.9619824Z adding 'torch/test/c10_Scalar_test.exe' 2025-06-01T21:24:07.9782375Z adding 'torch/test/c10_Semaphore_test.exe' 2025-06-01T21:24:07.9970590Z adding 'torch/test/c10_SizesAndStrides_test.exe' 2025-06-01T21:24:08.0130298Z adding 'torch/test/c10_StreamGuard_test.exe' 2025-06-01T21:24:08.0301545Z adding 'torch/test/c10_SymInt_test.exe' 2025-06-01T21:24:08.0474374Z adding 'torch/test/c10_Synchronized_test.exe' 2025-06-01T21:24:08.0660986Z adding 'torch/test/c10_ThreadLocal_test.exe' 2025-06-01T21:24:08.0836022Z adding 'torch/test/c10_TypeIndex_test.exe' 2025-06-01T21:24:08.0996237Z adding 'torch/test/c10_TypeList_test.exe' 2025-06-01T21:24:08.1156509Z adding 'torch/test/c10_TypeTraits_test.exe' 2025-06-01T21:24:08.1333360Z adding 'torch/test/c10_accumulate_test.exe' 2025-06-01T21:24:08.1527487Z adding 'torch/test/c10_bfloat16_test.exe' 2025-06-01T21:24:08.1691159Z adding 'torch/test/c10_bit_cast_test.exe' 2025-06-01T21:24:08.1889646Z adding 'torch/test/c10_complex_math_test.exe' 2025-06-01T21:24:08.2083376Z adding 'torch/test/c10_complex_test.exe' 2025-06-01T21:24:08.2277013Z adding 'torch/test/c10_cow_test.exe' 2025-06-01T21:24:08.2447408Z adding 'torch/test/c10_error_test.exe' 2025-06-01T21:24:08.2630128Z adding 'torch/test/c10_exception_test.exe' 2025-06-01T21:24:08.2791834Z adding 'torch/test/c10_flags_test.exe' 2025-06-01T21:24:08.2963614Z adding 'torch/test/c10_generic_math_test.exe' 2025-06-01T21:24:08.3112622Z adding 'torch/test/c10_intrusive_ptr_benchmark.exe' 2025-06-01T21:24:08.3536851Z adding 'torch/test/c10_intrusive_ptr_test.exe' 2025-06-01T21:24:08.3725828Z adding 'torch/test/c10_irange_test.exe' 2025-06-01T21:24:08.3903389Z adding 'torch/test/c10_lazy_test.exe' 2025-06-01T21:24:08.4095860Z adding 'torch/test/c10_logging_test.exe' 2025-06-01T21:24:08.4340423Z adding 'torch/test/c10_optional_test.exe' 2025-06-01T21:24:08.4555285Z adding 'torch/test/c10_ordered_preserving_dict_test.exe' 2025-06-01T21:24:08.4735593Z adding 'torch/test/c10_registry_test.exe' 2025-06-01T21:24:08.5091800Z adding 'torch/test/c10_small_vector_test.exe' 2025-06-01T21:24:08.5273110Z adding 'torch/test/c10_ssize_test.exe' 2025-06-01T21:24:08.5465738Z adding 'torch/test/c10_string_util_test.exe' 2025-06-01T21:24:08.5624220Z adding 'torch/test/c10_string_view_test.exe' 2025-06-01T21:24:08.5786025Z adding 'torch/test/c10_tempfile_test.exe' 2025-06-01T21:24:08.5971156Z adding 'torch/test/c10_typeid_test.exe' 2025-06-01T21:24:08.6167438Z adding 'torch/test/cpu_allocator_test.exe' 2025-06-01T21:24:08.6390499Z adding 'torch/test/cpu_generator_test.exe' 2025-06-01T21:24:08.6597261Z adding 'torch/test/cpu_profiling_allocator_test.exe' 2025-06-01T21:24:08.6932302Z adding 'torch/test/cpu_rng_test.exe' 2025-06-01T21:24:08.7137713Z adding 'torch/test/dlconvertor_test.exe' 2025-06-01T21:24:08.7357815Z adding 'torch/test/extension_backend_test.exe' 2025-06-01T21:24:08.7578333Z adding 'torch/test/half_test.exe' 2025-06-01T21:24:08.7831137Z adding 'torch/test/inline_container_test.exe' 2025-06-01T21:24:08.8192763Z adding 'torch/test/ivalue_test.exe' 2025-06-01T21:24:08.8601236Z adding 'torch/test/kernel_function_legacy_test.exe' 2025-06-01T21:24:08.8939593Z adding 'torch/test/kernel_function_test.exe' 2025-06-01T21:24:08.9357947Z adding 'torch/test/kernel_lambda_legacy_test.exe' 2025-06-01T21:24:08.9711419Z adding 'torch/test/kernel_lambda_test.exe' 2025-06-01T21:24:08.9951300Z adding 'torch/test/kernel_stackbased_test.exe' 2025-06-01T21:24:09.0152156Z adding 'torch/test/lazy_tensor_test.exe' 2025-06-01T21:24:09.0438290Z adding 'torch/test/legacy_vmap_test.exe' 2025-06-01T21:24:09.0776717Z adding 'torch/test/make_boxed_from_unboxed_functor_test.exe' 2025-06-01T21:24:09.0989316Z adding 'torch/test/math_kernel_test.exe' 2025-06-01T21:24:09.1194033Z adding 'torch/test/memory_format_test.exe' 2025-06-01T21:24:09.1396860Z adding 'torch/test/memory_overlapping_test.exe' 2025-06-01T21:24:09.1603250Z adding 'torch/test/mobile_memory_cleanup.exe' 2025-06-01T21:24:09.1826257Z adding 'torch/test/native_test.exe' 2025-06-01T21:24:09.1986808Z adding 'torch/test/op_allowlist_test.exe' 2025-06-01T21:24:09.2780623Z adding 'torch/test/op_registration_test.exe' 2025-06-01T21:24:09.2992927Z adding 'torch/test/operator_name_test.exe' 2025-06-01T21:24:09.3190788Z adding 'torch/test/operators_test.exe' 2025-06-01T21:24:09.3400635Z adding 'torch/test/packedtensoraccessor_test.exe' 2025-06-01T21:24:09.3671364Z adding 'torch/test/pow_test.exe' 2025-06-01T21:24:09.3899047Z adding 'torch/test/quantized_test.exe' 2025-06-01T21:24:09.4105454Z adding 'torch/test/reduce_ops_test.exe' 2025-06-01T21:24:09.4313547Z adding 'torch/test/reportMemoryUsage_test.exe' 2025-06-01T21:24:09.4544945Z adding 'torch/test/scalar_tensor_test.exe' 2025-06-01T21:24:09.4780997Z adding 'torch/test/scalar_test.exe' 2025-06-01T21:24:09.4984876Z adding 'torch/test/stride_properties_test.exe' 2025-06-01T21:24:09.5270231Z adding 'torch/test/tensor_iterator_test.exe' 2025-06-01T21:24:09.5501922Z adding 'torch/test/test_parallel.exe' 2025-06-01T21:24:09.5558922Z adding 'torch/test/thread_init_test.exe' 2025-06-01T21:24:09.5747735Z adding 'torch/test/type_ptr_test.exe' 2025-06-01T21:24:09.5976643Z adding 'torch/test/type_test.exe' 2025-06-01T21:24:09.6203093Z adding 'torch/test/undefined_tensor_test.exe' 2025-06-01T21:24:09.6257733Z adding 'torch/test/verify_api_visibility.exe' 2025-06-01T21:24:09.6462301Z adding 'torch/test/weakref_test.exe' 2025-06-01T21:24:09.6683714Z adding 'torch/test/wrapdim_test.exe' 2025-06-01T21:24:09.6885363Z adding 'torch/test/xla_tensor_test.exe' 2025-06-01T21:24:09.6896781Z adding 'torch/testing/__init__.py' 2025-06-01T21:24:09.6918018Z adding 'torch/testing/_comparison.py' 2025-06-01T21:24:09.6925639Z adding 'torch/testing/_creation.py' 2025-06-01T21:24:09.6929429Z adding 'torch/testing/_utils.py' 2025-06-01T21:24:09.6934952Z adding 'torch/testing/_internal/__init__.py' 2025-06-01T21:24:09.6942893Z adding 'torch/testing/_internal/autocast_test_lists.py' 2025-06-01T21:24:09.6949524Z adding 'torch/testing/_internal/autograd_function_db.py' 2025-06-01T21:24:09.6954705Z adding 'torch/testing/_internal/check_kernel_launches.py' 2025-06-01T21:24:09.6961014Z adding 'torch/testing/_internal/common_cuda.py' 2025-06-01T21:24:09.6988399Z adding 'torch/testing/_internal/common_device_type.py' 2025-06-01T21:24:09.6993876Z adding 'torch/testing/_internal/common_dist_composable.py' 2025-06-01T21:24:09.7016941Z adding 'torch/testing/_internal/common_distributed.py' 2025-06-01T21:24:09.7022413Z adding 'torch/testing/_internal/common_dtype.py' 2025-06-01T21:24:09.7041520Z adding 'torch/testing/_internal/common_fsdp.py' 2025-06-01T21:24:09.7049418Z adding 'torch/testing/_internal/common_jit.py' 2025-06-01T21:24:09.7287724Z adding 'torch/testing/_internal/common_methods_invocations.py' 2025-06-01T21:24:09.7318610Z adding 'torch/testing/_internal/common_mkldnn.py' 2025-06-01T21:24:09.7351488Z adding 'torch/testing/_internal/common_modules.py' 2025-06-01T21:24:09.7365592Z adding 'torch/testing/_internal/common_mps.py' 2025-06-01T21:24:09.7400738Z adding 'torch/testing/_internal/common_nn.py' 2025-06-01T21:24:09.7449367Z adding 'torch/testing/_internal/common_optimizers.py' 2025-06-01T21:24:09.7449794Z adding 'torch/testing/_internal/common_pruning.py' 2025-06-01T21:24:09.7463465Z adding 'torch/testing/_internal/common_quantization.py' 2025-06-01T21:24:09.7474338Z adding 'torch/testing/_internal/common_quantized.py' 2025-06-01T21:24:09.7480345Z adding 'torch/testing/_internal/common_subclass.py' 2025-06-01T21:24:09.7566599Z adding 'torch/testing/_internal/common_utils.py' 2025-06-01T21:24:09.7581182Z adding 'torch/testing/_internal/composite_compliance.py' 2025-06-01T21:24:09.7588591Z adding 'torch/testing/_internal/custom_op_db.py' 2025-06-01T21:24:09.7593059Z adding 'torch/testing/_internal/custom_tensor.py' 2025-06-01T21:24:09.7597978Z adding 'torch/testing/_internal/dist_utils.py' 2025-06-01T21:24:09.7602234Z adding 'torch/testing/_internal/dynamo_test_failures.py' 2025-06-01T21:24:09.7605679Z adding 'torch/testing/_internal/fake_config_module.py' 2025-06-01T21:24:09.7608655Z adding 'torch/testing/_internal/fake_config_module2.py' 2025-06-01T21:24:09.7611544Z adding 'torch/testing/_internal/fake_config_module3.py' 2025-06-01T21:24:09.7616465Z adding 'torch/testing/_internal/hop_db.py' 2025-06-01T21:24:09.7623129Z adding 'torch/testing/_internal/hypothesis_utils.py' 2025-06-01T21:24:09.7628935Z adding 'torch/testing/_internal/inductor_utils.py' 2025-06-01T21:24:09.7639916Z adding 'torch/testing/_internal/jit_metaprogramming_utils.py' 2025-06-01T21:24:09.7652599Z adding 'torch/testing/_internal/jit_utils.py' 2025-06-01T21:24:09.7658110Z adding 'torch/testing/_internal/logging_tensor.py' 2025-06-01T21:24:09.7663024Z adding 'torch/testing/_internal/logging_utils.py' 2025-06-01T21:24:09.7666677Z adding 'torch/testing/_internal/quantization_torch_package_models.py' 2025-06-01T21:24:09.7669735Z adding 'torch/testing/_internal/static_module.py' 2025-06-01T21:24:09.7673210Z adding 'torch/testing/_internal/subclasses.py' 2025-06-01T21:24:09.7677297Z adding 'torch/testing/_internal/torchbind_impls.py' 2025-06-01T21:24:09.7683734Z adding 'torch/testing/_internal/triton_utils.py' 2025-06-01T21:24:09.7688072Z adding 'torch/testing/_internal/two_tensor.py' 2025-06-01T21:24:09.7691821Z adding 'torch/testing/_internal/codegen/__init__.py' 2025-06-01T21:24:09.7695357Z adding 'torch/testing/_internal/data/__init__.py' 2025-06-01T21:24:09.7698276Z adding 'torch/testing/_internal/data/network1.py' 2025-06-01T21:24:09.7701142Z adding 'torch/testing/_internal/data/network2.py' 2025-06-01T21:24:09.7705043Z adding 'torch/testing/_internal/distributed/__init__.py' 2025-06-01T21:24:09.7709174Z adding 'torch/testing/_internal/distributed/checkpoint_utils.py' 2025-06-01T21:24:09.7714057Z adding 'torch/testing/_internal/distributed/common_state_dict.py' 2025-06-01T21:24:09.7723176Z adding 'torch/testing/_internal/distributed/ddp_under_dist_autograd_test.py' 2025-06-01T21:24:09.7824091Z adding 'torch/testing/_internal/distributed/distributed_test.py' 2025-06-01T21:24:09.7838291Z adding 'torch/testing/_internal/distributed/distributed_utils.py' 2025-06-01T21:24:09.7841147Z adding 'torch/testing/_internal/distributed/fake_pg.py' 2025-06-01T21:24:09.7848398Z adding 'torch/testing/_internal/distributed/multi_threaded_pg.py' 2025-06-01T21:24:09.7853621Z adding 'torch/testing/_internal/distributed/rpc_utils.py' 2025-06-01T21:24:09.7857739Z adding 'torch/testing/_internal/distributed/_shard/__init__.py' 2025-06-01T21:24:09.7861424Z adding 'torch/testing/_internal/distributed/_shard/test_common.py' 2025-06-01T21:24:09.7865662Z adding 'torch/testing/_internal/distributed/_shard/sharded_tensor/__init__.py' 2025-06-01T21:24:09.7869828Z adding 'torch/testing/_internal/distributed/_shard/sharded_tensor/_test_ops_common.py' 2025-06-01T21:24:09.7873532Z adding 'torch/testing/_internal/distributed/_shard/sharded_tensor/_test_st_common.py' 2025-06-01T21:24:09.7877234Z adding 'torch/testing/_internal/distributed/_tensor/__init__.py' 2025-06-01T21:24:09.7886058Z adding 'torch/testing/_internal/distributed/_tensor/common_dtensor.py' 2025-06-01T21:24:09.7890300Z adding 'torch/testing/_internal/distributed/nn/__init__.py' 2025-06-01T21:24:09.7893809Z adding 'torch/testing/_internal/distributed/nn/api/__init__.py' 2025-06-01T21:24:09.7901599Z adding 'torch/testing/_internal/distributed/nn/api/remote_module_test.py' 2025-06-01T21:24:09.7907084Z adding 'torch/testing/_internal/distributed/rpc/__init__.py' 2025-06-01T21:24:09.7934258Z adding 'torch/testing/_internal/distributed/rpc/dist_autograd_test.py' 2025-06-01T21:24:09.7941571Z adding 'torch/testing/_internal/distributed/rpc/dist_optimizer_test.py' 2025-06-01T21:24:09.7947467Z adding 'torch/testing/_internal/distributed/rpc/faulty_agent_rpc_test.py' 2025-06-01T21:24:09.7951372Z adding 'torch/testing/_internal/distributed/rpc/faulty_rpc_agent_test_fixture.py' 2025-06-01T21:24:09.7954946Z adding 'torch/testing/_internal/distributed/rpc/rpc_agent_test_fixture.py' 2025-06-01T21:24:09.8014265Z adding 'torch/testing/_internal/distributed/rpc/rpc_test.py' 2025-06-01T21:24:09.8023176Z adding 'torch/testing/_internal/distributed/rpc/tensorpipe_rpc_agent_test_fixture.py' 2025-06-01T21:24:09.8026934Z adding 'torch/testing/_internal/distributed/rpc/examples/__init__.py' 2025-06-01T21:24:09.8030844Z adding 'torch/testing/_internal/distributed/rpc/examples/parameter_server_test.py' 2025-06-01T21:24:09.8036384Z adding 'torch/testing/_internal/distributed/rpc/examples/reinforcement_learning_rpc_test.py' 2025-06-01T21:24:09.8040376Z adding 'torch/testing/_internal/distributed/rpc/jit/__init__.py' 2025-06-01T21:24:09.8044219Z adding 'torch/testing/_internal/distributed/rpc/jit/dist_autograd_test.py' 2025-06-01T21:24:09.8058580Z adding 'torch/testing/_internal/distributed/rpc/jit/rpc_test.py' 2025-06-01T21:24:09.8063827Z adding 'torch/testing/_internal/distributed/rpc/jit/rpc_test_faulty.py' 2025-06-01T21:24:09.8067910Z adding 'torch/testing/_internal/generated/__init__.py' 2025-06-01T21:24:09.8116699Z adding 'torch/testing/_internal/generated/annotated_fn_args.py' 2025-06-01T21:24:09.8132283Z adding 'torch/testing/_internal/opinfo/__init__.py' 2025-06-01T21:24:09.8174065Z adding 'torch/testing/_internal/opinfo/core.py' 2025-06-01T21:24:09.8181249Z adding 'torch/testing/_internal/opinfo/refs.py' 2025-06-01T21:24:09.8186874Z adding 'torch/testing/_internal/opinfo/utils.py' 2025-06-01T21:24:09.8191043Z adding 'torch/testing/_internal/opinfo/definitions/__init__.py' 2025-06-01T21:24:09.8200229Z adding 'torch/testing/_internal/opinfo/definitions/_masked.py' 2025-06-01T21:24:09.8207434Z adding 'torch/testing/_internal/opinfo/definitions/fft.py' 2025-06-01T21:24:09.8227923Z adding 'torch/testing/_internal/opinfo/definitions/linalg.py' 2025-06-01T21:24:09.8246808Z adding 'torch/testing/_internal/opinfo/definitions/nested.py' 2025-06-01T21:24:09.8253792Z adding 'torch/testing/_internal/opinfo/definitions/signal.py' 2025-06-01T21:24:09.8263306Z adding 'torch/testing/_internal/opinfo/definitions/sparse.py' 2025-06-01T21:24:09.8271184Z adding 'torch/testing/_internal/opinfo/definitions/special.py' 2025-06-01T21:24:09.8275358Z adding 'torch/testing/_internal/optests/__init__.py' 2025-06-01T21:24:09.8279984Z adding 'torch/testing/_internal/optests/aot_autograd.py' 2025-06-01T21:24:09.8284769Z adding 'torch/testing/_internal/optests/autograd_registration.py' 2025-06-01T21:24:09.8288166Z adding 'torch/testing/_internal/optests/fake_tensor.py' 2025-06-01T21:24:09.8300163Z adding 'torch/testing/_internal/optests/generate_tests.py' 2025-06-01T21:24:09.8305238Z adding 'torch/testing/_internal/optests/make_fx.py' 2025-06-01T21:24:09.8308807Z adding 'torch/testing/_internal/test_module/__init__.py' 2025-06-01T21:24:09.8311844Z adding 'torch/testing/_internal/test_module/future_div.py' 2025-06-01T21:24:09.8314742Z adding 'torch/testing/_internal/test_module/no_future_div.py' 2025-06-01T21:24:09.8320334Z adding 'torch/utils/__init__.py' 2025-06-01T21:24:09.8324410Z adding 'torch/utils/_appending_byte_serializer.py' 2025-06-01T21:24:09.8328709Z adding 'torch/utils/_backport_slots.py' 2025-06-01T21:24:09.8340151Z adding 'torch/utils/_config_module.py' 2025-06-01T21:24:09.8344734Z adding 'torch/utils/_config_typing.pyi' 2025-06-01T21:24:09.8350875Z adding 'torch/utils/_content_store.py' 2025-06-01T21:24:09.8354645Z adding 'torch/utils/_contextlib.py' 2025-06-01T21:24:09.8358315Z adding 'torch/utils/_cpp_embed_headers.py' 2025-06-01T21:24:09.8362227Z adding 'torch/utils/_cpp_extension_versioner.py' 2025-06-01T21:24:09.8373681Z adding 'torch/utils/_cxx_pytree.py' 2025-06-01T21:24:09.8377993Z adding 'torch/utils/_device.py' 2025-06-01T21:24:09.8381364Z adding 'torch/utils/_dtype_abbrs.py' 2025-06-01T21:24:09.8385145Z adding 'torch/utils/_exposed_in.py' 2025-06-01T21:24:09.8388326Z adding 'torch/utils/_filelock.py' 2025-06-01T21:24:09.8391881Z adding 'torch/utils/_foreach_utils.py' 2025-06-01T21:24:09.8397644Z adding 'torch/utils/_freeze.py' 2025-06-01T21:24:09.8401791Z adding 'torch/utils/_functools.py' 2025-06-01T21:24:09.8406012Z adding 'torch/utils/_get_clean_triton.py' 2025-06-01T21:24:09.8409710Z adding 'torch/utils/_import_utils.py' 2025-06-01T21:24:09.8412637Z adding 'torch/utils/_mode_utils.py' 2025-06-01T21:24:09.8416819Z adding 'torch/utils/_ordered_set.py' 2025-06-01T21:24:09.8428594Z adding 'torch/utils/_python_dispatch.py' 2025-06-01T21:24:09.8452635Z adding 'torch/utils/_pytree.py' 2025-06-01T21:24:09.8457616Z adding 'torch/utils/_stats.py' 2025-06-01T21:24:09.8460803Z adding 'torch/utils/_thunk.py' 2025-06-01T21:24:09.8466726Z adding 'torch/utils/_traceback.py' 2025-06-01T21:24:09.8471208Z adding 'torch/utils/_triton.py' 2025-06-01T21:24:09.8473810Z adding 'torch/utils/_typing_utils.py' 2025-06-01T21:24:09.8477483Z adding 'torch/utils/_zip.py' 2025-06-01T21:24:09.8485141Z adding 'torch/utils/backend_registration.py' 2025-06-01T21:24:09.8494104Z adding 'torch/utils/bundled_inputs.py' 2025-06-01T21:24:09.8522472Z adding 'torch/utils/checkpoint.py' 2025-06-01T21:24:09.8533860Z adding 'torch/utils/collect_env.py' 2025-06-01T21:24:09.8536907Z adding 'torch/utils/cpp_backtrace.py' 2025-06-01T21:24:09.8582937Z adding 'torch/utils/cpp_extension.py' 2025-06-01T21:24:09.8589114Z adding 'torch/utils/deterministic.py' 2025-06-01T21:24:09.8593471Z adding 'torch/utils/dlpack.py' 2025-06-01T21:24:09.8596986Z adding 'torch/utils/file_baton.py' 2025-06-01T21:24:09.8607395Z adding 'torch/utils/flop_counter.py' 2025-06-01T21:24:09.8613228Z adding 'torch/utils/hooks.py' 2025-06-01T21:24:09.8617582Z adding 'torch/utils/mkldnn.py' 2025-06-01T21:24:09.8621988Z adding 'torch/utils/mobile_optimizer.py' 2025-06-01T21:24:09.8625122Z adding 'torch/utils/model_zoo.py' 2025-06-01T21:24:09.8629190Z adding 'torch/utils/module_tracker.py' 2025-06-01T21:24:09.8633483Z adding 'torch/utils/show_pickle.py' 2025-06-01T21:24:09.8638358Z adding 'torch/utils/throughput_benchmark.py' 2025-06-01T21:24:09.8644499Z adding 'torch/utils/weak.py' 2025-06-01T21:24:09.8648046Z adding 'torch/utils/_strobelight/__init__.py' 2025-06-01T21:24:09.8653196Z adding 'torch/utils/_strobelight/cli_function_profiler.py' 2025-06-01T21:24:09.8657224Z adding 'torch/utils/_sympy/__init__.py' 2025-06-01T21:24:09.8675620Z adding 'torch/utils/_sympy/functions.py' 2025-06-01T21:24:09.8681722Z adding 'torch/utils/_sympy/interp.py' 2025-06-01T21:24:09.8686523Z adding 'torch/utils/_sympy/numbers.py' 2025-06-01T21:24:09.8693539Z adding 'torch/utils/_sympy/printers.py' 2025-06-01T21:24:09.8699218Z adding 'torch/utils/_sympy/reference.py' 2025-06-01T21:24:09.8703118Z adding 'torch/utils/_sympy/singleton_int.py' 2025-06-01T21:24:09.8707752Z adding 'torch/utils/_sympy/solve.py' 2025-06-01T21:24:09.8711862Z adding 'torch/utils/_sympy/symbol.py' 2025-06-01T21:24:09.8724429Z adding 'torch/utils/_sympy/value_ranges.py' 2025-06-01T21:24:09.8729067Z adding 'torch/utils/backcompat/__init__.py' 2025-06-01T21:24:09.8732782Z adding 'torch/utils/benchmark/__init__.py' 2025-06-01T21:24:09.8736434Z adding 'torch/utils/benchmark/examples/__init__.py' 2025-06-01T21:24:09.8739995Z adding 'torch/utils/benchmark/examples/compare.py' 2025-06-01T21:24:09.8744338Z adding 'torch/utils/benchmark/examples/fuzzer.py' 2025-06-01T21:24:09.8748068Z adding 'torch/utils/benchmark/examples/op_benchmark.py' 2025-06-01T21:24:09.8751312Z adding 'torch/utils/benchmark/examples/simple_timeit.py' 2025-06-01T21:24:09.8755356Z adding 'torch/utils/benchmark/examples/spectral_ops_fuzz_test.py' 2025-06-01T21:24:09.8759095Z adding 'torch/utils/benchmark/op_fuzzers/__init__.py' 2025-06-01T21:24:09.8763415Z adding 'torch/utils/benchmark/op_fuzzers/binary.py' 2025-06-01T21:24:09.8767276Z adding 'torch/utils/benchmark/op_fuzzers/sparse_binary.py' 2025-06-01T21:24:09.8770984Z adding 'torch/utils/benchmark/op_fuzzers/sparse_unary.py' 2025-06-01T21:24:09.8774690Z adding 'torch/utils/benchmark/op_fuzzers/spectral.py' 2025-06-01T21:24:09.8778319Z adding 'torch/utils/benchmark/op_fuzzers/unary.py' 2025-06-01T21:24:09.8782103Z adding 'torch/utils/benchmark/utils/__init__.py' 2025-06-01T21:24:09.8785350Z adding 'torch/utils/benchmark/utils/_stubs.py' 2025-06-01T21:24:09.8791874Z adding 'torch/utils/benchmark/utils/common.py' 2025-06-01T21:24:09.8798621Z adding 'torch/utils/benchmark/utils/compare.py' 2025-06-01T21:24:09.8804124Z adding 'torch/utils/benchmark/utils/compile.py' 2025-06-01T21:24:09.8809141Z adding 'torch/utils/benchmark/utils/cpp_jit.py' 2025-06-01T21:24:09.8817943Z adding 'torch/utils/benchmark/utils/fuzzer.py' 2025-06-01T21:24:09.8822038Z adding 'torch/utils/benchmark/utils/sparse_fuzzer.py' 2025-06-01T21:24:09.8825809Z adding 'torch/utils/benchmark/utils/timeit_template.cpp' 2025-06-01T21:24:09.8835091Z adding 'torch/utils/benchmark/utils/timer.py' 2025-06-01T21:24:09.8840954Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/__init__.py' 2025-06-01T21:24:09.8844646Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/callgrind.h' 2025-06-01T21:24:09.8848151Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/compat_bindings.cpp' 2025-06-01T21:24:09.8852498Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/timer_callgrind_template.cpp' 2025-06-01T21:24:09.8865550Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/timer_interface.py' 2025-06-01T21:24:09.8917697Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/valgrind.h' 2025-06-01T21:24:09.8930607Z adding 'torch/utils/bottleneck/__init__.py' 2025-06-01T21:24:09.8935289Z adding 'torch/utils/bottleneck/__main__.py' 2025-06-01T21:24:09.8939806Z adding 'torch/utils/data/__init__.py' 2025-06-01T21:24:09.8943735Z adding 'torch/utils/data/backward_compatibility.py' 2025-06-01T21:24:09.8973729Z adding 'torch/utils/data/dataloader.py' 2025-06-01T21:24:09.8983855Z adding 'torch/utils/data/dataset.py' 2025-06-01T21:24:09.8988337Z adding 'torch/utils/data/distributed.py' 2025-06-01T21:24:09.8992905Z adding 'torch/utils/data/graph.py' 2025-06-01T21:24:09.8997551Z adding 'torch/utils/data/graph_settings.py' 2025-06-01T21:24:09.9003541Z adding 'torch/utils/data/sampler.py' 2025-06-01T21:24:09.9008203Z adding 'torch/utils/data/_utils/__init__.py' 2025-06-01T21:24:09.9014764Z adding 'torch/utils/data/_utils/collate.py' 2025-06-01T21:24:09.9018681Z adding 'torch/utils/data/_utils/fetch.py' 2025-06-01T21:24:09.9022671Z adding 'torch/utils/data/_utils/pin_memory.py' 2025-06-01T21:24:09.9026843Z adding 'torch/utils/data/_utils/signal_handling.py' 2025-06-01T21:24:09.9033618Z adding 'torch/utils/data/_utils/worker.py' 2025-06-01T21:24:09.9037906Z adding 'torch/utils/data/datapipes/__init__.py' 2025-06-01T21:24:09.9042482Z adding 'torch/utils/data/datapipes/_decorator.py' 2025-06-01T21:24:09.9048564Z adding 'torch/utils/data/datapipes/_hook_iterator.py' 2025-06-01T21:24:09.9056086Z adding 'torch/utils/data/datapipes/_typing.py' 2025-06-01T21:24:09.9063911Z adding 'torch/utils/data/datapipes/datapipe.py' 2025-06-01T21:24:09.9075204Z adding 'torch/utils/data/datapipes/datapipe.pyi' 2025-06-01T21:24:09.9081027Z adding 'torch/utils/data/datapipes/gen_pyi.py' 2025-06-01T21:24:09.9085166Z adding 'torch/utils/data/datapipes/dataframe/__init__.py' 2025-06-01T21:24:09.9088913Z adding 'torch/utils/data/datapipes/dataframe/dataframe_wrapper.py' 2025-06-01T21:24:09.9096583Z adding 'torch/utils/data/datapipes/dataframe/dataframes.py' 2025-06-01T21:24:09.9099352Z adding 'torch/utils/data/datapipes/dataframe/datapipes.py' 2025-06-01T21:24:09.9102763Z adding 'torch/utils/data/datapipes/dataframe/structures.py' 2025-06-01T21:24:09.9108358Z adding 'torch/utils/data/datapipes/iter/__init__.py' 2025-06-01T21:24:09.9112706Z adding 'torch/utils/data/datapipes/iter/callable.py' 2025-06-01T21:24:09.9117636Z adding 'torch/utils/data/datapipes/iter/combinatorics.py' 2025-06-01T21:24:09.9126629Z adding 'torch/utils/data/datapipes/iter/combining.py' 2025-06-01T21:24:09.9131644Z adding 'torch/utils/data/datapipes/iter/filelister.py' 2025-06-01T21:24:09.9134765Z adding 'torch/utils/data/datapipes/iter/fileopener.py' 2025-06-01T21:24:09.9140373Z adding 'torch/utils/data/datapipes/iter/grouping.py' 2025-06-01T21:24:09.9144335Z adding 'torch/utils/data/datapipes/iter/routeddecoder.py' 2025-06-01T21:24:09.9148396Z adding 'torch/utils/data/datapipes/iter/selecting.py' 2025-06-01T21:24:09.9152185Z adding 'torch/utils/data/datapipes/iter/sharding.py' 2025-06-01T21:24:09.9155628Z adding 'torch/utils/data/datapipes/iter/streamreader.py' 2025-06-01T21:24:09.9159007Z adding 'torch/utils/data/datapipes/iter/utils.py' 2025-06-01T21:24:09.9162941Z adding 'torch/utils/data/datapipes/map/__init__.py' 2025-06-01T21:24:09.9166323Z adding 'torch/utils/data/datapipes/map/callable.py' 2025-06-01T21:24:09.9170348Z adding 'torch/utils/data/datapipes/map/combinatorics.py' 2025-06-01T21:24:09.9174025Z adding 'torch/utils/data/datapipes/map/combining.py' 2025-06-01T21:24:09.9178751Z adding 'torch/utils/data/datapipes/map/grouping.py' 2025-06-01T21:24:09.9181242Z adding 'torch/utils/data/datapipes/map/utils.py' 2025-06-01T21:24:09.9184943Z adding 'torch/utils/data/datapipes/utils/__init__.py' 2025-06-01T21:24:09.9191140Z adding 'torch/utils/data/datapipes/utils/common.py' 2025-06-01T21:24:09.9197156Z adding 'torch/utils/data/datapipes/utils/decoder.py' 2025-06-01T21:24:09.9201243Z adding 'torch/utils/data/datapipes/utils/snapshot.py' 2025-06-01T21:24:09.9204937Z adding 'torch/utils/hipify/__init__.py' 2025-06-01T21:24:09.9208877Z adding 'torch/utils/hipify/constants.py' 2025-06-01T21:24:09.9268772Z adding 'torch/utils/hipify/cuda_to_hip_mappings.py' 2025-06-01T21:24:09.9293774Z adding 'torch/utils/hipify/hipify_python.py' 2025-06-01T21:24:09.9297661Z adding 'torch/utils/hipify/version.py' 2025-06-01T21:24:09.9301159Z adding 'torch/utils/jit/__init__.py' 2025-06-01T21:24:09.9304959Z adding 'torch/utils/jit/log_extract.py' 2025-06-01T21:24:09.9313071Z adding 'torch/utils/model_dump/__init__.py' 2025-06-01T21:24:09.9316381Z adding 'torch/utils/model_dump/__main__.py' 2025-06-01T21:24:09.9323555Z adding 'torch/utils/model_dump/code.js' 2025-06-01T21:24:09.9327409Z adding 'torch/utils/model_dump/htm.mjs' 2025-06-01T21:24:09.9333060Z adding 'torch/utils/model_dump/preact.mjs' 2025-06-01T21:24:09.9336341Z adding 'torch/utils/model_dump/skeleton.html' 2025-06-01T21:24:09.9339843Z adding 'torch/utils/serialization/__init__.py' 2025-06-01T21:24:09.9342810Z adding 'torch/utils/serialization/config.py' 2025-06-01T21:24:09.9346729Z adding 'torch/utils/tensorboard/__init__.py' 2025-06-01T21:24:09.9349805Z adding 'torch/utils/tensorboard/_convert_np.py' 2025-06-01T21:24:09.9353414Z adding 'torch/utils/tensorboard/_embedding.py' 2025-06-01T21:24:09.9356790Z adding 'torch/utils/tensorboard/_onnx_graph.py' 2025-06-01T21:24:09.9360080Z adding 'torch/utils/tensorboard/_proto_graph.py' 2025-06-01T21:24:09.9366731Z adding 'torch/utils/tensorboard/_pytorch_graph.py' 2025-06-01T21:24:09.9371124Z adding 'torch/utils/tensorboard/_utils.py' 2025-06-01T21:24:09.9383703Z adding 'torch/utils/tensorboard/summary.py' 2025-06-01T21:24:09.9398546Z adding 'torch/utils/tensorboard/writer.py' 2025-06-01T21:24:09.9407118Z adding 'torch/utils/viz/__init__.py' 2025-06-01T21:24:09.9410808Z adding 'torch/utils/viz/_cycles.py' 2025-06-01T21:24:09.9419544Z adding 'torch/xpu/__init__.py' 2025-06-01T21:24:09.9423205Z adding 'torch/xpu/_gpu_trace.py' 2025-06-01T21:24:09.9426758Z adding 'torch/xpu/_utils.py' 2025-06-01T21:24:09.9431242Z adding 'torch/xpu/memory.py' 2025-06-01T21:24:09.9435267Z adding 'torch/xpu/random.py' 2025-06-01T21:24:09.9439918Z adding 'torch/xpu/streams.py' 2025-06-01T21:24:09.9448610Z adding 'torchgen/__init__.py' 2025-06-01T21:24:09.9453205Z adding 'torchgen/code_template.py' 2025-06-01T21:24:09.9456102Z adding 'torchgen/context.py' 2025-06-01T21:24:09.9493990Z adding 'torchgen/gen.py' 2025-06-01T21:24:09.9504539Z adding 'torchgen/gen_aoti_c_shim.py' 2025-06-01T21:24:09.9512809Z adding 'torchgen/gen_backend_stubs.py' 2025-06-01T21:24:09.9527305Z adding 'torchgen/gen_executorch.py' 2025-06-01T21:24:09.9541155Z adding 'torchgen/gen_functionalization_type.py' 2025-06-01T21:24:09.9551046Z adding 'torchgen/gen_lazy_tensor.py' 2025-06-01T21:24:09.9555865Z adding 'torchgen/gen_schema_utils.py' 2025-06-01T21:24:09.9560235Z adding 'torchgen/gen_vmap_plumbing.py' 2025-06-01T21:24:09.9563941Z adding 'torchgen/local.py' 2025-06-01T21:24:09.9607449Z adding 'torchgen/model.py' 2025-06-01T21:24:09.9622172Z adding 'torchgen/native_function_generation.py' 2025-06-01T21:24:09.9630932Z adding 'torchgen/utils.py' 2025-06-01T21:24:09.9634554Z adding 'torchgen/yaml_utils.py' 2025-06-01T21:24:09.9639186Z adding 'torchgen/aoti/__init__.py' 2025-06-01T21:24:09.9642306Z adding 'torchgen/aoti/fallback_ops.py' 2025-06-01T21:24:09.9646235Z adding 'torchgen/api/__init__.py' 2025-06-01T21:24:09.9660496Z adding 'torchgen/api/autograd.py' 2025-06-01T21:24:09.9668342Z adding 'torchgen/api/cpp.py' 2025-06-01T21:24:09.9672458Z adding 'torchgen/api/dispatcher.py' 2025-06-01T21:24:09.9677134Z adding 'torchgen/api/functionalization.py' 2025-06-01T21:24:09.9684586Z adding 'torchgen/api/lazy.py' 2025-06-01T21:24:09.9688182Z adding 'torchgen/api/meta.py' 2025-06-01T21:24:09.9692197Z adding 'torchgen/api/native.py' 2025-06-01T21:24:09.9713588Z adding 'torchgen/api/python.py' 2025-06-01T21:24:09.9719242Z adding 'torchgen/api/structured.py' 2025-06-01T21:24:09.9726566Z adding 'torchgen/api/translate.py' 2025-06-01T21:24:09.9731401Z adding 'torchgen/api/ufunc.py' 2025-06-01T21:24:09.9736593Z adding 'torchgen/api/unboxing.py' 2025-06-01T21:24:09.9740498Z adding 'torchgen/api/types/__init__.py' 2025-06-01T21:24:09.9747225Z adding 'torchgen/api/types/signatures.py' 2025-06-01T21:24:09.9752225Z adding 'torchgen/api/types/types.py' 2025-06-01T21:24:09.9756979Z adding 'torchgen/api/types/types_base.py' 2025-06-01T21:24:09.9761104Z adding 'torchgen/dest/__init__.py' 2025-06-01T21:24:09.9771269Z adding 'torchgen/dest/lazy_ir.py' 2025-06-01T21:24:09.9775310Z adding 'torchgen/dest/lazy_ts_lowering.py' 2025-06-01T21:24:09.9779019Z adding 'torchgen/dest/native_functions.py' 2025-06-01T21:24:09.9792962Z adding 'torchgen/dest/register_dispatch_key.py' 2025-06-01T21:24:09.9801021Z adding 'torchgen/dest/ufunc.py' 2025-06-01T21:24:09.9805046Z adding 'torchgen/executorch/__init__.py' 2025-06-01T21:24:09.9809717Z adding 'torchgen/executorch/model.py' 2025-06-01T21:24:09.9813988Z adding 'torchgen/executorch/parse.py' 2025-06-01T21:24:09.9817729Z adding 'torchgen/executorch/api/__init__.py' 2025-06-01T21:24:09.9821800Z adding 'torchgen/executorch/api/custom_ops.py' 2025-06-01T21:24:09.9828116Z adding 'torchgen/executorch/api/et_cpp.py' 2025-06-01T21:24:09.9833052Z adding 'torchgen/executorch/api/unboxing.py' 2025-06-01T21:24:09.9836914Z adding 'torchgen/executorch/api/types/__init__.py' 2025-06-01T21:24:09.9840393Z adding 'torchgen/executorch/api/types/signatures.py' 2025-06-01T21:24:09.9843784Z adding 'torchgen/executorch/api/types/types.py' 2025-06-01T21:24:09.9847400Z adding 'torchgen/operator_versions/__init__.py' 2025-06-01T21:24:09.9852941Z adding 'torchgen/operator_versions/gen_mobile_upgraders.py' 2025-06-01T21:24:09.9856213Z adding 'torchgen/operator_versions/gen_mobile_upgraders_constant.py' 2025-06-01T21:24:09.9972957Z adding 'torchgen/packaged/ATen/native/native_functions.yaml' 2025-06-01T21:24:09.9990809Z adding 'torchgen/packaged/ATen/native/tags.yaml' 2025-06-01T21:24:09.9996094Z adding 'torchgen/packaged/ATen/templates/ATenOpList.cpp' 2025-06-01T21:24:09.9999578Z adding 'torchgen/packaged/ATen/templates/CompositeViewCopyKernels.cpp' 2025-06-01T21:24:10.0002848Z adding 'torchgen/packaged/ATen/templates/DispatchKeyFunction.h' 2025-06-01T21:24:10.0017248Z adding 'torchgen/packaged/ATen/templates/DispatchKeyFunctions.h' 2025-06-01T21:24:10.0017802Z adding 'torchgen/packaged/ATen/templates/DispatchKeyFunctions_inl.h' 2025-06-01T21:24:10.0018442Z adding 'torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.cpp' 2025-06-01T21:24:10.0019066Z adding 'torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.h' 2025-06-01T21:24:10.0019535Z adding 'torchgen/packaged/ATen/templates/Function.h' 2025-06-01T21:24:10.0037576Z adding 'torchgen/packaged/ATen/templates/FunctionalInverses.h' 2025-06-01T21:24:10.0038041Z adding 'torchgen/packaged/ATen/templates/Functions.cpp' 2025-06-01T21:24:10.0038423Z adding 'torchgen/packaged/ATen/templates/Functions.h' 2025-06-01T21:24:10.0038797Z adding 'torchgen/packaged/ATen/templates/LazyIr.h' 2025-06-01T21:24:10.0039185Z adding 'torchgen/packaged/ATen/templates/LazyNonNativeIr.h' 2025-06-01T21:24:10.0041571Z adding 'torchgen/packaged/ATen/templates/MethodOperators.h' 2025-06-01T21:24:10.0044673Z adding 'torchgen/packaged/ATen/templates/NativeFunction.h' 2025-06-01T21:24:10.0047847Z adding 'torchgen/packaged/ATen/templates/NativeFunctions.h' 2025-06-01T21:24:10.0050986Z adding 'torchgen/packaged/ATen/templates/NativeMetaFunction.h' 2025-06-01T21:24:10.0053864Z adding 'torchgen/packaged/ATen/templates/NativeMetaFunctions.h' 2025-06-01T21:24:10.0056948Z adding 'torchgen/packaged/ATen/templates/Operator.h' 2025-06-01T21:24:10.0059866Z adding 'torchgen/packaged/ATen/templates/Operators.cpp' 2025-06-01T21:24:10.0063679Z adding 'torchgen/packaged/ATen/templates/Operators.h' 2025-06-01T21:24:10.0066831Z adding 'torchgen/packaged/ATen/templates/RedispatchFunctions.cpp' 2025-06-01T21:24:10.0069831Z adding 'torchgen/packaged/ATen/templates/RedispatchFunctions.h' 2025-06-01T21:24:10.0073056Z adding 'torchgen/packaged/ATen/templates/RegisterBackendSelect.cpp' 2025-06-01T21:24:10.0076307Z adding 'torchgen/packaged/ATen/templates/RegisterCodegenUnboxedKernels.cpp' 2025-06-01T21:24:10.0079280Z adding 'torchgen/packaged/ATen/templates/RegisterDispatchDefinitions.ini' 2025-06-01T21:24:10.0082467Z adding 'torchgen/packaged/ATen/templates/RegisterDispatchKey.cpp' 2025-06-01T21:24:10.0086145Z adding 'torchgen/packaged/ATen/templates/RegisterFunctionalization.cpp' 2025-06-01T21:24:10.0089324Z adding 'torchgen/packaged/ATen/templates/RegisterSchema.cpp' 2025-06-01T21:24:10.0092282Z adding 'torchgen/packaged/ATen/templates/RegistrationDeclarations.h' 2025-06-01T21:24:10.0103722Z adding 'torchgen/packaged/ATen/templates/TensorBody.h' 2025-06-01T21:24:10.0108028Z adding 'torchgen/packaged/ATen/templates/TensorMethods.cpp' 2025-06-01T21:24:10.0111089Z adding 'torchgen/packaged/ATen/templates/UfuncCPU.cpp' 2025-06-01T21:24:10.0114023Z adding 'torchgen/packaged/ATen/templates/UfuncCPUKernel.cpp' 2025-06-01T21:24:10.0116935Z adding 'torchgen/packaged/ATen/templates/UfuncCUDA.cu' 2025-06-01T21:24:10.0120073Z adding 'torchgen/packaged/ATen/templates/UnboxingFunctions.cpp' 2025-06-01T21:24:10.0123166Z adding 'torchgen/packaged/ATen/templates/UnboxingFunctions.h' 2025-06-01T21:24:10.0126245Z adding 'torchgen/packaged/ATen/templates/aten_interned_strings.h' 2025-06-01T21:24:10.0129039Z adding 'torchgen/packaged/ATen/templates/enum_tag.h' 2025-06-01T21:24:10.0132862Z adding 'torchgen/packaged/autograd/BUILD.bazel' 2025-06-01T21:24:10.0136029Z adding 'torchgen/packaged/autograd/README.md' 2025-06-01T21:24:10.0138859Z adding 'torchgen/packaged/autograd/__init__.py' 2025-06-01T21:24:10.0141715Z adding 'torchgen/packaged/autograd/build.bzl' 2025-06-01T21:24:10.0144857Z adding 'torchgen/packaged/autograd/context.py' 2025-06-01T21:24:10.0148374Z adding 'torchgen/packaged/autograd/deprecated.yaml' 2025-06-01T21:24:10.0195716Z adding 'torchgen/packaged/autograd/derivatives.yaml' 2025-06-01T21:24:10.0203820Z adding 'torchgen/packaged/autograd/gen_annotated_fn_args.py' 2025-06-01T21:24:10.0207777Z adding 'torchgen/packaged/autograd/gen_autograd.py' 2025-06-01T21:24:10.0219244Z adding 'torchgen/packaged/autograd/gen_autograd_functions.py' 2025-06-01T21:24:10.0229074Z adding 'torchgen/packaged/autograd/gen_inplace_or_view_type.py' 2025-06-01T21:24:10.0245692Z adding 'torchgen/packaged/autograd/gen_python_functions.py' 2025-06-01T21:24:10.0255094Z adding 'torchgen/packaged/autograd/gen_trace_type.py' 2025-06-01T21:24:10.0259536Z adding 'torchgen/packaged/autograd/gen_variable_factories.py' 2025-06-01T21:24:10.0286196Z adding 'torchgen/packaged/autograd/gen_variable_type.py' 2025-06-01T21:24:10.0293849Z adding 'torchgen/packaged/autograd/gen_view_funcs.py' 2025-06-01T21:24:10.0308416Z adding 'torchgen/packaged/autograd/load_derivatives.py' 2025-06-01T21:24:10.0314072Z adding 'torchgen/packaged/autograd/templates/ADInplaceOrViewType.cpp' 2025-06-01T21:24:10.0317312Z adding 'torchgen/packaged/autograd/templates/Functions.cpp' 2025-06-01T21:24:10.0320615Z adding 'torchgen/packaged/autograd/templates/Functions.h' 2025-06-01T21:24:10.0323744Z adding 'torchgen/packaged/autograd/templates/TraceType.cpp' 2025-06-01T21:24:10.0327122Z adding 'torchgen/packaged/autograd/templates/VariableType.cpp' 2025-06-01T21:24:10.0330377Z adding 'torchgen/packaged/autograd/templates/VariableType.h' 2025-06-01T21:24:10.0333204Z adding 'torchgen/packaged/autograd/templates/ViewFuncs.cpp' 2025-06-01T21:24:10.0336109Z adding 'torchgen/packaged/autograd/templates/ViewFuncs.h' 2025-06-01T21:24:10.0339021Z adding 'torchgen/packaged/autograd/templates/annotated_fn_args.py.in' 2025-06-01T21:24:10.0341902Z adding 'torchgen/packaged/autograd/templates/python_enum_tag.cpp' 2025-06-01T21:24:10.0345282Z adding 'torchgen/packaged/autograd/templates/python_fft_functions.cpp' 2025-06-01T21:24:10.0348423Z adding 'torchgen/packaged/autograd/templates/python_functions.cpp' 2025-06-01T21:24:10.0351999Z adding 'torchgen/packaged/autograd/templates/python_functions.h' 2025-06-01T21:24:10.0355325Z adding 'torchgen/packaged/autograd/templates/python_linalg_functions.cpp' 2025-06-01T21:24:10.0358652Z adding 'torchgen/packaged/autograd/templates/python_nested_functions.cpp' 2025-06-01T21:24:10.0362293Z adding 'torchgen/packaged/autograd/templates/python_nn_functions.cpp' 2025-06-01T21:24:10.0365519Z adding 'torchgen/packaged/autograd/templates/python_return_types.cpp' 2025-06-01T21:24:10.0368345Z adding 'torchgen/packaged/autograd/templates/python_return_types.h' 2025-06-01T21:24:10.0371528Z adding 'torchgen/packaged/autograd/templates/python_sparse_functions.cpp' 2025-06-01T21:24:10.0374852Z adding 'torchgen/packaged/autograd/templates/python_special_functions.cpp' 2025-06-01T21:24:10.0378266Z adding 'torchgen/packaged/autograd/templates/python_torch_functions.cpp' 2025-06-01T21:24:10.0390675Z adding 'torchgen/packaged/autograd/templates/python_variable_methods.cpp' 2025-06-01T21:24:10.0395798Z adding 'torchgen/packaged/autograd/templates/variable_factories.h' 2025-06-01T21:24:10.0399445Z adding 'torchgen/selective_build/__init__.py' 2025-06-01T21:24:10.0403805Z adding 'torchgen/selective_build/operator.py' 2025-06-01T21:24:10.0409746Z adding 'torchgen/selective_build/selector.py' 2025-06-01T21:24:10.0413616Z adding 'torchgen/static_runtime/__init__.py' 2025-06-01T21:24:10.0418224Z adding 'torchgen/static_runtime/config.py' 2025-06-01T21:24:10.0423008Z adding 'torchgen/static_runtime/gen_static_runtime_ops.py' 2025-06-01T21:24:10.0431851Z adding 'torchgen/static_runtime/generator.py' 2025-06-01T21:24:10.0546668Z adding 'torch-2.8.0a0+gitf7c09f8.dist-info/LICENSE' 2025-06-01T21:24:10.0569336Z adding 'torch-2.8.0a0+gitf7c09f8.dist-info/METADATA' 2025-06-01T21:24:10.0578805Z adding 'torch-2.8.0a0+gitf7c09f8.dist-info/NOTICE' 2025-06-01T21:24:10.0581406Z adding 'torch-2.8.0a0+gitf7c09f8.dist-info/WHEEL' 2025-06-01T21:24:10.0583597Z adding 'torch-2.8.0a0+gitf7c09f8.dist-info/entry_points.txt' 2025-06-01T21:24:10.0585591Z adding 'torch-2.8.0a0+gitf7c09f8.dist-info/top_level.txt' 2025-06-01T21:24:10.1258408Z adding 'torch-2.8.0a0+gitf7c09f8.dist-info/RECORD' 2025-06-01T21:24:10.1619276Z removing build\bdist.win-amd64\wheel 2025-06-01T21:24:11.5889416Z 2025-06-01T21:24:11.5890044Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 goto fail 2025-06-01T21:24:11.5890417Z 2025-06-01T21:24:11.5890972Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 goto fail 2025-06-01T21:24:11.5892307Z 2025-06-01T21:24:11.5892591Z (base) C:\actions-runner\_work\pytorch\pytorch>sccache --show-stats 2025-06-01T21:24:12.7859025Z Compile requests 6951 2025-06-01T21:24:12.7859391Z Compile requests executed 6951 2025-06-01T21:24:12.7859716Z Cache hits 6879 2025-06-01T21:24:12.7859969Z Cache hits (C/C++) 6879 2025-06-01T21:24:12.7860232Z Cache misses 51 2025-06-01T21:24:12.7860495Z Cache misses (C/C++) 51 2025-06-01T21:24:12.7860752Z Cache timeouts 0 2025-06-01T21:24:12.7861008Z Cache read errors 0 2025-06-01T21:24:12.7861260Z Forced recaches 0 2025-06-01T21:24:12.7861520Z Cache write errors 0 2025-06-01T21:24:12.7861925Z Compilation failures 3 2025-06-01T21:24:12.7862204Z Cache errors 18 2025-06-01T21:24:12.7862465Z Cache errors (C/C++) 18 2025-06-01T21:24:12.7862767Z Non-cacheable compilations 8 2025-06-01T21:24:12.7863032Z Non-cacheable calls 0 2025-06-01T21:24:12.7863299Z Non-compilation calls 0 2025-06-01T21:24:12.7863565Z Unsupported compiler calls 0 2025-06-01T21:24:12.7863839Z Average cache write 0.031 s 2025-06-01T21:24:12.7864121Z Average compiler 0.096 s 2025-06-01T21:24:12.7864459Z Average cache read hit 0.057 s 2025-06-01T21:24:12.7864750Z Failed distributed compilations 0 2025-06-01T21:24:12.7865124Z Cache location s3, name: ossci-compiler-cache, prefix: /trunk/ 2025-06-01T21:24:12.7865524Z Version (client) 0.7.4 2025-06-01T21:24:12.7883130Z 2025-06-01T21:24:12.7883830Z (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-06-01T21:24:13.7005857Z Processing c:\actions-runner\_work\pytorch\pytorch\dist\torch-2.8.0a0+gitf7c09f8-cp39-cp39-win_amd64.whl 2025-06-01T21:24:14.4232139Z Installing collected packages: torch 2025-06-01T21:24:32.8123196Z Successfully installed torch-2.8.0a0+gitf7c09f8 2025-06-01T21:24:32.8780001Z 2025-06-01T21:24:32.8781324Z (base) C:\actions-runner\_work\pytorch\pytorch>(if "win-vs2022-cpu-py3" == "" (echo NOTE: To run `import torch`, please make sure to activate the conda environment by running `call C:\Jenkins\Miniconda3\Scripts\activate.bat C:\Jenkins\Miniconda3` in Command Prompt before running Git Bash. ) else ( 2025-06-01T21:24:32.8782570Z copy /Y "dist\*.whl" "C:/15379340894/build-results/" 2025-06-01T21:24:32.8782916Z python tools/stats/export_test_times.py 2025-06-01T21:24:32.8783359Z robocopy /E ".additional_ci_files" "C:/15379340894/build-results/\.additional_ci_files" 2025-06-01T21:24:32.8783883Z copy /Y "build\.ninja_log" "C:/15379340894/build-results/\" 2025-06-01T21:24:32.8784190Z ) ) 2025-06-01T21:24:32.8788694Z dist\torch-2.8.0a0+gitf7c09f8-cp39-cp39-win_amd64.whl 2025-06-01T21:24:32.9915068Z 1 file(s) copied. 2025-06-01T21:24:34.1562865Z Exporting test times from test-infra 2025-06-01T21:24:34.1563844Z 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-06-01T21:24:34.1565395Z 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-06-01T21:24:34.1821957Z 2025-06-01T21:24:34.1822465Z ------------------------------------------------------------------------------- 2025-06-01T21:24:34.1823330Z ROBOCOPY :: Robust File Copy for Windows 2025-06-01T21:24:34.1823794Z ------------------------------------------------------------------------------- 2025-06-01T21:24:34.1824703Z 2025-06-01T21:24:34.1825572Z Started : Sunday, June 1, 2025 9:24:34 PM 2025-06-01T21:24:34.1826085Z Source : C:\actions-runner\_work\pytorch\pytorch\.additional_ci_files\ 2025-06-01T21:24:34.1826542Z Dest : C:\15379340894\build-results\.additional_ci_files\ 2025-06-01T21:24:34.1826836Z 2025-06-01T21:24:34.1827435Z Files : *.* 2025-06-01T21:24:34.1827777Z 2025-06-01T21:24:34.1828865Z Options : *.* /S /E /DCOPY:DA /COPY:DAT /R:1000000 /W:30 2025-06-01T21:24:34.1829227Z 2025-06-01T21:24:34.1829569Z ------------------------------------------------------------------------------ 2025-06-01T21:24:34.1832479Z 2025-06-01T21:24:34.1838728Z New Dir 2 C:\actions-runner\_work\pytorch\pytorch\.additional_ci_files\ 2025-06-01T21:24:34.1846711Z New File 6.0 m test-class-times.json 2025-06-01T21:24:34.1849332Z 8.2% 2025-06-01T21:24:34.1852799Z 16.5% 2025-06-01T21:24:34.1855697Z 24.8% 2025-06-01T21:24:34.1859119Z 33.0% 2025-06-01T21:24:34.1863019Z 41.3% 2025-06-01T21:24:34.1865539Z 49.6% 2025-06-01T21:24:34.1868761Z 57.8% 2025-06-01T21:24:34.1871390Z 66.1% 2025-06-01T21:24:34.1874486Z 74.4% 2025-06-01T21:24:34.1877178Z 82.7% 2025-06-01T21:24:34.1880254Z 90.9% 2025-06-01T21:24:34.1881174Z 99.2% 2025-06-01T21:24:34.1883855Z 100% 2025-06-01T21:24:34.1888956Z New File 1.6 m test-times.json 2025-06-01T21:24:34.1890361Z 14% 2025-06-01T21:24:34.1891882Z 29% 2025-06-01T21:24:34.1893477Z 44% 2025-06-01T21:24:34.1895089Z 59% 2025-06-01T21:24:34.1896742Z 74% 2025-06-01T21:24:34.1898022Z 89% 2025-06-01T21:24:34.1901422Z 100% 2025-06-01T21:24:34.1901849Z 2025-06-01T21:24:34.1902014Z ------------------------------------------------------------------------------ 2025-06-01T21:24:34.1902309Z 2025-06-01T21:24:34.1903520Z Total Copied Skipped Mismatch FAILED Extras 2025-06-01T21:24:34.1904437Z Dirs : 1 1 0 0 0 0 2025-06-01T21:24:34.1905350Z Files : 2 2 0 0 0 0 2025-06-01T21:24:34.1906267Z Bytes : 7.71 m 7.71 m 0 0 0 0 2025-06-01T21:24:34.1907257Z Times : 0:00:00 0:00:00 0:00:00 0:00:00 2025-06-01T21:24:34.1907507Z 2025-06-01T21:24:34.1907964Z 2025-06-01T21:24:34.1909067Z Speed : 1348297666 Bytes/sec. 2025-06-01T21:24:34.1910051Z Speed : 77150.211 MegaBytes/min. 2025-06-01T21:24:34.1910428Z Ended : Sunday, June 1, 2025 9:24:34 PM 2025-06-01T21:24:34.1910769Z 2025-06-01T21:24:34.7694048Z 1 file(s) copied. 2025-06-01T21:24:34.7696382Z 2025-06-01T21:24:34.7697306Z (base) C:\actions-runner\_work\pytorch\pytorch>sccache --show-stats --stats-format json | jq .stats 1>sccache-stats-win-vs2022-cpu-py3-43268061395.json 2025-06-01T21:24:34.8169214Z 2025-06-01T21:24:34.8169944Z (base) C:\actions-runner\_work\pytorch\pytorch>sccache --stop-server 2025-06-01T21:24:34.8253024Z Stopping sccache server... 2025-06-01T21:24:34.8271409Z Compile requests 6951 2025-06-01T21:24:34.8271755Z Compile requests executed 6951 2025-06-01T21:24:34.8272039Z Cache hits 6879 2025-06-01T21:24:34.8272305Z Cache hits (C/C++) 6879 2025-06-01T21:24:34.8272554Z Cache misses 51 2025-06-01T21:24:34.8272810Z Cache misses (C/C++) 51 2025-06-01T21:24:34.8273066Z Cache timeouts 0 2025-06-01T21:24:34.8273320Z Cache read errors 0 2025-06-01T21:24:34.8273583Z Forced recaches 0 2025-06-01T21:24:34.8273836Z Cache write errors 0 2025-06-01T21:24:34.8274108Z Compilation failures 3 2025-06-01T21:24:34.8274366Z Cache errors 18 2025-06-01T21:24:34.8274634Z Cache errors (C/C++) 18 2025-06-01T21:24:34.8274900Z Non-cacheable compilations 8 2025-06-01T21:24:34.8275328Z Non-cacheable calls 0 2025-06-01T21:24:34.8275663Z Non-compilation calls 0 2025-06-01T21:24:34.8275952Z Unsupported compiler calls 0 2025-06-01T21:24:34.8276245Z Average cache write 0.031 s 2025-06-01T21:24:34.8276525Z Average compiler 0.096 s 2025-06-01T21:24:34.8276818Z Average cache read hit 0.057 s 2025-06-01T21:24:34.8277103Z Failed distributed compilations 0 2025-06-01T21:24:34.8277492Z Cache location s3, name: ossci-compiler-cache, prefix: /trunk/ 2025-06-01T21:24:34.8277874Z Version (client) 0.7.4 2025-06-01T21:24:34.8291038Z 2025-06-01T21:24:34.8291347Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-06-01T21:24:35.0278467Z + assert_git_not_dirty 2025-06-01T21:24:35.0278899Z + [[ win-vs2022-cpu-py3 != *rocm* ]] 2025-06-01T21:24:35.0279188Z + [[ win-vs2022-cpu-py3 != *xla* ]] 2025-06-01T21:24:35.2308516Z ++ git status --porcelain 2025-06-01T21:24:35.2360358Z ++ grep -v '?? third_party' 2025-06-01T21:26:32.1462328Z ++ true 2025-06-01T21:26:32.1466826Z + git_status= 2025-06-01T21:26:32.1467171Z + [[ -n '' ]] 2025-06-01T21:26:32.1467441Z + echo 'BUILD PASSED' 2025-06-01T21:26:32.1467671Z BUILD PASSED 2025-06-01T21:26:32.3443735Z ##[group]Run seemethere/upload-artifact-s3@baba72d0712b404f646cebe0730933554ebce96a 2025-06-01T21:26:32.3444210Z with: 2025-06-01T21:26:32.3444406Z retention-days: 14 2025-06-01T21:26:32.3444635Z if-no-files-found: error 2025-06-01T21:26:32.3444892Z name: win-vs2022-cpu-py3 2025-06-01T21:26:32.3445128Z path: C:\15379340894\build-results 2025-06-01T21:26:32.3445404Z s3-bucket: gha-artifacts 2025-06-01T21:26:32.3445641Z region: us-east-1 2025-06-01T21:26:32.3445830Z env: 2025-06-01T21:26:32.3446022Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:26:32.3446485Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:26:32.3447020Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:26:32.3447500Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:26:32.3447898Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:26:32.3448201Z ##[endgroup] 2025-06-01T21:26:34.4548878Z With the provided path, there will be 4 files uploaded 2025-06-01T21:26:34.4549374Z Uploading to s3 prefix: pytorch/pytorch/15379340894/win-vs2022-cpu-py3 2025-06-01T21:26:34.4573792Z Starting upload of .additional_ci_files\test-class-times.json 2025-06-01T21:26:34.7095159Z Finished upload of .additional_ci_files\test-class-times.json 2025-06-01T21:26:34.7097800Z Starting upload of .additional_ci_files\test-times.json 2025-06-01T21:26:34.8666828Z Finished upload of .additional_ci_files\test-times.json 2025-06-01T21:26:34.8668880Z Starting upload of .ninja_log 2025-06-01T21:26:35.0022763Z Finished upload of .ninja_log 2025-06-01T21:26:35.0024291Z Starting upload of torch-2.8.0a0+gitf7c09f8-cp39-cp39-win_amd64.whl 2025-06-01T21:26:36.5981112Z Finished upload of torch-2.8.0a0+gitf7c09f8-cp39-cp39-win_amd64.whl 2025-06-01T21:26:36.6517949Z Prepare all required actions 2025-06-01T21:26:36.6518587Z Getting action download info 2025-06-01T21:26:36.7641954Z Download action repository 'seemethere/upload-artifact-s3@v5' (SHA:baba72d0712b404f646cebe0730933554ebce96a) 2025-06-01T21:26:37.0701048Z ##[group]Run ./.github/actions/upload-sccache-stats 2025-06-01T21:26:37.0701418Z with: 2025-06-01T21:26:37.0720726Z github-token: *** 2025-06-01T21:26:37.0720997Z env: 2025-06-01T21:26:37.0721220Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:26:37.0721616Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:26:37.0722176Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:26:37.0722660Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:26:37.0723089Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:26:37.0723514Z ##[endgroup] 2025-06-01T21:26:37.0857201Z ##[group]Run seemethere/upload-artifact-s3@v5 2025-06-01T21:26:37.0857604Z with: 2025-06-01T21:26:37.0857852Z s3-prefix: pytorch/pytorch/15379340894/1/artifact 2025-06-01T21:26:37.0858214Z retention-days: 14 2025-06-01T21:26:37.0858462Z if-no-files-found: warn 2025-06-01T21:26:37.0858753Z path: sccache-stats-*.json 2025-06-01T21:26:37.0859040Z name: artifact 2025-06-01T21:26:37.0859269Z s3-bucket: gha-artifacts 2025-06-01T21:26:37.0859547Z region: us-east-1 2025-06-01T21:26:37.0859758Z env: 2025-06-01T21:26:37.0859990Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:26:37.0860378Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:26:37.0860934Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:26:37.0861419Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:26:37.0861846Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:26:37.0862293Z ##[endgroup] 2025-06-01T21:26:37.4733538Z NOTE: s3-prefix specified, ignoring name parameter 2025-06-01T21:26:37.4734027Z With the provided path, there will be 1 file uploaded 2025-06-01T21:26:37.4734461Z Uploading to s3 prefix: pytorch/pytorch/15379340894/1/artifact 2025-06-01T21:26:37.4746665Z Starting upload of sccache-stats-win-vs2022-cpu-py3-43268061395.json 2025-06-01T21:26:37.6243348Z Finished upload of sccache-stats-win-vs2022-cpu-py3-43268061395.json 2025-06-01T21:26:37.7488132Z Prepare all required actions 2025-06-01T21:26:37.7488536Z Getting action download info 2025-06-01T21:26:37.9316010Z ##[group]Run ./.github/actions/teardown-win 2025-06-01T21:26:37.9316325Z with: 2025-06-01T21:26:37.9316586Z extra-delete-dir: /c/15379340894/build-results/ 2025-06-01T21:26:37.9316920Z env: 2025-06-01T21:26:37.9317125Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:26:37.9317592Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:26:37.9318173Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:26:37.9318685Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:26:37.9319088Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:26:37.9319417Z ##[endgroup] 2025-06-01T21:26:37.9420716Z ##[group]Run .github\scripts\wait_for_ssh_to_drain.ps1 2025-06-01T21:26:37.9421242Z .github\scripts\wait_for_ssh_to_drain.ps1 2025-06-01T21:26:37.9437906Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-06-01T21:26:37.9438337Z env: 2025-06-01T21:26:37.9438534Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:26:37.9438893Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:26:37.9439396Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:26:37.9439855Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:26:37.9440236Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:26:37.9440520Z ##[endgroup] 2025-06-01T21:26:38.3106162Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-06-01T21:26:38.3172073Z Finished 2025-06-01T21:26:38.4576225Z Holding runner until all ssh sessions have logged out 2025-06-01T21:26:38.4818599Z ##[group]Run .github\scripts\kill_active_ssh_sessions.ps1 2025-06-01T21:26:38.4819016Z .github\scripts\kill_active_ssh_sessions.ps1 2025-06-01T21:26:38.4834811Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-06-01T21:26:38.4835261Z env: 2025-06-01T21:26:38.4835441Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:26:38.4835812Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:26:38.4836311Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:26:38.4836778Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:26:38.4837255Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:26:38.4837604Z ##[endgroup] 2025-06-01T21:26:38.8204931Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-06-01T21:26:38.8270118Z Finished 2025-06-01T21:26:38.8636996Z ##[group]Run pytorch/test-infra/.github/actions/cleanup-runner@main 2025-06-01T21:26:38.8637369Z env: 2025-06-01T21:26:38.8637542Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:26:38.8637927Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:26:38.8638431Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:26:38.8638890Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:26:38.8639280Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:26:38.8639553Z ##[endgroup] 2025-06-01T21:26:38.8707774Z ##[group]Run # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-06-01T21:26:38.8708515Z # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-06-01T21:26:38.8709156Z # Below is the list of commands that could lock $GITHUB_WORKSPACE gathered from sysinternals 2025-06-01T21:26:38.8709611Z # handle tool 2025-06-01T21:26:38.8709933Z $processes = "python", "ninja", "cl", "nvcc", "cmd", "sccache", "git" 2025-06-01T21:26:38.8710336Z Foreach ($process In $processes) { 2025-06-01T21:26:38.8712072Z  Try { 2025-06-01T21:26:38.8712594Z  # https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.management/stop-process 2025-06-01T21:26:38.8713270Z  Get-Process -Name $process -ErrorAction Stop | Stop-Process -Force 2025-06-01T21:26:38.8713644Z  } 2025-06-01T21:26:38.8713820Z  Catch { 2025-06-01T21:26:38.8714106Z  Write-Output "No leftover $process process, continuing" 2025-06-01T21:26:38.8714463Z  Write-Output $_ 2025-06-01T21:26:38.8714683Z  } 2025-06-01T21:26:38.8714860Z } 2025-06-01T21:26:38.8715026Z  2025-06-01T21:26:38.8715466Z # Try it again https://stackoverflow.com/questions/40585754/powershell-wont-terminate-hung-process 2025-06-01T21:26:38.8716010Z # for hung processes 2025-06-01T21:26:38.8716267Z Foreach ($process In $processes) { 2025-06-01T21:26:38.8716538Z  Try { 2025-06-01T21:26:38.8716908Z  (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process}%'").terminate() 2025-06-01T21:26:38.8717344Z  } 2025-06-01T21:26:38.8717526Z  Catch { 2025-06-01T21:26:38.8717722Z  Write-Output $_ 2025-06-01T21:26:38.8717955Z  } 2025-06-01T21:26:38.8718118Z } 2025-06-01T21:26:38.8718284Z  2025-06-01T21:26:38.8718442Z Try { 2025-06-01T21:26:38.8718668Z  # Print all the processes for debugging 2025-06-01T21:26:38.8719116Z  Wmic Path Win32_Process Get Caption,Processid,Commandline | Format-List 2025-06-01T21:26:38.8719520Z } 2025-06-01T21:26:38.8719681Z Catch { 2025-06-01T21:26:38.8720061Z  # Better to write out whatever exception thrown to help debugging any potential issue 2025-06-01T21:26:38.8720514Z  Write-Output $_ 2025-06-01T21:26:38.8720730Z } 2025-06-01T21:26:38.8735927Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-06-01T21:26:38.8736372Z env: 2025-06-01T21:26:38.8736556Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:26:38.8736913Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:26:38.8737426Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:26:38.8737870Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:26:38.8738248Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:26:38.8738611Z ##[endgroup] 2025-06-01T21:26:39.2351443Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-06-01T21:26:39.2422130Z Finished 2025-06-01T21:26:39.2569681Z No leftover python process, continuing 2025-06-01T21:26:39.3016064Z Get-Process : Cannot find a process with the name "python". Verify the process name and call the cmdlet again. 2025-06-01T21:26:39.3016771Z At C:\actions-runner\_work\_temp\4b855742-d61b-4f59-a814-194934fad755.ps1:9 char:5 2025-06-01T21:26:39.3017298Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-06-01T21:26:39.3017697Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T21:26:39.3018176Z + CategoryInfo : ObjectNotFound: (python:String) [Get-Process], ProcessCommandException 2025-06-01T21:26:39.3019049Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-06-01T21:26:39.3019687Z 2025-06-01T21:26:39.3031716Z No leftover ninja process, continuing 2025-06-01T21:26:39.3041666Z Get-Process : Cannot find a process with the name "ninja". Verify the process name and call the cmdlet again. 2025-06-01T21:26:39.3042290Z At C:\actions-runner\_work\_temp\4b855742-d61b-4f59-a814-194934fad755.ps1:9 char:5 2025-06-01T21:26:39.3042814Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-06-01T21:26:39.3043197Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T21:26:39.3044424Z + CategoryInfo : ObjectNotFound: (ninja:String) [Get-Process], ProcessCommandException 2025-06-01T21:26:39.3045248Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-06-01T21:26:39.3045812Z 2025-06-01T21:26:39.3055052Z No leftover cl process, continuing 2025-06-01T21:26:39.3064665Z Get-Process : Cannot find a process with the name "cl". Verify the process name and call the cmdlet again. 2025-06-01T21:26:39.3065300Z At C:\actions-runner\_work\_temp\4b855742-d61b-4f59-a814-194934fad755.ps1:9 char:5 2025-06-01T21:26:39.3065836Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-06-01T21:26:39.3066277Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T21:26:39.3066772Z + CategoryInfo : ObjectNotFound: (cl:String) [Get-Process], ProcessCommandException 2025-06-01T21:26:39.3067582Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-06-01T21:26:39.3068165Z 2025-06-01T21:26:39.3076731Z No leftover nvcc process, continuing 2025-06-01T21:26:39.3086115Z Get-Process : Cannot find a process with the name "nvcc". Verify the process name and call the cmdlet again. 2025-06-01T21:26:39.3086752Z At C:\actions-runner\_work\_temp\4b855742-d61b-4f59-a814-194934fad755.ps1:9 char:5 2025-06-01T21:26:39.3087272Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-06-01T21:26:39.3087667Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T21:26:39.3088132Z + CategoryInfo : ObjectNotFound: (nvcc:String) [Get-Process], ProcessCommandException 2025-06-01T21:26:39.3088950Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-06-01T21:26:39.3089523Z 2025-06-01T21:26:39.3097754Z No leftover cmd process, continuing 2025-06-01T21:26:39.3107214Z Get-Process : Cannot find a process with the name "cmd". Verify the process name and call the cmdlet again. 2025-06-01T21:26:39.3107836Z At C:\actions-runner\_work\_temp\4b855742-d61b-4f59-a814-194934fad755.ps1:9 char:5 2025-06-01T21:26:39.3108354Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-06-01T21:26:39.3108765Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T21:26:39.3109215Z + CategoryInfo : ObjectNotFound: (cmd:String) [Get-Process], ProcessCommandException 2025-06-01T21:26:39.3110142Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-06-01T21:26:39.3110786Z 2025-06-01T21:26:39.3118506Z No leftover sccache process, continuing 2025-06-01T21:26:39.3127946Z Get-Process : Cannot find a process with the name "sccache". Verify the process name and call the cmdlet again. 2025-06-01T21:26:39.3128591Z At C:\actions-runner\_work\_temp\4b855742-d61b-4f59-a814-194934fad755.ps1:9 char:5 2025-06-01T21:26:39.3129117Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-06-01T21:26:39.3129499Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T21:26:39.3129974Z + CategoryInfo : ObjectNotFound: (sccache:String) [Get-Process], ProcessCommandException 2025-06-01T21:26:39.3130822Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-06-01T21:26:39.3131387Z 2025-06-01T21:26:39.3139084Z No leftover git process, continuing 2025-06-01T21:26:39.3148509Z Get-Process : Cannot find a process with the name "git". Verify the process name and call the cmdlet again. 2025-06-01T21:26:39.3149146Z At C:\actions-runner\_work\_temp\4b855742-d61b-4f59-a814-194934fad755.ps1:9 char:5 2025-06-01T21:26:39.3149671Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-06-01T21:26:39.3150058Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T21:26:39.3150645Z + CategoryInfo : ObjectNotFound: (git:String) [Get-Process], ProcessCommandException 2025-06-01T21:26:39.3151416Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-06-01T21:26:39.3151991Z 2025-06-01T21:26:39.3635585Z You cannot call a method on a null-valued expression. 2025-06-01T21:26:39.3636093Z At C:\actions-runner\_work\_temp\4b855742-d61b-4f59-a814-194934fad755.ps1:21 char:5 2025-06-01T21:26:39.3636642Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-06-01T21:26:39.3637065Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T21:26:39.3637464Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-06-01T21:26:39.3637850Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-06-01T21:26:39.3638132Z 2025-06-01T21:26:39.3816850Z You cannot call a method on a null-valued expression. 2025-06-01T21:26:39.3817338Z At C:\actions-runner\_work\_temp\4b855742-d61b-4f59-a814-194934fad755.ps1:21 char:5 2025-06-01T21:26:39.3817886Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-06-01T21:26:39.3818293Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T21:26:39.3818681Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-06-01T21:26:39.3819123Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-06-01T21:26:39.3819506Z 2025-06-01T21:26:39.3987270Z You cannot call a method on a null-valued expression. 2025-06-01T21:26:39.3987786Z At C:\actions-runner\_work\_temp\4b855742-d61b-4f59-a814-194934fad755.ps1:21 char:5 2025-06-01T21:26:39.3988373Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-06-01T21:26:39.3988782Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T21:26:39.3989181Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-06-01T21:26:39.3989570Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-06-01T21:26:39.3989864Z 2025-06-01T21:26:39.4139657Z You cannot call a method on a null-valued expression. 2025-06-01T21:26:39.4140120Z At C:\actions-runner\_work\_temp\4b855742-d61b-4f59-a814-194934fad755.ps1:21 char:5 2025-06-01T21:26:39.4140690Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-06-01T21:26:39.4141095Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T21:26:39.4141487Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-06-01T21:26:39.4142076Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-06-01T21:26:39.4142428Z 2025-06-01T21:26:39.4310162Z You cannot call a method on a null-valued expression. 2025-06-01T21:26:39.4310652Z At C:\actions-runner\_work\_temp\4b855742-d61b-4f59-a814-194934fad755.ps1:21 char:5 2025-06-01T21:26:39.4311200Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-06-01T21:26:39.4311623Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T21:26:39.4312012Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-06-01T21:26:39.4312407Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-06-01T21:26:39.4312686Z 2025-06-01T21:26:39.4486033Z You cannot call a method on a null-valued expression. 2025-06-01T21:26:39.4486613Z At C:\actions-runner\_work\_temp\4b855742-d61b-4f59-a814-194934fad755.ps1:21 char:5 2025-06-01T21:26:39.4487210Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-06-01T21:26:39.4487736Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T21:26:39.4488182Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-06-01T21:26:39.4488632Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-06-01T21:26:39.4488954Z 2025-06-01T21:26:39.4658530Z You cannot call a method on a null-valued expression. 2025-06-01T21:26:39.4659256Z At C:\actions-runner\_work\_temp\4b855742-d61b-4f59-a814-194934fad755.ps1:21 char:5 2025-06-01T21:26:39.4659820Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-06-01T21:26:39.4660241Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T21:26:39.4660650Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-06-01T21:26:39.4661049Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-06-01T21:26:39.4661349Z 2025-06-01T21:26:39.5616775Z Caption CommandLine ProcessId 2025-06-01T21:26:39.5617287Z 2025-06-01T21:26:39.5617606Z System Idle Process 0 2025-06-01T21:26:39.5618017Z 2025-06-01T21:26:39.5619084Z System 4 2025-06-01T21:26:39.5619549Z 2025-06-01T21:26:39.5620492Z Registry 168 2025-06-01T21:26:39.5621010Z 2025-06-01T21:26:39.5621621Z smss.exe 412 2025-06-01T21:26:39.5622176Z 2025-06-01T21:26:39.5622814Z csrss.exe 528 2025-06-01T21:26:39.5623194Z 2025-06-01T21:26:39.5624654Z csrss.exe 604 2025-06-01T21:26:39.5625046Z 2025-06-01T21:26:39.5625319Z wininit.exe 656 2025-06-01T21:26:39.5625709Z 2025-06-01T21:26:39.5626191Z winlogon.exe winlogon.exe 676 2025-06-01T21:26:39.5626620Z 2025-06-01T21:26:39.5627504Z services.exe 748 2025-06-01T21:26:39.5627909Z 2025-06-01T21:26:39.5628408Z lsass.exe C:\Windows\system32\lsass.exe 768 2025-06-01T21:26:39.5628881Z 2025-06-01T21:26:39.5629731Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s PlugPlay 896 2025-06-01T21:26:39.5630477Z 2025-06-01T21:26:39.5630971Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p 920 2025-06-01T21:26:39.5631553Z 2025-06-01T21:26:39.5631899Z fontdrvhost.exe "fontdrvhost.exe" 940 2025-06-01T21:26:39.5632356Z 2025-06-01T21:26:39.5633465Z fontdrvhost.exe "fontdrvhost.exe" 948 2025-06-01T21:26:39.5633941Z 2025-06-01T21:26:39.5634356Z svchost.exe C:\Windows\system32\svchost.exe -k RPCSS -p 124 2025-06-01T21:26:39.5634877Z 2025-06-01T21:26:39.5635323Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s LSM 464 2025-06-01T21:26:39.5635862Z 2025-06-01T21:26:39.5636136Z dwm.exe "dwm.exe" 780 2025-06-01T21:26:39.5636618Z 2025-06-01T21:26:39.5637766Z svchost.exe C:\Windows\System32\svchost.exe -k termsvcs -s TermService 1032 2025-06-01T21:26:39.5638383Z 2025-06-01T21:26:39.5638957Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService 1128 2025-06-01T21:26:39.5640467Z 2025-06-01T21:26:39.5641058Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s EventLog 1252 2025-06-01T21:26:39.5641707Z 2025-06-01T21:26:39.5642168Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s nsi 1344 2025-06-01T21:26:39.5642718Z 2025-06-01T21:26:39.5643664Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s Dhcp 1376 2025-06-01T21:26:39.5644304Z 2025-06-01T21:26:39.5644757Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s gpsvc 1400 2025-06-01T21:26:39.5645298Z 2025-06-01T21:26:39.5645784Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s NlaSvc 1448 2025-06-01T21:26:39.5646346Z 2025-06-01T21:26:39.5646793Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Schedule 1480 2025-06-01T21:26:39.5647345Z 2025-06-01T21:26:39.5649136Z 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 1504 2025-06-01T21:26:39.5651002Z 2025-06-01T21:26:39.5651476Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s netprofm 1568 2025-06-01T21:26:39.5652138Z 2025-06-01T21:26:39.5652723Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s TimeBrokerSvc 1664 2025-06-01T21:26:39.5653405Z 2025-06-01T21:26:39.5653848Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s ProfSvc 1748 2025-06-01T21:26:39.5654398Z 2025-06-01T21:26:39.5654939Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s Themes 1756 2025-06-01T21:26:39.5655494Z 2025-06-01T21:26:39.5656031Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s EventSystem 1764 2025-06-01T21:26:39.5656680Z 2025-06-01T21:26:39.5657254Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s UmRdpService 1852 2025-06-01T21:26:39.5657914Z 2025-06-01T21:26:39.5658389Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -s CertPropSvc 2008 2025-06-01T21:26:39.5658939Z 2025-06-01T21:26:39.5659413Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UserManager 1196 2025-06-01T21:26:39.5660000Z 2025-06-01T21:26:39.5660488Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s SENS 2064 2025-06-01T21:26:39.5661060Z 2025-06-01T21:26:39.5661637Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s LanmanWorkstation 2088 2025-06-01T21:26:39.5662354Z 2025-06-01T21:26:39.5663180Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p 2124 2025-06-01T21:26:39.5663798Z 2025-06-01T21:26:39.5664279Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s Dnscache 2132 2025-06-01T21:26:39.5664870Z 2025-06-01T21:26:39.5665362Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s ShellHWDetection 2188 2025-06-01T21:26:39.5665960Z 2025-06-01T21:26:39.5666416Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s SessionEnv 2196 2025-06-01T21:26:39.5667009Z 2025-06-01T21:26:39.5667511Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s FontCache 2240 2025-06-01T21:26:39.5668135Z 2025-06-01T21:26:39.5668658Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetworkFirewall -p 2292 2025-06-01T21:26:39.5669358Z 2025-06-01T21:26:39.5669970Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s WinHttpAutoProxySvc 2380 2025-06-01T21:26:39.5670679Z 2025-06-01T21:26:39.5671062Z spoolsv.exe C:\Windows\System32\spoolsv.exe 2652 2025-06-01T21:26:39.5671551Z 2025-06-01T21:26:39.5672093Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s CryptSvc 2740 2025-06-01T21:26:39.5672669Z 2025-06-01T21:26:39.5673271Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s SysMain 2748 2025-06-01T21:26:39.5673959Z 2025-06-01T21:26:39.5674423Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Winmgmt 2756 2025-06-01T21:26:39.5674963Z 2025-06-01T21:26:39.5675453Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetwork -p 2764 2025-06-01T21:26:39.5676033Z 2025-06-01T21:26:39.5676509Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -s W32Time 2772 2025-06-01T21:26:39.5677059Z 2025-06-01T21:26:39.5677614Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s TrkWks 2780 2025-06-01T21:26:39.5678316Z 2025-06-01T21:26:39.5678779Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s WpnService 2788 2025-06-01T21:26:39.5679390Z 2025-06-01T21:26:39.5679901Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s WinRM 2796 2025-06-01T21:26:39.5680479Z 2025-06-01T21:26:39.5680922Z sshd.exe C:\Windows\System32\OpenSSH\sshd.exe 3068 2025-06-01T21:26:39.5681415Z 2025-06-01T21:26:39.5681880Z svchost.exe C:\Windows\System32\svchost.exe -k smbsvcs -s LanmanServer 2164 2025-06-01T21:26:39.5682450Z 2025-06-01T21:26:39.5683068Z IpOverUsbSvc.exe "C:\Program Files (x86)\Common Files\Microsoft Shared\Phone Tools\CoreCon\11.0\bin\IpOverUsbSvc.exe" 2964 2025-06-01T21:26:39.5683774Z 2025-06-01T21:26:39.5684389Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\NVWMI\nvWmi64.exe 3084 2025-06-01T21:26:39.5685158Z 2025-06-01T21:26:39.5685647Z svchost.exe C:\Windows\System32\svchost.exe -k NetSvcs -p -s iphlpsvc 3124 2025-06-01T21:26:39.5686191Z 2025-06-01T21:26:39.5686823Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkServiceNetworkRestricted -p -s PolicyAgent 3524 2025-06-01T21:26:39.5687526Z 2025-06-01T21:26:39.5688097Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s lmhosts 4084 2025-06-01T21:26:39.5688739Z 2025-06-01T21:26:39.5689219Z LogonUI.exe "LogonUI.exe" /flags:0x2 /state0:0xa3a72855 /state1:0x41c64e6d 4248 2025-06-01T21:26:39.5689845Z 2025-06-01T21:26:39.5691572Z 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 4388 2025-06-01T21:26:39.5693289Z 2025-06-01T21:26:39.5693988Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\NVWMI\nvWmi64.exe -spawnprovider 4520 2025-06-01T21:26:39.5694756Z 2025-06-01T21:26:39.5695092Z vds.exe C:\Windows\System32\vds.exe 4844 2025-06-01T21:26:39.5695536Z 2025-06-01T21:26:39.5696088Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s PcaSvc 132 2025-06-01T21:26:39.5696744Z 2025-06-01T21:26:39.5697474Z start-amazon-cloudwatch-agent.exe "C:\Program Files\Amazon\AmazonCloudWatchAgent\start-amazon-cloudwatch-agent.exe" 4396 2025-06-01T21:26:39.5698372Z 2025-06-01T21:26:39.5699872Z 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 2096 2025-06-01T21:26:39.5701514Z 2025-06-01T21:26:39.5701900Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 2072 2025-06-01T21:26:39.5702466Z 2025-06-01T21:26:39.5703072Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNoNetwork -p -s DPS 3532 2025-06-01T21:26:39.5703729Z 2025-06-01T21:26:39.5704084Z msdtc.exe C:\Windows\System32\msdtc.exe 4676 2025-06-01T21:26:39.5704531Z 2025-06-01T21:26:39.5705091Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s UALSVC 3812 2025-06-01T21:26:39.5705726Z 2025-06-01T21:26:39.5706181Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UsoSvc 1420 2025-06-01T21:26:39.5706715Z 2025-06-01T21:26:39.5707281Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s StorSvc 2712 2025-06-01T21:26:39.5707909Z 2025-06-01T21:26:39.5708305Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4976 2025-06-01T21:26:39.5708867Z 2025-06-01T21:26:39.5709400Z Runner.Listener.exe "C:\actions-runner\\bin\Runner.Listener.exe" run 552 2025-06-01T21:26:39.5709993Z 2025-06-01T21:26:39.5710478Z amazon-ssm-agent.exe "C:\Program Files\Amazon\SSM\amazon-ssm-agent.exe" 820 2025-06-01T21:26:39.5711039Z 2025-06-01T21:26:39.5711570Z ssm-agent-worker.exe "C:\Program Files\Amazon\SSM\ssm-agent-worker.exe" 4652 2025-06-01T21:26:39.5712149Z 2025-06-01T21:26:39.5712531Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4428 2025-06-01T21:26:39.5713029Z 2025-06-01T21:26:39.5713495Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s CDPSvc 2044 2025-06-01T21:26:39.5714061Z 2025-06-01T21:26:39.5714633Z MicrosoftEdgeUpdate.exe "C:\Program Files (x86)\Microsoft\EdgeUpdate\MicrosoftEdgeUpdate.exe" /c 3016 2025-06-01T21:26:39.5715363Z 2025-06-01T21:26:39.5715912Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s LicenseManager 2996 2025-06-01T21:26:39.5716523Z 2025-06-01T21:26:39.5717059Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s DsSvc 4528 2025-06-01T21:26:39.5717757Z 2025-06-01T21:26:39.5718270Z Runner.Worker.exe "C:\actions-runner\bin\Runner.Worker.exe" spawnclient 2164 2332 3936 2025-06-01T21:26:39.5718854Z 2025-06-01T21:26:39.5719247Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 2700 2025-06-01T21:26:39.5719722Z 2025-06-01T21:26:39.5720372Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s WdiSystemHost 3828 2025-06-01T21:26:39.5721072Z 2025-06-01T21:26:39.5721511Z WmiPrvSE.exe C:\Windows\system32\wbem\wmiprvse.exe 2820 2025-06-01T21:26:39.5722016Z 2025-06-01T21:26:39.5722789Z powershell.exe "C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE" -command ". 'C:\actions-runner\_work\_temp\4b855742-d61b-4f59-a814-194934fad755.ps1'" 936 2025-06-01T21:26:39.5723634Z 2025-06-01T21:26:39.5724193Z WMIC.exe "C:\Windows\System32\Wbem\WMIC.exe" Path Win32_Process Get Caption,Processid,Commandline 5564 2025-06-01T21:26:39.5724847Z 2025-06-01T21:26:39.5724854Z 2025-06-01T21:26:39.5724857Z 2025-06-01T21:26:39.5995413Z ##[group]Run nick-fields/retry@v3.0.0 2025-06-01T21:26:39.5995673Z with: 2025-06-01T21:26:39.5995845Z shell: bash 2025-06-01T21:26:39.5996027Z timeout_minutes: 5 2025-06-01T21:26:39.5996295Z max_attempts: 3 2025-06-01T21:26:39.5996483Z retry_wait_seconds: 90 2025-06-01T21:26:39.5997517Z 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-06-01T21:26:39.5998635Z polling_interval_seconds: 1 2025-06-01T21:26:39.5998873Z warning_on_retry: true 2025-06-01T21:26:39.5999105Z continue_on_error: false 2025-06-01T21:26:39.5999313Z env: 2025-06-01T21:26:39.5999495Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:26:39.5999848Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:26:39.6000343Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:26:39.6000798Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:26:39.6001172Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:26:39.6001492Z EXTRA_DELETE_DIR: /c/15379340894/build-results/ 2025-06-01T21:26:39.6001762Z ##[endgroup] 2025-06-01T21:26:40.0822171Z + '[' -n /c/15379340894/build-results/ ']' 2025-06-01T21:26:40.0822610Z + rm -rf /c/15379340894/build-results/ 2025-06-01T21:26:40.1253980Z + rm -rf ./BUCK.oss ./BUILD.bazel ./CITATION.cff ./CMakeLists.txt ./CODEOWNERS ./CODE_OF_CONDUCT.md ./CONTRIBUTING.md ./Dockerfile ./GLOSSARY.md ./LICENSE ./MANIFEST.in ./Makefile ./NOTICE ./README.md ./RELEASE.md ./SECURITY.md ./WORKSPACE ./android ./aten ./aten.bzl ./benchmarks ./binaries ./buckbuild.bzl ./build ./build.bzl ./build_variables.bzl ./c10 ./caffe2 ./cmake ./compile_commands.json ./defs.bzl ./dist ./docker.Makefile ./docs ./functorch ./mypy-strict.ini ./mypy.ini ./mypy_plugins ./pt_ops.bzl ./pt_template_srcs.bzl ./pyproject.toml ./pyrefly.toml ./pytest.ini ./requirements.txt ./sccache-stats-win-vs2022-cpu-py3-43268061395.json ./scripts ./setup.py ./test ./third_party ./tools ./torch ./torch.egg-info ./torchgen ./ubsan.supp ./ufunc_defs.bzl ./version.txt 2025-06-01T21:27:08.1471600Z Command completed after 1 attempt(s). 2025-06-01T21:27:08.1634589Z ##[group]Run handle C:\actions-runner\_work\ 2025-06-01T21:27:08.1634979Z handle C:\actions-runner\_work\ 2025-06-01T21:27:08.1668154Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-06-01T21:27:08.1668608Z env: 2025-06-01T21:27:08.1668788Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:27:08.1669158Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:27:08.1669652Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:27:08.1670129Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:27:08.1670512Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:27:08.1670786Z ##[endgroup] 2025-06-01T21:27:08.5121592Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-06-01T21:27:08.5177927Z Finished 2025-06-01T21:27:08.6214576Z 2025-06-01T21:27:08.6214935Z Nthandle v5.0 - Handle viewer 2025-06-01T21:27:08.6215271Z Copyright (C) 1997-2022 Mark Russinovich 2025-06-01T21:27:08.6215599Z Sysinternals - www.sysinternals.com 2025-06-01T21:27:08.6215795Z 2025-06-01T21:27:08.6540381Z powershell.exe pid: 5500 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-06-01T21:27:08.6541069Z handle.exe pid: 3792 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-06-01T21:27:08.6541605Z handle.exe pid: 616 type: File 94: C:\actions-runner\_work\pytorch\pytorch 2025-06-01T21:27:08.6542168Z handle64.exe pid: 1428 type: File 50: C:\actions-runner\_work\pytorch\pytorch 2025-06-01T21:27:08.7506866Z Post job cleanup. 2025-06-01T21:27:08.7612473Z Post job cleanup. 2025-06-01T21:27:08.9801431Z [command]"C:\Program Files\Git\cmd\git.exe" version 2025-06-01T21:27:09.0002825Z git version 2.47.1.windows.2 2025-06-01T21:27:09.0063577Z Copying 'C:\Users\runneruser\.gitconfig' to 'C:\actions-runner\_work\_temp\53c47ec7-eb4f-4465-a193-c31a350b409d\.gitconfig' 2025-06-01T21:27:09.0076163Z Temporarily overriding HOME='C:\actions-runner\_work\_temp\53c47ec7-eb4f-4465-a193-c31a350b409d' before making global git config changes 2025-06-01T21:27:09.0077204Z Adding repository directory to the temporary git global config as a safe directory 2025-06-01T21:27:09.0085841Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add safe.directory C:\actions-runner\_work\pytorch\pytorch 2025-06-01T21:27:09.0373416Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp core\.sshCommand 2025-06-01T21:27:09.0610299Z [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-06-01T21:27:09.4799771Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-06-01T21:27:09.4998107Z http.https://github.com/.extraheader 2025-06-01T21:27:09.5042934Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --unset-all http.https://github.com/.extraheader 2025-06-01T21:27:09.5286032Z [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-06-01T21:27:09.8907812Z A job completed hook has been configured by the self-hosted runner administrator 2025-06-01T21:27:09.8951468Z ##[group]Run 'C:\actions-runner\jobcompleted.ps1' 2025-06-01T21:27:09.8966572Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-06-01T21:27:09.8967038Z ##[endgroup] 2025-06-01T21:27:10.2580285Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-06-01T21:27:10.2654532Z Finished 2025-06-01T21:27:11.8985655Z Evaluate and set job outputs 2025-06-01T21:27:11.8998842Z Set output 'test-matrix' 2025-06-01T21:27:11.9005124Z Cleaning up orphan processes